nixpkgs/pkgs/applications/virtualization/xhyve/default.nix

35 lines
960 B
Nix
Raw Normal View History

2019-02-15 22:10:19 +00:00
{ stdenv, lib, fetchurl, Hypervisor, vmnet, xpc, libobjc, zlib }:
stdenv.mkDerivation rec {
pname = "xhyve";
2019-02-15 22:10:19 +00:00
version = "20190124";
src = fetchurl {
2019-02-15 22:10:19 +00:00
url = "https://github.com/machyve/xhyve/archive/1dd9a5165848c7ed56dafc41932c553ea56a12af.tar.gz";
sha256 = "18zd74pd0azf43csbqb14srbyclfgx28dpgm8ygjmbcazbnipc1k";
};
2019-02-15 22:10:19 +00:00
buildInputs = [ Hypervisor vmnet xpc libobjc zlib ];
2015-09-17 11:27:12 +00:00
# Don't use git to determine version
prePatch = ''
substituteInPlace Makefile \
--replace 'shell git describe --abbrev=6 --dirty --always --tags' "$version"
2015-09-17 11:27:12 +00:00
'';
makeFlags = [ "CFLAGS+=-Wno-shift-sign-overflow" ''CFLAGS+=-DVERSION=\"${version}\"'' ];
installPhase = ''
mkdir -p $out/bin
cp build/xhyve $out/bin
'';
meta = {
description = "Lightweight Virtualization on macOS Based on bhyve";
homepage = https://github.com/mist64/xhyve;
maintainers = [ lib.maintainers.lnl7 ];
platforms = lib.platforms.darwin;
};
}