Ihar Hrachyshka dd0f03a56c treewide: remove usage of deprecated apple_sdk framework stubs
They are not doing anything right now. This is in preparation for their
complete removal from the tree.

Note: several changes that affect the derivation inputs (e.g. removal of
references to stub paths in build instructions) were left out. They will
be cleaned up the next iteration and will require special care.

Note: this PR is a result of a mix of ugly regex (not AST) based
automation and some manual labor. For reference, the regex automation
part was hacked in: https://github.com/booxter/nix-clean-apple_sdk

Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
2025-04-19 20:28:20 -04:00

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