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

                               

                         
                       

                  
                                                 
                                                                    

    
                 
                                                                
    
 






                                                        
                                                
                                 


                                                                 

    
{ stdenv, fetchurl, alsaLib, fftw, jack2, libsamplerate
, libsndfile, pkgconfig, python
}:

stdenv.mkDerivation rec {
  name = "aubio-0.4.1";

  src = fetchurl {
    url = "http://aubio.org/pub/${name}.tar.bz2";
    sha256 = "15f6nf76y7iyl2kl4ny7ky0zpxfxr8j3902afvd6ydnnkh5dzmr5";
  };

  buildInputs = [
    alsaLib fftw jack2 libsamplerate libsndfile pkgconfig python
  ];

  configurePhase = "python waf configure --prefix=$out";

  buildPhase = "python waf";

  installPhase = "python waf install";

  meta = with stdenv.lib; { 
    description = "Library for audio labelling";
    homepage = http://aubio.org/;
    license = licenses.gpl2;
    maintainers = [ maintainers.goibhniu maintainers.marcweber ];
    platforms = platforms.linux;
  };
}