2023-10-14 09:13:54 -07:00
|
|
|
{ lib, fetchgit, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "daisy";
|
2023-10-15 11:30:09 -07:00
|
|
|
version = "1.1.6";
|
2023-10-14 09:13:54 -07:00
|
|
|
cargoLock.lockFile = src + /Cargo.lock;
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/rm-dr/daisy.git";
|
2023-10-14 09:36:25 -07:00
|
|
|
rev = "v${version}";
|
2023-10-15 11:30:09 -07:00
|
|
|
sha256 = "";
|
2023-10-14 09:13:54 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A pretty command-line scientific calculator";
|
|
|
|
homepage = "https://github.com/rm-dr/daisy";
|
2023-10-14 09:36:25 -07:00
|
|
|
#license = licenses.GPL;
|
2023-10-14 09:13:54 -07:00
|
|
|
maintainers = [ maintainers.tailhook ];
|
|
|
|
};
|
|
|
|
}
|