2020-12-27 14:24:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-12-27 14:24:52 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "step-cli";
|
2023-03-04 12:14:45 +00:00
|
|
|
version = "0.23.3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "smallstep";
|
|
|
|
repo = "cli";
|
2023-01-20 10:41:00 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-03-04 12:14:45 +00:00
|
|
|
hash = "sha256-gJsezi7yczVagR7faQvehyGWW6E7sfDXrJEVdsUSSp0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-07-21 07:28:18 +00:00
|
|
|
ldflags = [
|
|
|
|
"-w"
|
|
|
|
"-s"
|
|
|
|
"-X main.Version=${version}"
|
|
|
|
];
|
|
|
|
|
2020-12-27 14:24:52 +00:00
|
|
|
preCheck = ''
|
|
|
|
# Tries to connect to smallstep.com
|
|
|
|
rm command/certificate/remote_test.go
|
|
|
|
'';
|
2021-07-21 07:28:18 +00:00
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
vendorHash = "sha256-YsZGs5/QQLdnXOeEnDXevlnJrOBoLkdYqTj2ZIoUOkA=";
|
2020-04-24 23:36:52 +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-20 10:41:00 +00:00
|
|
|
changelog = "https://github.com/smallstep/cli/blob/v${version}/CHANGELOG.md";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ xfix ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-10-28 06:52:43 +00:00
|
|
|
mainProgram = "step";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|