crrcsim: Update to 0.9.12 & simplify.

This commit is contained in:
Moritz Ulrich 2014-05-28 13:04:16 +02:00
parent 1d70298e2e
commit c4349c3b17

View File

@ -1,48 +1,24 @@
x@{builderDefsPackage { stdenv, fetchurl, mesa, SDL, SDL_mixer, plib, libjpeg }:
, mesa, SDL, SDL_mixer, plib, libjpeg let
, ...}: version = "0.9.12";
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
baseName="crrcsim";
version="0.9.11";
name="${baseName}-${version}";
url="mirror://sourceforge/${baseName}.berlios/${name}.tar.gz";
hash="16z9gixp60920lqckij8kdw90jys0llls4lw5c8vqgk14ck5hhiz";
};
in in
rec { stdenv.mkDerivation rec {
src = a.fetchurl { name = "crrcsim-${version}";
url = sourceInfo.url;
sha256 = sourceInfo.hash; src = fetchurl {
url = "mirror://sourceforge/crrcsim/${name}.tar.gz";
sha256 = "1yx3cn7ilwj92v6rk3zm565ap92vmky4r39na814lfglkzn6l5id";
}; };
inherit (sourceInfo) name version; buildInputs = [
inherit buildInputs; mesa SDL SDL_mixer plib libjpeg
];
/* doConfigure should be removed if not needed */
phaseNames = ["doConfigure" "doMakeInstall"];
meta = { meta = {
description = "A model-airplane flight simulator"; description = "A model-airplane flight simulator";
maintainers = with a.lib.maintainers; maintainers = with stdenv.lib.maintainers; [ raskin the-kenny ];
[ platforms = stdenv.lib.platforms.linux;
raskin
];
platforms = with a.lib.platforms;
linux;
license = "GPLv2"; license = "GPLv2";
}; };
passthru = { }
updateInfo = {
downloadPage = "http://crrcsim.berlios.de/wiki/index.php?n=CRRCsim.DownLoad"; #TODO: berlios shut down
};
};
}) x