pebble: fix version info

This commit is contained in:
Alexis Hildebrandt 2024-06-25 07:50:03 +02:00
parent e6e4cd92ad
commit e542b7432f

View File

@ -18,6 +18,11 @@ buildGoModule rec {
vendorHash = null;
ldflags = [
"-s" "-w"
"-X main.version=${version}"
];
passthru.tests = {
smoke-test = nixosTests.acme;
};
@ -26,8 +31,10 @@ buildGoModule rec {
# ca/ca.go:374:67: 9223372038 (untyped int constant) overflows uint
broken = stdenv.hostPlatform.is32bit;
homepage = "https://github.com/letsencrypt/pebble";
description = "Miniature version of Boulder, Pebble is a small RFC 8555 ACME test server not suited for a production CA";
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";
license = [ lib.licenses.mpl20 ];
mainProgram = "pebble";
maintainers = lib.teams.acme.members;
};
}