nixpkgs/pkgs/development/python-modules/pygame/default.nix
aszlig f5ec09842d
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>
2016-04-15 05:35:11 +02:00

41 lines
1.2 KiB
Nix

{ stdenv, fetchurl, buildPythonPackage, pkgconfig, smpeg, libX11
, SDL, SDL_image, SDL_mixer, SDL_ttf, libpng, libjpeg, portmidi, isPy3k,
}:
buildPythonPackage {
name = "pygame-1.9.1";
src = fetchurl {
url = "http://www.pygame.org/ftp/pygame-1.9.1release.tar.gz";
sha256 = "0cyl0ww4fjlf289pjxa53q4klyn55ajvkgymw0qrdgp4593raq52";
};
buildInputs = [
pkgconfig SDL SDL_image SDL_mixer SDL_ttf libpng libjpeg
smpeg portmidi libX11
];
# /nix/store/94kswjlwqnc0k2bnwgx7ckx0w2kqzaxj-stdenv/setup: line 73: python: command not found
disabled = isPy3k;
# Tests fail because of no audio device and display.
doCheck = false;
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
'';
meta = {
description = "Python library for games";
homepage = "http://www.pygame.org/";
license = stdenv.lib.licenses.lgpl21Plus;
};
}