biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / eva / default.nix
blob93645a92203c26c5a96887f095bd6ed8568c2601
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "eva";
5   version = "0.3.1";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-eX2d9h6zNbheS68j3lyhJW05JZmQN2I2MdcmiZB8Mec=";
10   };
12   cargoHash = "sha256-gnym2sedyzQzubOtj64Yoh+sKT+sa60w/Z72hby7Pms=";
14   meta = with lib; {
15     description = "Calculator REPL, similar to bc";
16     homepage = "https://github.com/NerdyPepper/eva";
17     license = licenses.mit;
18     maintainers = with maintainers; [ nrdxp ma27 figsoda ];
19     mainProgram = "eva";
20   };