rpg-cli: unstable-2021-05-27 -> 0.3.0

This commit is contained in:
legendofmiracles 2021-05-30 10:59:16 -06:00
parent bfcd6bd009
commit e546f97664
No known key found for this signature in database
GPG key ID: 19B082B3DEFE5451

View file

@ -2,17 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "rpg-cli";
version = "unstable-2021-05-27";
version = "0.3.0";
src = fetchFromGitHub {
owner = "facundoolano";
repo = pname;
# certain revision because the Cargo.lock was checked-in in that commit
rev = "4d8a1dac79a1d29d79c0c874475037769dcef5a1";
sha256 = "sha256-qfj1uij9lYyfyHFUnVi9I0ELOoObjFG2NS9UreC/xio=";
rev = version;
sha256 = "sha256-pcVxUX6CPIE5GJniXbAiwZQjwv2eer8LevFl6gASKmM=";
};
cargoSha256 = "sha256-I+rSfuiGFdzA5zqPfvMPcERaQfiX92LW2NKjazWh9c4=";
cargoSha256 = "sha256-4DB3Zj9awmKX5t1zCgWxetz/+tl6ojpCEKxWpZFlMcw=";
# tests assume the authors macbook, and thus fail
doCheck = false;
@ -22,6 +21,5 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/facundoolano/rpg-cli";
license = licenses.mit;
maintainers = with maintainers; [ legendofmiracles ];
mainProgram = "rpg-cli";
};
}