2022-02-20 05:27:41 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "gauge";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "1.6.8";
|
2024-05-15 15:35:15 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# adds a check which adds an error message when trying to
|
|
|
|
# install plugins imperatively when using the wrapper
|
|
|
|
./nix-check.patch
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "getgauge";
|
|
|
|
repo = "gauge";
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-ifE+6lwBYVZl0eAOCUTrqqTwVnKvCB44AHXTyLhsMX8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
vendorHash = "sha256-yh7hAKmt2qn2jmPKGF+ATvZd4miNHuHsKlFNaWibTJQ=";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
excludedPackages = [ "build" "man" ];
|
2022-02-20 05:27:41 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2022-02-20 05:27:41 +00:00
|
|
|
description = "Light weight cross-platform test automation";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "gauge";
|
2022-02-20 05:27:41 +00:00
|
|
|
homepage = "https://gauge.org";
|
|
|
|
license = licenses.asl20;
|
2024-05-15 15:35:15 +00:00
|
|
|
maintainers = with maintainers; [ vdemeester marie ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|