nixpkgs/pkgs/tools/security/step-cli/default.nix

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

39 lines
854 B
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
}:
2019-10-12 07:52:48 +00:00
buildGoModule rec {
2019-10-12 07:52:48 +00:00
pname = "step-cli";
2022-08-29 01:06:29 +00:00
version = "0.22.0";
2019-10-12 07:52:48 +00:00
src = fetchFromGitHub {
owner = "smallstep";
repo = "cli";
2021-05-15 20:08:07 +00:00
rev = "v${version}";
2022-08-29 01:06:29 +00:00
sha256 = "sha256-X99/Fnow6l47T9ZAhEjRNOsVWO48utuCr3jW9Emb0T4=";
2019-10-12 07:52:48 +00:00
};
2021-07-16 18:53:55 +00:00
ldflags = [
"-w"
"-s"
"-X main.Version=${version}"
];
preCheck = ''
# Tries to connect to smallstep.com
rm command/certificate/remote_test.go
'';
2021-07-16 18:53:55 +00:00
2022-08-29 01:06:29 +00:00
vendorSha256 = "sha256-USDr/16cPR7PjWnXpQvi+4sKRyyFw+1EdCDE7vWs7LQ=";
2019-10-12 07:52:48 +00:00
meta = with lib; {
description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
homepage = "https://smallstep.com/cli/";
2019-10-12 07:52:48 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ xfix ];
platforms = platforms.linux ++ platforms.darwin;
2021-10-25 09:27:51 +00:00
mainProgram = "step";
2019-10-12 07:52:48 +00:00
};
}