nixpkgs/pkgs/development/tools/gauge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
788 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gauge";
2024-04-08 20:51:48 +00:00
version = "1.6.6";
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";
rev = "v${version}";
2024-04-08 20:51:48 +00:00
hash = "sha256-u64LEDWktnBqGmey1TGdpVerjBsgyyRKJKeAJU3ysZs=";
};
2024-04-08 20:51:48 +00:00
vendorHash = "sha256-RC3oS4nD291p8BSiWZUmsej/XuadaR7Xz1+bEfZL3Oc=";
2023-07-04 05:18:42 +00:00
excludedPackages = [ "build" "man" ];
meta = with lib; {
description = "Light weight cross-platform test automation";
mainProgram = "gauge";
homepage = "https://gauge.org";
license = licenses.asl20;
2024-03-11 10:57:26 +00:00
maintainers = with maintainers; [ vdemeester marie ];
};
}