mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
39 lines
854 B
Nix
39 lines
854 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "step-cli";
|
|
version = "0.17.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smallstep";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Qg71JcnA+20zme1ltG4J6qht4P46J5sHPjV3w4HCKPc=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
"-X main.Version=${version}"
|
|
];
|
|
|
|
preCheck = ''
|
|
# Tries to connect to smallstep.com
|
|
rm command/certificate/remote_test.go
|
|
'';
|
|
|
|
vendorSha256 = "sha256-kVvbSTybO23zb1ivCrjZqkM44ljPGD1GdBv76qCpTEQ=";
|
|
|
|
meta = with lib; {
|
|
description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
|
|
homepage = "https://smallstep.com/cli/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ xfix ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
mainProgram = "step";
|
|
};
|
|
}
|