Fix construo build

svn path=/nixpkgs/trunk/; revision=15573
This commit is contained in:
Michael Raskin 2009-05-12 16:00:58 +00:00
parent 852603e4df
commit d59710a58c

View file

@ -10,21 +10,19 @@ args : with args;
++ (if args ? mesa then [args.mesa args.freeglut] else [])
;
configureFlags = [""];
preConfigure = builderDefs.stringsWithDeps.FullDepEntry (''
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"];
};
in with localDefs;
let
preConfigure = FullDepEntry (''
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];
in
stdenv.mkDerivation rec {
name = "construo-"+version;
builder = writeScript (name + "-builder")
(textClosure localDefs [preConfigure doConfigure doMakeInstall doForceShare doPropagate]);
(textClosure localDefs ["preConfigure" "doConfigure" "doMakeInstall" "doForceShare" "doPropagate"]);
meta = {
description = "Construo masses and springs simulation";
inherit src;