forked from mirrors/nixpkgs
Fix construo build
svn path=/nixpkgs/trunk/; revision=15573
This commit is contained in:
parent
852603e4df
commit
d59710a58c
|
@ -10,21 +10,19 @@ args : with args;
|
||||||
++ (if args ? mesa then [args.mesa args.freeglut] else [])
|
++ (if args ? mesa then [args.mesa args.freeglut] else [])
|
||||||
;
|
;
|
||||||
configureFlags = [""];
|
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;
|
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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "construo-"+version;
|
name = "construo-"+version;
|
||||||
builder = writeScript (name + "-builder")
|
builder = writeScript (name + "-builder")
|
||||||
(textClosure localDefs [preConfigure doConfigure doMakeInstall doForceShare doPropagate]);
|
(textClosure localDefs ["preConfigure" "doConfigure" "doMakeInstall" "doForceShare" "doPropagate"]);
|
||||||
meta = {
|
meta = {
|
||||||
description = "Construo masses and springs simulation";
|
description = "Construo masses and springs simulation";
|
||||||
inherit src;
|
inherit src;
|
||||||
|
|
Loading…
Reference in a new issue