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
42 lines
822 B
Nix
42 lines
822 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gauge";
|
|
version = "1.6.21";
|
|
|
|
patches = [
|
|
# adds a check which adds an error message when trying to
|
|
# install plugins imperatively when using the wrapper
|
|
./nix-check.patch
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getgauge";
|
|
repo = "gauge";
|
|
tag = "v${version}";
|
|
hash = "sha256-mUuoGLAVUShhNsSjURCL6yWcIW+K7P8KEBwBoBelgyw=";
|
|
};
|
|
|
|
vendorHash = "sha256-WyQbvZNd61L4Bz5btZ2hkrCTb5iuJJU5yNDzuYR5Sdc=";
|
|
|
|
excludedPackages = [
|
|
"build"
|
|
"man"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Light weight cross-platform test automation";
|
|
mainProgram = "gauge";
|
|
homepage = "https://gauge.org";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
vdemeester
|
|
marie
|
|
];
|
|
};
|
|
}
|