nixpkgs-suyu/pkgs/tools/admin/pebble/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
657 B
Nix
Raw Normal View History

2022-06-10 21:39:06 +02:00
{ lib
, buildGoModule
2019-10-20 22:02:48 +02:00
, fetchFromGitHub
2021-04-04 00:34:13 +02:00
, nixosTests
2019-10-20 22:02:48 +02:00
}:
2022-06-10 21:39:06 +02:00
buildGoModule rec {
2019-10-20 22:02:48 +02:00
pname = "pebble";
2022-04-24 22:48:48 +02:00
version = "2.4.0";
2019-10-20 22:02:48 +02:00
src = fetchFromGitHub {
owner = "letsencrypt";
repo = pname;
rev = "v${version}";
sha256 = "0sh67bzq3hlagk73w2kp45viq15g2rcxm760jk9fqshamq784m6m";
2019-10-20 22:02:48 +02:00
};
2022-06-10 21:39:06 +02:00
vendorSha256 = null;
2021-04-04 00:34:13 +02:00
passthru.tests = {
smoke-test = nixosTests.acme;
};
2019-10-20 22:02:48 +02:00
meta = {
homepage = "https://github.com/letsencrypt/pebble";
2019-10-20 22:02:48 +02:00
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 ];
2020-04-20 02:36:42 +02:00
maintainers = lib.teams.acme.members;
2019-10-20 22:02:48 +02:00
};
}