Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / gauge / default.nix
blob2884ee13ee426b212b64e44dab8425bbebaf7359
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gauge";
5   version = "1.5.4";
7   src = fetchFromGitHub {
8     owner = "getgauge";
9     repo = "gauge";
10     rev = "v${version}";
11     hash = "sha256-BJyc8umtJUsZgj4jdoYf6PSaDg41mnrZNd6rAdewWro=";
12   };
14   vendorHash = "sha256-K0LoAJzYzQorKp3o1oH5qruMBbJiCQrduBgoZ0naaLc=";
16   excludedPackages = [ "build" "man" ];
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   };