summary refs log tree commit diff
path: root/pkgs/tools/admin/pebble/default.nix
blob: 5aa220fd89e68ef6fd49fc1aa8c7ddbc6dcfe0df (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
{ buildGoPackage
, fetchFromGitHub
, lib
}:

let
  version = "v2.2.2";
  pname = "pebble";
in buildGoPackage {
  inherit pname version;
  goPackagePath = "github.com/letsencrypt/${pname}";

  src = fetchFromGitHub {
    owner = "letsencrypt";
    repo = pname;
    rev = version;
    sha256 = "10g6ivdxxp3632wk0gvmp75v9x668kchhmlczbsq8qnsc8sb8pwf";
  };

  meta = {
    homepage = "https://github.com/letsencrypt/boulder";
    description = "A miniature version of Boulder, Pebble is a small RFC 8555 ACME test server not suited for a production CA";
    license = [ lib.licenses.mpl20 ];
    maintainers = [ ];
  };
}