summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorxeji <xeji@cat3.de>2018-02-19 01:02:47 +0100
committerxeji <xeji@cat3.de>2018-02-19 01:02:47 +0100
commitb0eb4d6390000eb60486f316afe13aa8dead4e8f (patch)
tree327316d801a9b6715929ee105e2b4f13dcedaa3f /pkgs
parent911f408b5eec933ad0adbd296458ebdb1f3fd4dc (diff)
downloadnixlib-b0eb4d6390000eb60486f316afe13aa8dead4e8f.tar
nixlib-b0eb4d6390000eb60486f316afe13aa8dead4e8f.tar.gz
nixlib-b0eb4d6390000eb60486f316afe13aa8dead4e8f.tar.bz2
nixlib-b0eb4d6390000eb60486f316afe13aa8dead4e8f.tar.lz
nixlib-b0eb4d6390000eb60486f316afe13aa8dead4e8f.tar.xz
nixlib-b0eb4d6390000eb60486f316afe13aa8dead4e8f.tar.zst
nixlib-b0eb4d6390000eb60486f316afe13aa8dead4e8f.zip
virtmanager: 1.5.0: add gtk3 dependency
otherwise virt-manager startup fails with
Typelib file for namespace 'Pango', version '1.0' not found: Could not open display: :0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/virtualization/virt-manager/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix
index 7a2fb6d7f315..9306a1dea9b1 100644
--- a/pkgs/applications/virtualization/virt-manager/default.nix
+++ b/pkgs/applications/virtualization/virt-manager/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, python2Packages, intltool, file
 , wrapGAppsHook, gtkvnc, vte, avahi, dconf
 , gobjectIntrospection, libvirt-glib, system-libvirt
-, gsettings_desktop_schemas, glib, libosinfo, gnome3
+, gsettings_desktop_schemas, glib, libosinfo, gnome3, gtk3
 , spiceSupport ? true, spice_gtk ? null
 }:
 
@@ -24,7 +24,7 @@ python2Packages.buildPythonApplication rec {
 
   buildInputs =
     [ libvirt-glib vte dconf gtkvnc gnome3.defaultIconTheme avahi
-      gsettings_desktop_schemas libosinfo
+      gsettings_desktop_schemas libosinfo gtk3
     ] ++ optional spiceSupport spice_gtk;
 
   propagatedBuildInputs = with python2Packages;