mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libvirt: Add support for macvtap and VEPA
This commit is contained in:
parent
61efc76a63
commit
56adfd34fc
1 changed files with 4 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
|
||||
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
|
||||
, libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng
|
||||
, dnsmasq
|
||||
, dnsmasq, libnl
|
||||
}:
|
||||
|
||||
let version = "1.2.2"; in
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [
|
||||
pkgconfig libxml2 gnutls devicemapper perl python readline lvm2
|
||||
utillinux udev libpciaccess gettext libtasn1 libgcrypt yajl makeWrapper
|
||||
libcap_ng
|
||||
libcap_ng libnl
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
|
@ -29,7 +29,8 @@ stdenv.mkDerivation rec {
|
|||
"--localstatedir=/var"
|
||||
"--sysconfdir=/etc"
|
||||
"--with-init-script=redhat"
|
||||
"--without-macvtap"
|
||||
"--with-macvtap"
|
||||
"--with-virtualport"
|
||||
];
|
||||
|
||||
installFlags = [
|
||||
|
|
Loading…
Reference in a new issue