Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
653 B
Nix
33 lines
653 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "cerca";
|
|
version = "0-unstable-2025-05-21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cblgh";
|
|
repo = "cerca";
|
|
rev = "722c38d96160ccf69dd7a8122b62660102b64a59";
|
|
hash = "sha256-M5INnik/TIzH0Afi8/6/PnhwsAhd+kFaDHejfsmuhn0=";
|
|
};
|
|
|
|
vendorHash = "sha256-yfsI0nKfzyzmtbS9bSHRaD2pEgxN6gOKAA/FRDxJx40=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = {
|
|
description = "Lean forum software";
|
|
homepage = "https://github.com/cblgh/cerca";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ dansbandit ];
|
|
mainProgram = "cerca";
|
|
};
|
|
}
|