nixpkgs/pkgs/games/construo/default.nix

36 lines
801 B
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv
2019-11-24 09:13:31 +00:00
, fetchurl
, libX11
, zlib
, xorgproto
, libGL ? null
, libGLU ? null
, freeglut ? null
}:
stdenv.mkDerivation rec {
pname = "construo";
2016-07-31 21:13:39 +00:00
version = "0.2.3";
src = fetchurl {
url = "https://github.com/Construo/construo/releases/download/v${version}/${pname}-${version}.tar.gz";
2016-07-31 21:13:39 +00:00
sha256 = "1wmj527hbj1qv44cdsj6ahfjrnrjwg2dp8gdick8nd07vm062qxa";
};
buildInputs = [ libX11 zlib xorgproto ]
2021-01-15 04:31:39 +00:00
++ lib.optional (libGL != null) libGL
++ lib.optional (libGLU != null) libGLU
++ lib.optional (freeglut != null) freeglut;
preConfigure = ''
2016-07-31 21:13:39 +00:00
substituteInPlace src/Makefile.in \
--replace games bin
'';
meta = {
description = "Masses and springs simulation game";
homepage = "http://fs.fsf.org/construo/";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl3;
};
}