aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
blob: 5ffb598e4bb2aa0259192d71e861ed4bd4ebb50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs ? import <nixpkgs> {},
  stdenv ? pkgs.stdenv,
}:
with import ./mkDub.nix { inherit pkgs; };
mkDubDerivation rec {
  name = "spine-${version}";
  version = "0.11.1";
  src = ./.;
  buildInputs = [ pkgs.sqlite ];
  meta = with stdenv.lib; {
    homepage = http://sisudoc.org;
    description = "a sisu like document parser";
    license = licenses.agpl3Plus;
    platforms = platforms.linux;
    maintainers = [ Ralph Amissah ];
  };
}