fix fsg build after updates in all-packages

svn path=/nixpkgs/trunk/; revision=13913
This commit is contained in:
Michael Raskin 2009-01-30 06:26:40 +00:00
parent 7da93ed738
commit 0d577e421d
3 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,6 @@
args: with args;
let localDefs = builderDefs.passthru.function {
buildInputs =[(wxGTK null)];
buildInputs =[mesa (wxGTK null) libX11 xproto];
src =
fetchurl {
url = http://www.piettes.com/fallingsandgame/fsg-src-4.4.tar.gz;

View file

@ -8,7 +8,7 @@ stdenv.mkDerivation {
sha256 = "1756y01rkvd3f1pkj88jqh83fqcfl2fy0c48mcq53pjzln9ycv8c";
};
buildInputs =[gtk glib pkgconfig (wxGTK null)];
buildInputs =[gtk glib pkgconfig mesa (wxGTK null) libX11 xproto];
/*
# One day Unicode will overcome?

View file

@ -8410,14 +8410,16 @@ let
});
fsg = import ../games/fsg {
inherit stdenv fetchurl pkgconfig;
inherit stdenv fetchurl pkgconfig mesa;
inherit (gtkLibs) glib gtk;
inherit (xlibs) libX11 xproto;
wxGTK = wxGTK28deps {unicode = false;};
};
fsgAltBuild = import ../games/fsg/alt-builder.nix {
inherit stdenv fetchurl;
inherit stdenv fetchurl mesa;
wxGTK = wxGTK28deps {unicode = false;};
inherit (xlibs) libX11 xproto;
stringsWithDeps = import ../lib/strings-with-deps.nix {
inherit stdenv lib;
};