mirror of https://github.com/rm-dr/daisy
Updated default.nix
parent
cd1074d30f
commit
42555e0df7
|
@ -4,14 +4,14 @@ rustPlatform.buildRustPackage rec {
|
||||||
version = "1.1.6";
|
version = "1.1.6";
|
||||||
cargoLock.lockFile = src + /Cargo.lock;
|
cargoLock.lockFile = src + /Cargo.lock;
|
||||||
|
|
||||||
src = fetchgit {
|
src = builtins.fetchGit {
|
||||||
url = "https://github.com/rm-dr/daisy.git";
|
url = "https://github.com/rm-dr/daisy.git";
|
||||||
rev = "v${version}";
|
ref = "refs/tags/v${version}";
|
||||||
sha256 = "";
|
#rev = ""; Ideally, we'd have a hash here, but that would make git history messy.
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A pretty command-line scientific calculator";
|
description = "A general-purpose scientific calculator";
|
||||||
homepage = "https://github.com/rm-dr/daisy";
|
homepage = "https://github.com/rm-dr/daisy";
|
||||||
#license = licenses.GPL;
|
#license = licenses.GPL;
|
||||||
maintainers = [ maintainers.tailhook ];
|
maintainers = [ maintainers.tailhook ];
|
||||||
|
|
Loading…
Reference in New Issue