Skip to content

Commit

Permalink
Merge pull request #5 from aszlig/xpra
Browse files Browse the repository at this point in the history
New version of Xpra from the fork
  • Loading branch information
peti committed Jul 16, 2012
2 parents fd749dd + ceff799 commit 36265e9
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 10 deletions.
20 changes: 20 additions & 0 deletions pkgs/development/interpreters/cython/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ stdenv, fetchurl, python, pkgconfig }:

stdenv.mkDerivation {
name = "cython-0.16";

src = fetchurl {
url = http://www.cython.org/release/Cython-0.16.tar.gz;
sha256 = "1yz6jwv25xx5mbr2nm4l7mi65gvpm63dzi3vrw73p51wbpy525lp";
};

buildPhase = "python setup.py build --build-base $out";

installPhase = "python setup.py install --prefix=$out";

buildInputs = [ python pkgconfig ];

meta = {
description = "An interpreter to help writing C extensions for Python";
};
}
27 changes: 18 additions & 9 deletions pkgs/tools/X11/xpra/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{stdenv, fetchurl, pkgconfig, python, pyrex, pygtk, xlibs, gtk, makeWrapper}:
{ stdenv, fetchurl, pkgconfig, python, cython
, pygtk, pygobject, pycairo, notify, xlibs, gtk
, ffmpeg, x264, libvpx, makeWrapper}:

stdenv.mkDerivation {
name = "xpra-0.0.3";
stdenv.mkDerivation rec {
name = "xpra-0.3.2";

src = fetchurl {
url = http://partiwm.org/static/downloads/parti-all-0.0.3.tar.gz;
sha256 = "17inksd4cc7mba2vfs17gz1yk3h6x6wf06pm3hcbs5scq8rr5bkp";
url = http://xpra.org/src/xpra-0.3.2.tar.bz2;
sha256 = "1s1z6r0r78qvf59ci3vxammjz7lj5m64jyk0bfn7yxd5jl3sy41y";
};

#src = /home/eelco/Dev/nixpkgs/parti-all-0.0.3;
buildNativeInputs = [ cython ];

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

Expand All @@ -21,19 +23,26 @@ stdenv.mkDerivation {
./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 "$out/lib/python:$(toPythonPath ${pygtk})/gtk-2.0:$PYTHONPATH" \
--set PYTHONPATH "${stdenv.lib.concatStringsSep ":" pythonPaths}" \
--prefix PATH : "${xlibs.xauth}/bin:${xlibs.xorgserver}/bin:${xlibs.xmodmap}/bin"
done
'';

meta = {
homepage = http://partiwm.org/wiki/xpra;
homepage = http://xpra.org/;
description = "Persistent remote applications for X";
};
}
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1785,6 +1785,8 @@ let

cmucl_binary = callPackage ../development/compilers/cmucl/binary.nix { };

cython = callPackage ../development/interpreters/cython { };

dylan = callPackage ../development/compilers/gwydion-dylan {
dylan = callPackage ../development/compilers/gwydion-dylan/binary.nix { };
};
Expand Down Expand Up @@ -7725,7 +7727,7 @@ let
};

xpra = callPackage ../tools/X11/xpra {
pyrex = pyrex095;
inherit (pythonPackages) notify;
};

xscreensaver = callPackage ../misc/screensavers/xscreensaver {
Expand Down

0 comments on commit 36265e9

Please sign in to comment.