mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
21 lines
547 B
Nix
21 lines
547 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "eva";
|
|
version = "0.3.1";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-eX2d9h6zNbheS68j3lyhJW05JZmQN2I2MdcmiZB8Mec=";
|
|
};
|
|
|
|
cargoHash = "sha256-gnym2sedyzQzubOtj64Yoh+sKT+sa60w/Z72hby7Pms=";
|
|
|
|
meta = with lib; {
|
|
description = "Calculator REPL, similar to bc";
|
|
homepage = "https://github.com/NerdyPepper/eva";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nrdxp ma27 figsoda ];
|
|
mainProgram = "eva";
|
|
};
|
|
}
|