aubio: 0.4.5 -> 0.4.6

This commit is contained in:
Bart Brouns 2017-12-07 13:51:13 +01:00 committed by Orivej Desh
parent 11d0cccf56
commit fcca8b4e15

@ -1,23 +1,23 @@
{ stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate
, libsndfile, pkgconfig, python3
, libsndfile, pkgconfig, python
}:
stdenv.mkDerivation rec {
name = "aubio-0.4.5";
name = "aubio-0.4.6";
src = fetchurl {
url = "http://aubio.org/pub/${name}.tar.bz2";
sha256 = "1xkshac4wdm7r5sc04c38d6lmvv5sk4qrb5r1yy0xgsgdx781hkh";
sha256 = "1yvwskahx1bf3x2fvi6cwah1ay11iarh79fjlqz8s887y3hkpixx";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile python3 ];
nativeBuildInputs = [ pkgconfig python ];
buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ];
configurePhase = "${python3.interpreter} waf configure --prefix=$out";
configurePhase = "python waf configure --prefix=$out";
buildPhase = "${python3.interpreter} waf";
buildPhase = "python waf";
installPhase = "${python3.interpreter} waf install";
installPhase = "python waf install";
meta = with stdenv.lib; {
description = "Library for audio labelling";