nixpkgs/pkgs/development/tools/gauge/default.nix
Vincent Demeester 2e17793e13 gauge: 1.0.0 -> 1.0.2 (#47465)
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-09-28 19:59:17 +02:00

25 lines
622 B
Nix

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