diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-23 09:52:20 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-10-23 09:52:20 -0400 |
commit | ccd93708b9430f2350b48bb77ef2b6aff31c0c8b (patch) | |
tree | 19809ec721f71c6c7f190d239ff01288eeeb58fe /default.nix | |
parent | org mode, code-block names (diff) |
nix
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/default.nix b/default.nix index ab10c24..5ffb598 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,17 @@ -{ pkgs ? import <nixpkgs> {}, }: +{ pkgs ? import <nixpkgs> {}, + stdenv ? pkgs.stdenv, +}: with import ./mkDub.nix { inherit pkgs; }; -mkDubDerivation { - version = "0.11.1"; # optional +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 ]; + }; } |