Merge pull request #35687 from volth/libvirt-4.1.0
libvirt: 3.10.0 -> 4.1.0
This commit is contained in:
commit
86dd3f854b
@ -119,17 +119,9 @@ in {
|
|||||||
after = [ "systemd-udev-settle.service" ]
|
after = [ "systemd-udev-settle.service" ]
|
||||||
++ optional vswitch.enable "vswitchd.service";
|
++ optional vswitch.enable "vswitchd.service";
|
||||||
|
|
||||||
environment = {
|
environment.LIBVIRTD_ARGS = ''--config "${configFile}" ${concatStringsSep " " cfg.extraOptions}'';
|
||||||
LIBVIRTD_ARGS = ''--config "${configFile}" ${concatStringsSep " " cfg.extraOptions}'';
|
|
||||||
};
|
|
||||||
|
|
||||||
path = with pkgs; [
|
path = [ cfg.qemuPackage ] # libvirtd requires qemu-img to manage disk images
|
||||||
bridge-utils
|
|
||||||
dmidecode
|
|
||||||
dnsmasq
|
|
||||||
ebtables
|
|
||||||
cfg.qemuPackage # libvirtd requires qemu-img to manage disk images
|
|
||||||
]
|
|
||||||
++ optional vswitch.enable vswitch.package;
|
++ optional vswitch.enable vswitch.package;
|
||||||
|
|
||||||
preStart = ''
|
preStart = ''
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
{ stdenv, fetchurl, ocamlPackages }:
|
{ stdenv, fetchgit, ocamlPackages, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "virt-top-${version}";
|
name = "virt-top-${version}";
|
||||||
version = "1.0.8";
|
version = "2017-11-18-unstable";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "https://people.redhat.com/~rjones/virt-top/files/virt-top-${version}.tar.gz";
|
url = git://git.annexia.org/git/virt-top.git;
|
||||||
sha256 = "04i1sf2d3ghilmzvr2vh74qcy009iifyc2ymj9kxnbkp97lrz13w";
|
rev = "18a751d8c26548bb090ff05e30ccda3092e3373b";
|
||||||
|
sha256 = "0c4whjvw7p3yvd476i4ppdhi8j821r5y6caqrj2v9dc181cnp01i";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = with ocamlPackages; [ ocaml findlib ocaml_extlib ocaml_libvirt ocaml_gettext curses csv xml-light ];
|
buildInputs = with ocamlPackages; [ ocaml findlib ocaml_extlib ocaml_libvirt ocaml_gettext curses csv xml-light ];
|
||||||
|
|
||||||
buildPhase = "make opt";
|
buildPhase = "make opt";
|
||||||
|
@ -1,58 +0,0 @@
|
|||||||
diff -Naur libvirt-1.3.0.orig/src/admin/admin_protocol.c libvirt-1.3.0/src/admin/admin_protocol.c
|
|
||||||
--- libvirt-1.3.0.orig/src/admin/admin_protocol.c 2015-12-02 16:17:07.000000000 +0100
|
|
||||||
+++ libvirt-1.3.0/src/admin/admin_protocol.c 2016-01-04 17:57:10.043412857 +0100
|
|
||||||
@@ -6,6 +6,25 @@
|
|
||||||
|
|
||||||
#include "admin_protocol.h"
|
|
||||||
|
|
||||||
+/* cygwin's xdr implementation defines xdr_u_int64_t instead of xdr_uint64_t
|
|
||||||
+ * and lacks IXDR_PUT_INT32 and IXDR_GET_INT32
|
|
||||||
+ */
|
|
||||||
+#ifdef HAVE_XDR_U_INT64_T
|
|
||||||
+# define xdr_uint64_t xdr_u_int64_t
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_PUT_INT32
|
|
||||||
+# define IXDR_PUT_INT32 IXDR_PUT_LONG
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_GET_INT32
|
|
||||||
+# define IXDR_GET_INT32 IXDR_GET_LONG
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_PUT_U_INT32
|
|
||||||
+# define IXDR_PUT_U_INT32 IXDR_PUT_U_LONG
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_GET_U_INT32
|
|
||||||
+# define IXDR_GET_U_INT32 IXDR_GET_U_LONG
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
bool_t
|
|
||||||
xdr_admin_nonnull_string (XDR *xdrs, admin_nonnull_string *objp)
|
|
||||||
{
|
|
||||||
diff -Naur libvirt-1.3.0.orig/src/logging/log_protocol.c libvirt-1.3.0/src/logging/log_protocol.c
|
|
||||||
--- libvirt-1.3.0.orig/src/logging/log_protocol.c 2015-12-08 13:07:35.000000000 +0100
|
|
||||||
+++ libvirt-1.3.0/src/logging/log_protocol.c 2016-01-04 17:56:50.673463563 +0100
|
|
||||||
@@ -7,6 +7,25 @@
|
|
||||||
#include "log_protocol.h"
|
|
||||||
#include "internal.h"
|
|
||||||
|
|
||||||
+/* cygwin's xdr implementation defines xdr_u_int64_t instead of xdr_uint64_t
|
|
||||||
+ * and lacks IXDR_PUT_INT32 and IXDR_GET_INT32
|
|
||||||
+ */
|
|
||||||
+#ifdef HAVE_XDR_U_INT64_T
|
|
||||||
+# define xdr_uint64_t xdr_u_int64_t
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_PUT_INT32
|
|
||||||
+# define IXDR_PUT_INT32 IXDR_PUT_LONG
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_GET_INT32
|
|
||||||
+# define IXDR_GET_INT32 IXDR_GET_LONG
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_PUT_U_INT32
|
|
||||||
+# define IXDR_PUT_U_INT32 IXDR_PUT_U_LONG
|
|
||||||
+#endif
|
|
||||||
+#ifndef IXDR_GET_U_INT32
|
|
||||||
+# define IXDR_GET_U_INT32 IXDR_GET_U_LONG
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
bool_t
|
|
||||||
xdr_virLogManagerProtocolUUID (XDR *xdrs, virLogManagerProtocolUUID objp)
|
|
||||||
{
|
|
@ -1,30 +1,41 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch
|
{ stdenv, fetchurl, fetchgit
|
||||||
, pkgconfig, makeWrapper
|
, pkgconfig, makeWrapper, libtool, autoconf, automake
|
||||||
, coreutils, libxml2, gnutls, devicemapper, perl, python2, attr
|
, coreutils, libxml2, gnutls, devicemapper, perl, python2, attr
|
||||||
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
|
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
|
||||||
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng, libapparmor
|
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng, libapparmor
|
||||||
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
|
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
|
||||||
, curl, libiconv, gmp, xen, zfs, parted
|
, curl, libiconv, gmp, xen, zfs, parted, bridge-utils, dmidecode
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
# if you update, also bump <nixpkgs/pkgs/development/python-modules/libvirt/default.nix> or it will break
|
# if you update, also bump <nixpkgs/pkgs/development/python-modules/libvirt/default.nix> and SysVirt in <nixpkgs/pkgs/top-level/perl-packages.nix>
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
|
buildFromTarball = stdenv.isDarwin;
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
name = "libvirt-${version}";
|
name = "libvirt-${version}";
|
||||||
version = "3.10.0";
|
version = "4.1.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src =
|
||||||
|
if buildFromTarball then
|
||||||
|
fetchurl {
|
||||||
url = "http://libvirt.org/sources/${name}.tar.xz";
|
url = "http://libvirt.org/sources/${name}.tar.xz";
|
||||||
sha256 = "03kb37iv3dvvdlslznlc0njvjpmq082lczmsslz5p4fcwb50kwfz";
|
sha256 = "0fb466mcma21hsxx3cckllbr9hhncpbwim5px1mr66iidy1a8bwa";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
fetchgit {
|
||||||
|
url = git://libvirt.org/libvirt.git;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "01021r7i71dw9w7ffp6ia8h70ns6bc0ps5np0hq9nipxs68finm6";
|
||||||
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./build-on-bsd.patch ];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libxml2 gnutls perl python2 readline gettext libtasn1 libgcrypt yajl
|
libxml2 gnutls perl python2 readline gettext libtasn1 libgcrypt yajl
|
||||||
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
|
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
|
||||||
|
] ++ optionals (!buildFromTarball) [
|
||||||
|
libtool autoconf automake
|
||||||
] ++ optionals stdenv.isLinux [
|
] ++ optionals stdenv.isLinux [
|
||||||
libpciaccess devicemapper lvm2 utillinux systemd libnl numad zfs
|
libpciaccess devicemapper lvm2 utillinux systemd libnl numad zfs
|
||||||
libapparmor libcap_ng numactl attr parted
|
libapparmor libcap_ng numactl attr parted
|
||||||
@ -34,17 +45,16 @@ stdenv.mkDerivation rec {
|
|||||||
libiconv gmp
|
libiconv gmp
|
||||||
];
|
];
|
||||||
|
|
||||||
preConfigure = optionalString stdenv.isLinux ''
|
preConfigure = ''
|
||||||
PATH=${stdenv.lib.makeBinPath [ iproute iptables ebtables lvm2 systemd ]}:$PATH
|
${ optionalString (!buildFromTarball) "./bootstrap --no-git --gnulib-srcdir=$(pwd)/.gnulib" }
|
||||||
substituteInPlace configure \
|
|
||||||
--replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"'
|
PATH=${stdenv.lib.makeBinPath ([ dnsmasq ] ++ optionals stdenv.isLinux [ iproute iptables ebtables lvm2 systemd numad ])}:$PATH
|
||||||
|
|
||||||
# the path to qemu-kvm will be stored in VM's .xml and .save files
|
# 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
|
# do not use "''${qemu_kvm}/bin/qemu-kvm" to avoid bound VMs to particular qemu derivations
|
||||||
substituteInPlace src/lxc/lxc_conf.c \
|
substituteInPlace src/lxc/lxc_conf.c \
|
||||||
--replace 'lxc_path,' '"/run/libvirt/nix-emulators/libvirt_lxc",'
|
--replace 'lxc_path,' '"/run/libvirt/nix-emulators/libvirt_lxc",'
|
||||||
'' + ''
|
|
||||||
PATH=${dnsmasq}/bin:$PATH
|
|
||||||
patchShebangs . # fixes /usr/bin/python references
|
patchShebangs . # fixes /usr/bin/python references
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@ -78,18 +88,19 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
sed -i 's/ON_SHUTDOWN=suspend/ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}/' $out/libexec/libvirt-guests.sh
|
|
||||||
substituteInPlace $out/libexec/libvirt-guests.sh \
|
substituteInPlace $out/libexec/libvirt-guests.sh \
|
||||||
--replace "$out/bin" "${gettext}/bin" \
|
--replace 'ON_SHUTDOWN=suspend' 'ON_SHUTDOWN=''${ON_SHUTDOWN:-suspend}' \
|
||||||
--replace "lock/subsys" "lock"
|
--replace "$out/bin" '${gettext}/bin' \
|
||||||
sed -e "/gettext\.sh/a \\\n# Added in nixpkgs:\ngettext() { \"${gettext}/bin/gettext\" \"\$@\"; }" \
|
--replace 'lock/subsys' 'lock' \
|
||||||
-i "$out/libexec/libvirt-guests.sh"
|
--replace 'gettext.sh' 'gettext.sh
|
||||||
|
# Added in nixpkgs:
|
||||||
|
gettext() { "${gettext}/bin/gettext" "$@"; }
|
||||||
|
'
|
||||||
'' + optionalString stdenv.isLinux ''
|
'' + optionalString stdenv.isLinux ''
|
||||||
substituteInPlace $out/lib/systemd/system/libvirtd.service --replace /bin/kill ${coreutils}/bin/kill
|
substituteInPlace $out/lib/systemd/system/libvirtd.service --replace /bin/kill ${coreutils}/bin/kill
|
||||||
rm $out/lib/systemd/system/{virtlockd,virtlogd}.*
|
rm $out/lib/systemd/system/{virtlockd,virtlogd}.*
|
||||||
wrapProgram $out/sbin/libvirtd \
|
wrapProgram $out/sbin/libvirtd \
|
||||||
--prefix PATH : /run/libvirt/nix-emulators:${makeBinPath [ iptables iproute pmutils numad numactl ]}
|
--prefix PATH : /run/libvirt/nix-emulators:${makeBinPath [ iptables iproute pmutils numad numactl bridge-utils dmidecode dnsmasq ebtables ]}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ocaml-libvirt-${version}";
|
name = "ocaml-libvirt-${version}";
|
||||||
rev = "3169af3";
|
rev = "bab7f84ade84ceaddb08b6948792d49b3d04b897";
|
||||||
version = "0.6.1.4-rev.${rev}"; # libguestfs-1.34 needs ocaml-libvirt newer than the latest release 0.6.1.4
|
version = "0.6.1.4.2017-11-08-unstable"; # libguestfs-1.34+ needs ocaml-libvirt newer than the latest release 0.6.1.4
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "git://git.annexia.org/git/ocaml-libvirt.git";
|
url = "git://git.annexia.org/git/ocaml-libvirt.git";
|
||||||
rev = rev;
|
rev = rev;
|
||||||
sha256 = "0z8p6q6k42rdrvy248siq922m1yszny1hfklf6djynvk2viyqdbg";
|
sha256 = "0vxgx1n58fp4qmly6i5zxiacr7303127d6j78a295xin1p3a8xcw";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ libvirt ];
|
propagatedBuildInputs = [ libvirt ];
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchurl, python, pkgconfig, lxml, libvirt, nose }:
|
{ stdenv, buildPythonPackage, fetchgit, python, pkgconfig, lxml, libvirt, nose }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "libvirt";
|
pname = "libvirt";
|
||||||
version = "3.10.0";
|
version = "4.1.0";
|
||||||
|
|
||||||
src = assert version == libvirt.version; fetchurl {
|
src = assert version == libvirt.version; fetchgit {
|
||||||
url = "http://libvirt.org/sources/python/${pname}-python-${version}.tar.gz";
|
url = git://libvirt.org/libvirt-python.git;
|
||||||
sha256 = "1l0fgqjnx76pzkhq540x9sf5fgzlrn0dpay90j2m4iq8nkclcbpw";
|
rev = "v${version}";
|
||||||
|
sha256 = "0z87y6qr0ypdxfanphxl7yanisd7a0b0bwhg97kii68mig5dlw9r";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
@ -1,17 +1,16 @@
|
|||||||
{ stdenv, fetchgit }:
|
{ stdenv, fetchgit }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "gnulib-0.1-357-gffe6467";
|
name = "gnulib-20180226";
|
||||||
|
|
||||||
phases = ["unpackPhase" "installPhase"];
|
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "http://git.savannah.gnu.org/r/gnulib.git";
|
url = "http://git.savannah.gnu.org/r/gnulib.git";
|
||||||
rev = "92b60e61666f008385d9b7f7443da17c7a44d1b1";
|
rev = "0bec5d56c6938c2f28417bb5fd1c4b05ea2e7d28";
|
||||||
sha256 = "0sa1dndvaxhw0zyc19al5cmpgzlwnnznjz89lw1b4vj3xn7avjnr";
|
sha256 = "0sifr3bkmhyr5s6ljgfyr0fw6w49ajf11rlp1r797f3r3r6j9w4k";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = "mkdir -p $out; mv * $out/";
|
installPhase = "mkdir -p $out; mv * $out/";
|
||||||
|
dontFixup = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.gnu.org/software/gnulib/;
|
homepage = http://www.gnu.org/software/gnulib/;
|
||||||
|
@ -18021,9 +18021,7 @@ with pkgs;
|
|||||||
|
|
||||||
virt-viewer = callPackage ../applications/virtualization/virt-viewer { };
|
virt-viewer = callPackage ../applications/virtualization/virt-viewer { };
|
||||||
|
|
||||||
virt-top = callPackage ../applications/virtualization/virt-top {
|
virt-top = callPackage ../applications/virtualization/virt-top { };
|
||||||
ocamlPackages = ocamlPackages_4_01_0;
|
|
||||||
};
|
|
||||||
|
|
||||||
virt-what = callPackage ../applications/virtualization/virt-what { };
|
virt-what = callPackage ../applications/virtualization/virt-what { };
|
||||||
|
|
||||||
|
@ -13231,10 +13231,12 @@ let self = _self // overrides; _self = with self; {
|
|||||||
};
|
};
|
||||||
|
|
||||||
SysVirt = buildPerlPackage rec {
|
SysVirt = buildPerlPackage rec {
|
||||||
name = "Sys-Virt-1.2.19";
|
version = "4.1.0";
|
||||||
src = fetchurl {
|
name = "Sys-Virt-${version}";
|
||||||
url = "mirror://cpan/authors/id/D/DA/DANBERR/${name}.tar.gz";
|
src = assert version == pkgs.libvirt.version; pkgs.fetchgit {
|
||||||
sha256 = "18v8x0514in0zpvq1rv78hmvhpij1xjh5xn0wa6wmg2swky54sp4";
|
url = git://libvirt.org/libvirt-perl.git;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0m0snv6gqh97nh1c31qvbm4sdzp49vixn7w3r69h6a5r71sn78x4";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [XMLXPath];
|
propagatedBuildInputs = [XMLXPath];
|
||||||
nativeBuildInputs = [ pkgs.pkgconfig ];
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user