mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
let
|
|
version = "0.27.4";
|
|
in
|
|
buildGoModule {
|
|
pname = "step-cli";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smallstep";
|
|
repo = "cli";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dMqJZ8UWJ6umJZAkcvSYQNh8e8ktPeqw1QHYagE2CvA=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
"-X=main.Version=${version}"
|
|
];
|
|
|
|
preCheck = ''
|
|
# Tries to connect to smallstep.com
|
|
rm command/certificate/remote_test.go
|
|
'';
|
|
|
|
vendorHash = "sha256-t4L+nw2KJ+79drVRJseNjzO4/qczeOL2dmcd2mlXFVQ=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd step \
|
|
--bash <($out/bin/step completion bash) \
|
|
--zsh <($out/bin/step completion zsh) \
|
|
--fish <($out/bin/step completion fish)
|
|
'';
|
|
|
|
meta = {
|
|
description = "Zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
|
|
homepage = "https://smallstep.com/cli/";
|
|
changelog = "https://github.com/smallstep/cli/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ isabelroses ];
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
mainProgram = "step";
|
|
};
|
|
}
|