3
0
Fork 0
forked from mirrors/nixpkgs

virt-manager: add vte as build input, so console works for lxc

This commit is contained in:
Jaka Hudoklin 2013-10-16 01:51:58 +02:00 committed by Bjørn Forsman
parent ab744d2053
commit 9653d9bbbd
2 changed files with 5 additions and 2 deletions

View file

@ -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 =

View file

@ -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 {};