python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / eva / default.nix
blob934a19209d0e0dfad0a6674d8dcf74daa932b0bd
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "eva";
5   version = "0.3.1";
7   src = fetchCrate {
8     inherit pname version;
9     sha256 = "sha256-eX2d9h6zNbheS68j3lyhJW05JZmQN2I2MdcmiZB8Mec=";
10   };
12   cargoSha256 = "sha256-gnym2sedyzQzubOtj64Yoh+sKT+sa60w/Z72hby7Pms=";
14   meta = with lib; {
15     description = "A calculator REPL, similar to bc";
16     homepage = "https://github.com/NerdyPepper/eva";
17     license = licenses.mit;
18     maintainers = with maintainers; [ nrdxp ma27 figsoda ];
19   };