1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-16 09:53:17 +00:00
nixpkgs/pkgs/tools/security/step-cli/default.nix

31 lines
757 B
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
}:
2019-10-12 08:52:48 +01:00
buildGoModule rec {
2019-10-12 08:52:48 +01:00
pname = "step-cli";
2021-05-15 21:08:07 +01:00
version = "0.15.16";
2019-10-12 08:52:48 +01:00
src = fetchFromGitHub {
owner = "smallstep";
repo = "cli";
2021-05-15 21:08:07 +01:00
rev = "v${version}";
sha256 = "sha256-/HqCG3LscwogLXvZlL2CVo2Pj1hVRnOMPCmG1hxrG/I=";
2019-10-12 08:52:48 +01:00
};
preCheck = ''
# Tries to connect to smallstep.com
rm command/certificate/remote_test.go
'';
2021-05-15 21:08:07 +01:00
vendorSha256 = "sha256-plQgIqs6QUbzndn8C0ByKceGtz/JxZ1Rx0fXWHNJ0kM=";
2019-10-12 08:52:48 +01: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 08:52:48 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ xfix ];
platforms = platforms.linux ++ platforms.darwin;
};
}