about summary refs log tree commit diff
path: root/pkgs/applications/virtualization
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-02-23 11:31:21 +0000
committerGitHub <noreply@github.com>2018-02-23 11:31:21 +0000
commitaa6d6cc78fef2a5311b1b188e0a0fafc1ced4953 (patch)
tree396b711821c988b9bc7dfdc941e01002ff8f507d /pkgs/applications/virtualization
parent33115bde4be9dfb0ad4781c3ea1494f2f6b4e7a8 (diff)
parent1cbccb95a7a0fee4bebdeb7b37ae2ecc51d3e685 (diff)
downloadnixlib-aa6d6cc78fef2a5311b1b188e0a0fafc1ced4953.tar
nixlib-aa6d6cc78fef2a5311b1b188e0a0fafc1ced4953.tar.gz
nixlib-aa6d6cc78fef2a5311b1b188e0a0fafc1ced4953.tar.bz2
nixlib-aa6d6cc78fef2a5311b1b188e0a0fafc1ced4953.tar.lz
nixlib-aa6d6cc78fef2a5311b1b188e0a0fafc1ced4953.tar.xz
nixlib-aa6d6cc78fef2a5311b1b188e0a0fafc1ced4953.tar.zst
nixlib-aa6d6cc78fef2a5311b1b188e0a0fafc1ced4953.zip
Merge pull request #35151 from xeji/virtmanager-cleanup
virtmanager: 1.4.3 -> 1.5.0, cleanup dependencies
Diffstat (limited to 'pkgs/applications/virtualization')
-rw-r--r--pkgs/applications/virtualization/virt-manager/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix
index 527371791082..9e18a6738c38 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, virtinst, gtkvnc, vte, avahi, dconf
+, 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
 }:
 
@@ -9,12 +9,12 @@ with stdenv.lib;
 
 python2Packages.buildPythonApplication rec {
   name = "virt-manager-${version}";
-  version = "1.4.3";
+  version = "1.5.0";
   namePrefix = "";
 
   src = fetchurl {
     url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz";
-    sha256 = "093azs8p4p7y4nf5j25xpsvdxww7gky1g0hs8mkcvmpxl2wjd0jj";
+    sha256 = "d43a7b99d40acdcb8e9455e7874beee132cfcfce9eed0d6252e8f254a82cadc6";
   };
 
   nativeBuildInputs = [
@@ -23,15 +23,13 @@ python2Packages.buildPythonApplication rec {
   ];
 
   buildInputs =
-    [ libvirt-glib vte virtinst dconf gtkvnc gnome3.defaultIconTheme avahi
-      gsettings_desktop_schemas libosinfo
+    [ libvirt-glib vte dconf gtkvnc gnome3.defaultIconTheme avahi
+      gsettings_desktop_schemas libosinfo gtk3
     ] ++ optional spiceSupport spice_gtk;
 
   propagatedBuildInputs = with python2Packages;
-    [ eventlet greenlet gflags netaddr carrot routes PasteDeploy
-      m2crypto ipy twisted distutils_extra simplejson
-      cheetah lockfile httplib2 urlgrabber pyGtkGlade dbus-python
-      pygobject3 ipaddr mox libvirt libxml2 requests
+    [
+      pygobject3 ipaddr libvirt libxml2 requests
     ];
 
   patchPhase = ''
@@ -63,6 +61,8 @@ python2Packages.buildPythonApplication rec {
       manages Xen and LXC (linux containers).
     '';
     license = licenses.gpl2;
+    # exclude Darwin since libvirt-glib currently doesn't build there
+    platforms = platforms.linux;
     maintainers = with maintainers; [ qknight offline fpletz ];
   };
 }