mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
adding aubio
svn path=/nixpkgs/trunk/; revision=17326
This commit is contained in:
parent
8cce0a0db4
commit
7957310a66
23
pkgs/development/libraries/aubio/default.nix
Normal file
23
pkgs/development/libraries/aubio/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user