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

139 lines
4.7 KiB
Nix
Raw Normal View History

2018-02-26 22:50:46 +00:00
{ stdenv, fetchurl, fetchgit
2020-03-09 06:29:46 +00:00
, pkgconfig, makeWrapper, autoreconfHook, fetchpatch
2020-02-27 05:53:31 +00:00
, coreutils, libxml2, gnutls, perl, python2, attr, glib, docutils
, 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
2020-04-15 17:43:30 +01:00
, curl, libiconv, gmp, zfs, parted, bridge-utils, dmidecode, dbus
2018-06-18 08:30:25 +01:00
, enableXen ? false, xen ? null
, enableIscsi ? false, openiscsi
, enableCeph ? false, ceph
}:
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 {
pname = "libvirt";
2020-04-09 10:30:14 +01:00
version = "6.2.0";
2018-02-26 22:50:46 +00:00
src =
if buildFromTarball then
fetchurl {
url = "http://libvirt.org/sources/${pname}-${version}.tar.xz";
2020-04-09 10:30:14 +01:00
sha256 = "1c8grqf751blsgs15wx2p05wvankdrady6290vwc85v94cgqij5f";
2018-02-26 22:50:46 +00:00
}
else
fetchgit {
url = "git://libvirt.org/libvirt.git";
2018-02-26 22:50:46 +00:00
rev = "v${version}";
2020-04-09 10:30:14 +01:00
sha256 = "1wyihi8bhwsck9b7f3b8yhlz145sjdyyj3ykjiszrqnp0y99xxy2";
2018-02-26 22:50:46 +00:00
fetchSubmodules = true;
};
2020-03-09 06:29:46 +00:00
nativeBuildInputs = [ makeWrapper pkgconfig docutils ] ++ optionals (!buildFromTarball) [ autoreconfHook ];
buildInputs = [
libxml2 gnutls perl python2 readline gettext libtasn1 libgcrypt yajl
2020-04-15 17:43:30 +01:00
libxslt xhtml1 perlPackages.XMLXPath curl libpcap glib dbus
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 08:30:25 +01:00
] ++ optionals (enableXen && stdenv.isLinux && stdenv.isx86_64) [
xen
] ++ optionals enableIscsi [
openiscsi
] ++ optionals enableCeph [
ceph
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isDarwin [
libiconv gmp
];
2018-02-26 22:50:46 +00:00
preConfigure = ''
PATH=${stdenv.lib.makeBinPath ([ dnsmasq ] ++ optionals stdenv.isLinux [ iproute iptables ebtables lvm2 systemd numad ] ++ optionals enableIscsi [ openiscsi ])}:$PATH
2017-08-02 02:18:57 +01: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",'
patchShebangs . # fixes /usr/bin/python references
2020-02-27 05:53:31 +00:00
mkdir -p build && cd build
'';
2020-02-27 05:53:31 +00:00
configureScript = "../configure";
dontAddDisableDepTrack = true;
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/var/lib"
"--with-libpcap"
"--with-qemu"
"--with-vmware"
"--with-vbox"
"--with-test"
"--with-esx"
"--with-remote"
2020-04-15 17:43:30 +01:00
"--with-polkit"
2017-03-23 20:26:37 +00:00
] ++ optionals stdenv.isLinux [
"QEMU_BRIDGE_HELPER=/run/wrappers/bin/qemu-bridge-helper"
"QEMU_PR_HELPER=/run/libvirt/nix-helpers/qemu-pr-helper"
"EBTABLES_PATH=${ebtables}/bin/ebtables-legacy"
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"
2017-06-05 06:50:46 +01:00
"--with-storage-disk"
2017-07-20 22:31:04 +01:00
] ++ optionals (stdenv.isLinux && zfs != null) [
2016-05-23 03:03:41 +01:00
"--with-storage-zfs"
] ++ optionals enableIscsi [
"--with-storage-iscsi"
] ++ optionals enableCeph [
"--with-storage-rbd"
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 \
--replace 'ON_BOOT=start' 'ON_BOOT=''${ON_BOOT:-start}' \
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 08:24:49 +01:00
substituteInPlace $out/lib/systemd/system/libvirtd.service --replace /bin/kill ${coreutils}/bin/kill
2017-06-05 06:50:46 +01: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;
maintainers = with maintainers; [ fpletz globin ];
};
}