My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/goconvey/default.nix

28 lines
746 B

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "goconvey";
version = "1.7.2";
excludedPackages = "web/server/watch/integration_testing";
src = fetchFromGitHub {
owner = "smartystreets";
repo = "goconvey";
rev = "v${version}";
sha256 = "sha256-YT9M9VaLIGUo6pdkaLWLtomcjrDqdnOqwl+C9UwDmT8=";
};
vendorSha256 = "sha256-sHyK/4YdNCLCDjxjMKygWAVRnHZ1peYjYRYyEcqoe+E=";
ldflags = [ "-s" "-w" ];
checkFlags = [ "-short" ];
meta = {
description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go";
homepage = "https://github.com/smartystreets/goconvey";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ vdemeester ];
};
}