aubio: use python3
This commit is contained in:
parent
afd5d23779
commit
469f668769
|
@ -1,5 +1,5 @@
|
||||||
{ lib, stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate
|
{ lib, stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate
|
||||||
, libsndfile, pkg-config, python, wafHook
|
, libsndfile, pkg-config, python3, wafHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -10,9 +10,11 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1npks71ljc48w6858l9bq30kaf5nph8z0v61jkfb70xb9np850nl";
|
sha256 = "1npks71ljc48w6858l9bq30kaf5nph8z0v61jkfb70xb9np850nl";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config python wafHook ];
|
nativeBuildInputs = [ pkg-config python3 wafHook ];
|
||||||
buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ];
|
buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for audio labelling";
|
description = "Library for audio labelling";
|
||||||
homepage = "https://aubio.org/";
|
homepage = "https://aubio.org/";
|
||||||
|
|
Loading…
Reference in New Issue