nixpkgs/pkgs/games/construo/default.nix

27 lines
741 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libX11, zlib, xproto, libGL ? null, freeglut ? null }:
stdenv.mkDerivation rec {
2016-07-31 21:13:39 +00:00
name = "construo-${version}";
version = "0.2.3";
src = fetchurl {
2016-07-31 21:13:39 +00:00
url = "https://github.com/Construo/construo/releases/download/v${version}/${name}.tar.gz";
sha256 = "1wmj527hbj1qv44cdsj6ahfjrnrjwg2dp8gdick8nd07vm062qxa";
};
buildInputs = [ libX11 zlib xproto ]
++ stdenv.lib.optional (libGL != null) libGL
++ stdenv.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";
2016-07-31 21:13:39 +00:00
homepage = http://fs.fsf.org/construo/;
2018-08-05 14:12:46 +00:00
license = stdenv.lib.licenses.gpl3;
};
}