keyscope: init at 1.0.1

conduit-nginx
figsoda 2021-10-21 11:58:28 -04:00
parent bed8ee21f7
commit 3d099a3786
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "keyscope";
version = "1.0.1";
src = fetchFromGitHub {
owner = "spectralops";
repo = pname;
rev = "v${version}";
sha256 = "0dv559a5al7p8r3l90sky4fx4qsxwxlm0ani8qn75pxb70z22qj5";
};
cargoSha256 = "sha256-+6O1EY67MVxWrco7a0QTF7Ls1w9YWwNYjiaEe9ckCkg=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
# 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 ];
};
}

View File

@ -6600,6 +6600,10 @@ with pkgs;
keyfuzz = callPackage ../tools/inputmethods/keyfuzz { };
keyscope = callPackage ../tools/security/keyscope {
inherit (darwin.apple_sdk.frameworks) Security;
};
keystore-explorer = callPackage ../applications/misc/keystore-explorer {
jdk = jdk11;
};