Skip to content

Commit

Permalink
cargo-crev: 0.16.1 -> 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor authored and danieldk committed Aug 17, 2020
1 parent 49f6cba commit 2efb6ad
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions pkgs/development/tools/rust/cargo-crev/default.nix
@@ -1,19 +1,28 @@
{ stdenv, fetchFromGitHub, rustPlatform, Security, openssl, pkgconfig, libiconv, curl }:
{ stdenv
, fetchFromGitHub
, rustPlatform
, perl
, pkg-config
, Security
, curl
, libiconv
, openssl
}:

rustPlatform.buildRustPackage rec {
pname = "cargo-crev";
version = "0.16.1";
version = "0.17.0";

src = fetchFromGitHub {
owner = "crev-dev";
repo = "cargo-crev";
rev = "v${version}";
sha256 = "16da30zbv8f7w8bxsssmrpzm41a966wby1l6ldyiiszs980qh7c5";
sha256 = "1s5wb5m0d77qi90pyxld98ap37xnxrz3sz5gazq0pp5i9c9xa124";
};

cargoSha256 = "0z365pgdd95apk2zz2n0gx85s0gf8ccfbqippxqn1fdsppihib6g";
cargoSha256 = "10dzvzjqib751h2p1pl0z3dy2d17xwrcp9vyfrfr185yximcw2wx";

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ perl pkg-config ];

buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ Security libiconv curl ];

Expand Down

0 comments on commit 2efb6ad

Please sign in to comment.