nixpkgs/pkgs/development/libraries/libvirt/default.nix

111 lines
3.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch
, pkgconfig, makeWrapper
2017-08-02 01:18:57 +00:00
, coreutils, libxml2, gnutls, devicemapper, perl, python2, attr
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
2017-03-25 13:58:26 +00:00
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng, libapparmor
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
, curl, libiconv, gmp, xen, zfs, parted
}:
2017-03-23 20:26:37 +00:00
with stdenv.lib;
# if you update, also bump <nixpkgs/pkgs/development/python-modules/libvirt/default.nix> or it will break
stdenv.mkDerivation rec {
name = "libvirt-${version}";
2017-12-07 15:16:59 +00:00
version = "3.10.0";
src = fetchurl {
url = "http://libvirt.org/sources/${name}.tar.xz";
2017-12-07 15:16:59 +00:00
sha256 = "03kb37iv3dvvdlslznlc0njvjpmq082lczmsslz5p4fcwb50kwfz";
};
patches = [ ./build-on-bsd.patch ];
nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs = [
libxml2 gnutls perl python2 readline gettext libtasn1 libgcrypt yajl
2017-06-05 05:50:46 +00:00
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isLinux [
libpciaccess devicemapper lvm2 utillinux systemd libnl numad zfs
libapparmor libcap_ng numactl attr parted
] ++ optionals (stdenv.isLinux && stdenv.isx86_64) [
xen
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isDarwin [
libiconv gmp
];
2017-03-23 20:26:37 +00:00
preConfigure = optionalString stdenv.isLinux ''
2016-08-22 22:13:49 +00:00
PATH=${stdenv.lib.makeBinPath [ iproute iptables ebtables lvm2 systemd ]}:$PATH
2016-07-01 18:12:33 +00:00
substituteInPlace configure \
--replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"'
2017-08-02 01:18:57 +00:00
# the path to qemu-kvm will be stored in VM's .xml and .save files
# do not use "''${qemu_kvm}/bin/qemu-kvm" to avoid bound VMs to particular qemu derivations
substituteInPlace src/lxc/lxc_conf.c \
--replace 'lxc_path,' '"/run/libvirt/nix-emulators/libvirt_lxc",'
'' + ''
PATH=${dnsmasq}/bin:$PATH
patchShebangs . # fixes /usr/bin/python references
'';
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/var/lib"
"--with-libpcap"
"--with-vmware"
"--with-vbox"
"--with-test"
"--with-esx"
"--with-remote"
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isLinux [
2017-03-25 13:58:26 +00:00
"--with-attr"
"--with-apparmor"
"--with-secdriver-apparmor"
2015-12-15 18:55:39 +00:00
"--with-numad"
"--with-macvtap"
"--with-virtualport"
"--with-init-script=systemd+redhat"
2017-06-05 05:50:46 +00:00
"--with-storage-disk"
2017-07-20 21:31:04 +00:00
] ++ optionals (stdenv.isLinux && zfs != null) [
2016-05-23 02:03:41 +00:00
"--with-storage-zfs"
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isDarwin [
"--with-init-script=none"
];
installFlags = [
"localstatedir=$(TMPDIR)/var"
"sysconfdir=$(out)/var/lib"
];
postInstall = ''
sed -i 's/ON_SHUTDOWN=suspend/ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}/' $out/libexec/libvirt-guests.sh
substituteInPlace $out/libexec/libvirt-guests.sh \
--replace "$out/bin" "${gettext}/bin" \
--replace "lock/subsys" "lock"
sed -e "/gettext\.sh/a \\\n# Added in nixpkgs:\ngettext() { \"${gettext}/bin/gettext\" \"\$@\"; }" \
-i "$out/libexec/libvirt-guests.sh"
2017-08-02 01:18:57 +00:00
2017-03-23 20:26:37 +00:00
'' + optionalString stdenv.isLinux ''
2017-09-03 07:24:49 +00:00
substituteInPlace $out/lib/systemd/system/libvirtd.service --replace /bin/kill ${coreutils}/bin/kill
2017-06-05 05:50:46 +00:00
rm $out/lib/systemd/system/{virtlockd,virtlogd}.*
wrapProgram $out/sbin/libvirtd \
--prefix PATH : /run/libvirt/nix-emulators:${makeBinPath [ iptables iproute pmutils numad numactl ]}
'';
enableParallelBuilding = true;
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
2017-03-23 20:26:37 +00:00
meta = {
homepage = http://libvirt.org/;
repositories.git = git://libvirt.org/libvirt.git;
description = ''
A toolkit to interact with the virtualization capabilities of recent
versions of Linux (and other OSes)
'';
license = licenses.lgpl2Plus;
platforms = platforms.unix;
2016-03-19 15:33:49 +00:00
maintainers = with maintainers; [ fpletz ];
};
}