Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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.

+8 -7
+8 -7
pkgs/development/libraries/rubberband/default.nix
··· 2 2 , vampSDK, ladspaH }: 3 3 4 4 stdenv.mkDerivation { 5 - name = "rubberband-1.7.0"; 5 + name = "rubberband-1.8.1"; 6 6 7 7 src = fetchurl { 8 - url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.7.0.tar.bz2; 9 - sha256 = "10pnfzaiws6bi17qlyj3r0alj2nvm11pkd14nms6yxas8c7gwdw0"; 8 + url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.8.1.tar.bz2; 9 + sha256 = "0x9bm2nqd6w2f35w2sqcp7h5z34i4w7mdg53m0vzjhffnnq6637z"; 10 10 }; 11 11 12 12 buildInputs = [ pkgconfig libsamplerate libsndfile fftw vampSDK ladspaH ]; 13 13 14 - meta = { 14 + meta = with stdenv.lib; { 15 15 description = "High quality software library for audio time-stretching and pitch-shifting"; 16 16 homepage = http://www.breakfastquay.com/rubberband/index.html; 17 - license = ["GPL"]; # commercial license availible as well, see homepage. You'll get some more optimized routines 18 - maintainers = [ stdenv.lib.maintainers.marcweber ]; 19 - platforms = stdenv.lib.platforms.linux; 17 + # commercial license available as well, see homepage. You'll get some more optimized routines 18 + license = licenses.gpl2Plus; 19 + maintainers = [ maintainers.goibhniu maintainers.marcweber ]; 20 + platforms = platforms.linux; 20 21 }; 21 22 }