Skip to content

Commit

Permalink
construo: 0.2.2 -> 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rycee committed Jul 31, 2016
1 parent 845317e commit 677add2
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions pkgs/games/construo/default.nix
@@ -1,26 +1,25 @@
{ stdenv, fetchurl, libX11, zlib, xproto, mesa ? null, freeglut ? null }:

stdenv.mkDerivation rec {
name = "construo-0.2.2";
name = "construo-${version}";
version = "0.2.3";

src = fetchurl {
url = http://savannah.nongnu.org/download/construo/construo-0.2.2.tar.gz;
sha256 = "0c661rjasax4ykw77dgqj39jhb4qi48m0bhhdy42vd5a4rfdrcck";
url = "https://github.com/Construo/construo/releases/download/v${version}/${name}.tar.gz";
sha256 = "1wmj527hbj1qv44cdsj6ahfjrnrjwg2dp8gdick8nd07vm062qxa";
};

buildInputs = [ libX11 zlib xproto ]
++ stdenv.lib.optional (mesa != null) mesa
++ stdenv.lib.optional (freeglut != null) freeglut;

preConfigure = ''
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
substituteInPlace src/Makefile.in \
--replace games bin
'';

meta = {
description = "Masses and springs simulation game";
homepage = http://fs.fsf.org/construo/;
};
}

0 comments on commit 677add2

Please sign in to comment.