3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/package-management/cargo-outdated/default.nix

39 lines
923 B
Nix
Raw Normal View History

2021-11-10 17:46:52 +00:00
{ lib
, rustPlatform
, fetchCrate
, pkg-config
, openssl
, stdenv
, curl
, Security
, SystemConfiguration
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-outdated";
2021-12-06 07:31:52 +00:00
version = "0.10.2";
2021-11-10 17:08:03 +00:00
src = fetchCrate {
inherit pname version;
2021-12-06 07:31:52 +00:00
sha256 = "sha256-U6qElZkray4kjScv9X4I5m2z1ZWQzqcPYAuPzpyRpW0=";
};
2021-12-06 07:31:52 +00:00
cargoSha256 = "sha256-0J02Uz184zx5xZYhqUmyaAFCQ0aogwy0fQTXbteBdV8=";
2020-03-11 21:19:55 +00:00
2020-03-25 08:39:48 +00:00
nativeBuildInputs = [ pkg-config ];
2021-11-10 17:46:52 +00:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
2019-06-24 23:27:08 +01:00
curl
2021-11-10 17:46:52 +00:00
Security
SystemConfiguration
];
meta = with lib; {
description = "A cargo subcommand for displaying when Rust dependencies are out of date";
2020-03-25 08:39:48 +00:00
homepage = "https://github.com/kbknapp/cargo-outdated";
2021-11-10 17:46:52 +00:00
changelog = "https://github.com/kbknapp/cargo-outdated/blob/${version}/CHANGELOG.md";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ sondr3 ivan ];
};
}