From 3b3afc42923435f936060145b61e5bf8cb5699ad Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Mon, 28 Oct 2019 22:13:45 +0000 Subject: melonDS: init at 0.8.3 --- pkgs/misc/emulators/melonDS/default.nix | 29 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/misc/emulators/melonDS/default.nix diff --git a/pkgs/misc/emulators/melonDS/default.nix b/pkgs/misc/emulators/melonDS/default.nix new file mode 100644 index 000000000000..de8b5e03552d --- /dev/null +++ b/pkgs/misc/emulators/melonDS/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, curl, libpcap }: + +stdenv.mkDerivation rec { + pname = "melonDS"; + version = "0.8.3"; + + src = fetchFromGitHub { + owner = "Arisotura"; + repo = pname; + rev = version; + sha256 = "1lqmfwjpkdqfkns1aaxlp4yrg6i0r66mxfr4rrj7b5286k44hqwn"; + }; + + enableParallelBuilding = true; + nativeBuildInputs = [ cmake pkgconfig ]; + buildInputs = [ SDL2 gtk3 curl libpcap ]; + + postInstall = '' + install -Dm644 romlist.bin "$out/share/melonDS/romlist.bin" + ''; + + meta = with stdenv.lib; { + homepage = "http://melonds.kuribo64.net/"; + description = "Work in progress Nintendo DS emulator"; + license = licenses.gpl3; + maintainers = with maintainers; [ artemist ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8465c5060030..1862fa3dbd17 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20864,6 +20864,8 @@ in meld = callPackage ../applications/version-management/meld { }; + melonDS = callPackage ../misc/emulators/melonDS { }; + meme = callPackage ../applications/graphics/meme { }; mendeley = libsForQt5.callPackage ../applications/office/mendeley { -- cgit 1.4.1 From 13a14e2bfe4ff3b7da222624ce5749218105e465 Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Tue, 16 Jun 2020 16:53:20 -0400 Subject: melonDS: init at 0.8.3 --- pkgs/misc/emulators/melonDS/default.nix | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/pkgs/misc/emulators/melonDS/default.nix b/pkgs/misc/emulators/melonDS/default.nix index de8b5e03552d..94fbeba0e075 100644 --- a/pkgs/misc/emulators/melonDS/default.nix +++ b/pkgs/misc/emulators/melonDS/default.nix @@ -1,8 +1,13 @@ -{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, curl, libpcap }: +{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, libpcap, wrapGAppsHook }: stdenv.mkDerivation rec { pname = "melonDS"; version = "0.8.3"; + ## When updating to the release after 0.8.3, + ## - Uncomment: + ## cmakeFlags = [ "-UUNIX_PORTABLE" ]; + ## - Remove the postInstall, since cmake should then take care of installing icons, .desktop file, and romlist.bin + ## (see https://github.com/Arisotura/melonDS/pull/546) src = fetchFromGitHub { owner = "Arisotura"; @@ -12,18 +17,25 @@ stdenv.mkDerivation rec { }; enableParallelBuilding = true; - nativeBuildInputs = [ cmake pkgconfig ]; - buildInputs = [ SDL2 gtk3 curl libpcap ]; + nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ]; + buildInputs = [ SDL2 gtk3 libpcap ]; postInstall = '' - install -Dm644 romlist.bin "$out/share/melonDS/romlist.bin" + install -Dm644 -t $out/share/melonDS/ ../romlist.bin + install -Dm644 -t $out/share/applications/ ../flatpak/*.desktop + + for i in ../icon/melon_*.png; do + d="''${i##*_}" + d="$out/share/icons/hicolor/''${d%.png}/apps" + install -D $i "$d/net.kuribo64.melonds.png" + done ''; meta = with stdenv.lib; { homepage = "http://melonds.kuribo64.net/"; description = "Work in progress Nintendo DS emulator"; - license = licenses.gpl3; - maintainers = with maintainers; [ artemist ]; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ artemist benley ]; platforms = platforms.linux; }; } -- cgit 1.4.1