* aubio: lacked a version in the name attribute, and the description
was broken. svn path=/nixpkgs/trunk/; revision=17807
This commit is contained in:
parent
a7f52f8233
commit
e111bb380d
@ -1,23 +1,25 @@
|
|||||||
args: with args;
|
{ stdenv, fetchurl, pkgconfig, fftw, libsndfile, libsamplerate
|
||||||
stdenv.mkDerivation {
|
, python, alsaLib, jackaudio }:
|
||||||
name = "aubio-";
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "aubio-0.3.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://aubio.org/pub/aubio-0.3.2.tar.gz;
|
url = "http://aubio.org/pub/${name}.tar.gz";
|
||||||
sha256 = "1k8j2m8wdpa54hvrqy6nqfcx42x6nwa77hi3ym0n22k192q8f4yw";
|
sha256 = "1k8j2m8wdpa54hvrqy6nqfcx42x6nwa77hi3ym0n22k192q8f4yw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs =
|
||||||
pkgconfig fftw libsndfile libsamplerate python
|
[ pkgconfig fftw libsndfile libsamplerate python
|
||||||
# optional:
|
# optional:
|
||||||
alsaLib jackaudio
|
alsaLib jackaudio
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "ibrary for audio labelling";
|
description = "A library for audio labelling";
|
||||||
homepage = http://aubio.org/;
|
homepage = http://aubio.org/;
|
||||||
license = "GPLv2";
|
license = "GPLv2";
|
||||||
maintainers = [args.lib.maintainers.marcweber];
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
||||||
platforms = args.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3011,7 +3011,7 @@ let
|
|||||||
});
|
});
|
||||||
|
|
||||||
aubio = import ../development/libraries/aubio {
|
aubio = import ../development/libraries/aubio {
|
||||||
inherit fetchurl stdenv lib pkgconfig fftw libsndfile libsamplerate python
|
inherit fetchurl stdenv pkgconfig fftw libsndfile libsamplerate python
|
||||||
alsaLib jackaudio;
|
alsaLib jackaudio;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -6341,8 +6341,7 @@ let
|
|||||||
libsndfile libsigcxx libusb cairomm librdf liblo fftw fftwSinglePrec
|
libsndfile libsigcxx libusb cairomm librdf liblo fftw fftwSinglePrec
|
||||||
aubio libmad;
|
aubio libmad;
|
||||||
inherit (gtkLibs) glib pango gtk glibmm gtkmm;
|
inherit (gtkLibs) glib pango gtk glibmm gtkmm;
|
||||||
|
inherit (gnome) libgnomecanvas;
|
||||||
inherit (gnome) libgnomecanvas ;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
audacious = import ../applications/audio/audacious/player.nix {
|
audacious = import ../applications/audio/audacious/player.nix {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user