Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gauge: init at 0.9.6

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

+25
+23
pkgs/development/tools/gauge/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "gauge-${version}"; 5 + version = "0.9.6"; 6 + 7 + goPackagePath = "github.com/getgauge/gauge"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "getgauge"; 11 + repo = "gauge"; 12 + rev = "v${version}"; 13 + sha256 = "0p2bnrzgx616jbyr9h4h9azaq7ry63z4qkwgy0ivwrpmhfqfqwmh"; 14 + }; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Light weight cross-platform test automation"; 18 + homepage = http://gauge.org; 19 + license = licenses.gpl3; 20 + maintainers = [ maintainers.vdemeester ]; 21 + platforms = platforms.unix; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 2238 2238 2239 2239 garmintools = callPackage ../development/libraries/garmintools {}; 2240 2240 2241 + gauge = callPackage ../development/tools/gauge { }; 2242 + 2241 2243 gawk = callPackage ../tools/text/gawk { 2242 2244 inherit (darwin) locale; 2243 2245 };