cargo-udeps: 0.1.5 -> 0.1.7

This commit is contained in:
Bernardo Meurer 2020-02-10 16:18:16 -08:00
parent 6932a75d9c
commit 720181abab
No known key found for this signature in database
GPG key ID: E421C74191EA186C

View file

@ -2,22 +2,25 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-udeps"; pname = "cargo-udeps";
version = "0.1.5"; version = "0.1.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "est31"; owner = "est31";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0lrfnrxqmpp06fargb5s5fc9y4w4h0ahbd7rgibqqx1la23l9r5q"; sha256 = "1wh8w5p9rb9cqgpmclaywfsz3ckfi9mw38hhg31w7hkgjmqalyj9";
}; };
cargoSha256 = "18rwzcsrlwds3nx90y03dkqm1hl4dpvclm32i9zy9bhpm9hkypwr"; cargoSha256 = "0vb2qr03qv66mmxgs1d5fvs63cdfxaldlg7pilhmdzha1kgy7ib0";
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ] buildInputs = [ openssl ]
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security libiconv ]; ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security libiconv ];
# Requires network access
doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Find unused dependencies in Cargo.toml"; description = "Find unused dependencies in Cargo.toml";
homepage = "https://github.com/est31/cargo-udeps"; homepage = "https://github.com/est31/cargo-udeps";