summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2014-02-18 00:32:45 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2014-02-19 00:15:20 +0100
commit2f08652ccecf4233971f9296369cfc243685cecc (patch)
tree2851109f3427b8d9c9fdaba97f0a0a5874467901 /pkgs
parent6af0b814f5cc468c0f7d1056fda96c8c9056dc63 (diff)
downloadnixpkgs-2f08652ccecf4233971f9296369cfc243685cecc.tar
nixpkgs-2f08652ccecf4233971f9296369cfc243685cecc.tar.gz
nixpkgs-2f08652ccecf4233971f9296369cfc243685cecc.tar.bz2
nixpkgs-2f08652ccecf4233971f9296369cfc243685cecc.tar.lz
nixpkgs-2f08652ccecf4233971f9296369cfc243685cecc.tar.xz
nixpkgs-2f08652ccecf4233971f9296369cfc243685cecc.tar.zst
nixpkgs-2f08652ccecf4233971f9296369cfc243685cecc.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/rubberband/default.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/libraries/rubberband/default.nix b/pkgs/development/libraries/rubberband/default.nix
index 9e606967ab1..b0707ad15f0 100644
--- a/pkgs/development/libraries/rubberband/default.nix
+++ b/pkgs/development/libraries/rubberband/default.nix
@@ -2,20 +2,21 @@
 , vampSDK, ladspaH }:
 
 stdenv.mkDerivation {
-  name = "rubberband-1.7.0";
+  name = "rubberband-1.8.1";
 
   src = fetchurl {
-    url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.7.0.tar.bz2;
-    sha256 = "10pnfzaiws6bi17qlyj3r0alj2nvm11pkd14nms6yxas8c7gwdw0";
+    url = http://code.breakfastquay.com/attachments/download/23/rubberband-1.8.1.tar.bz2;
+    sha256 = "0x9bm2nqd6w2f35w2sqcp7h5z34i4w7mdg53m0vzjhffnnq6637z";
   };
 
   buildInputs = [ pkgconfig libsamplerate libsndfile fftw vampSDK ladspaH ];
 
-  meta = { 
+  meta = with stdenv.lib; {
     description = "High quality software library for audio time-stretching and pitch-shifting";
     homepage = http://www.breakfastquay.com/rubberband/index.html;
-    license = ["GPL"]; # commercial license availible as well, see homepage. You'll get some more optimized routines
-    maintainers = [ stdenv.lib.maintainers.marcweber ];
-    platforms = stdenv.lib.platforms.linux;
+    # 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;
   };
 }