mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, pcsclite
|
|
, softhsm
|
|
, opensc
|
|
, yubihsm-shell
|
|
, writeScriptBin }:
|
|
|
|
buildGoModule rec {
|
|
pname = "step-kms-plugin";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smallstep";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-VHQuNJzOYr5aLQqlzx6mDPBOKw6OSPSXBiEopKLuUo0=";
|
|
};
|
|
|
|
vendorHash = "sha256-o6mylylpfQyswXA0kCADjqYFE0XDW9ZYglwDMpFRiu8=";
|
|
|
|
proxyVendor = true;
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
opensc
|
|
pcsclite
|
|
softhsm
|
|
yubihsm-shell
|
|
];
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
"-X github.com/smallstep/step-kms-plugin/cmd.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "step plugin to manage keys and certificates on cloud KMSs and HSMs";
|
|
homepage = "https://smallstep.com/cli/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ qbit ];
|
|
mainProgram = "step-kms-plugin";
|
|
# can't find pcsclite header files
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|