Files
nixpkgs/pkgs/by-name/on/oneshot/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

57 lines
1.1 KiB
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
testers,
oneshot,
}:
buildGoModule rec {
pname = "oneshot";
version = "2.1.1";
src = fetchFromGitHub {
owner = "forestnode-io";
repo = "oneshot";
rev = "v${version}";
hash = "sha256-eEVjdFHZyk2bSVqrMJIsgZvvLoDOira8zTzX9oDNtHM=";
};
vendorHash = "sha256-TktSQMIHYXF9eyY6jyfE31WLXEq7VZU3qnVIMGjMMcA=";
subPackages = [ "cmd" ];
env.GOWORK = "off";
modRoot = "v2";
ldflags = [
"-s"
"-w"
"-extldflags=-static"
"-X github.com/forestnode-io/oneshot/v2/pkg/version.Version=${version}"
"-X github.com/forestnode-io/oneshot/v2/pkg/version.APIVersion=v1.0.0"
];
installPhase = ''
runHook preInstall
install -D -m 555 -T $GOPATH/bin/cmd $out/bin/oneshot
runHook postInstall
'';
passthru.tests.version = testers.testVersion {
package = oneshot;
command = "oneshot version";
};
meta = with lib; {
description = "First-come first-served single-fire HTTP server";
homepage = "https://www.oneshot.uno/";
license = licenses.mit;
maintainers = with maintainers; [ milibopp ];
mainProgram = "oneshot";
};
}