2016-09-11 21:24:51 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2, spice_protocol, intltool, celt_0_5_1
|
2015-05-27 19:42:15 +00:00
|
|
|
, openssl, libpulseaudio, pixman, gobjectIntrospection, libjpeg_turbo, zlib
|
2016-01-17 23:04:40 +00:00
|
|
|
, cyrus_sasl, python, pygtk, autoreconfHook, usbredir, libsoup
|
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
|
|
|
, gtk3, enableGTK3 ? false }:
|
2014-01-10 19:43:55 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-18 06:12:21 +00:00
|
|
|
name = "spice-gtk-0.29";
|
2014-01-10 19:43:55 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.spice-space.org/download/gtk/${name}.tar.bz2";
|
2015-09-18 06:12:21 +00:00
|
|
|
sha256 = "0wz9sm44gnmwjpmyacwd5jyzvhfl1wlf1dn3qda20si42cky5is4";
|
2014-01-10 19:43:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2015-05-27 19:42:15 +00:00
|
|
|
spice_protocol celt_0_5_1 openssl libpulseaudio pixman gobjectIntrospection
|
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
|
|
|
libjpeg_turbo zlib cyrus_sasl python pygtk usbredir
|
2016-09-11 21:24:51 +00:00
|
|
|
] ++ (if enableGTK3 then [ gtk3 ] else [ gtk2 ]);
|
2014-01-10 19:43:55 +00:00
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool libsoup autoreconfHook ];
|
2014-01-10 19:43:55 +00:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
|
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
preAutoreconf = ''
|
2015-09-18 06:12:21 +00:00
|
|
|
substituteInPlace src/Makefile.am \
|
2016-01-17 23:04:40 +00:00
|
|
|
--replace '=codegendir pygtk-2.0' '=codegendir pygobject-2.0'
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
2014-01-10 19:43:55 +00:00
|
|
|
intltoolize -f
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--disable-maintainer-mode"
|
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
|
|
|
(if enableGTK3 then "--with-gtk3" else "--with-gtk=2.0")
|
2014-01-10 19:43:55 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
dontDisableStatic = true; # Needed by the coroutine test
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A GTK+2 and GTK+3 SPICE widget";
|
|
|
|
longDescription = ''
|
|
|
|
spice-gtk is a GTK+2 and GTK+3 SPICE widget. It features glib-based
|
|
|
|
objects for SPICE protocol parsing and a gtk widget for embedding
|
|
|
|
the SPICE display into other applications such as virt-manager.
|
|
|
|
Python bindings are available too.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.spice-space.org/;
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|