libguestfs: remove xen as dependency
This commit is contained in:
parent
70d194c818
commit
dde3974afd
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, autoreconfHook, makeWrapper
|
{ stdenv, fetchurl, pkgconfig, autoreconfHook, makeWrapper
|
||||||
, ncurses, cpio, gperf, cdrkit, flex, bison, qemu, pcre, augeas, libxml2
|
, ncurses, cpio, gperf, cdrkit, flex, bison, qemu, pcre, augeas, libxml2
|
||||||
, acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex, db
|
, acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex, db
|
||||||
, gmp, readline, file, numactl, xen, libapparmor, jansson
|
, gmp, readline, file, numactl, libapparmor, jansson
|
||||||
, getopt, perlPackages, ocamlPackages
|
, getopt, perlPackages, ocamlPackages
|
||||||
, libtirpc
|
, libtirpc
|
||||||
, appliance ? null
|
, appliance ? null
|
||||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||||
ncurses cpio gperf jansson
|
ncurses cpio gperf jansson
|
||||||
cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig
|
cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig
|
||||||
systemd fuse yajl libvirt gmp readline file hivex db
|
systemd fuse yajl libvirt gmp readline file hivex db
|
||||||
numactl xen libapparmor getopt perlPackages.ModuleBuild
|
numactl libapparmor getopt perlPackages.ModuleBuild
|
||||||
libtirpc
|
libtirpc
|
||||||
] ++ (with perlPackages; [ perl libintl_perl GetoptLong SysVirt ])
|
] ++ (with perlPackages; [ perl libintl_perl GetoptLong SysVirt ])
|
||||||
++ (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml_libvirt gettext-stub ounit ])
|
++ (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml_libvirt gettext-stub ounit ])
|
||||||
|
|
|
@ -14429,8 +14429,13 @@ in
|
||||||
libgudev = callPackage ../development/libraries/libgudev { };
|
libgudev = callPackage ../development/libraries/libgudev { };
|
||||||
|
|
||||||
libguestfs-appliance = callPackage ../development/libraries/libguestfs/appliance.nix {};
|
libguestfs-appliance = callPackage ../development/libraries/libguestfs/appliance.nix {};
|
||||||
libguestfs = callPackage ../development/libraries/libguestfs { };
|
libguestfs = callPackage ../development/libraries/libguestfs {
|
||||||
libguestfs-with-appliance = libguestfs.override { appliance = libguestfs-appliance; };
|
autoreconfHook = buildPackages.autoreconfHook264;
|
||||||
|
};
|
||||||
|
libguestfs-with-appliance = libguestfs.override {
|
||||||
|
appliance = libguestfs-appliance;
|
||||||
|
autoreconfHook = buildPackages.autoreconfHook264;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
libhangul = callPackage ../development/libraries/libhangul { };
|
libhangul = callPackage ../development/libraries/libhangul { };
|
||||||
|
|
Loading…
Reference in New Issue