0eaa97ffad
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
38 lines
985 B
Nix
38 lines
985 B
Nix
{ stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, curl
|
|
, libgit2
|
|
, libssh2
|
|
, openssl
|
|
, pkg-config
|
|
, Security
|
|
, zlib
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-update";
|
|
version = "4.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nabijaczleweli";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "03yfn6jq33mykk2cicx54cpddilp62pb5ah75n96k1mwy7c46r6g";
|
|
};
|
|
|
|
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.1.patch ];
|
|
cargoSha256 = "1yaawp015gdnlfqkdmqsf95gszz0h5j1vpfjh763y7kk0bp7zswl";
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ libgit2 libssh2 openssl zlib ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ curl Security ];
|
|
|
|
meta = with stdenv.lib; {
|
|
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 johntitor ];
|
|
};
|
|
}
|