mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
10d3e3a0f4
This is just easier to read.
26 lines
624 B
Nix
26 lines
624 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gauge";
|
|
version = "1.4.3";
|
|
|
|
excludedPackages = [ "build" "man" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getgauge";
|
|
repo = "gauge";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-TszZAREk6Hs2jULjftQAhHRIVKaZ8fw0NLJkBdr0FPw=";
|
|
};
|
|
|
|
vendorSha256 = "1wp19m5n85c7lsv8rvcbfz1bv4zhhb7dj1frkdh14cqx70s33q8r";
|
|
|
|
meta = with lib; {
|
|
description = "Light weight cross-platform test automation";
|
|
homepage = "https://gauge.org";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.vdemeester ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|