3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/virtualization/virt-manager/default.nix

60 lines
1.9 KiB
Nix
Raw Normal View History

2016-11-25 08:39:34 +00:00
{ stdenv, fetchurl, python2Packages, intltool, curl
, wrapGAppsHook, virtinst, gtkvnc, vte
, gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib
, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt
}:
2012-07-21 00:27:24 +01:00
with stdenv.lib;
2016-11-25 08:39:34 +00:00
with python2Packages;
buildPythonApplication rec {
2012-07-21 00:27:24 +01:00
name = "virt-manager-${version}";
2017-03-21 09:20:55 +00:00
version = "1.4.1";
namePrefix = "";
2012-07-21 00:27:24 +01:00
src = fetchurl {
url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz";
2017-03-21 09:20:55 +00:00
sha256 = "0i1rkxz730vw1nqghrp189jhhp53pw81k0h71hhxmyqlkyclkig6";
};
propagatedBuildInputs =
[ eventlet greenlet gflags netaddr carrot routes
PasteDeploy m2crypto ipy twisted
2016-10-13 23:03:12 +01:00
distutils_extra simplejson glanceclient cheetah lockfile httplib2
urlgrabber virtinst pyGtkGlade dbus-python /*gnome_python FIXME*/ pygobject3
2016-11-25 08:39:34 +00:00
libvirt libxml2 ipaddr vte libosinfo gobjectIntrospection gtk3 mox
gtkvnc libvirt-glib glib gsettings_desktop_schemas gnome3.defaultIconTheme
wrapGAppsHook
] ++ optional spiceSupport spice_gtk;
2012-07-21 00:27:24 +01:00
buildInputs = [ dconf avahi intltool ];
patchPhase = ''
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
sed -i "/'install_egg_info'/d" setup.py
'';
postConfigure = ''
${python.interpreter} setup.py configure --prefix=$out
'';
postInstall = ''
${glib.dev}/bin/glib-compile-schemas "$out"/share/glib-2.0/schemas
2012-07-21 00:27:24 +01:00
'';
# Failed tests
doCheck = false;
meta = with stdenv.lib; {
homepage = http://virt-manager.org;
description = "Desktop user interface for managing virtual machines";
longDescription = ''
The virt-manager application is a desktop user interface for managing
virtual machines through libvirt. It primarily targets KVM VMs, but also
manages Xen and LXC (linux containers).
'';
license = licenses.gpl2;
maintainers = with maintainers; [qknight offline];
};
2012-07-21 00:27:24 +01:00
}