2021-01-17 03:30:45 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gtk2, SDL, nasm, zlib, libpng, libGLU, libGL }:
|
2010-08-23 22:28:14 +02:00
|
|
|
|
2021-08-12 23:00:21 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gens-gs";
|
|
|
|
version = "7";
|
2010-08-23 22:28:14 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-12 23:00:21 +02:00
|
|
|
url = "http://retrocdn.net/images/6/6d/Gens-gs-r${version}.tar.gz";
|
2010-08-23 22:28:14 +02:00
|
|
|
sha256 = "1ha5s6d3y7s9aq9f4zmn9p88109c3mrj36z2w68jhiw5xrxws833";
|
|
|
|
};
|
|
|
|
|
2021-01-17 03:30:45 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-11-10 17:44:34 +01:00
|
|
|
buildInputs = [ gtk2 SDL nasm zlib libpng libGLU libGL ];
|
2010-08-23 22:28:14 +02:00
|
|
|
|
2019-09-04 00:49:40 +02:00
|
|
|
# Work around build failures on recent GTK.
|
2011-03-14 11:54:10 +01:00
|
|
|
# See http://ubuntuforums.org/showthread.php?p=10535837
|
|
|
|
NIX_CFLAGS_COMPILE = "-UGTK_DISABLE_DEPRECATED -UGSEAL_ENABLE";
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://segaretro.org/Gens/GS";
|
2010-08-23 22:28:14 +02:00
|
|
|
description = "A Genesis/Mega Drive emulator";
|
2010-08-24 11:57:57 +02:00
|
|
|
platforms = [ "i686-linux" ];
|
2018-08-20 19:39:08 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.eelco ];
|
2010-08-23 22:28:14 +02:00
|
|
|
};
|
|
|
|
}
|