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
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
ladspaH,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fil-plugins";
|
|
version = "0.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/FIL-plugins-${finalAttrs.version}.tar.bz2";
|
|
hash = "sha256-HAvycSEZZfZwoVp3g7QWcwfbdyZKwWJKBuVmeWTajuk=";
|
|
};
|
|
|
|
buildInputs = [ ladspaH ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace /usr/lib/ladspa "$out/lib/ladspa" \
|
|
--replace g++ "$CXX"
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p "$out/lib/ladspa"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Four-band parametric equaliser, which has the nice property of being stable even while parameters are being changed";
|
|
longDescription = ''
|
|
Each section has an active/bypass switch, frequency, bandwidth and gain controls.
|
|
There is also a global bypass switch and gain control.
|
|
The 2nd order resonant filters are implemented using a Mitra-Regalia style lattice filter.
|
|
All switches and controls are internally smoothed, so they can be used 'live' whithout any clicks or zipper noises.
|
|
This should make this plugin a good candidate for use in systems that allow automation of plugin control ports, such as Ardour, or for stage use.
|
|
'';
|
|
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/index.html";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.magnetophon ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|