aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/games/scummvm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/games/scummvm/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/games/scummvm/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/games/scummvm/default.nix b/infra/libkookie/nixpkgs/pkgs/games/scummvm/default.nix
new file mode 100644
index 000000000000..02df60c829f2
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/games/scummvm/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchurl, nasm
+, alsaLib, curl, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, libGLU, libGL, SDL2, zlib
+}:
+
+stdenv.mkDerivation rec {
+ pname = "scummvm";
+ version = "2.2.0";
+
+ src = fetchurl {
+ url = "http://scummvm.org/frs/scummvm/${version}/${pname}-${version}.tar.xz";
+ sha256 = "FGllflk72Ky8+sC4ObCG9kDr8SBjPpPxFsq2UrWyc4c=";
+ };
+
+ nativeBuildInputs = [ nasm ];
+
+ buildInputs = [
+ alsaLib curl freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libvorbis libGLU libGL SDL2 zlib
+ ];
+
+ dontDisableStatic = true;
+
+ enableParallelBuilding = true;
+
+ configurePlatforms = [ "host" ];
+ configureFlags = [
+ "--enable-c++11"
+ "--enable-release"
+ ];
+
+ # They use 'install -s', that calls the native strip instead of the cross
+ postConfigure = ''
+ sed -i "s/-c -s/-c -s --strip-program=''${STRIP@Q}/" ports.mk
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
+ homepage = "https://www.scummvm.org/";
+ license = licenses.gpl2;
+ maintainers = [ maintainers.peterhoeg ];
+ platforms = platforms.linux;
+ };
+}