gauge: init at 0.9.6

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2018-01-02 10:27:48 +01:00
parent aaa7952b36
commit 52cdee8ebf
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3
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;
};