Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

aubio: 0.4.5 -> 0.4.6

authored by Bart Brouns and committed by Orivej Desh fcca8b4e 11d0cccf

+8 -8
+8 -8
pkgs/development/libraries/aubio/default.nix
··· 1 1 { stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate 2 - , libsndfile, pkgconfig, python3 2 + , libsndfile, pkgconfig, python 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "aubio-0.4.5"; 6 + name = "aubio-0.4.6"; 7 7 8 8 src = fetchurl { 9 9 url = "http://aubio.org/pub/${name}.tar.bz2"; 10 - sha256 = "1xkshac4wdm7r5sc04c38d6lmvv5sk4qrb5r1yy0xgsgdx781hkh"; 10 + sha256 = "1yvwskahx1bf3x2fvi6cwah1ay11iarh79fjlqz8s887y3hkpixx"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkgconfig ]; 14 - buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile python3 ]; 13 + nativeBuildInputs = [ pkgconfig python ]; 14 + buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ]; 15 15 16 - configurePhase = "${python3.interpreter} waf configure --prefix=$out"; 16 + configurePhase = "python waf configure --prefix=$out"; 17 17 18 - buildPhase = "${python3.interpreter} waf"; 18 + buildPhase = "python waf"; 19 19 20 - installPhase = "${python3.interpreter} waf install"; 20 + installPhase = "python waf install"; 21 21 22 22 meta = with stdenv.lib; { 23 23 description = "Library for audio labelling";