Files
nixpkgs/pkgs/by-name/wg/wgo/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

44 lines
829 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
pname = "wgo";
version = "0.5.14";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "bokwoon95";
repo = "wgo";
rev = "v${version}";
hash = "sha256-zqRcGUfqvn0NX1rL/+jMVE/LCIT2IrqUUPDGThSueAY=";
};
vendorHash = "sha256-w6UJxZToHbbQmuXkyqFzyssFcE+7uVNqOuIF/XKdEsU=";
ldflags = [
"-s"
"-w"
];
subPackages = [ "." ];
checkFlags = [
# Flaky tests.
# See https://github.com/bokwoon95/wgo/blob/e0448e04b6ca44323f507d1aca94425b7c69803c/START_HERE.md?plain=1#L26.
"-skip=TestWgoCmd_FileEvent"
];
meta = with lib; {
description = "Live reload for Go apps";
mainProgram = "wgo";
homepage = "https://github.com/bokwoon95/wgo";
license = licenses.mit;
maintainers = [ ];
};
}