nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 19.03 23 lines 856 B view raw
1{ stdenv, fetchurl, pkgconfig, libsamplerate, libsndfile, fftw 2, vampSDK, ladspaH }: 3 4stdenv.mkDerivation { 5 name = "rubberband-1.8.1"; 6 7 src = fetchurl { 8 url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.8.1.tar.bz2; 9 sha256 = "0x9bm2nqd6w2f35w2sqcp7h5z34i4w7mdg53m0vzjhffnnq6637z"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ libsamplerate libsndfile fftw vampSDK ladspaH ]; 14 15 meta = with stdenv.lib; { 16 description = "High quality software library for audio time-stretching and pitch-shifting"; 17 homepage = https://www.breakfastquay.com/rubberband/index.html; 18 # commercial license available as well, see homepage. You'll get some more optimized routines 19 license = licenses.gpl2Plus; 20 maintainers = [ maintainers.goibhniu maintainers.marcweber ]; 21 platforms = platforms.linux; 22 }; 23}