3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/spice-gtk/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

2017-10-03 02:20:03 +01:00
{ stdenv, fetchurl, pkgconfig, spice_protocol, gettext, celt_0_5_1
, openssl, libpulseaudio, pixman, gobjectIntrospection, libjpeg_turbo, zlib
2016-11-18 12:13:40 +00:00
, cyrus_sasl, python2Packages, autoreconfHook, usbredir, libsoup
2016-09-24 12:44:59 +01:00
, gtk3, epoxy }:
with stdenv.lib;
let
2016-11-18 12:13:40 +00:00
inherit (python2Packages) python pygtk;
in stdenv.mkDerivation rec {
2017-10-03 02:20:03 +01:00
name = "spice-gtk-0.34";
src = fetchurl {
url = "http://www.spice-space.org/download/gtk/${name}.tar.bz2";
2017-10-03 02:20:03 +01:00
sha256 = "1vknp72pl6v6nf3dphhwp29hk6gv787db2pmyg4m312z2q0hwwp9";
};
buildInputs = [
spice_protocol celt_0_5_1 openssl libpulseaudio pixman gobjectIntrospection
2016-09-24 12:44:59 +01:00
libjpeg_turbo zlib cyrus_sasl python pygtk usbredir gtk3 epoxy
];
2017-10-03 02:20:03 +01:00
nativeBuildInputs = [ pkgconfig gettext libsoup autoreconfHook ];
NIX_CFLAGS_COMPILE = "-fno-stack-protector";
preAutoreconf = ''
2015-09-18 07:12:21 +01:00
substituteInPlace src/Makefile.am \
--replace '=codegendir pygtk-2.0' '=codegendir pygobject-2.0'
'';
configureFlags = [
"--disable-maintainer-mode"
2016-09-24 12:44:59 +01:00
"--with-gtk3"
];
dontDisableStatic = true; # Needed by the coroutine test
enableParallelBuilding = true;
meta = {
2016-09-24 12:44:59 +01:00
description = "A GTK+3 SPICE widget";
longDescription = ''
2016-09-24 12:44:59 +01:00
spice-gtk is a 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;
};
}