summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/emulators/mgba
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-10-13 23:18:42 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-10-13 23:45:03 -0300
commit875ba8ecdb329a294f2aafc3f5062fb81a2171fe (patch)
tree0d377e73ff0b8d8e3fb089de2198639651200260 /pkgs/applications/emulators/mgba
parentae24d583aefba3220fe20f92adcf7b39bdacb5bb (diff)
mgba: 0.9.3 -> 0.10.0
Now with lua scripting engine!
Diffstat (limited to 'pkgs/applications/emulators/mgba')
-rw-r--r--pkgs/applications/emulators/mgba/default.nix24
1 files changed, 14 insertions, 10 deletions
diff --git a/pkgs/applications/emulators/mgba/default.nix b/pkgs/applications/emulators/mgba/default.nix
index 4424bedc6f23..ce0ea6d6de8b 100644
--- a/pkgs/applications/emulators/mgba/default.nix
+++ b/pkgs/applications/emulators/mgba/default.nix
@@ -3,12 +3,14 @@
, fetchFromGitHub
, SDL2
, cmake
-, libepoxy
-, ffmpeg_4
+, copyDesktopItems
+, ffmpeg
, imagemagick
, libedit
, libelf
+, libepoxy
, libzip
+, lua
, makeDesktopItem
, minizip
, pkg-config
@@ -18,31 +20,33 @@
, wrapQtAppsHook
}:
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
pname = "mgba";
- version = "0.9.3";
+ version = "0.10.0";
src = fetchFromGitHub {
owner = "mgba-emu";
repo = "mgba";
- rev = version;
- hash = "sha256-0ZtoyyoD+YjplJlPFpZgIg5119j/6X8ZaSZP+UpX5K0=";
+ rev = finalAttrs.version;
+ hash = "sha256-2thc2v3aD8t1PrREZIjzRuYfP7b3BA7uFb6R95zxsZI=";
};
nativeBuildInputs = [
cmake
+ copyDesktopItems
pkg-config
wrapQtAppsHook
];
buildInputs = [
SDL2
- libepoxy
- ffmpeg_4
+ ffmpeg
imagemagick
libedit
libelf
+ libepoxy
libzip
+ lua
minizip
qtbase
qtmultimedia
@@ -79,9 +83,9 @@ stdenv.mkDerivation rec {
runners, and a modern feature set for emulators that older emulators may
not support.
'';
+ changelog = "https://github.com/mgba-emu/mgba/blob/${finalAttrs.version}/CHANGES";
license = licenses.mpl20;
maintainers = with maintainers; [ MP2E AndersonTorres ];
platforms = platforms.linux;
};
-}
-# TODO: use desktopItem functions
+})