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 = [""];
|
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
|
|
|
let
|
|
|
|
preConfigure = FullDepEntry ("
|
|
|
|
sed -e 's/math[.]h/cmath/' -i vector.cxx
|
|
|
|
sed -e 's/games/bin/' -i Makefile.in
|
|
|
|
") [doUnpack minInit];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "construo-"+version;
|
|
|
|
builder = writeScript (name + "-builder")
|
2008-01-18 13:36:56 +01: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
|
|
|
};
|
|
|
|
}
|