2022-10-21 01:37:38 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
2019-10-26 20:13:51 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "eva";
|
2022-11-08 06:00:23 +00:00
|
|
|
version = "0.3.1";
|
2019-10-26 20:13:51 +00:00
|
|
|
|
2022-10-21 01:37:38 +00:00
|
|
|
src = fetchCrate {
|
2022-11-08 06:00:23 +00:00
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-eX2d9h6zNbheS68j3lyhJW05JZmQN2I2MdcmiZB8Mec=";
|
2019-10-26 20:13:51 +00:00
|
|
|
};
|
|
|
|
|
2022-11-08 06:00:23 +00:00
|
|
|
cargoSha256 = "sha256-gnym2sedyzQzubOtj64Yoh+sKT+sa60w/Z72hby7Pms=";
|
2019-12-05 13:41:01 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-26 20:13:51 +00:00
|
|
|
description = "A calculator REPL, similar to bc";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/NerdyPepper/eva";
|
2019-10-26 20:13:51 +00:00
|
|
|
license = licenses.mit;
|
2022-10-21 01:37:38 +00:00
|
|
|
maintainers = with maintainers; [ nrdxp ma27 figsoda ];
|
2019-10-26 20:13:51 +00:00
|
|
|
};
|
|
|
|
}
|