rubberband: update from 1.7.0 to 1.8.1

Tidy up, and add myself to the maintainers. Tested that qtractor and
sonic_visualiser compile and run with this version of rubberband.
This commit is contained in:
Cillian de Róiste 2014-02-18 00:32:45 +01:00
parent 6af0b814f5
commit 2f08652cce

View File

@ -2,20 +2,21 @@
, vampSDK, ladspaH }: , vampSDK, ladspaH }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "rubberband-1.7.0"; name = "rubberband-1.8.1";
src = fetchurl { src = fetchurl {
url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.7.0.tar.bz2; url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.8.1.tar.bz2;
sha256 = "10pnfzaiws6bi17qlyj3r0alj2nvm11pkd14nms6yxas8c7gwdw0"; sha256 = "0x9bm2nqd6w2f35w2sqcp7h5z34i4w7mdg53m0vzjhffnnq6637z";
}; };
buildInputs = [ pkgconfig libsamplerate libsndfile fftw vampSDK ladspaH ]; buildInputs = [ pkgconfig libsamplerate libsndfile fftw vampSDK ladspaH ];
meta = { meta = with stdenv.lib; {
description = "High quality software library for audio time-stretching and pitch-shifting"; description = "High quality software library for audio time-stretching and pitch-shifting";
homepage = http://www.breakfastquay.com/rubberband/index.html; homepage = http://www.breakfastquay.com/rubberband/index.html;
license = ["GPL"]; # commercial license availible as well, see homepage. You'll get some more optimized routines # commercial license available as well, see homepage. You'll get some more optimized routines
maintainers = [ stdenv.lib.maintainers.marcweber ]; license = licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux; maintainers = [ maintainers.goibhniu maintainers.marcweber ];
platforms = platforms.linux;
}; };
} }