2022-02-11 15:43:55 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-01-02 09:27:48 +00:00
|
|
|
|
2022-02-11 15:43:55 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gauge";
|
2024-04-08 20:51:48 +00:00
|
|
|
version = "1.6.6";
|
2018-01-02 09:27:48 +00:00
|
|
|
|
2024-02-27 11:19:31 +00:00
|
|
|
patches = [
|
|
|
|
# adds a check which adds an error message when trying to
|
|
|
|
# install plugins imperatively when using the wrapper
|
|
|
|
./nix-check.patch
|
|
|
|
];
|
|
|
|
|
2018-01-02 09:27:48 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "getgauge";
|
|
|
|
repo = "gauge";
|
|
|
|
rev = "v${version}";
|
2024-04-08 20:51:48 +00:00
|
|
|
hash = "sha256-u64LEDWktnBqGmey1TGdpVerjBsgyyRKJKeAJU3ysZs=";
|
2018-01-02 09:27:48 +00:00
|
|
|
};
|
|
|
|
|
2024-04-08 20:51:48 +00:00
|
|
|
vendorHash = "sha256-RC3oS4nD291p8BSiWZUmsej/XuadaR7Xz1+bEfZL3Oc=";
|
2023-07-04 05:18:42 +00:00
|
|
|
|
|
|
|
excludedPackages = [ "build" "man" ];
|
2022-02-11 15:43:55 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2022-02-11 15:43:55 +00:00
|
|
|
description = "Light weight cross-platform test automation";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "gauge";
|
2022-02-11 15:43:55 +00:00
|
|
|
homepage = "https://gauge.org";
|
|
|
|
license = licenses.asl20;
|
2024-03-11 10:57:26 +00:00
|
|
|
maintainers = with maintainers; [ vdemeester marie ];
|
2018-01-02 09:27:48 +00:00
|
|
|
};
|
|
|
|
}
|