summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization/xhyve
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2016-12-19 19:45:45 -0500
committerDan Peebles <pumpkin@me.com>2016-12-19 19:47:24 -0500
commitf3b65f67d98a2e67c739d4b76b3340eda1dd06f4 (patch)
tree0f0fb2a31c45793b8944ab65aea5459445beea8c /pkgs/applications/virtualization/xhyve
parent377cef8d16c47df74d2653432d9bba968236c8a0 (diff)
xhyve: update and fix to use our Hypervisor framework
Diffstat (limited to 'pkgs/applications/virtualization/xhyve')
-rw-r--r--pkgs/applications/virtualization/xhyve/default.nix20
1 files changed, 13 insertions, 7 deletions
diff --git a/pkgs/applications/virtualization/xhyve/default.nix b/pkgs/applications/virtualization/xhyve/default.nix
index b7205ac000e2..c519784a6233 100644
--- a/pkgs/applications/virtualization/xhyve/default.nix
+++ b/pkgs/applications/virtualization/xhyve/default.nix
@@ -1,19 +1,25 @@
-{ stdenv, lib, fetchurl }:
+{ stdenv, lib, fetchurl, Hypervisor, vmnet, xpc, libobjc }:
stdenv.mkDerivation rec {
- name = "xhyve-${version}";
- version = "0.2.0";
+ name = "xhyve-${version}";
+ version = "1f1dbe305";
src = fetchurl {
- url = "https://github.com/mist64/xhyve/archive/v${version}.tar.gz";
- sha256 = "0g1vknnh88kxc8aaqv3j9wqhq45mm9xxxbn1vcrypj3kk9991hrj";
+ url = "https://github.com/mist64/xhyve/archive/1f1dbe3059904f885e4ab2b3328f4bb350ea5c37.tar.gz";
+ sha256 = "0hfix8yr90szlv2yyqb2rlq5qsrxyam8kg52sly0adja0cpwfjvx";
};
+ buildInputs = [ Hypervisor vmnet xpc libobjc ];
+
# Don't use git to determine version
- buildFlags = ''
- CFLAGS=-DVERSION=\"${version}\"
+ prePatch = ''
+ substituteInPlace Makefile \
+ --replace 'shell git describe --abbrev=6 --dirty --always --tags' "$version"
'';
+
+ makeFlags = [ "CFLAGS+=-Wno-shift-sign-overflow" ''CFLAGS+=-DVERSION=\"${version}\"'' ];
+
installPhase = ''
mkdir -p $out/bin
cp build/xhyve $out/bin