summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/emulationstation
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-02-15 23:28:16 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-02-16 01:38:20 -0300
commit8d65e832f0a18f60e2040940c80d96373ac8b88c (patch)
tree3d6ade66b2a81403e3852b80b9e7c660699b6ed6 /pkgs/applications/emulators/emulationstation
parent19574af0af3ffaf7c9e359744ed32556f34536bd (diff)
Move misc/emulators to applications/emulators - part 1
Emulators form a class by themselves. So, they should be moved to applications/.
Diffstat (limited to 'pkgs/applications/emulators/emulationstation')
-rw-r--r--pkgs/applications/emulators/emulationstation/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/emulators/emulationstation/default.nix b/pkgs/applications/emulators/emulationstation/default.nix
new file mode 100644
index 000000000000..4cb5ca9ec2e6
--- /dev/null
+++ b/pkgs/applications/emulators/emulationstation/default.nix
@@ -0,0 +1,37 @@
+{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, curl, boost, eigen
+, freeimage, freetype, libGLU, libGL, SDL2, alsa-lib, libarchive
+, fetchpatch }:
+
+stdenv.mkDerivation {
+ pname = "emulationstation";
+ version = "2.0.1a";
+
+ src = fetchFromGitHub {
+ owner = "Aloshi";
+ repo = "EmulationStation";
+ rev = "646bede3d9ec0acf0ae378415edac136774a66c5";
+ sha256 = "0cm0sq2wri2l9cvab1l0g02za59q7klj0h3p028vr96n6njj4w9v";
+ };
+
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/Aloshi/EmulationStation/commit/49ccd8fc7a7b1dfd974fc57eb13317c42842f22c.patch";
+ sha256 = "1v5d81l7bav0k5z4vybrc3rjcysph6lkm5pcfr6m42wlz7jmjw0p";
+ })
+ ];
+
+ nativeBuildInputs = [ pkg-config cmake ];
+ buildInputs = [ alsa-lib boost curl eigen freeimage freetype libarchive libGLU libGL SDL2 ];
+
+ installPhase = ''
+ install -D ../emulationstation $out/bin/emulationstation
+ '';
+
+ 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;
+ };
+}