Files
hagrid/aboutPages/default.nix
2025-09-29 22:37:55 +02:00

27 lines
551 B
Nix

{ lib, stdenvNoCC, zola, commitShaShort ? "" }:
stdenvNoCC.mkDerivation rec {
pname = "hagridAboutPages";
version = "2.1.0";
src = ./.;
nativeBuildInputs = [
zola
];
buildPhase = ''
zola build --output-dir $out/about
'';
COMMIT_SHA_SHORT = commitShaShort;
meta = with lib; {
description = "A verifying keyserver (about pages)";
homepage = "https://gitlab.com/keys.openpgp.org/hagrid";
license = with licenses; [ gpl3 ];
maintainers = with maintainers; [ valodim ];
platforms = platforms.all;
};
}