nixpkgs/pkgs/applications/emulators/emulationstation/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.3 KiB
Nix
Raw Normal View History

2023-06-06 08:36:58 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, boost, eigen
, freeimage, freetype, libGLU, libGL, SDL2, alsa-lib, libarchive
, fetchpatch }:
2014-08-21 18:51:38 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "emulationstation";
version = "2.0.1a";
2014-08-21 18:51:38 +00:00
2014-08-31 10:50:35 +00:00
src = fetchFromGitHub {
owner = "Aloshi";
repo = "EmulationStation";
rev = "646bede3d9ec0acf0ae378415edac136774a66c5";
sha256 = "0cm0sq2wri2l9cvab1l0g02za59q7klj0h3p028vr96n6njj4w9v";
2014-08-31 10:50:35 +00:00
};
2014-08-21 18:51:38 +00:00
patches = [
(fetchpatch {
url = "https://github.com/Aloshi/EmulationStation/commit/49ccd8fc7a7b1dfd974fc57eb13317c42842f22c.patch";
sha256 = "1v5d81l7bav0k5z4vybrc3rjcysph6lkm5pcfr6m42wlz7jmjw0p";
})
];
2023-06-06 08:36:58 +00:00
postPatch = ''
sed -i "7i #include <stack>" es-app/src/views/gamelist/ISimpleGameListView.h
'';
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ pkg-config cmake ];
2023-06-06 08:36:58 +00:00
buildInputs = [ alsa-lib boost curl eigen freeimage freetype libarchive libGLU libGL SDL2 ];
2014-08-21 18:51:38 +00:00
installPhase = ''
2014-08-31 10:50:35 +00:00
install -D ../emulationstation $out/bin/emulationstation
2014-08-21 18:51:38 +00:00
'';
meta = {
description = "A flexible emulator front-end supporting keyboardless navigation and custom system themes";
homepage = "https://emulationstation.org";
2021-01-15 13:21:58 +00:00
maintainers = [ lib.maintainers.edwtjo ];
license = lib.licenses.mit;
platforms = lib.platforms.linux;
mainProgram = "emulationstation";
2014-08-21 18:51:38 +00:00
};
}