gens-gs: add license

This commit is contained in:
Markus Kowalewski 2018-08-20 19:39:08 +02:00
parent 24513e08d7
commit a0f6e0552d
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, gtk2, SDL, nasm, zlib, libpng, libGLU_combined }:
stdenv.mkDerivation {
stdenv.mkDerivation {
name = "gens-gs-7";
src = fetchurl {
@ -15,10 +15,11 @@ stdenv.mkDerivation {
# See http://ubuntuforums.org/showthread.php?p=10535837
NIX_CFLAGS_COMPILE = "-UGTK_DISABLE_DEPRECATED -UGSEAL_ENABLE";
meta = {
meta = with stdenv.lib; {
homepage = https://segaretro.org/Gens/GS;
description = "A Genesis/Mega Drive emulator";
platforms = [ "i686-linux" ];
maintainers = [ stdenv.lib.maintainers.eelco ];
license = licenses.gpl2Plus;
maintainers = [ maintainers.eelco ];
};
}