Merge pull request #33316 from vdemeester/init-gauge

gauge: init at 0.9.6

Changed files
+25
pkgs
development
tools
gauge
top-level
+23
pkgs/development/tools/gauge/default.nix
···
+
{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+
buildGoPackage rec {
+
name = "gauge-${version}";
+
version = "0.9.6";
+
+
goPackagePath = "github.com/getgauge/gauge";
+
+
src = fetchFromGitHub {
+
owner = "getgauge";
+
repo = "gauge";
+
rev = "v${version}";
+
sha256 = "0p2bnrzgx616jbyr9h4h9azaq7ry63z4qkwgy0ivwrpmhfqfqwmh";
+
};
+
+
meta = with stdenv.lib; {
+
description = "Light weight cross-platform test automation";
+
homepage = http://gauge.org;
+
license = licenses.gpl3;
+
maintainers = [ maintainers.vdemeester ];
+
platforms = platforms.unix;
+
};
+
}
+2
pkgs/top-level/all-packages.nix
···
garmintools = callPackage ../development/libraries/garmintools {};
+
gauge = callPackage ../development/tools/gauge { };
+
gawk = callPackage ../tools/text/gawk {
inherit (darwin) locale;
};