summary refs log tree commit diff
diff options
context:
space:
mode:
authorCray Elliott <MP2E@archlinux.us>2017-03-08 04:45:22 -0800
committerCray Elliott <MP2E@archlinux.us>2017-03-15 20:44:54 -0700
commitf60fec99d19f0f2181661d65f73aca3a85ca81c4 (patch)
tree4ff7a6a492cf6590cc564970431ac61abfd11291
parente3abe9c6faf2b65717867a3ec966667d9e83bfa7 (diff)
downloadnixpkgs-f60fec99d19f0f2181661d65f73aca3a85ca81c4.tar
nixpkgs-f60fec99d19f0f2181661d65f73aca3a85ca81c4.tar.gz
nixpkgs-f60fec99d19f0f2181661d65f73aca3a85ca81c4.tar.bz2
nixpkgs-f60fec99d19f0f2181661d65f73aca3a85ca81c4.tar.lz
nixpkgs-f60fec99d19f0f2181661d65f73aca3a85ca81c4.tar.xz
nixpkgs-f60fec99d19f0f2181661d65f73aca3a85ca81c4.tar.zst
nixpkgs-f60fec99d19f0f2181661d65f73aca3a85ca81c4.zip
SDL2_mixer: add optional fluidsynth support
also add flac support and mp3 support, and add myself as the maintainer,
since there is no current maintainer for this package
-rw-r--r--pkgs/development/libraries/SDL2_mixer/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/SDL2_mixer/default.nix b/pkgs/development/libraries/SDL2_mixer/default.nix
index 0919970543c..9fef76c799b 100644
--- a/pkgs/development/libraries/SDL2_mixer/default.nix
+++ b/pkgs/development/libraries/SDL2_mixer/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, SDL2, libogg, libvorbis, enableNativeMidi ? false }:
+{ stdenv, lib, fetchurl, SDL2, libogg, libvorbis, smpeg, flac, enableNativeMidi ? false, fluidsynth ? null }:
 
 stdenv.mkDerivation rec {
   name = "SDL2_mixer-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "0pv9jzjpcjlbiaybvwrb4avmv46qk7iqxlnqrd2dfj82c4mgc92s";
   };
 
-  propagatedBuildInputs = [ SDL2 libogg libvorbis ];
+  propagatedBuildInputs = [ SDL2 libogg libvorbis fluidsynth smpeg flac ];
 
   configureFlags = [ "--disable-music-ogg-shared" ] ++ lib.optional enableNativeMidi "--enable-music-native-midi-gpl";
 
@@ -17,6 +17,7 @@ stdenv.mkDerivation rec {
     description = "SDL multi-channel audio mixer library";
     platforms = platforms.linux;
     homepage = "https://www.libsdl.org/projects/SDL_mixer/";
+    maintainers = with maintainers; [ MP2E ];
     license = licenses.zlib;
   };
 }