2017-03-28 17:13:39 +00:00
|
|
|
{ stdenv, fetchurl, python2Packages, intltool, file
|
2018-02-18 22:19:41 +00:00
|
|
|
, wrapGAppsHook, gtkvnc, vte, avahi, dconf
|
2017-03-28 17:13:39 +00:00
|
|
|
, gobjectIntrospection, libvirt-glib, system-libvirt
|
2018-02-25 02:23:58 +00:00
|
|
|
, gsettings-desktop-schemas, glib, libosinfo, gnome3, gtk3
|
|
|
|
, spiceSupport ? true, spice-gtk ? null
|
2018-05-13 17:58:10 +00:00
|
|
|
, cpio, e2fsprogs, findutils, gzip
|
2014-01-10 19:43:55 +00:00
|
|
|
}:
|
2012-05-06 19:25:01 +00:00
|
|
|
|
2012-07-20 23:27:24 +00:00
|
|
|
with stdenv.lib;
|
2012-05-06 19:25:01 +00:00
|
|
|
|
2017-03-28 17:13:39 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2012-07-20 23:27:24 +00:00
|
|
|
name = "virt-manager-${version}";
|
2018-03-05 16:50:43 +00:00
|
|
|
version = "1.5.1";
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 17:12:07 +00:00
|
|
|
namePrefix = "";
|
2012-07-20 23:27:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 17:12:07 +00:00
|
|
|
url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz";
|
2018-03-05 16:50:43 +00:00
|
|
|
sha256 = "1ardmd4sxdmd57y7qpka44gf09c1yq2g0xs074d3k1h925crv27f";
|
2012-05-06 19:25:01 +00:00
|
|
|
};
|
|
|
|
|
2018-01-11 18:42:18 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
wrapGAppsHook intltool file
|
|
|
|
gobjectIntrospection # for setup hook populating GI_TYPELIB_PATH
|
|
|
|
];
|
2017-03-28 17:13:39 +00:00
|
|
|
|
|
|
|
buildInputs =
|
2018-02-18 22:19:41 +00:00
|
|
|
[ libvirt-glib vte dconf gtkvnc gnome3.defaultIconTheme avahi
|
2018-02-25 02:23:58 +00:00
|
|
|
gsettings-desktop-schemas libosinfo gtk3
|
|
|
|
] ++ optional spiceSupport spice-gtk;
|
2012-07-20 23:27:24 +00:00
|
|
|
|
2017-03-28 17:13:39 +00:00
|
|
|
propagatedBuildInputs = with python2Packages;
|
2018-02-18 22:19:41 +00:00
|
|
|
[
|
|
|
|
pygobject3 ipaddr libvirt libxml2 requests
|
2017-03-28 17:13:39 +00:00
|
|
|
];
|
2012-05-06 19:25:01 +00:00
|
|
|
|
2015-10-15 20:46:14 +00:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
|
2015-11-20 18:58:38 +00:00
|
|
|
sed -i "/'install_egg_info'/d" setup.py
|
2015-10-15 20:46:14 +00:00
|
|
|
'';
|
|
|
|
|
2015-11-20 12:48:30 +00:00
|
|
|
postConfigure = ''
|
2017-03-28 17:13:39 +00:00
|
|
|
${python2Packages.python.interpreter} setup.py configure --prefix=$out
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 17:12:07 +00:00
|
|
|
'';
|
2012-05-06 19:25:01 +00:00
|
|
|
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 17:12:07 +00:00
|
|
|
postInstall = ''
|
2016-04-16 16:57:59 +00:00
|
|
|
${glib.dev}/bin/glib-compile-schemas "$out"/share/glib-2.0/schemas
|
2012-07-20 23:27:24 +00:00
|
|
|
'';
|
2012-05-06 19:25:01 +00:00
|
|
|
|
2017-06-04 14:58:13 +00:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(--set PYTHONPATH "$PYTHONPATH")
|
2018-05-13 17:58:10 +00:00
|
|
|
# these are called from virt-install in initrdinject.py
|
|
|
|
gappsWrapperArgs+=(--prefix PATH : "${makeBinPath [ cpio e2fsprogs file findutils gzip ]}")
|
2017-06-04 14:58:13 +00:00
|
|
|
'';
|
|
|
|
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 17:12:07 +00:00
|
|
|
# Failed tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2012-05-06 19:25:01 +00:00
|
|
|
homepage = http://virt-manager.org;
|
2013-10-06 09:49:53 +00:00
|
|
|
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).
|
|
|
|
'';
|
virt-manager: update to 1.0.1, fix & update dependencies, gtk3 support
- Vte, add gtk3 support, enable introspection, update to 0.35.90
- Spice-gtk, add gtk3 support
- gtk-vnc, add gtk3 support
- Add libvirt-glib (thanks @bjornfor)
- Add usbredir
- qemu, enable usbredir
- spice-gtk, enable usbredir
- virt-manager, update to 1.0.1
[Bjørn:
* Set namePrefix = "" to preserve package name "virt-manager"
(instead of "python2.7-virt-manager")
* Add dconf to GIO_EXTRA_MODULES to get persistent settings in
virt-manager. Without it:
GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
* Add ${gtk3}/share to XDG_DATA_DIRS to unbreak "Take Screenshot"
feature (fixes "Settings schema 'org.gtk.Settings.FileChooser' is not installed")
* gtk-vnc: don't pull "pkgs" attrset for optionalString, use stdenv.lib.optionalString instead.
]
2014-03-23 17:12:07 +00:00
|
|
|
license = licenses.gpl2;
|
2018-02-20 11:47:34 +00:00
|
|
|
# exclude Darwin since libvirt-glib currently doesn't build there
|
|
|
|
platforms = platforms.linux;
|
2017-03-25 13:57:45 +00:00
|
|
|
maintainers = with maintainers; [ qknight offline fpletz ];
|
2012-05-06 19:25:01 +00:00
|
|
|
};
|
2012-07-20 23:27:24 +00:00
|
|
|
}
|