mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
fix fsg build after updates in all-packages
svn path=/nixpkgs/trunk/; revision=13913
This commit is contained in:
parent
7da93ed738
commit
0d577e421d
@ -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;
|
||||
|
@ -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?
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user