2019-11-10 16:44:34 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2, SDL, nasm, zlib, libpng, libGLU, libGL }:
|
2010-08-23 21:28:14 +01:00
|
|
|
|
2018-08-20 18:39:08 +01:00
|
|
|
stdenv.mkDerivation {
|
2010-08-23 21:28:14 +01:00
|
|
|
name = "gens-gs-7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-08-21 18:51:41 +01:00
|
|
|
url = http://retrocdn.net/images/6/6d/Gens-gs-r7.tar.gz;
|
2010-08-23 21:28:14 +01:00
|
|
|
sha256 = "1ha5s6d3y7s9aq9f4zmn9p88109c3mrj36z2w68jhiw5xrxws833";
|
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-11-10 16:44:34 +00:00
|
|
|
buildInputs = [ gtk2 SDL nasm zlib libpng libGLU libGL ];
|
2010-08-23 21:28:14 +01:00
|
|
|
|
2019-09-03 23:49:40 +01:00
|
|
|
# Work around build failures on recent GTK.
|
2011-03-14 10:54:10 +00:00
|
|
|
# See http://ubuntuforums.org/showthread.php?p=10535837
|
|
|
|
NIX_CFLAGS_COMPILE = "-UGTK_DISABLE_DEPRECATED -UGSEAL_ENABLE";
|
|
|
|
|
2018-08-20 18:39:08 +01:00
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://segaretro.org/Gens/GS;
|
2010-08-23 21:28:14 +01:00
|
|
|
description = "A Genesis/Mega Drive emulator";
|
2010-08-24 10:57:57 +01:00
|
|
|
platforms = [ "i686-linux" ];
|
2018-08-20 18:39:08 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.eelco ];
|
2010-08-23 21:28:14 +01:00
|
|
|
};
|
|
|
|
}
|