Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
libsamplerate,
|
|
libsndfile,
|
|
fftw,
|
|
lv2,
|
|
jdk_headless,
|
|
vamp-plugin-sdk,
|
|
ladspaH,
|
|
meson,
|
|
ninja,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rubberband";
|
|
version = "4.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://breakfastquay.com/files/releases/rubberband-${version}.tar.bz2";
|
|
hash = "sha256-rwUDE+5jvBizWy4GTl3OBbJ2qvbRqiuKgs7R/i+AKOk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
jdk_headless
|
|
];
|
|
buildInputs = [
|
|
libsamplerate
|
|
libsndfile
|
|
fftw
|
|
vamp-plugin-sdk
|
|
ladspaH
|
|
lv2
|
|
];
|
|
makeFlags = [ "AR:=$(AR)" ];
|
|
|
|
# TODO: package boost-test, so we can run the test suite. (Currently it fails
|
|
# to find libboost_unit_test_framework.a.)
|
|
mesonFlags = [ "-Dtests=disabled" ];
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "High quality software library for audio time-stretching and pitch-shifting";
|
|
homepage = "https://breakfastquay.com/rubberband/";
|
|
# commercial license available as well, see homepage. You'll get some more optimized routines
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.marcweber ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|