nixpkgs/pkgs/games/construo/default.nix

26 lines
698 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libX11, zlib, xproto, mesa ? 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 (mesa != null) mesa
++ 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/;
};
}