diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-12-01 21:15:47 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-12-04 15:26:04 -0500 |
commit | adba030111af3de18c9ad41b5ee389b140811fbb (patch) | |
tree | 8778ba8ebbf95e2dea76b5ef7d754dbae6529dbd /project.nix | |
parent | directory nixEnv (renamed from nixDevEnv) (diff) |
nix shebangs, consider
Diffstat (limited to 'project.nix')
-rw-r--r-- | project.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/project.nix b/project.nix index ebadd91..9b335e3 100644 --- a/project.nix +++ b/project.nix @@ -6,7 +6,9 @@ mkDubDerivation rec { name = "spine-${version}"; version = "0.11.1"; src = ./.; - buildInputs = [ pkgs.sqlite ]; + buildInputs = [ + pkgs.sqlite + ]; meta = with stdenv.lib; { homepage = http://sisudoc.org; description = "a sisu like document parser"; |