ginkgo: fix darwin build

This commit is contained in:
Stephan Heßelmann 2023-03-06 04:09:23 +01:00
parent 42edc0ce93
commit 9780b8e267

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";