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

31 lines
879 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, libiconv, curl, darwin }:
rustPlatform.buildRustPackage rec {
pname = "cargo-outdated";
2021-04-27 17:45:54 +00:00
version = "0.9.15";
src = fetchFromGitHub {
owner = "kbknapp";
repo = pname;
2020-03-11 21:19:55 +00:00
rev = "v${version}";
2021-04-27 17:45:54 +00:00
sha256 = "sha256-Cd0QWFeAAHSkeCVQvb+Fsg5nBoutV1k1kQpMkWpci2E=";
};
2021-04-27 17:45:54 +00:00
cargoSha256 = "sha256-VngJMDVKIV8+ODHia2U2gKKPKskyKiuKhSnO6NJsJHI=";
2020-03-11 21:19:55 +00:00
2020-03-25 08:39:48 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
2019-06-24 22:27:08 +00:00
libiconv
curl
];
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";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ sondr3 ivan ];
};
}