From ccd93708b9430f2350b48bb77ef2b6aff31c0c8b Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Fri, 23 Oct 2020 09:52:20 -0400 Subject: nix --- default.nix | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'default.nix') diff --git a/default.nix b/default.nix index ab10c24..5ffb598 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,17 @@ -{ pkgs ? import {}, }: +{ pkgs ? import {}, + 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 ]; + }; } -- cgit v1.2.3