construo: 0.2.2 -> 0.2.3
This commit is contained in:
parent
845317e5d6
commit
677add2822
@ -1,11 +1,12 @@
|
|||||||
{ stdenv, fetchurl, libX11, zlib, xproto, mesa ? null, freeglut ? null }:
|
{ stdenv, fetchurl, libX11, zlib, xproto, mesa ? null, freeglut ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "construo-0.2.2";
|
name = "construo-${version}";
|
||||||
|
version = "0.2.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://savannah.nongnu.org/download/construo/construo-0.2.2.tar.gz;
|
url = "https://github.com/Construo/construo/releases/download/v${version}/${name}.tar.gz";
|
||||||
sha256 = "0c661rjasax4ykw77dgqj39jhb4qi48m0bhhdy42vd5a4rfdrcck";
|
sha256 = "1wmj527hbj1qv44cdsj6ahfjrnrjwg2dp8gdick8nd07vm062qxa";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libX11 zlib xproto ]
|
buildInputs = [ libX11 zlib xproto ]
|
||||||
@ -13,14 +14,12 @@ stdenv.mkDerivation rec {
|
|||||||
++ stdenv.lib.optional (freeglut != null) freeglut;
|
++ stdenv.lib.optional (freeglut != null) freeglut;
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
sed -e 's/math[.]h/cmath/' -i vector.cxx
|
substituteInPlace src/Makefile.in \
|
||||||
sed -e 's/games/bin/' -i Makefile.in
|
--replace games bin
|
||||||
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
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Masses and springs simulation game";
|
description = "Masses and springs simulation game";
|
||||||
|
homepage = http://fs.fsf.org/construo/;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user