about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/admin/boulder/default.nix
blob: a21a3ebdde11285c3c4b543dcfe918106bb73915 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 = [ ];
  };

}