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
|
, pkg-config
|
||||||
, which
|
, which
|
||||||
, libvirt
|
, libvirt
|
||||||
, vmnet
|
, darwin
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoApplication rec {
|
buildGoApplication rec {
|
||||||
|
@ -26,7 +26,7 @@ buildGoApplication rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ go-bindata installShellFiles pkg-config which ];
|
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 = ''
|
buildPhase = ''
|
||||||
make COMMIT=${src.rev}
|
make COMMIT=${src.rev}
|
||||||
|
|
Loading…
Reference in a new issue