cargo-update: 3.0.0 -> 4.1.1

This commit is contained in:
Yuki Okushi
2020-08-20 14:24:38 +09:00
parent 86b9cafcfc
commit e7177adafc
2 changed files with 69 additions and 73 deletions
@@ -13,17 +13,17 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-update";
version = "3.0.0";
version = "4.1.1";
src = fetchFromGitHub {
owner = "nabijaczleweli";
repo = pname;
rev = "v${version}";
sha256 = "1jyfv8aa0gp67pvv8l2vkqq4j9rgjl4rq1wn4nqxb44gmvkg15l3";
sha256 = "03yfn6jq33mykk2cicx54cpddilp62pb5ah75n96k1mwy7c46r6g";
};
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v3.0.0.patch ];
cargoSha256 = "034v1ql5k3n3rgi3aqszkybvv3vc80v263c9nlwxcwbswsh9jpp1";
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.1.patch ];
cargoSha256 = "1yaawp015gdnlfqkdmqsf95gszz0h5j1vpfjh763y7kk0bp7zswl";
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libgit2 libssh2 openssl zlib ]
@@ -33,6 +33,6 @@ rustPlatform.buildRustPackage rec {
description = "A cargo subcommand for checking and applying updates to installed executables";
homepage = "https://github.com/nabijaczleweli/cargo-update";
license = licenses.mit;
maintainers = with maintainers; [ gerschtli filalex77 ];
maintainers = with maintainers; [ gerschtli filalex77 johntitor ];
};
}