2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, libiconv, curl, darwin }:
|
2019-04-19 16:14:42 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-outdated";
|
2021-01-28 22:56:20 +00:00
|
|
|
version = "0.9.14";
|
2019-04-19 16:14:42 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kbknapp";
|
|
|
|
repo = pname;
|
2020-03-11 21:19:55 +00:00
|
|
|
rev = "v${version}";
|
2021-01-28 22:56:20 +00:00
|
|
|
sha256 = "sha256-80H0yblEcxP6TTil0dJPZhvMivDLuyvoV0Rmcrykgjs=";
|
2019-04-19 16:14:42 +01:00
|
|
|
};
|
|
|
|
|
2021-01-28 22:56:20 +00:00
|
|
|
cargoSha256 = "sha256-RACdzaCWfm5rrIX0wrvKSmhLQt1a+2MQqrjTx+etpGo=";
|
2020-03-11 21:19:55 +00:00
|
|
|
|
2020-03-25 08:39:48 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-04-19 16:14:42 +01:00
|
|
|
buildInputs = [ openssl ]
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [
|
2019-04-19 16:14:42 +01:00
|
|
|
darwin.apple_sdk.frameworks.Security
|
2019-06-24 23:27:08 +01:00
|
|
|
libiconv
|
|
|
|
curl
|
2019-04-19 16:14:42 +01:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-04-19 16:14:42 +01:00
|
|
|
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";
|
2019-04-19 16:14:42 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2019-12-14 15:39:08 +00:00
|
|
|
maintainers = with maintainers; [ sondr3 ivan ];
|
2019-04-19 16:14:42 +01:00
|
|
|
};
|
|
|
|
}
|