nixpkgs/pkgs/development/libraries/aubio/default.nix

31 lines
751 B
Nix
Raw Normal View History

{ stdenv, fetchurl, alsaLib, fftw, jack2, libsamplerate
, libsndfile, pkgconfig, python
}:
stdenv.mkDerivation rec {
2014-05-03 15:12:06 +00:00
name = "aubio-0.4.1";
src = fetchurl {
2014-02-17 22:43:11 +00:00
url = "http://aubio.org/pub/${name}.tar.bz2";
2014-05-03 15:12:06 +00:00
sha256 = "15f6nf76y7iyl2kl4ny7ky0zpxfxr8j3902afvd6ydnnkh5dzmr5";
};
buildInputs = [
alsaLib fftw jack2 libsamplerate libsndfile pkgconfig python
];
configurePhase = "python waf configure --prefix=$out";
buildPhase = "python waf";
installPhase = "python waf install";
meta = with stdenv.lib; {
description = "Library for audio labelling";
homepage = http://aubio.org/;
license = licenses.gpl2;
maintainers = [ maintainers.goibhniu maintainers.marcweber ];
platforms = platforms.linux;
};
}