aubio: Fix the build, tidy up and add myself as a maintainer
This commit is contained in:
parent
134e65b150
commit
78f961e217
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, fftw, libsndfile, libsamplerate
|
{ stdenv, fetchurl, alsaLib, fftw, jackaudio, libsamplerate
|
||||||
, python, alsaLib, jackaudio }:
|
, libsndfile, pkgconfig, python
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "aubio-0.4.0";
|
name = "aubio-0.4.0";
|
||||||
@ -9,17 +10,21 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "18ik5nn8n984f0wnrwdfhc06b8blqgm9b2hrm7hc9m0rr039mpj9";
|
sha256 = "18ik5nn8n984f0wnrwdfhc06b8blqgm9b2hrm7hc9m0rr039mpj9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs = [
|
||||||
[ pkgconfig fftw libsndfile libsamplerate python
|
alsaLib fftw jackaudio libsamplerate libsndfile pkgconfig python
|
||||||
# optional:
|
];
|
||||||
alsaLib jackaudio
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
configurePhase = "python waf configure --prefix=$out";
|
||||||
|
|
||||||
|
buildPhase = "python waf";
|
||||||
|
|
||||||
|
installPhase = "python waf install";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "Library for audio labelling";
|
description = "Library for audio labelling";
|
||||||
homepage = http://aubio.org/;
|
homepage = http://aubio.org/;
|
||||||
license = "GPLv2";
|
license = licenses.gpl2;
|
||||||
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
maintainers = [ maintainers.goibhniu maintainers.marcweber ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user