step-cli: format package.nix with nixfmt

This commit is contained in:
DCsunset
2024-08-01 18:49:43 -04:00
committed by Florian Brandes
parent 66148eb967
commit 7daff7f4ed

View File

@@ -2,40 +2,41 @@
lib, lib,
buildGoModule, buildGoModule,
fetchFromGitHub, fetchFromGitHub,
}: let }:
let
version = "0.27.2"; version = "0.27.2";
in in
buildGoModule { buildGoModule {
pname = "step-cli"; pname = "step-cli";
inherit version; inherit version;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "smallstep"; owner = "smallstep";
repo = "cli"; repo = "cli";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-9w7rUtlLa1kl9oVboWZWj4eoZh+pPdGsEEQDWYdEMns="; hash = "sha256-9w7rUtlLa1kl9oVboWZWj4eoZh+pPdGsEEQDWYdEMns=";
}; };
ldflags = [ ldflags = [
"-w" "-w"
"-s" "-s"
"-X=main.Version=${version}" "-X=main.Version=${version}"
]; ];
preCheck = '' preCheck = ''
# Tries to connect to smallstep.com # Tries to connect to smallstep.com
rm command/certificate/remote_test.go rm command/certificate/remote_test.go
''; '';
vendorHash = "sha256-GD9TAvWqE3nvgVpoy/4CkkdVxliNMy+GNBXJtGSNVqo="; vendorHash = "sha256-GD9TAvWqE3nvgVpoy/4CkkdVxliNMy+GNBXJtGSNVqo=";
meta = { meta = {
description = "Zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc"; description = "Zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
homepage = "https://smallstep.com/cli/"; homepage = "https://smallstep.com/cli/";
changelog = "https://github.com/smallstep/cli/blob/v${version}/CHANGELOG.md"; changelog = "https://github.com/smallstep/cli/blob/v${version}/CHANGELOG.md";
license = lib.licenses.asl20; license = lib.licenses.asl20;
maintainers = with lib.maintainers; [isabelroses]; maintainers = with lib.maintainers; [ isabelroses ];
platforms = lib.platforms.linux ++ lib.platforms.darwin; platforms = lib.platforms.linux ++ lib.platforms.darwin;
mainProgram = "step"; mainProgram = "step";
}; };
} }