2022-10-30 15:09:59 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "eva";
|
2022-11-21 17:40:18 +00:00
|
|
|
version = "0.3.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
src = fetchCrate {
|
2022-11-21 17:40:18 +00:00
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-eX2d9h6zNbheS68j3lyhJW05JZmQN2I2MdcmiZB8Mec=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-11-21 17:40:18 +00:00
|
|
|
cargoSha256 = "sha256-gnym2sedyzQzubOtj64Yoh+sKT+sa60w/Z72hby7Pms=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A calculator REPL, similar to bc";
|
|
|
|
homepage = "https://github.com/NerdyPepper/eva";
|
|
|
|
license = licenses.mit;
|
2022-10-30 15:09:59 +00:00
|
|
|
maintainers = with maintainers; [ nrdxp ma27 figsoda ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "eva";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|