aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
blob: 7e4f233f2819036844a6d22a0028a94e80d77391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs ? import <nixpkgs> {} }:
with import ./nix/mkDub.nix { inherit pkgs; };
mkDubDerivation rec {
  name = "spine-${version}";
  version = "0.11.2";
  src = ./.;
  buildInputs = [
    pkgs.sqlite
    (import ./nix/pkglst/shell-pkgs.nix { inherit pkgs; })
  ];
  # installPhase = ''
  #   install -m755 -D spine $out/bin/spine
  #   echo "built $out/bin/spine"
  # '';
  meta = with pkgs.lib; {
    homepage = http://sisudoc.org;
    description = "a sisu like document parser";
    license = licenses.agpl3Plus;
    platforms = platforms.linux;
    maintainers = [ RalphAmissah ];
  };
}