nixpkgs/pkgs/tools/misc/eva/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
528 B
Nix
Raw Normal View History

{ 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
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=";
meta = with lib; {
2019-10-26 20:13:51 +00:00
description = "A calculator REPL, similar to bc";
homepage = "https://github.com/NerdyPepper/eva";
2019-10-26 20:13:51 +00:00
license = licenses.mit;
maintainers = with maintainers; [ nrdxp ma27 figsoda ];
2019-10-26 20:13:51 +00:00
};
}