e5137b9bbf
svn path=/nixpkgs/trunk/; revision=24893
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
x@{builderDefsPackage
|
|
, allegro
|
|
, ...}:
|
|
builderDefsPackage
|
|
(a :
|
|
let
|
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
|
[];
|
|
|
|
buildInputs = map (n: builtins.getAttr n x)
|
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
|
sourceInfo = rec {
|
|
baseName="atanks";
|
|
version="4.7";
|
|
name="${baseName}-${version}";
|
|
project="${baseName}";
|
|
url="mirror://sourceforge/project/${project}/${baseName}/${name}/${name}.tar.gz";
|
|
hash="0kd98anwb785irv4qm1gqpk2xnh1q0fxnfazkjqpwjvgrliyj2rh";
|
|
};
|
|
in
|
|
rec {
|
|
src = a.fetchurl {
|
|
url = sourceInfo.url;
|
|
sha256 = sourceInfo.hash;
|
|
};
|
|
|
|
inherit (sourceInfo) name version;
|
|
inherit buildInputs;
|
|
|
|
/* doConfigure should be removed if not needed */
|
|
phaseNames = ["fixInstall" "doMakeInstall"];
|
|
makeFlags=[
|
|
"PREFIX=$out/"
|
|
];
|
|
fixInstall = a.fullDepEntry (''
|
|
sed -e "s@INSTALL=.*bin/install @INSTALL=install @" -i Makefile
|
|
sed -e "s@-g 0 -m ... -o 0@@" -i Makefile
|
|
'') ["doUnpack" "minInit"];
|
|
|
|
meta = {
|
|
description = "Atomic Tanks ballistics game";
|
|
maintainers = with a.lib.maintainers;
|
|
[
|
|
raskin
|
|
];
|
|
platforms = with a.lib.platforms;
|
|
linux;
|
|
};
|
|
passthru = {
|
|
updateInfo = {
|
|
downloadPage = "http://sourceforge.net/projects/atanks/files/atanks/";
|
|
};
|
|
};
|
|
}) x
|
|
|