forked from mirrors/gomod2nix
tests.minikube: Fix test
This commit is contained in:
parent
6273e2cefb
commit
631293329e
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
, pkg-config
|
||||
, which
|
||||
, libvirt
|
||||
, vmnet
|
||||
, darwin
|
||||
}:
|
||||
|
||||
buildGoApplication rec {
|
||||
|
@ -26,7 +26,7 @@ buildGoApplication rec {
|
|||
|
||||
nativeBuildInputs = [ go-bindata installShellFiles pkg-config which ];
|
||||
|
||||
buildInputs = if stdenv.isDarwin then [ vmnet ] else if stdenv.isLinux then [ libvirt ] else null;
|
||||
buildInputs = if stdenv.isDarwin then [ darwin.apple_sdk.frameworks.vmnet ] else if stdenv.isLinux then [ libvirt ] else null;
|
||||
|
||||
buildPhase = ''
|
||||
make COMMIT=${src.rev}
|
||||
|
|
Loading…
Reference in a new issue