biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / goconvey / default.nix
blob0ec9afb6101c547cbde540fd588abb43ccbfc757
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "goconvey";
5   version = "1.8.1-unstable-2024-03-06";
7   excludedPackages = "web/server/watch/integration_testing";
9   src = fetchFromGitHub {
10     owner = "smartystreets";
11     repo = "goconvey";
12     rev = "a50310f1e3e53e63e2d23eb904f853aa388a5988";
13     hash = "sha256-w5eX/n6Wu2gYgCIhgtjqH3lNckWIDaN4r80cJW3JqFo=";
14   };
16   vendorHash = "sha256-P4J/CZY95ks08DC+gSqG+eanL3zoiaoz1d9/ZvBoc9Q=";
18   ldflags = [ "-s" "-w" ];
20   preCheck = ''
21     buildFlagsArray+="-short"
22   '';
24   meta = {
25     description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go";
26     mainProgram = "goconvey";
27     homepage = "https://github.com/smartystreets/goconvey";
28     license = lib.licenses.mit;
29     maintainers = with lib.maintainers; [ vdemeester ];
30   };