Added nix package

dev
mark 2023-10-14 09:13:54 -07:00
parent d9730fd699
commit 5e34017225
2 changed files with 21 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/target /target
/src/target /src/target
/pkg /pkg
/result

19
default.nix Normal file
View File

@ -0,0 +1,19 @@
{ lib, fetchgit, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "daisy";
version = "1.1.4";
cargoLock.lockFile = src + /Cargo.lock;
src = fetchgit {
url = "https://github.com/rm-dr/daisy.git";
rev = "7658ff76ef2d2fab540dc8b8d4ee24077daebd01";
sha256 = "sha256-aENuKtE1+tBRN0HZzRr8Gk+dVEYTiP6FNRz817Sk88o=";
};
meta = with lib; {
description = "A pretty command-line scientific calculator";
homepage = "https://github.com/rm-dr/daisy";
license = licenses.GPL;
maintainers = [ maintainers.tailhook ];
};
}