2022-10-21 02:37:38 +01:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
2019-10-26 21:13:51 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "eva";
|
2022-10-21 02:37:38 +01:00
|
|
|
version = "0.3.0-2";
|
2019-10-26 21:13:51 +01:00
|
|
|
|
2022-10-21 02:37:38 +01:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname;
|
|
|
|
version = "0.3.0";
|
|
|
|
sha256 = "sha256-oeNv4rKZAl/gQ8b8Yr7fgQeeszJjzMcf9q1KzYpVS1Y=";
|
2019-10-26 21:13:51 +01:00
|
|
|
};
|
|
|
|
|
2022-10-21 02:37:38 +01:00
|
|
|
cargoSha256 = "sha256-WBniKff9arVgNFBY2pwB0QgEBvzCL0Dls+6N49V86to=";
|
2019-12-05 13:41:01 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-26 21:13:51 +01:00
|
|
|
description = "A calculator REPL, similar to bc";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/NerdyPepper/eva";
|
2019-10-26 21:13:51 +01:00
|
|
|
license = licenses.mit;
|
2022-10-21 02:37:38 +01:00
|
|
|
maintainers = with maintainers; [ nrdxp ma27 figsoda ];
|
2019-10-26 21:13:51 +01:00
|
|
|
};
|
|
|
|
}
|