2018-01-02 01:27:48 -08:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gauge";
|
2019-01-28 07:17:54 -08:00
|
|
|
version = "1.0.4";
|
2018-01-02 01:27:48 -08:00
|
|
|
|
|
|
|
goPackagePath = "github.com/getgauge/gauge";
|
2018-03-11 07:22:06 -07:00
|
|
|
excludedPackages = ''\(build\|man\)'';
|
2018-01-02 01:27:48 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "getgauge";
|
|
|
|
repo = "gauge";
|
|
|
|
rev = "v${version}";
|
2019-01-28 07:17:54 -08:00
|
|
|
sha256 = "1b52kpv5561pyjvqi8xmidarqp6lcyyy4sjsl4qjx4cr7hmk8kc7";
|
2018-01-02 01:27:48 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Light weight cross-platform test automation";
|
2018-04-30 20:03:23 -07:00
|
|
|
homepage = https://gauge.org;
|
2018-01-02 01:27:48 -08:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.vdemeester ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|