2018-01-02 10:27:48 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gauge";
|
2020-11-11 08:02:14 +01:00
|
|
|
version = "1.1.5";
|
2018-01-02 10:27:48 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/getgauge/gauge";
|
2018-03-11 15:22:06 +01:00
|
|
|
excludedPackages = ''\(build\|man\)'';
|
2018-01-02 10:27:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "getgauge";
|
|
|
|
repo = "gauge";
|
|
|
|
rev = "v${version}";
|
2020-11-11 08:02:14 +01:00
|
|
|
sha256 = "0jijw9x1ccqbb9kkzx1bj3wsq6v1415hvlbiihswqbb559bcmira";
|
2018-01-02 10:27:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Light weight cross-platform test automation";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gauge.org";
|
2018-01-02 10:27:48 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.vdemeester ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|