Merge pull request #33316 from vdemeester/init-gauge

gauge: init at 0.9.6
This commit is contained in:
Jörg Thalheim 2018-01-02 14:18:53 +01:00 committed by GitHub
commit 57a67a458f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ 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;
};
}

View File

@ -2238,6 +2238,8 @@ with pkgs;
garmintools = callPackage ../development/libraries/garmintools {};
gauge = callPackage ../development/tools/gauge { };
gawk = callPackage ../tools/text/gawk {
inherit (darwin) locale;
};