nixpkgs/pkgs/development/libraries/rubberband/default.nix
Eelco Dolstra f1598a8941 * More cleanup.
svn path=/nixpkgs/trunk/; revision=22798
2010-07-28 18:01:17 +00:00

22 lines
787 B
Nix

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