summary refs log tree commit diff
path: root/pkgs/tools/X11/xpra/default.nix
blob: 3fbb350e0ab0142fe29d18aa0054382cf9f72212 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ stdenv, fetchurl, pkgconfig, python, cython
, pygtk, pygobject, pycairo, notify, xlibs, gtk
, ffmpeg, x264, libvpx, makeWrapper}:

stdenv.mkDerivation rec {
  name = "xpra-0.3.2";
  
  src = fetchurl {
    url = http://xpra.org/src/xpra-0.3.2.tar.bz2;
    sha256 = "1s1z6r0r78qvf59ci3vxammjz7lj5m64jyk0bfn7yxd5jl3sy41y";
  };

  buildNativeInputs = [ cython ];

  buildInputs = [
    pkgconfig python pygtk gtk ffmpeg x264 libvpx makeWrapper
    xlibs.inputproto xlibs.libXcomposite xlibs.libXdamage xlibs.libXtst
  ];

  buildPhase = ''
    NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0)"
    NIX_LDFLAGS="$NIX_LDFLAGS -lXcomposite -lXdamage"
    ./do-build
  '';

  pythonPaths = [
    "$out/lib/python"
    "$(toPythonPath ${pygtk})/gtk-2.0"
  ] ++ map (i: "$(toPythonPath ${i})") [
    pygobject pycairo notify
  ];

  installPhase = ''
    mkdir -p $out
    cp -r install/* $out

    for i in $(cd $out/bin && ls); do
        wrapProgram $out/bin/$i \
            --set PYTHONPATH "${stdenv.lib.concatStringsSep ":" pythonPaths}" \
            --prefix PATH : "${xlibs.xauth}/bin:${xlibs.xorgserver}/bin:${xlibs.xmodmap}/bin"
    done
  '';
  
  meta = {
    homepage = http://xpra.org/;
    description = "Persistent remote applications for X";
  };
}