nixpkgs/pkgs/development/tools/rust/cargo-crev/default.nix

36 lines
875 B
Nix
Raw Normal View History

2020-08-17 10:14:04 +01:00
{ stdenv
, fetchFromGitHub
, rustPlatform
, perl
, pkg-config
, Security
, curl
, libiconv
, openssl
}:
2019-11-24 12:34:36 +00:00
rustPlatform.buildRustPackage rec {
pname = "cargo-crev";
2020-08-17 10:14:04 +01:00
version = "0.17.0";
2019-11-24 12:34:36 +00:00
src = fetchFromGitHub {
owner = "crev-dev";
repo = "cargo-crev";
rev = "v${version}";
2020-08-17 10:14:04 +01:00
sha256 = "1s5wb5m0d77qi90pyxld98ap37xnxrz3sz5gazq0pp5i9c9xa124";
2019-11-24 12:34:36 +00:00
};
2020-08-17 10:14:04 +01:00
cargoSha256 = "10dzvzjqib751h2p1pl0z3dy2d17xwrcp9vyfrfr185yximcw2wx";
2019-11-24 12:34:36 +00:00
2020-08-17 10:14:04 +01:00
nativeBuildInputs = [ perl pkg-config ];
2019-11-24 12:34:36 +00:00
buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ Security libiconv curl ];
meta = with stdenv.lib; {
description = "A cryptographically verifiable code review system for the cargo (Rust) package manager";
homepage = "https://github.com/crev-dev/cargo-crev";
license = with licenses; [ asl20 mit mpl20 ];
maintainers = with maintainers; [ b4dm4n ];
};
}