60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
24 lines
587 B
Nix
24 lines
587 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gauge";
|
|
version = "1.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getgauge";
|
|
repo = "gauge";
|
|
rev = "v${version}";
|
|
hash = "sha256-dgSrjSAO0MwVML07gIqI9hIgRu+Pgv2jZOItSFd0DVU=";
|
|
};
|
|
|
|
vendorHash = "sha256-IGxETjZ2RCvhcA7XUQYbr2jf+9P/WReuAOLIpE3kyes=";
|
|
|
|
excludedPackages = [ "build" "man" ];
|
|
|
|
meta = with lib; {
|
|
description = "Light weight cross-platform test automation";
|
|
homepage = "https://gauge.org";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.vdemeester ];
|
|
};
|
|
}
|