summary refs log blame commit diff
path: root/pkgs/development/libraries/portaudio/default.nix
blob: 5d8c2430ab9f91d64668afe72162f2685047cc94 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                         
                                 
  
                  

                                                                       

    
























                                                                              

                                         
                                                                                


                           
                                                      
                                            
                                          
                               

                                                 





                     
{ stdenv, fetchurl, alsaLib, pkgconfig }:

stdenv.mkDerivation rec {
  name = "portaudio-19-20140130";
  
  src = fetchurl {
    url = http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz;
    sha256 = "0mwddk4qzybaf85wqfhxqlf0c5im9il8z03rd4n127k8y2jj9q4g";
  };

  buildInputs = [ pkgconfig ]
    ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib;

  configureFlags = stdenv.lib.optionals stdenv.isDarwin
    [ "--build=x86_64" "--without-oss" "--enable-static" "--enable-shared" ];

  preBuild = stdenv.lib.optionalString stdenv.isDarwin ''
    sed -i '50 i\
      #include <CoreAudio/AudioHardware.h>\
      #include <CoreAudio/AudioHardwareBase.h>\
      #include <CoreAudio/AudioHardwareDeprecated.h>' \
      include/pa_mac_core.h

    # disable two tests that don't compile
    sed -i -e 105d Makefile
    sed -i -e 107d Makefile
  '';

  # not sure why, but all the headers seem to be installed by the make install
  installPhase = if stdenv.isDarwin then ''
    mkdir -p "$out"
    cp -r include "$out"
    cp -r lib "$out"
  '' else ''
    make install

    # fixup .pc file to find alsa library
    sed -i "s|-lasound|-L${alsaLib.out}/lib -lasound|" "$out/lib/pkgconfig/"*.pc
  '';

  meta = with stdenv.lib; {
    description = "Portable cross-platform Audio API";
    homepage    = http://www.portaudio.com/;
    # Not exactly a bsd license, but alike
    license     = licenses.mit;
    maintainers = with maintainers; [ lovek323 ];
    platforms   = platforms.unix;
  };

  passthru = {
    api_version = 19;
  };
}