summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_mixer
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2014-10-23 04:31:30 +0400
committerNikolay Amiantov <ab@fmap.me>2014-10-23 16:45:51 +0400
commit05760bb2c79007c7a3f0ccc3f667e5663157d7e6 (patch)
tree6d1132171e6d5c8afcb5c48d92f3b6f2d61db66e /pkgs/development/libraries/SDL_mixer
parent56d73eae01c9fe55eb2b32f83ce416e56b328ea3 (diff)
downloadnixpkgs-05760bb2c79007c7a3f0ccc3f667e5663157d7e6.tar
nixpkgs-05760bb2c79007c7a3f0ccc3f667e5663157d7e6.tar.gz
nixpkgs-05760bb2c79007c7a3f0ccc3f667e5663157d7e6.tar.bz2
nixpkgs-05760bb2c79007c7a3f0ccc3f667e5663157d7e6.tar.lz
nixpkgs-05760bb2c79007c7a3f0ccc3f667e5663157d7e6.tar.xz
nixpkgs-05760bb2c79007c7a3f0ccc3f667e5663157d7e6.tar.zst
nixpkgs-05760bb2c79007c7a3f0ccc3f667e5663157d7e6.zip
SDL_mixer: add mp3 support
Diffstat (limited to 'pkgs/development/libraries/SDL_mixer')
-rw-r--r--pkgs/development/libraries/SDL_mixer/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/SDL_mixer/default.nix b/pkgs/development/libraries/SDL_mixer/default.nix
index 7aca033c147..22a67b13e0b 100644
--- a/pkgs/development/libraries/SDL_mixer/default.nix
+++ b/pkgs/development/libraries/SDL_mixer/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, SDL, libogg, libvorbis, enableNativeMidi ? false, fluidsynth ? null }:
+{ stdenv, fetchurl, SDL, libogg, libvorbis, smpeg, enableNativeMidi ? false, fluidsynth ? null }:
 
 stdenv.mkDerivation rec {
   pname   = "SDL_mixer";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     sha256 = "0alrhqgm40p4c92s26mimg9cm1y7rzr6m0p49687jxd9g6130i0n";
   };
 
-  buildInputs = [SDL libogg libvorbis fluidsynth];
+  buildInputs = [SDL libogg libvorbis fluidsynth smpeg];
 
   configureFlags = "--disable-music-ogg-shared" + stdenv.lib.optionalString enableNativeMidi " --enable-music-native-midi-gpl";