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
44 lines
983 B
Nix
44 lines
983 B
Nix
{
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
lib,
|
|
go,
|
|
makeWrapper,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "pushup";
|
|
version = "0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adhocteam";
|
|
repo = "pushup";
|
|
rev = "v${version}";
|
|
hash = "sha256-9ENXeVON2/Bt8oXnyVw+Vl0bPVPP7iFSyhxwc091ZIs=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
subPackages = ".";
|
|
# Pushup doesn't need CGO so disable it.
|
|
env.CGO_ENABLED = 0;
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
# The Go compiler is a runtime dependency of Pushup.
|
|
allowGoReference = true;
|
|
postInstall = ''
|
|
wrapProgram $out/bin/${meta.mainProgram} --prefix PATH : ${lib.makeBinPath [ go ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Web framework for Go";
|
|
homepage = "https://pushup.adhoc.dev/";
|
|
license = licenses.mit;
|
|
changelog = "https://github.com/adhocteam/pushup/blob/${src.rev}/CHANGELOG.md";
|
|
mainProgram = "pushup";
|
|
maintainers = with maintainers; [ paulsmith ];
|
|
};
|
|
}
|