Unverified Commit 6e601c77 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #284252 from atorres1985-contrib/emulationstation

emulationstation: refactor
parents b42f7df8 af039eb7
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, boost, eigen
, freeimage, freetype, libGLU, libGL, rapidjson, SDL2, alsa-lib
, vlc }:

stdenv.mkDerivation {
  pname = "emulationstation";
  version = "2.11.2";

  src = fetchFromGitHub {
    fetchSubmodules = true;
    owner = "RetroPie";
    repo = "EmulationStation";
    rev = "cda7de687924c4c1ab83d6b0ceb88aa734fe6cfe";
    hash = "sha256-J5h/578FVe4DXJx/AvpRnCIUpqBeFtmvFhUDYH5SErQ=";
  };

  nativeBuildInputs = [ pkg-config cmake ];
  buildInputs = [ alsa-lib boost curl eigen freeimage freetype libGLU libGL rapidjson SDL2 vlc ];

  installPhase = ''
    install -D ../emulationstation $out/bin/emulationstation
    cp -r ../resources/ $out/bin/resources/
  '';

  meta = {
    description = "A flexible emulator front-end supporting keyboardless navigation and custom system themes";
    homepage = "https://emulationstation.org";
    maintainers = [ lib.maintainers.edwtjo ];
    license = lib.licenses.mit;
    platforms = lib.platforms.linux;
    mainProgram = "emulationstation";
  };
}
+81 −0
Original line number Diff line number Diff line
{ lib
, SDL2
, alsa-lib
, boost
, cmake
, curl
, fetchFromGitHub
, freeimage
, freetype
, libGL
, libGLU
, libvlc
, pkg-config
, rapidjson
, stdenv
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "emulationstation";
  version = "2.11.2";

  src = fetchFromGitHub {
    owner = "RetroPie";
    repo = "EmulationStation";
    rev = "v${finalAttrs.version}";
    fetchSubmodules = true;
    hash = "sha256-J5h/578FVe4DXJx/AvpRnCIUpqBeFtmvFhUDYH5SErQ=";
  };

  nativeBuildInputs = [
    SDL2
    cmake
    pkg-config
  ];

  buildInputs = [
    SDL2
    alsa-lib
    boost
    curl
    freeimage
    freetype
    libGL
    libGLU
    libvlc
    rapidjson
  ];

  strictDeps = true;

  cmakeFlags = [
    (lib.cmakeBool "GL" true)
  ];

  installPhase = ''
    runHook preInstall

    install -Dm755 ../emulationstation $out/bin/emulationstation
    mkdir -p $out/share/emulationstation/
    cp -r ../resources $out/share/emulationstation/

    runHook preInstall
  '';

  # es-core/src/resources/ResourceManager.cpp: resources are searched at the
  # same place of binaries.
  postFixup = ''
    pushd $out
    ln -s $out/share/emulationstation/resources $out/bin/
    popd
  '';

  meta = {
    homepage = "https://github.com/RetroPie/EmulationStation";
    description = "A flexible emulator front-end supporting keyboardless navigation and custom system themes (forked by RetroPie)";
    license = with lib.licenses; [ mit ];
    mainProgram = "emulationstation";
    maintainers = with lib.maintainers; [ AndersonTorres edwtjo ];
    platforms = lib.platforms.linux;
  };
})
+0 −2
Original line number Diff line number Diff line
@@ -2684,8 +2684,6 @@ with pkgs;
  emu2 = callPackage ../applications/emulators/emu2 { };
  emulationstation = callPackage ../applications/emulators/emulationstation { };
  fceux = libsForQt5.callPackage ../applications/emulators/fceux { };
  firebird-emu = libsForQt5.callPackage ../applications/emulators/firebird-emu { };