2021-01-15 05:31:39 +01:00
|
|
|
{ lib, stdenv
|
2019-11-24 10:13:31 +01:00
|
|
|
, fetchurl
|
|
|
|
, libX11
|
|
|
|
, zlib
|
|
|
|
, xorgproto
|
|
|
|
, libGL ? null
|
|
|
|
, libGLU ? null
|
|
|
|
, freeglut ? null
|
|
|
|
}:
|
2010-07-29 20:55:16 +02:00
|
|
|
|
2007-12-03 05:48:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "construo";
|
2016-07-31 23:13:39 +02:00
|
|
|
version = "0.2.3";
|
2016-07-31 22:54:11 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://github.com/Construo/construo/releases/download/v${version}/${pname}-${version}.tar.gz";
|
2016-07-31 23:13:39 +02:00
|
|
|
sha256 = "1wmj527hbj1qv44cdsj6ahfjrnrjwg2dp8gdick8nd07vm062qxa";
|
2016-07-31 22:54:11 +02:00
|
|
|
};
|
|
|
|
|
2018-12-31 04:40:47 +01:00
|
|
|
buildInputs = [ libX11 zlib xorgproto ]
|
2021-01-15 05:31:39 +01:00
|
|
|
++ lib.optional (libGL != null) libGL
|
|
|
|
++ lib.optional (libGLU != null) libGLU
|
|
|
|
++ lib.optional (freeglut != null) freeglut;
|
2016-07-31 22:54:11 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
2016-07-31 23:13:39 +02:00
|
|
|
substituteInPlace src/Makefile.in \
|
|
|
|
--replace games bin
|
2016-07-31 22:54:11 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Masses and springs simulation game";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://fs.fsf.org/construo/";
|
2021-01-15 05:31:39 +01:00
|
|
|
license = lib.licenses.gpl3;
|
2016-07-31 22:54:11 +02:00
|
|
|
};
|
2007-12-03 05:48:44 +01:00
|
|
|
}
|