3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/keyscope/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-21 16:58:28 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, stdenv
2021-10-30 17:57:45 +01:00
, DiskArbitration
, Foundation
, IOKit
2021-10-21 16:58:28 +01:00
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "keyscope";
2022-03-21 10:07:48 +00:00
version = "1.2.2";
2021-10-21 16:58:28 +01:00
src = fetchFromGitHub {
owner = "spectralops";
repo = pname;
rev = "v${version}";
2022-03-21 10:07:48 +00:00
sha256 = "sha256-SLVNzxwZhdK2Fk2Vu5P/j0d8IoUPzlb9e5hnJrZ8Qsk=";
2021-10-21 16:58:28 +01:00
};
2022-03-21 10:07:48 +00:00
cargoSha256 = "sha256-PBSQeLQ7UkWhGlRID+bv2HwzgvoiJ120t/TNKJFUY+M=";
2021-10-21 16:58:28 +01:00
nativeBuildInputs = [ pkg-config ];
2021-10-30 17:57:45 +01:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
DiskArbitration
Foundation
IOKit
Security
];
2021-10-21 16:58:28 +01:00
# build script tries to get information from git
postPatch = ''
echo "fn main() {}" > build.rs
'';
VERGEN_GIT_SEMVER = "v${version}";
meta = with lib; {
description = "A key and secret workflow (validation, invalidation, etc.) tool";
homepage = "https://github.com/spectralops/keyscope";
changelog = "https://github.com/spectralops/keyscope/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};
}