adding aubio

svn path=/nixpkgs/trunk/; revision=17326
This commit is contained in:
Marc Weber 2009-09-21 09:58:38 +00:00
parent 8cce0a0db4
commit 7957310a66
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,23 @@
args: with args;
stdenv.mkDerivation {
name = "aubio-";
src = fetchurl {
url = http://aubio.org/pub/aubio-0.3.2.tar.gz;
sha256 = "1k8j2m8wdpa54hvrqy6nqfcx42x6nwa77hi3ym0n22k192q8f4yw";
};
buildInputs = [
pkgconfig fftw libsndfile libsamplerate python
# optional:
alsaLib jackaudio
];
meta = {
description = "ibrary for audio labelling";
homepage = http://aubio.org/;
license = "GPLv2";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}

View file

@ -2894,6 +2894,11 @@ let
inherit stdenv fetchurl gettext libtool;
});
aubio = import ../development/libraries/aubio {
inherit fetchurl stdenv lib pkgconfig fftw libsndfile libsamplerate python
alsaLib jackaudio;
};
axis = import ../development/libraries/axis {
inherit fetchurl stdenv;
};