2007-12-03 05:48:44 +01:00
|
|
|
args : with args;
|
2008-11-04 22:24:10 +01:00
|
|
|
let localDefs = builderDefs.passthru.function {
|
2007-12-03 05:48:44 +01:00
|
|
|
src = /* put a fetchurl here */
|
|
|
|
fetchurl {
|
|
|
|
url = http://savannah.nongnu.org/download/construo/construo-0.2.2.tar.gz;
|
|
|
|
sha256 = "0c661rjasax4ykw77dgqj39jhb4qi48m0bhhdy42vd5a4rfdrcck";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [libX11 zlib xproto]
|
2008-08-15 00:04:30 +02:00
|
|
|
++ (if args ? mesa then [args.mesa args.freeglut] else [])
|
2007-12-03 05:48:44 +01:00
|
|
|
;
|
|
|
|
configureFlags = [""];
|
2009-05-20 01:25:58 +02:00
|
|
|
preConfigure = builderDefs.stringsWithDeps.fullDepEntry (''
|
2009-05-12 18:00:58 +02:00
|
|
|
sed -e 's/math[.]h/cmath/' -i vector.cxx
|
|
|
|
sed -e 's/games/bin/' -i Makefile.in
|
|
|
|
sed -e '1i\#include <stdlib.h>' -i construo_main.cxx -i command_line.cxx -i config.hxx
|
|
|
|
sed -e '1i\#include <string.h>' -i command_line.cxx -i lisp_reader.cxx -i unix_system.cxx \
|
|
|
|
-i world.cxx construo_main.cxx
|
|
|
|
'') ["doUnpack" "minInit"];
|
2008-08-19 07:54:09 +02:00
|
|
|
};
|
2008-01-18 13:36:56 +01:00
|
|
|
in with localDefs;
|
2007-12-03 05:48:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-18 10:39:59 +01:00
|
|
|
name = "construo-0.2.2";
|
2007-12-03 05:48:44 +01:00
|
|
|
builder = writeScript (name + "-builder")
|
2009-05-12 18:00:58 +02:00
|
|
|
(textClosure localDefs ["preConfigure" "doConfigure" "doMakeInstall" "doForceShare" "doPropagate"]);
|
2007-12-03 05:48:44 +01:00
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "Construo masses and springs simulation";
|
2008-03-02 19:49:31 +01:00
|
|
|
inherit src;
|
2007-12-03 05:48:44 +01:00
|
|
|
};
|
|
|
|
}
|