Merge pull request #219793 from stehessel/ginkgo-fix-darwin-build

ginkgo: fix darwin tests
This commit is contained in:
Weijia Wang
2023-03-06 15:49:11 +02:00
committed by GitHub
+8 -1
View File
@@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, testers, ginkgo }:
buildGoModule rec {
pname = "ginkgo";
@@ -16,6 +16,13 @@ buildGoModule rec {
# types tests are missing CodeLocation
excludedPackages = [ "integration" "types" ];
__darwinAllowLocalNetworking = true;
passthru.tests.version = testers.testVersion {
package = ginkgo;
command = "ginkgo version";
};
meta = with lib; {
homepage = "https://onsi.github.io/ginkgo/";
changelog = "https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md";