eva: 0.3.0 -> 0.3.0-2, add figsoda as a maintainer

This commit is contained in:
figsoda 2022-10-20 21:37:38 -04:00
parent b4ee59329a
commit 2f07e90947

View file

@ -1,22 +1,21 @@
{ lib, rustPlatform, fetchFromGitHub }: { lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "eva"; pname = "eva";
version = "0.3.0"; version = "0.3.0-2";
src = fetchFromGitHub { src = fetchCrate {
owner = "nerdypepper"; inherit pname;
repo = pname; version = "0.3.0";
rev = "v${version}"; sha256 = "sha256-oeNv4rKZAl/gQ8b8Yr7fgQeeszJjzMcf9q1KzYpVS1Y=";
sha256 = "sha256-INXKjjHW9HZ1NWx1CQOerTBUy0rYFLNJMuRgKQfQwdc=";
}; };
cargoSha256 = "sha256-4l9y2qmS7G1PvxF8/51F7fx/sDuYHWDkcyOin2sYHdk="; cargoSha256 = "sha256-WBniKff9arVgNFBY2pwB0QgEBvzCL0Dls+6N49V86to=";
meta = with lib; { meta = with lib; {
description = "A calculator REPL, similar to bc"; description = "A calculator REPL, similar to bc";
homepage = "https://github.com/NerdyPepper/eva"; homepage = "https://github.com/NerdyPepper/eva";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ nrdxp ma27 ]; maintainers = with maintainers; [ nrdxp ma27 figsoda ];
}; };
} }