mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
Merge pull request #26941 from volth/certstrap-1.0.1
certstrap: init at 1.0.1
This commit is contained in:
commit
d0a9189a03
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 ];
|
||||
};
|
||||
}
|
|
@ -1396,6 +1396,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 a new issue