rubberband: 1.8.2 -> 1.9.0.
This commit is contained in:
parent
fd0c2add78
commit
5e726b8506
|
@ -1,27 +1,18 @@
|
||||||
{ stdenv, fetchurl, fetchpatch, pkgconfig, libsamplerate, libsndfile, fftw
|
{ stdenv, fetchurl, pkgconfig, libsamplerate, libsndfile, fftw
|
||||||
, vamp-plugin-sdk, ladspaH }:
|
, vamp-plugin-sdk, ladspaH }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "rubberband";
|
pname = "rubberband";
|
||||||
version = "1.8.2";
|
version = "1.9.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://breakfastquay.com/files/releases/${pname}-${version}.tar.bz2";
|
url = "https://breakfastquay.com/files/releases/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "1jn3ys16g4rz8j3yyj5np589lly0zhs3dr9asd0l9dhmf5mx1gl6";
|
sha256 = "4f5b9509364ea876b4052fc390c079a3ad4ab63a2683aad09662fb905c2dc026";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ libsamplerate libsndfile fftw vamp-plugin-sdk ladspaH ];
|
buildInputs = [ libsamplerate libsndfile fftw vamp-plugin-sdk ladspaH ];
|
||||||
|
|
||||||
# https://github.com/breakfastquay/rubberband/issues/17
|
|
||||||
# In master, but there hasn't been an official release
|
|
||||||
patches = [
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/breakfastquay/rubberband/commit/419a9bcf7066473b0d31e9a8a81fe0b2a8e41fed.patch";
|
|
||||||
sha256 = "0drkfb2ahi31g4w1cawgsjjz26wszgg52yn3ih5l2ql1g25dqqn9";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
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 = "https://breakfastquay.com/rubberband/";
|
homepage = "https://breakfastquay.com/rubberband/";
|
||||||
|
|
Loading…
Reference in New Issue