mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
54 lines
1.3 KiB
Nix
54 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 = "6.2";
|
|
name="${baseName}-${version}";
|
|
project="${baseName}";
|
|
url="mirror://sourceforge/project/${project}/${baseName}/${name}/${name}.tar.gz";
|
|
sha256 = "1s1lb87ind0y9d6hmfaf1b9wks8q3hd6w5n9dibq75rxqmcfvlpy";
|
|
};
|
|
in
|
|
rec {
|
|
src = a.fetchurl {
|
|
url = sourceInfo.url;
|
|
sha256 = sourceInfo.sha256;
|
|
};
|
|
|
|
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
|
|
sed -e 's@/usr/@'"$out"'@g' -i Makefile
|
|
'') ["doUnpack" "minInit"];
|
|
|
|
meta = {
|
|
description = "Atomic Tanks ballistics game";
|
|
maintainers = with a.lib.maintainers;
|
|
[
|
|
raskin
|
|
];
|
|
platforms = with a.lib.platforms;
|
|
linux;
|
|
downloadPage = "http://sourceforge.net/projects/atanks/files/atanks/";
|
|
inherit version;
|
|
};
|
|
}) x
|
|
|