nixpkgs/pkgs/development/tools/gauge/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
587 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gauge";
2023-09-23 10:27:38 +02:00
version = "1.5.4";
src = fetchFromGitHub {
owner = "getgauge";
repo = "gauge";
rev = "v${version}";
2023-09-23 10:27:38 +02:00
hash = "sha256-BJyc8umtJUsZgj4jdoYf6PSaDg41mnrZNd6rAdewWro=";
};
2023-09-23 10:27:38 +02:00
vendorHash = "sha256-K0LoAJzYzQorKp3o1oH5qruMBbJiCQrduBgoZ0naaLc=";
2023-07-04 07:18:42 +02:00
excludedPackages = [ "build" "man" ];
meta = with lib; {
description = "Light weight cross-platform test automation";
homepage = "https://gauge.org";
license = licenses.asl20;
maintainers = [ maintainers.vdemeester ];
};
}