2020-12-23 00:07:11 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2019-10-12 09:52:48 +02:00
|
|
|
|
2020-12-23 00:07:11 +01:00
|
|
|
buildGoModule rec {
|
2019-10-12 09:52:48 +02:00
|
|
|
pname = "step-cli";
|
2021-10-25 11:24:39 +02:00
|
|
|
version = "0.17.7";
|
2019-10-12 09:52:48 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "smallstep";
|
|
|
|
repo = "cli";
|
2021-05-15 22:08:07 +02:00
|
|
|
rev = "v${version}";
|
2021-10-25 11:24:39 +02:00
|
|
|
sha256 = "sha256-Qg71JcnA+20zme1ltG4J6qht4P46J5sHPjV3w4HCKPc=";
|
2019-10-12 09:52:48 +02:00
|
|
|
};
|
|
|
|
|
2021-07-16 20:53:55 +02:00
|
|
|
ldflags = [
|
|
|
|
"-w"
|
|
|
|
"-s"
|
|
|
|
"-X main.Version=${version}"
|
|
|
|
];
|
|
|
|
|
2020-12-23 00:07:11 +01:00
|
|
|
preCheck = ''
|
|
|
|
# Tries to connect to smallstep.com
|
|
|
|
rm command/certificate/remote_test.go
|
|
|
|
'';
|
2021-07-16 20:53:55 +02:00
|
|
|
|
2021-10-25 11:24:39 +02:00
|
|
|
vendorSha256 = "sha256-kVvbSTybO23zb1ivCrjZqkM44ljPGD1GdBv76qCpTEQ=";
|
2019-10-12 09:52:48 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://smallstep.com/cli/";
|
2019-10-12 09:52:48 +02:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ xfix ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-10-25 11:27:51 +02:00
|
|
|
mainProgram = "step";
|
2019-10-12 09:52:48 +02:00
|
|
|
};
|
|
|
|
}
|