2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libsamplerate, libsndfile, fftw
|
2020-03-26 21:29:35 +01:00
|
|
|
, vamp-plugin-sdk, ladspaH }:
|
2010-07-28 20:01:17 +02:00
|
|
|
|
2020-05-29 14:15:14 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "rubberband";
|
2021-01-06 12:03:52 +01:00
|
|
|
version = "1.9.0";
|
2009-09-21 11:58:30 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-05-29 14:15:14 +02:00
|
|
|
url = "https://breakfastquay.com/files/releases/${pname}-${version}.tar.bz2";
|
2021-01-06 12:03:52 +01:00
|
|
|
sha256 = "4f5b9509364ea876b4052fc390c079a3ad4ab63a2683aad09662fb905c2dc026";
|
2009-09-21 11:58:30 +02:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-03-26 21:29:35 +01:00
|
|
|
buildInputs = [ libsamplerate libsndfile fftw vamp-plugin-sdk ladspaH ];
|
2009-09-21 11:58:30 +02:00
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2010-07-28 20:01:17 +02:00
|
|
|
description = "High quality software library for audio time-stretching and pitch-shifting";
|
2020-05-29 14:15:14 +02:00
|
|
|
homepage = "https://breakfastquay.com/rubberband/";
|
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
|
|
|
};
|
|
|
|
}
|