summary refs log tree commit diff
path: root/pkgs/tools/security/step-cli/default.nix
blob: 0ecd3bc82532af637344ee3519b1a6efebf25493 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "step-cli";
  version = "0.13.3";

  goPackagePath = "github.com/smallstep/cli";

  src = fetchFromGitHub {
    owner = "smallstep";
    repo = "cli";
    rev = "v${version}";
    sha256 = "0b5hk9a8yq1nyh8m1gmf28yiha95xwsc4dk321g84hvai7g47pbr";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "A zero trust swiss army knife for working with X509, OAuth, JWT, OATH OTP, etc";
    homepage = https://smallstep.com/cli/;
    license = licenses.asl20;
    maintainers = with maintainers; [ xfix ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}