dgen-sdl: fixup meta.homepage

main
AndersonTorres 2 years ago
parent b8985bb965
commit 18d7643c9d
  1. 24
      pkgs/applications/emulators/dgen-sdl/default.nix

@ -1,39 +1,41 @@
{ lib, stdenv { lib
, stdenv
, fetchurl , fetchurl
, libarchive , libarchive
, SDL , SDL
}: }:
let stdenv.mkDerivation rec {
pname = "dgen-sdl"; pname = "dgen-sdl";
version = "1.33"; version = "1.33";
in stdenv.mkDerivation {
inherit pname version;
src = fetchurl { src = fetchurl {
url = "https://sourceforge.net/projects/dgen/files/dgen/${version}/${pname}-${version}.tar.gz"; url = "https://sourceforge.net/projects/dgen/files/dgen/${version}/${pname}-${version}.tar.gz";
hash = "sha256-meLAYBfCKHPHf4gYbrzAmGckTrbgQsdjuwlLArje9h4="; hash = "sha256-meLAYBfCKHPHf4gYbrzAmGckTrbgQsdjuwlLArje9h4=";
}; };
buildInputs = [ SDL libarchive ]; buildInputs = [
SDL
libarchive
];
configureFlags = [ configureFlags = [
"--enable-joystick"
"--enable-debugger"
"--enable-debug-vdp" "--enable-debug-vdp"
"--enable-debugger"
"--enable-joystick"
"--enable-pico" # experimental "--enable-pico" # experimental
"--enable-vgmdump" "--enable-vgmdump"
"--with-star=no" # Needs ASM support
"--with-musa"
"--with-cyclone=no" # Needs ASM support "--with-cyclone=no" # Needs ASM support
"--with-mz80"
"--with-cz80" "--with-cz80"
"--with-drz80=no" # Needs ASM support "--with-drz80=no" # Needs ASM support
"--with-dz80" "--with-dz80"
"--with-musa"
"--with-mz80"
"--with-star=no" # Needs ASM support
]; ];
meta = with lib; { meta = with lib; {
homepage = "https://dgen.sourceforge.net/"; homepage = "http://dgen.sourceforge.net/";
description = "Sega Genesis/Mega Drive emulator"; description = "Sega Genesis/Mega Drive emulator";
longDescription = '' longDescription = ''
DGen/SDL is a free, open source emulator for Sega Genesis/Mega Drive DGen/SDL is a free, open source emulator for Sega Genesis/Mega Drive

Loading…
Cancel
Save