nixpkgs/pkgs/tools/admin/boulder/default.nix

31 lines
574 B
Nix
Raw Normal View History

2019-10-18 10:21:50 +00:00
{ buildGoPackage
, libtool
, fetchFromGitHub
, lib
}:
2021-07-14 15:10:11 +00:00
buildGoPackage rec{
2019-10-18 10:21:50 +00:00
pname = "boulder";
2021-07-14 15:10:11 +00:00
version = "release-2019-10-13";
2019-10-18 10:21:50 +00:00
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 = [ ];
};
}