nixpkgs/pkgs/tools/X11/xpra/default.nix

93 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, callPackage, substituteAll, python3, pkgconfig
, xorg, gtk3, glib, pango, cairo, gdk_pixbuf, atk
, wrapGAppsHook, xorgserver, getopt, xauth, utillinux, which
, ffmpeg, x264, libvpx, libwebp
2016-09-03 13:52:39 +00:00
, libfakeXinerama
, gst_all_1, pulseaudio, gobject-introspection
2016-12-04 21:26:43 +00:00
, pam }:
2016-09-03 13:52:39 +00:00
with lib;
let
inherit (python3.pkgs) cython buildPythonApplication;
2018-07-15 08:32:53 +00:00
xf86videodummy = callPackage ./xf86videodummy { };
in buildPythonApplication rec {
2018-07-15 08:32:53 +00:00
pname = "xpra";
version = "2.3.4";
src = fetchurl {
2018-07-15 08:32:53 +00:00
url = "https://xpra.org/src/${pname}-${version}.tar.xz";
sha256 = "0wa3kx54himy3i1b2801hlzfilh3cf4kjk40k1cjl0ds28m5hija";
};
patches = [
(substituteAll {
src = ./fix-paths.patch;
inherit (xorg) xkeyboardconfig;
})
];
nativeBuildInputs = [ pkgconfig gobject-introspection wrapGAppsHook ];
buildInputs = with xorg; [
libX11 xorgproto libXrender libXi
libXtst libXfixes libXcomposite libXdamage
libXrandr libxkbfile
] ++ [
cython
pango cairo gdk_pixbuf atk gtk3 glib
2017-04-30 23:58:33 +00:00
ffmpeg libvpx x264 libwebp
2015-02-24 23:34:58 +00:00
2016-09-03 13:52:39 +00:00
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-libav
2016-12-04 21:26:43 +00:00
pam
];
2016-12-04 21:26:43 +00:00
propagatedBuildInputs = with python3.pkgs; [
pillow rencode pycrypto cryptography pycups lz4 dbus-python
netifaces numpy websockify pygobject3 pycairo gst-python pam
];
NIX_CFLAGS_COMPILE = [
# error: 'import_cairo' defined but not used
"-Wno-error=unused-function"
2013-03-29 01:30:18 +00:00
];
setupPyBuildFlags = [
"--with-Xdummy"
"--without-strict"
"--with-gtk3"
"--without-gtk2"
];
preFixup = ''
gappsWrapperArgs+=(
--set XPRA_INSTALL_PREFIX "$out"
--prefix LD_LIBRARY_PATH : ${libfakeXinerama}/lib
--prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux pulseaudio ]}
)
2015-02-24 23:34:58 +00:00
'';
doCheck = false;
2015-02-24 23:34:58 +00:00
2018-07-15 08:32:53 +00:00
passthru = { inherit xf86videodummy; };
2015-02-24 23:34:58 +00:00
meta = {
homepage = http://xpra.org/;
downloadPage = "https://xpra.org/src/";
downloadURLRegexp = "xpra-.*[.]tar[.]xz$";
description = "Persistent remote applications for X";
2016-09-03 13:52:39 +00:00
platforms = platforms.linux;
2018-09-12 19:42:39 +00:00
license = licenses.gpl2;
2018-11-14 20:19:38 +00:00
# https://github.com/NixOS/nixpkgs/pull/48872#issuecomment-433559636
broken = true;
2018-07-15 08:32:53 +00:00
maintainers = with maintainers; [ tstrobel offline numinit ];
};
}