mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
31 lines
657 B
Nix
31 lines
657 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "pebble";
|
|
version = "2.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "letsencrypt";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0sh67bzq3hlagk73w2kp45viq15g2rcxm760jk9fqshamq784m6m";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
passthru.tests = {
|
|
smoke-test = nixosTests.acme;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/letsencrypt/pebble";
|
|
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 = lib.teams.acme.members;
|
|
};
|
|
}
|