git-pages: init at 0.9.0 (#524717)

This commit is contained in:
Pol Dellaiera
2026-05-30 09:48:07 +00:00
committed by GitHub
+45
View File
@@ -0,0 +1,45 @@
{
lib,
buildGoModule,
fetchFromGitea,
nix-update-script,
versionCheckHook,
}:
buildGoModule (finalAttrs: {
pname = "git-pages";
version = "0.9.0";
__structuredAttrs = true;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "git-pages";
repo = "git-pages";
tag = "v${finalAttrs.version}";
hash = "sha256-yuOiA8TmLV5RQ7rmhH0Ac/6gN1t6wgyUkvMOJqEMV4U=";
};
subPackages = [ "." ];
vendorHash = "sha256-NNIkzgRki2rtCVUnnhT44rEBcMZYiJPmsXySpxiHYR0=";
ldflags = [
"-s"
"-X main.versionOverride=${finalAttrs.src.tag}"
];
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "-version";
passthru.updateScript = nix-update-script { };
meta = {
description = "Scalable static site server for Git forges (like GitHub Pages or Netlify";
homepage = "https://codeberg.org/git-pages/git-pages";
changelog = "https://codeberg.org/git-pages/git-pages/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.bsd0;
maintainers = with lib.maintainers; [ drupol ];
mainProgram = "git-pages";
};
})