forked from mirrors/nixpkgs
virt-manager: add vte as build input, so console works for lxc
This commit is contained in:
parent
ab744d2053
commit
9653d9bbbd
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchurl, pythonPackages, intltool, libvirt, libxml2Python, curl, python, makeWrapper, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc}:
|
||||
{ stdenv, fetchurl, pythonPackages, intltool, libvirt, libxml2Python, curl,
|
||||
python, makeWrapper, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
|
@ -18,7 +19,8 @@ stdenv.mkDerivation rec {
|
|||
distutils_extra simplejson readline glance cheetah lockfile httplib2
|
||||
# !!! should libvirt be a build-time dependency? Note that
|
||||
# libxml2Python is a dependency of libvirt.py.
|
||||
libvirt libxml2Python urlgrabber virtinst pyGtkGlade pythonDBus gnome_python gtkvnc
|
||||
libvirt libxml2Python urlgrabber virtinst pyGtkGlade pythonDBus gnome_python
|
||||
gtkvnc vte
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
|
|
|
@ -8849,6 +8849,7 @@ let
|
|||
virtviewer = callPackage ../applications/virtualization/virt-viewer {};
|
||||
virtmanager = callPackage ../applications/virtualization/virt-manager {
|
||||
inherit (gnome) gnome_python;
|
||||
vte = gnome.vte.override { pythonSupport = true; };
|
||||
};
|
||||
|
||||
virtinst = callPackage ../applications/virtualization/virtinst {};
|
||||
|
|
Loading…
Reference in a new issue