summary refs log tree commit diff
path: root/pkgs/development/libraries/rubberband/default.nix
blob: 90031c92fe48b389342d5c2eec1ea83a093e46af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pkgconfig, libsamplerate, libsndfile, fftw
, vampSDK, ladspaH }:

stdenv.mkDerivation {
  name = "rubberband-1.3";

  src = fetchurl {
    url = http://www.breakfastquay.com/rubberband/files/rubberband-1.3.tar.bz2;
    sha256 = "0g1bihjzagp9mx9zppjyd9566dfdqh38a1ghwsd7c245hv2syri8";
  };

  buildInputs = [ pkgconfig libsamplerate libsndfile fftw vampSDK ladspaH ];

  meta = { 
    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;
  };
}