mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
boulder: init at release-2019-10-13
This commit is contained in:
parent
0a4373a46d
commit
77a4c15c82
33
pkgs/tools/admin/boulder/default.nix
Normal file
33
pkgs/tools/admin/boulder/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ buildGoPackage
|
||||
, libtool
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
let
|
||||
version = "release-2019-10-13";
|
||||
|
||||
in buildGoPackage {
|
||||
|
||||
pname = "boulder";
|
||||
inherit version;
|
||||
|
||||
goPackagePath = "github.com/letsencrypt/boulder";
|
||||
|
||||
buildInputs = [ libtool ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "letsencrypt";
|
||||
repo = "boulder";
|
||||
rev = version;
|
||||
sha256 = "0kis23dnjja6jp192rjpv2m9m2zmzfwhs93440nxg354k6fp8jdg";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/letsencrypt/boulder";
|
||||
description = "An ACME-based CA, written in Go";
|
||||
license = [ lib.licenses.mpl20 ];
|
||||
maintainers = [ ];
|
||||
};
|
||||
|
||||
}
|
|
@ -765,6 +765,8 @@ in
|
|||
|
||||
bonfire = callPackage ../tools/misc/bonfire { };
|
||||
|
||||
boulder = callPackage ../tools/admin/boulder { };
|
||||
|
||||
buildbot = with python3Packages; toPythonApplication buildbot;
|
||||
buildbot-ui = with python3Packages; toPythonApplication buildbot-ui;
|
||||
buildbot-full = with python3Packages; toPythonApplication buildbot-full;
|
||||
|
|
Loading…
Reference in a new issue