nixpkgs/pkgs/games/the-butterfly-effect/default.nix
Michael Raskin 9391f9819c Update tbe - multiple fixes
svn path=/nixpkgs/trunk/; revision=25782
2011-02-06 14:13:31 +00:00

67 lines
1.6 KiB
Nix

x@{builderDefsPackage
, qt4, box2d
,fetchsvn
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
["fetchsvn"];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
baseName="tbe";
revision="1319";
version="r${revision}";
name="${baseName}-${version}";
url="https://tbe.svn.sourceforge.net/svnroot/tbe/trunk";
hash="e9a7c24f0668ba2f36c472c1d05238fa7d9ed2150d99ce8a927285d099cc0f7f";
};
in
rec {
srcDrv = a.fetchsvn {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
rev = sourceInfo.revision;
};
src = srcDrv + "/";
inherit (sourceInfo) name version;
inherit buildInputs;
phaseNames = ["setVars" "doConfigure" "doMakeInstall" "doDeploy"];
configureCommand = "sh configure";
setVars = a.noDepEntry ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${a.box2d}/include/Box2D"
'';
doDeploy = a.fullDepEntry ''
ensureDir "$out/share/tbe"
cp -r . "$out/share/tbe/build-dir"
ensureDir "$out/bin"
echo '#! /bin/sh' >> "$out/bin/tbe"
echo "$out/share/tbe/build-dir/tbe \"\$@\"" >> "$out/bin/tbe"
chmod a+x "$out/bin/tbe"
'' ["minInit" "doMake" "defEnsureDir"];
meta = {
description = "A physics-based game vaguely similar to Incredible Machine";
maintainers = with a.lib.maintainers;
[
raskin
];
platforms = with a.lib.platforms;
linux;
license = "GPLv2";
};
passthru = {
inherit srcDrv;
updateInfo = {
downloadPage = "http://sourceforge.net/projects/tbe/files/";
};
};
}) x