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
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
ladspaH,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "AMB-plugins";
|
|
version = "0.8.1";
|
|
src = fetchurl {
|
|
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2";
|
|
sha256 = "0x4blm4visjqj0ndqr0cg776v3b7lvplpc8cgi9n51llhavn0jpl";
|
|
};
|
|
|
|
buildInputs = [ ladspaH ];
|
|
|
|
patchPhase = ''
|
|
sed -i 's@/usr/bin/install@install@g' Makefile
|
|
sed -i 's@/bin/rm@rm@g' Makefile
|
|
sed -i 's@/usr/lib/ladspa@$(out)/lib/ladspa@g' Makefile
|
|
sed -i 's@g++@$(CXX)@g' Makefile
|
|
'';
|
|
|
|
preInstall = "mkdir -p $out/lib/ladspa";
|
|
|
|
meta = {
|
|
description = "Set of ambisonics ladspa plugins";
|
|
longDescription = ''
|
|
Mono and stereo to B-format panning, horizontal rotator, square, hexagon and cube decoders.
|
|
'';
|
|
version = version;
|
|
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/index.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|