nixpkgs/pkgs/by-name/st/step-cli/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.0 KiB
Nix
Raw Normal View History

2024-04-29 22:15:53 +01:00
{
lib,
buildGoModule,
fetchFromGitHub,
}: let
2024-06-14 04:32:54 +01:00
version = "0.26.2";
2024-04-29 22:15:53 +01:00
in
buildGoModule {
pname = "step-cli";
inherit version;
src = fetchFromGitHub {
owner = "smallstep";
repo = "cli";
rev = "refs/tags/v${version}";
2024-06-14 04:32:54 +01:00
hash = "sha256-CrV6kWgq2ldeOh5G0SgO8+q0HC1l8RuTELT3YXLxClU=";
2024-04-29 22:15:53 +01:00
};
ldflags = [
"-w"
"-s"
"-X=main.Version=${version}"
];
preCheck = ''
# Tries to connect to smallstep.com
rm command/certificate/remote_test.go
'';
2024-06-14 04:32:54 +01:00
vendorHash = "sha256-pqwrjreysMLfVmzPE7Tj/hLdM1HO13UfmbMXvNgLd5Y=";
2024-04-29 22:15:53 +01:00
meta = {
description = "Zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
2024-04-29 22:15:53 +01:00
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";
};
}