13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, perl
|
|
, pkg-config
|
|
, SystemConfiguration
|
|
, Security
|
|
, CoreFoundation
|
|
, curl
|
|
, libiconv
|
|
, openssl
|
|
, git
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-crev";
|
|
version = "0.23.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crev-dev";
|
|
repo = "cargo-crev";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-wMF2uF6h06c/vBBXr2IGk/9RsOxnxvffEtIOR+s+iVk=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-UF0bEV77IqGBmqGCqg2cHzom7JDRqlLpoSxbNQsKKiY=";
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
git config --global user.name "Nixpkgs Test"
|
|
git config --global user.email "nobody@example.com"
|
|
'';
|
|
|
|
nativeBuildInputs = [ perl pkg-config ];
|
|
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ SystemConfiguration Security CoreFoundation libiconv curl ];
|
|
|
|
checkInputs = [ git ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|