nixpkgs/pkgs/tools/package-management/cargo-update/default.nix

39 lines
985 B
Nix
Raw Normal View History

2020-01-09 14:24:56 +00:00
{ stdenv
, rustPlatform
, fetchFromGitHub
, cmake
, curl
, libgit2
, libssh2
, openssl
, pkg-config
2020-08-16 11:23:36 +00:00
, Security
, zlib
}:
2018-08-02 08:28:57 +00:00
2020-01-09 14:24:56 +00:00
rustPlatform.buildRustPackage rec {
pname = "cargo-update";
2020-08-20 05:24:38 +00:00
version = "4.1.1";
2018-08-02 08:28:57 +00:00
2020-01-09 14:24:56 +00:00
src = fetchFromGitHub {
owner = "nabijaczleweli";
repo = pname;
rev = "v${version}";
2020-08-20 05:24:38 +00:00
sha256 = "03yfn6jq33mykk2cicx54cpddilp62pb5ah75n96k1mwy7c46r6g";
2020-01-09 14:24:56 +00:00
};
2020-08-20 05:24:38 +00:00
cargoPatches = [ ./0001-Generate-lockfile-for-cargo-update-v4.1.1.patch ];
cargoSha256 = "1yaawp015gdnlfqkdmqsf95gszz0h5j1vpfjh763y7kk0bp7zswl";
2018-08-02 08:28:57 +00:00
2020-03-29 06:02:57 +00:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libgit2 libssh2 openssl zlib ]
2020-08-16 11:23:36 +00:00
++ stdenv.lib.optionals stdenv.isDarwin [ curl Security ];
2018-08-02 08:28:57 +00:00
2020-01-09 14:24:56 +00:00
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;
2020-08-20 05:24:38 +00:00
maintainers = with maintainers; [ gerschtli filalex77 johntitor ];
2018-08-02 08:28:57 +00:00
};
}