2010-07-29 22:55:16 +04:00
|
|
|
{ stdenv, fetchurl, builderDefs, libX11, zlib, xproto, mesa ? null, freeglut ? null }:
|
|
|
|
|
2008-11-05 00:24:10 +03:00
|
|
|
let localDefs = builderDefs.passthru.function {
|
2007-12-03 07:48:44 +03:00
|
|
|
src = /* put a fetchurl here */
|
|
|
|
fetchurl {
|
|
|
|
url = http://savannah.nongnu.org/download/construo/construo-0.2.2.tar.gz;
|
|
|
|
sha256 = "0c661rjasax4ykw77dgqj39jhb4qi48m0bhhdy42vd5a4rfdrcck";
|
|
|
|
};
|
|
|
|
|
2011-05-04 16:43:31 +04:00
|
|
|
buildInputs = [ libX11 zlib xproto ]
|
|
|
|
++ stdenv.lib.optional (mesa != null) mesa
|
|
|
|
++ stdenv.lib.optional (freeglut != null) freeglut;
|
2009-05-20 03:25:58 +04:00
|
|
|
preConfigure = builderDefs.stringsWithDeps.fullDepEntry (''
|
2009-05-12 20:00:58 +04: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 09:54:09 +04:00
|
|
|
};
|
2008-01-18 15:36:56 +03:00
|
|
|
in with localDefs;
|
2007-12-03 07:48:44 +03:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-18 12:39:59 +03:00
|
|
|
name = "construo-0.2.2";
|
2007-12-03 07:48:44 +03:00
|
|
|
builder = writeScript (name + "-builder")
|
2009-05-12 20:00:58 +04:00
|
|
|
(textClosure localDefs ["preConfigure" "doConfigure" "doMakeInstall" "doForceShare" "doPropagate"]);
|
2007-12-03 07:48:44 +03:00
|
|
|
meta = {
|
2014-08-24 18:21:08 +04:00
|
|
|
description = "Masses and springs simulation game";
|
2007-12-03 07:48:44 +03:00
|
|
|
};
|
|
|
|
}
|