mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
gauge: init at 0.9.6
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
parent
aaa7952b36
commit
52cdee8ebf
23
pkgs/development/tools/gauge/default.nix
Normal file
23
pkgs/development/tools/gauge/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -2238,6 +2238,8 @@ with pkgs;
|
|||||||
|
|
||||||
garmintools = callPackage ../development/libraries/garmintools {};
|
garmintools = callPackage ../development/libraries/garmintools {};
|
||||||
|
|
||||||
|
gauge = callPackage ../development/tools/gauge { };
|
||||||
|
|
||||||
gawk = callPackage ../tools/text/gawk {
|
gawk = callPackage ../tools/text/gawk {
|
||||||
inherit (darwin) locale;
|
inherit (darwin) locale;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user