mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
ginkgo: fix darwin build
This commit is contained in:
parent
42edc0ce93
commit
9780b8e267
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user