about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/goconvey/default.nix
blob: 0ec9afb6101c547cbde540fd588abb43ccbfc757 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "goconvey";
  version = "1.8.1-unstable-2024-03-06";

  excludedPackages = "web/server/watch/integration_testing";

  src = fetchFromGitHub {
    owner = "smartystreets";
    repo = "goconvey";
    rev = "a50310f1e3e53e63e2d23eb904f853aa388a5988";
    hash = "sha256-w5eX/n6Wu2gYgCIhgtjqH3lNckWIDaN4r80cJW3JqFo=";
  };

  vendorHash = "sha256-P4J/CZY95ks08DC+gSqG+eanL3zoiaoz1d9/ZvBoc9Q=";

  ldflags = [ "-s" "-w" ];

  preCheck = ''
    buildFlagsArray+="-short"
  '';

  meta = {
    description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go";
    mainProgram = "goconvey";
    homepage = "https://github.com/smartystreets/goconvey";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ vdemeester ];
  };
}