2007-10-29 11:52:04 +01:00
|
|
|
args: with args;
|
2008-11-04 22:24:10 +01:00
|
|
|
let localDefs = builderDefs.passthru.function {
|
2009-11-17 16:26:22 +01:00
|
|
|
buildInputs =[mesa wxGTK libX11 xproto];
|
2007-10-29 11:52:04 +01:00
|
|
|
src =
|
|
|
|
fetchurl {
|
|
|
|
url = http://www.piettes.com/fallingsandgame/fsg-src-4.4.tar.gz;
|
|
|
|
sha256 = "1756y01rkvd3f1pkj88jqh83fqcfl2fy0c48mcq53pjzln9ycv8c";
|
|
|
|
};
|
2008-08-19 07:54:09 +02:00
|
|
|
};
|
2008-01-18 13:36:56 +01:00
|
|
|
in with localDefs;
|
2007-10-29 11:52:04 +01:00
|
|
|
let
|
2009-05-20 01:25:58 +02:00
|
|
|
preBuild = fullDepEntry "
|
2007-10-29 11:52:04 +01:00
|
|
|
sed -e '
|
|
|
|
s@currentProbIndex != 100@0@;
|
|
|
|
' -i MainFrame.cpp;
|
|
|
|
" [minInit];
|
|
|
|
|
2009-05-20 01:25:58 +02:00
|
|
|
installPhase = fullDepEntry "
|
2007-10-29 11:52:04 +01:00
|
|
|
ensureDir \$out/bin \$out/libexec;
|
|
|
|
cp sand \$out/libexec;
|
|
|
|
echo -e '#! /bin/sh\nLC_ALL=C '\$out'/libexec/sand \"$@\"' >\$out/bin/fsg;
|
|
|
|
chmod a+x \$out/bin/fsg;
|
|
|
|
" [minInit defEnsureDir];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "fsg-4.4";
|
|
|
|
builder = writeScript "fsg-4.4-builder"
|
2008-01-18 13:36:56 +01:00
|
|
|
(textClosure localDefs [doUnpack addInputs preBuild doMake installPhase doForceShare]);
|
2007-10-29 11:52:04 +01:00
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "Falling Sand Game - a cellular automata engine tuned towards the likes of Falling Sand";
|
|
|
|
inherit src;
|
2007-10-29 11:52:04 +01:00
|
|
|
};
|
|
|
|
}
|