* Added Gens/GS, a Mega Drive emulator.
svn path=/nixpkgs/trunk/; revision=23377
This commit is contained in:
parent
1d067af2ec
commit
261a3eec35
19
pkgs/misc/emulators/gens-gs/default.nix
Normal file
19
pkgs/misc/emulators/gens-gs/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gtkLibs, SDL, nasm, zlib, libpng, mesa }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gens-gs-7";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://segaretro.org/images/6/6d/Gens-gs-r7.tar.gz;
|
||||
sha256 = "1ha5s6d3y7s9aq9f4zmn9p88109c3mrj36z2w68jhiw5xrxws833";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig gtkLibs.gtk SDL nasm zlib libpng mesa ];
|
||||
|
||||
meta = {
|
||||
homepage = http://segaretro.org/Gens/GS;
|
||||
description = "A Genesis/Mega Drive emulator";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||
};
|
||||
}
|
@ -6826,6 +6826,8 @@ let
|
||||
inherit (gtkLibs1x) gtk;
|
||||
};
|
||||
|
||||
gensgs = callPackage ../misc/emulators/gens-gs { };
|
||||
|
||||
ghostscript = callPackage ../misc/ghostscript {
|
||||
x11Support = false;
|
||||
cupsSupport = getPkgConfig "ghostscript" "cups" true;
|
||||
|
Loading…
Reference in New Issue
Block a user