nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.09-alpha 33 lines 598 B view raw
1{ buildGoPackage 2, libtool 3, fetchFromGitHub 4, lib 5}: 6 7let 8 version = "release-2019-10-13"; 9 10in buildGoPackage { 11 12 pname = "boulder"; 13 inherit version; 14 15 goPackagePath = "github.com/letsencrypt/boulder"; 16 17 buildInputs = [ libtool ]; 18 19 src = fetchFromGitHub { 20 owner = "letsencrypt"; 21 repo = "boulder"; 22 rev = version; 23 sha256 = "0kis23dnjja6jp192rjpv2m9m2zmzfwhs93440nxg354k6fp8jdg"; 24 }; 25 26 meta = { 27 homepage = "https://github.com/letsencrypt/boulder"; 28 description = "An ACME-based CA, written in Go"; 29 license = [ lib.licenses.mpl20 ]; 30 maintainers = [ ]; 31 }; 32 33}