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

                         
                       

                  
                                                  
                                                                    

    
                                                   
                                                                   
 
                           
                                                
                                  
                            
                                                                  
                                

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

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

  src = fetchurl {
    url = "https://aubio.org/pub/${name}.tar.bz2";
    sha256 = "1npks71ljc48w6858l9bq30kaf5nph8z0v61jkfb70xb9np850nl";
  };

  nativeBuildInputs = [ pkgconfig python wafHook ];
  buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ];

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