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

132 lines
4.3 KiB
Nix
Raw Normal View History

2018-02-26 22:50:46 +00:00
{ stdenv, fetchurl, fetchgit
, pkgconfig, makeWrapper, libtool, autoconf, automake
, coreutils, libxml2, gnutls, 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, zfs, parted, bridge-utils, dmidecode
2018-06-18 07:30:25 +00:00
, enableXen ? false, xen ? null
, enableIscsi ? false, openiscsi
}:
2017-03-23 20:26:37 +00:00
with stdenv.lib;
2018-02-26 22:50:46 +00:00
# if you update, also bump <nixpkgs/pkgs/development/python-modules/libvirt/default.nix> and SysVirt in <nixpkgs/pkgs/top-level/perl-packages.nix>
let
2018-03-09 13:29:36 +00:00
buildFromTarball = stdenv.isDarwin;
2018-02-26 22:50:46 +00:00
in stdenv.mkDerivation rec {
name = "libvirt-${version}";
2018-11-05 20:11:42 +00:00
version = "4.10.0";
2018-02-26 22:50:46 +00:00
src =
if buildFromTarball then
fetchurl {
url = "http://libvirt.org/sources/${name}.tar.xz";
2018-11-05 20:11:42 +00:00
sha256 = "0v17zzyyb25nn9l18v5244myg7590dp6ppwgi8xysipifc0q77bz";
2018-02-26 22:50:46 +00:00
}
else
fetchgit {
url = git://libvirt.org/libvirt.git;
rev = "v${version}";
2018-11-05 20:11:42 +00:00
sha256 = "0dlpv3v6jpbmgvhpn29ryp0w2a1xny8ciqid8hnlf3klahz9kwz9";
2018-02-26 22:50:46 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs = [
libxml2 gnutls perl python2 readline gettext libtasn1 libgcrypt yajl
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
2018-02-26 22:50:46 +00:00
] ++ optionals (!buildFromTarball) [
libtool autoconf automake
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isLinux [
libpciaccess lvm2 utillinux systemd libnl numad zfs
libapparmor libcap_ng numactl attr parted
2018-06-18 07:30:25 +00:00
] ++ optionals (enableXen && stdenv.isLinux && stdenv.isx86_64) [
xen
] ++ optionals enableIscsi [
openiscsi
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isDarwin [
libiconv gmp
];
2018-02-26 22:50:46 +00:00
preConfigure = ''
${ optionalString (!buildFromTarball) "./bootstrap --no-git --gnulib-srcdir=$(pwd)/.gnulib" }
PATH=${stdenv.lib.makeBinPath ([ dnsmasq ] ++ optionals stdenv.isLinux [ iproute iptables ebtables lvm2 systemd numad ] ++ optionals enableIscsi [ openiscsi ])}:$PATH
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",'
2018-02-26 22:50:46 +00:00
patchShebangs . # fixes /usr/bin/python references
'';
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/var/lib"
"--with-libpcap"
"--with-qemu"
"--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"
] ++ optionals enableIscsi [
"--with-storage-iscsi"
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isDarwin [
"--with-init-script=none"
];
installFlags = [
"localstatedir=$(TMPDIR)/var"
"sysconfdir=$(out)/var/lib"
];
postInstall = let
binPath = [ iptables iproute pmutils numad numactl bridge-utils dmidecode dnsmasq ebtables ] ++ optionals enableIscsi [ openiscsi ];
in ''
substituteInPlace $out/libexec/libvirt-guests.sh \
2018-02-26 22:50:46 +00:00
--replace 'ON_SHUTDOWN=suspend' 'ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}' \
--replace "$out/bin" '${gettext}/bin' \
--replace 'lock/subsys' 'lock' \
--replace 'gettext.sh' 'gettext.sh
# Added in nixpkgs:
gettext() { "${gettext}/bin/gettext" "$@"; }
'
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 binPath}
'';
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 ];
};
}