Downgrading rigsofrods to a version that might work, where cars may run fast.
This rev should be very close to the stablest 0.38. I had to bring an old angelscript in. svn path=/nixpkgs/trunk/; revision=32635
This commit is contained in:
parent
e3a27acfdb
commit
11aceede25
65
pkgs/development/interpreters/angelscript/2.20.nix
Normal file
65
pkgs/development/interpreters/angelscript/2.20.nix
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
x@{builderDefsPackage
|
||||||
|
, unzip
|
||||||
|
, ...}:
|
||||||
|
builderDefsPackage
|
||||||
|
(a :
|
||||||
|
let
|
||||||
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||||
|
[];
|
||||||
|
|
||||||
|
buildInputs = map (n: builtins.getAttr n x)
|
||||||
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||||
|
sourceInfo = rec {
|
||||||
|
baseName="angelscript";
|
||||||
|
version="2.20.3";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
url="http://www.angelcode.com/angelscript/sdk/files/angelscript_${version}.zip";
|
||||||
|
hash="1gyfi35n7vcm9bm0f1q3va4w8b94avc713b6yqzinzg6dmp1x937";
|
||||||
|
};
|
||||||
|
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 = ["prepareBuild" "doMake" "cleanLib" "doMakeInstall" "installDocs"];
|
||||||
|
|
||||||
|
prepareBuild = a.fullDepEntry ''
|
||||||
|
cd angelscript/projects/gnuc
|
||||||
|
sed -i makefile -e "s@LOCAL = .*@LOCAL = $out@"
|
||||||
|
ensureDir "$out/lib" "$out/bin" "$out/share" "$out/include"
|
||||||
|
export SHARED=1
|
||||||
|
export VERSION="${version}"
|
||||||
|
'' ["minInit" "addInputs" "doUnpack" "defEnsureDir"];
|
||||||
|
|
||||||
|
cleanLib = a.fullDepEntry ''
|
||||||
|
rm ../../lib/*
|
||||||
|
'' ["minInit"];
|
||||||
|
|
||||||
|
installDocs = a.fullDepEntry ''
|
||||||
|
ensureDir "$out/share/angelscript"
|
||||||
|
cp -r ../../../docs "$out/share/angelscript"
|
||||||
|
'' ["defEnsureDir" "prepareBuild"];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A light-weight scripting library";
|
||||||
|
maintainers = with a.lib.maintainers;
|
||||||
|
[
|
||||||
|
raskin
|
||||||
|
];
|
||||||
|
platforms = with a.lib.platforms;
|
||||||
|
linux;
|
||||||
|
license = a.lib.licenses.zlib;
|
||||||
|
};
|
||||||
|
passthru = {
|
||||||
|
updateInfo = {
|
||||||
|
downloadPage = "http://www.angelcode.com/angelscript/downloads.asp";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}) x
|
||||||
|
|
@ -4,12 +4,13 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.39.4";
|
version = "0.39-svn2267";
|
||||||
name = "rigsofrods-${version}";
|
name = "rigsofrods-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchsvn {
|
||||||
url = mirror://sourceforge/rigsofrods/rigsofrods-source-0.39.4.tar.bz2;
|
url = https://rigsofrods.svn.sourceforge.net/svnroot/rigsofrods/trunk;
|
||||||
sha256 = "1kpjkski0yllwzdki0rjpqvifjs0fwpgs513y4dv4s9wfwan1qcx";
|
rev = 2267;
|
||||||
|
sha256 = "19r3v6x1wk3nb1cyixbp1bmdg96h31bxjlsz6zh6qc317wjmy96b";
|
||||||
};
|
};
|
||||||
|
|
||||||
contentPackSrc = fetchurl {
|
contentPackSrc = fetchurl {
|
||||||
|
@ -2620,6 +2620,8 @@ let
|
|||||||
|
|
||||||
angelscript = callPackage ../development/interpreters/angelscript {};
|
angelscript = callPackage ../development/interpreters/angelscript {};
|
||||||
|
|
||||||
|
angelscript_2_20 = callPackage ../development/interpreters/angelscript/2.20.nix {};
|
||||||
|
|
||||||
clisp = callPackage ../development/interpreters/clisp { };
|
clisp = callPackage ../development/interpreters/clisp { };
|
||||||
|
|
||||||
# compatibility issues in 2.47 - at list 2.44.1 is known good
|
# compatibility issues in 2.47 - at list 2.44.1 is known good
|
||||||
@ -7961,6 +7963,7 @@ let
|
|||||||
|
|
||||||
rigsofrods = callPackage ../games/rigsofrods {
|
rigsofrods = callPackage ../games/rigsofrods {
|
||||||
mygui = myguiSvn;
|
mygui = myguiSvn;
|
||||||
|
angelscript = angelscript_2_20;
|
||||||
};
|
};
|
||||||
|
|
||||||
rogue = callPackage ../games/rogue { };
|
rogue = callPackage ../games/rogue { };
|
||||||
|
Loading…
Reference in New Issue
Block a user