summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-04-15 05:35:11 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-04-15 05:35:11 +0200
commitf5ec09842dcb16eca6294da30d2f9536bda1d4c0 (patch)
treee2e5e094c95bb42ef349c1354ff2ef201ab21e26 /pkgs/development/python-modules
parent2c024d28a219f3283d8adb10049162bd45332eb8 (diff)
pygame: Fix build with multiple outputs
The config.py script doesn't seem to cope very well with symlinks, so let's pass it the right derivation outputs wherever possible and fall back to drv.out. I've disabled the tests because they somehow now seem to cause the build to fail even though the tests failed *before* the merge of the closure-size branch, but the whole build didn't fail regardless. Here is a build from before the closure-size branch merge: http://hydra.nixos.org/build/34367296 If you have a look at the build log, you already see a bunch of failing tests (to be exact: the same set of tests that are failing now with the fix of the preConfigure phase). Other than that, the build now succeeds on my machine. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pygame/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pygame/default.nix b/pkgs/development/python-modules/pygame/default.nix
index 321a0b49b089..0928fa6ae7d1 100644
--- a/pkgs/development/python-modules/pygame/default.nix
+++ b/pkgs/development/python-modules/pygame/default.nix
@@ -18,14 +18,17 @@ buildPythonPackage {
# /nix/store/94kswjlwqnc0k2bnwgx7ckx0w2kqzaxj-stdenv/setup: line 73: python: command not found
disabled = isPy3k;
- patches = [ ./pygame-v4l.patch ];
+ # Tests fail because of no audio device and display.
+ doCheck = false;
- preConfigure = ''
- for i in ${SDL_image} ${SDL_mixer} ${SDL_ttf} ${libpng} ${libjpeg} ${portmidi} ${libX11}; do
- sed -e "/origincdirs =/a'$i/include'," -i config_unix.py
- sed -e "/origlibdirs =/aoriglibdirs += '$i/lib'," -i config_unix.py
- done
+ patches = [ ./pygame-v4l.patch ];
+ preConfigure = stdenv.lib.concatMapStrings (dep: ''
+ sed \
+ -e "/origincdirs =/a'${dep.dev or dep.out}/include'," \
+ -e "/origlibdirs =/aoriglibdirs += '${dep.lib or dep.out}/lib'," \
+ -i config_unix.py
+ '') [ SDL_image SDL_mixer SDL_ttf libpng libjpeg portmidi libX11 ] + ''
LOCALBASE=/ python config.py
'';