nixpkgs/pkgs/development/tools/gauge/default.nix
Vincent Demeester f89b4fc4b1
gauge: 1.0.3 -> 1.0.4
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2019-01-28 16:17:54 +01:00

25 lines
622 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gauge-${version}";
version = "1.0.4";
goPackagePath = "github.com/getgauge/gauge";
excludedPackages = ''\(build\|man\)'';
src = fetchFromGitHub {
owner = "getgauge";
repo = "gauge";
rev = "v${version}";
sha256 = "1b52kpv5561pyjvqi8xmidarqp6lcyyy4sjsl4qjx4cr7hmk8kc7";
};
meta = with stdenv.lib; {
description = "Light weight cross-platform test automation";
homepage = https://gauge.org;
license = licenses.gpl3;
maintainers = [ maintainers.vdemeester ];
platforms = platforms.unix;
};
}