2010-07-28 20:01:17 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libsamplerate, libsndfile, fftw
|
|
|
|
, vampSDK, ladspaH }:
|
|
|
|
|
2009-09-21 11:58:30 +02:00
|
|
|
stdenv.mkDerivation {
|
2014-02-18 00:32:45 +01:00
|
|
|
name = "rubberband-1.8.1";
|
2009-09-21 11:58:30 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-18 00:32:45 +01:00
|
|
|
url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.8.1.tar.bz2;
|
|
|
|
sha256 = "0x9bm2nqd6w2f35w2sqcp7h5z34i4w7mdg53m0vzjhffnnq6637z";
|
2009-09-21 11:58:30 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libsamplerate libsndfile fftw vampSDK ladspaH ];
|
2009-09-21 11:58:30 +02:00
|
|
|
|
2014-02-18 00:32:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 20:01:17 +02:00
|
|
|
description = "High quality software library for audio time-stretching and pitch-shifting";
|
2009-09-21 11:58:30 +02:00
|
|
|
homepage = http://www.breakfastquay.com/rubberband/index.html;
|
2014-02-18 00:32:45 +01:00
|
|
|
# commercial license available as well, see homepage. You'll get some more optimized routines
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.goibhniu maintainers.marcweber ];
|
|
|
|
platforms = platforms.linux;
|
2009-09-21 11:58:30 +02:00
|
|
|
};
|
|
|
|
}
|