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