cargo-outdated: 0.9.7 -> 0.9.8
This commit is contained in:
@@ -1,22 +1,19 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, libiconv, curl, darwin }:
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, libiconv, curl, darwin }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-outdated";
|
||||
version = "0.9.7";
|
||||
version = "0.9.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kbknapp";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0g91cfja4h9qhpxgnimczjna528ml645iz7hgpwl6yp0742qcal4";
|
||||
sha256 = "112yk46yq484zvr8mbj678qsirmyn2ij2h0z359qrhhl7r19icab";
|
||||
};
|
||||
|
||||
# Can be removed when updating to the next release.
|
||||
cargoPatches = [ ./0001-Fix-outdated-Cargo.lock.patch ];
|
||||
cargoSha256 = "1bjs7lkbamy9za619z31ycqqgrfhvxbgfgpc79ykh4mfwphxzg3n";
|
||||
|
||||
cargoSha256 = "0pr57g41lnn8srcbc11sb15qchf01zwqcb1802xdayj6wlc3g3dy";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
@@ -26,7 +23,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A cargo subcommand for displaying when Rust dependencies are out of date";
|
||||
homepage = https://github.com/kbknapp/cargo-outdated;
|
||||
homepage = "https://github.com/kbknapp/cargo-outdated";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ sondr3 ivan ];
|
||||
|
||||
Reference in New Issue
Block a user