mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
37 lines
991 B
Nix
37 lines
991 B
Nix
{ lib, fetchFromGitea, buildGoModule, nix-update-script }:
|
|
|
|
buildGoModule rec {
|
|
pname = "codeberg-pages";
|
|
version = "6.1";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "Codeberg";
|
|
repo = "pages-server";
|
|
rev = "v${version}";
|
|
hash = "sha256-zG+OicdwtiHm/Ji+xfB61leCq9Ni0ysXkh4pQRju7IA=";
|
|
};
|
|
|
|
vendorHash = "sha256-OmrkO++2vnIY7ay4q3oplDYDPWH1d5VSpDCBM6nD4rk=";
|
|
|
|
postPatch = ''
|
|
# disable httptest
|
|
rm server/handler/handler_test.go
|
|
'';
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
tags = [ "sqlite" "sqlite_unlock_notify" "netgo" ];
|
|
|
|
passthru.updateScript = nix-update-script {};
|
|
|
|
meta = with lib; {
|
|
mainProgram = "pages";
|
|
maintainers = with maintainers; [ laurent-f1z1 christoph-heiss ];
|
|
license = licenses.eupl12;
|
|
homepage = "https://codeberg.org/Codeberg/pages-server";
|
|
description = "Static websites hosting from Gitea repositories";
|
|
changelog = "https://codeberg.org/Codeberg/pages-server/releases/tag/v${version}";
|
|
};
|
|
}
|