summary refs log tree commit diff
path: root/pkgs/games/construo
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2016-07-31 23:13:39 +0200
committerRobert Helgesson <robert@rycee.net>2016-07-31 23:13:39 +0200
commit677add282239748a97f7674d56b59a26856650a7 (patch)
tree3e1882737214d15e2e3b4f54226c797987257b92 /pkgs/games/construo
parent845317e5d62f8e42155933a7c4c74eaca85eb94f (diff)
downloadnixpkgs-677add282239748a97f7674d56b59a26856650a7.tar
nixpkgs-677add282239748a97f7674d56b59a26856650a7.tar.gz
nixpkgs-677add282239748a97f7674d56b59a26856650a7.tar.bz2
nixpkgs-677add282239748a97f7674d56b59a26856650a7.tar.lz
nixpkgs-677add282239748a97f7674d56b59a26856650a7.tar.xz
nixpkgs-677add282239748a97f7674d56b59a26856650a7.tar.zst
nixpkgs-677add282239748a97f7674d56b59a26856650a7.zip
construo: 0.2.2 -> 0.2.3
Diffstat (limited to 'pkgs/games/construo')
-rw-r--r--pkgs/games/construo/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/games/construo/default.nix b/pkgs/games/construo/default.nix
index 7e4f3c58c31..0c9e83cdb9a 100644
--- a/pkgs/games/construo/default.nix
+++ b/pkgs/games/construo/default.nix
@@ -1,11 +1,12 @@
 { 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 ]
@@ -13,14 +14,12 @@ stdenv.mkDerivation rec {
     ++ 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/;
   };
 }