2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, spice-protocol, gettext, celt_0_5_1
|
2015-05-27 20:42:15 +01:00
|
|
|
, openssl, libpulseaudio, pixman, gobjectIntrospection, libjpeg_turbo, zlib
|
2016-11-18 12:13:40 +00:00
|
|
|
, cyrus_sasl, python2Packages, autoreconfHook, usbredir, libsoup
|
2018-03-16 17:09:50 +00:00
|
|
|
, withPolkit ? true, polkit, acl, usbutils
|
2018-05-11 20:09:22 +01:00
|
|
|
, vala, gtk3, epoxy, libdrm, gst_all_1, phodav }:
|
2018-03-16 17:09:50 +00:00
|
|
|
|
|
|
|
# If this package is built with polkit support (withPolkit=true),
|
|
|
|
# usb redirection reqires spice-client-glib-usb-acl-helper to run setuid root.
|
|
|
|
# The helper confirms via polkit that the user has an active session,
|
|
|
|
# then adds a device acl entry for that user.
|
|
|
|
# Example NixOS config to create a setuid wrapper for the helper:
|
|
|
|
# security.wrappers.spice-client-glib-usb-acl-helper.source =
|
|
|
|
# "${pkgs.spice-gtk}/bin/spice-client-glib-usb-acl-helper";
|
|
|
|
# On non-NixOS installations, make a setuid copy of the helper
|
|
|
|
# outside the store and adjust PATH to find the setuid version.
|
|
|
|
|
|
|
|
# If this package is built without polkit support (withPolkit=false),
|
|
|
|
# usb redirection requires read-write access to usb devices.
|
|
|
|
# This can be granted by adding users to a custom group like "usb"
|
|
|
|
# and using a udev rule to put all usb devices in that group.
|
|
|
|
# Example NixOS config:
|
|
|
|
# users.groups.usb = {};
|
|
|
|
# users.users.dummy.extraGroups = [ "usb" ];
|
|
|
|
# services.udev.extraRules = ''
|
|
|
|
# KERNEL=="*", SUBSYSTEMS=="usb", MODE="0664", GROUP="usb"
|
|
|
|
# '';
|
2014-01-10 19:43:55 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2016-09-26 08:46:28 +01:00
|
|
|
let
|
2016-11-18 12:13:40 +00:00
|
|
|
inherit (python2Packages) python pygtk;
|
2016-09-26 08:46:28 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2017-10-03 02:20:03 +01:00
|
|
|
name = "spice-gtk-0.34";
|
2014-01-10 19:43:55 +00:00
|
|
|
|
2018-03-15 18:21:31 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2014-01-10 19:43:55 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.spice-space.org/download/gtk/${name}.tar.bz2";
|
2017-10-03 02:20:03 +01:00
|
|
|
sha256 = "1vknp72pl6v6nf3dphhwp29hk6gv787db2pmyg4m312z2q0hwwp9";
|
2014-01-10 19:43:55 +00:00
|
|
|
};
|
|
|
|
|
2018-03-16 17:09:50 +00:00
|
|
|
postPatch = ''
|
|
|
|
# get rid of absolute path to helper in store so we can use a setuid wrapper
|
|
|
|
substituteInPlace src/usb-acl-helper.c \
|
|
|
|
--replace 'ACL_HELPER_PATH"/' '"'
|
|
|
|
'';
|
|
|
|
|
2014-01-10 19:43:55 +00:00
|
|
|
buildInputs = [
|
2018-05-11 18:49:14 +01:00
|
|
|
spice-protocol celt_0_5_1 openssl libpulseaudio gst_all_1.gst-plugins-base pixman
|
2018-05-11 20:09:22 +01:00
|
|
|
libjpeg_turbo zlib cyrus_sasl python pygtk usbredir gtk3 epoxy libdrm phodav
|
2018-03-16 17:09:50 +00:00
|
|
|
] ++ optionals withPolkit [ polkit acl usbutils ] ;
|
2014-01-10 19:43:55 +00:00
|
|
|
|
2018-03-22 08:54:22 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext libsoup autoreconfHook vala gobjectIntrospection ];
|
2014-01-10 19:43:55 +00:00
|
|
|
|
2018-04-19 19:40:10 +01:00
|
|
|
PKG_CONFIG_POLKIT_GOBJECT_1_POLICYDIR = "$(out)/share/polkit-1/actions";
|
2016-01-17 23:04:40 +00:00
|
|
|
|
2014-01-10 19:43:55 +00:00
|
|
|
configureFlags = [
|
2016-09-24 12:44:59 +01:00
|
|
|
"--with-gtk3"
|
2018-03-22 08:54:22 +00:00
|
|
|
"--enable-introspection"
|
2018-03-15 18:21:31 +00:00
|
|
|
"--enable-vala"
|
2014-01-10 19:43:55 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
dontDisableStatic = true; # Needed by the coroutine test
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2016-09-24 12:44:59 +01:00
|
|
|
description = "A GTK+3 SPICE widget";
|
2014-01-10 19:43:55 +00:00
|
|
|
longDescription = ''
|
2016-09-24 12:44:59 +01:00
|
|
|
spice-gtk is a GTK+3 SPICE widget. It features glib-based
|
2014-01-10 19:43:55 +00:00
|
|
|
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;
|
2018-02-20 15:58:55 +00:00
|
|
|
maintainers = [ maintainers.xeji ];
|
2014-01-10 19:43:55 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|