summary refs log blame commit diff
path: root/pkgs/development/libraries/SDL2_mixer/default.nix
blob: af0da7dc62705b7a80787ab6c130690a145b6027 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















              

                         
                       
                    

                  
                                                                                         
                                                                    

    
                                     
 




                                                      
 










                           
 










                                             
 
                           
                                                          
                               
                                                            
                                             
                            

    
{ stdenv
, fetchurl
, pkg-config
, AudioToolbox
, AudioUnit
, CoreServices
, SDL2
, flac
, fluidsynth
, libmodplug
, libogg
, libvorbis
, mpg123
, opusfile
, smpeg2
}:

stdenv.mkDerivation rec {
  pname = "SDL2_mixer";
  version = "2.0.4";

  src = fetchurl {
    url = "https://www.libsdl.org/projects/SDL_mixer/release/${pname}-${version}.tar.gz";
    sha256 = "0694vsz5bjkcdgfdra6x9fq8vpzrl8m6q96gh58df7065hw5mkxl";
  };

  nativeBuildInputs = [ pkg-config ];

  buildInputs = stdenv.lib.optionals stdenv.isDarwin [
    AudioToolbox
    AudioUnit
    CoreServices
  ];

  propagatedBuildInputs = [
    SDL2
    flac
    fluidsynth
    libmodplug
    libogg
    libvorbis
    mpg123
    opusfile
    smpeg2
  ];

  configureFlags = [
    "--disable-music-ogg-shared"
    "--disable-music-flac-shared"
    "--disable-music-mod-modplug-shared"
    "--disable-music-mp3-mpg123-shared"
    "--disable-music-opus-shared"
    "--disable-music-midi-fluidsynth-shared"
  ] ++ stdenv.lib.optionals stdenv.isDarwin [
    "--disable-sdltest"
    "--disable-smpegtest"
  ];

  meta = with stdenv.lib; {
    description = "SDL multi-channel audio mixer library";
    platforms = platforms.unix;
    homepage = "https://www.libsdl.org/projects/SDL_mixer/";
    maintainers = with maintainers; [ MP2E ];
    license = licenses.zlib;
  };
}