lol
1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "gauge";
5 version = "1.4.3";
6
7 excludedPackages = [ "build" "man" ];
8
9 src = fetchFromGitHub {
10 owner = "getgauge";
11 repo = "gauge";
12 rev = "v${version}";
13 sha256 = "sha256-TszZAREk6Hs2jULjftQAhHRIVKaZ8fw0NLJkBdr0FPw=";
14 };
15
16 vendorSha256 = "1wp19m5n85c7lsv8rvcbfz1bv4zhhb7dj1frkdh14cqx70s33q8r";
17
18 meta = with lib; {
19 description = "Light weight cross-platform test automation";
20 homepage = "https://gauge.org";
21 license = licenses.asl20;
22 maintainers = [ maintainers.vdemeester ];
23 platforms = platforms.unix;
24 };
25}