summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-25 02:28:19 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-25 02:28:19 +0000
commit46edd63af9f9a0d32ed00052fba08aae4055837d (patch)
treed017b14417684d5f46e5610240a1ace828b5acb9 /pkgs
parent1c58e91a407cac1b28edeecaf77947bf13b0abc8 (diff)
downloadnixlib-46edd63af9f9a0d32ed00052fba08aae4055837d.tar
nixlib-46edd63af9f9a0d32ed00052fba08aae4055837d.tar.gz
nixlib-46edd63af9f9a0d32ed00052fba08aae4055837d.tar.bz2
nixlib-46edd63af9f9a0d32ed00052fba08aae4055837d.tar.lz
nixlib-46edd63af9f9a0d32ed00052fba08aae4055837d.tar.xz
nixlib-46edd63af9f9a0d32ed00052fba08aae4055837d.tar.zst
nixlib-46edd63af9f9a0d32ed00052fba08aae4055837d.zip
easyrpg-player: init at 0.5.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/easyrpg-player/default.nix41
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/games/easyrpg-player/default.nix b/pkgs/games/easyrpg-player/default.nix
new file mode 100644
index 000000000000..be45866a7dd7
--- /dev/null
+++ b/pkgs/games/easyrpg-player/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, harfbuzz ? null
+, liblcf, libpng, libsndfile ? null, libxmp ? null, libvorbis ? null, mpg123 ? null
+, opusfile ? null, pixman, SDL2, speexdsp ? null, wildmidi ? null, zlib }:
+
+stdenv.mkDerivation rec {
+  name = "easyrpg-player-${version}";
+  version = "0.5.3";
+
+  src = fetchFromGitHub {
+    owner = "EasyRPG";
+    repo = "Player";
+    rev = version;
+    sha256 = "1cn3g08ap6cf812s8p3ilf31q7y7y4knp1s0gk45mqcz215cpd8q";
+  };
+
+  nativeBuildInputs = [ cmake doxygen pkgconfig ];
+
+  buildInputs = [
+    freetype
+    harfbuzz
+    liblcf
+    libpng
+    libsndfile
+    libxmp
+    libvorbis
+    mpg123
+    opusfile
+    SDL2
+    pixman
+    speexdsp
+    wildmidi
+    zlib
+  ];
+
+  meta = with stdenv.lib; {
+    homepage = https://easyrpg.org/;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ yegortimoshenko ];
+    platforms = platforms.linux;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 21bce8538608..35f123c629ac 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -18008,6 +18008,8 @@ with pkgs;
 
   d2x_rebirth = callPackage ../games/d2x-rebirth { };
 
+  easyrpg-player = callPackage ../games/easyrpg-player { };
+
   eboard = callPackage ../games/eboard { };
 
   eduke32 = callPackage ../games/eduke32 { };