mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
certstrap: init at 1.0.1
This commit is contained in:
parent
cc63c5d32c
commit
8797e3edd2
23
pkgs/tools/security/certstrap/default.nix
Normal file
23
pkgs/tools/security/certstrap/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "certstrap-${version}";
|
||||
version = "1.0.1";
|
||||
|
||||
goPackagePath = "github.com/square/certstrap";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "square";
|
||||
repo = "certstrap";
|
||||
rev = "v${version}";
|
||||
sha256 = "0pw1g6nyb212ayic42rkm6i0cf4n2003f02qym6zp130m6aysb47";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Tools to bootstrap CAs, certificate requests, and signed certificates";
|
||||
platforms = platforms.all;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ volth ];
|
||||
};
|
||||
}
|
@ -1388,6 +1388,8 @@ with pkgs;
|
||||
|
||||
c14 = callPackage ../applications/networking/c14 { };
|
||||
|
||||
certstrap = callPackage ../tools/security/certstrap { };
|
||||
|
||||
cfssl = callPackage ../tools/security/cfssl { };
|
||||
|
||||
checkbashisms = callPackage ../development/tools/misc/checkbashisms { };
|
||||
|
Loading…
Reference in New Issue
Block a user