1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #331718 from NixOS/revert-322331-update-pebble

Revert "pebble: 2.4.0 -> 2.6.0 and fix version info"
This commit is contained in:
K900 2024-08-02 12:07:49 +03:00 committed by GitHub
commit 42015a129a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,32 +7,27 @@
buildGoModule rec {
pname = "pebble";
version = "2.6.0";
version = "2.4.0";
src = fetchFromGitHub {
owner = "letsencrypt";
repo = pname;
rev = "v${version}";
hash = "sha256-YPU/bl7h6rOWg+5ut0Thn2UupeKpJ7u4KXc2svIeZEM=";
sha256 = "0sh67bzq3hlagk73w2kp45viq15g2rcxm760jk9fqshamq784m6m";
};
vendorHash = null;
ldflags = [
"-s" "-w"
"-X main.version=${version}"
];
passthru.tests = {
smoke-test = nixosTests.acme;
};
meta = {
# ca/ca.go:374:67: 9223372038 (untyped int constant) overflows uint
broken = stdenv.hostPlatform.is32bit;
homepage = "https://github.com/letsencrypt/pebble";
description = "Small RFC 8555 ACME test server";
longDescription = "Miniature version of Boulder, Pebble is a small RFC 8555 ACME test server not suited for a production CA";
description = "Miniature version of Boulder, Pebble is a small RFC 8555 ACME test server not suited for a production CA";
license = [ lib.licenses.mpl20 ];
mainProgram = "pebble";
maintainers = lib.teams.acme.members;
};
}