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.

40 lines
942 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";
2023-01-18 00:54:48 +00:00
version = "0.23.1";
2019-10-12 07:52:48 +00:00
src = fetchFromGitHub {
owner = "smallstep";
repo = "cli";
2023-01-18 22:03:51 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-fSVRDmgDbByAWVzvidrtqCQE+LzS1WpzOAt12ZiNBT4=";
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
2023-01-18 00:54:48 +00:00
vendorHash = "sha256-oW1C0EEaNsT4ne1g4kyb+A8sbXgzCAJlhJHUmdH2r/0=";
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/";
2023-01-18 22:03:51 +00:00
changelog = "https://github.com/smallstep/cli/blob/v${version}/CHANGELOG.md";
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
};
}