nixpkgs/pkgs/applications/audio/FIL-plugins/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.4 KiB
Nix
Raw Normal View History

2023-06-18 09:31:39 +00:00
{ lib
, stdenv
, fetchurl
, ladspaH
2018-10-04 23:03:53 +00:00
}:
stdenv.mkDerivation rec {
pname = "FIL-plugins";
2018-10-04 23:03:53 +00:00
version = "0.3.0";
2023-06-18 09:31:39 +00:00
2018-10-04 23:03:53 +00:00
src = fetchurl {
url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pname}-${version}.tar.bz2";
2023-06-18 09:31:39 +00:00
hash = "sha256-HAvycSEZZfZwoVp3g7QWcwfbdyZKwWJKBuVmeWTajuk=";
2018-10-04 23:03:53 +00:00
};
buildInputs = [ ladspaH ];
2023-06-18 09:31:39 +00:00
postPatch = ''
substituteInPlace Makefile \
--replace /usr/lib/ladspa "$out/lib/ladspa" \
--replace g++ "$CXX"
2018-10-04 23:03:53 +00:00
'';
2023-06-18 09:31:39 +00:00
preInstall = ''
mkdir -p "$out/lib/ladspa"
'';
2018-10-04 23:03:53 +00:00
meta = {
description = "a four-band parametric equaliser, which has the nice property of being stable even while parameters are being changed";
2018-10-04 23:03:53 +00:00
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.
'';
2019-09-08 23:38:31 +00:00
version = version;
homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/ladspa/index.html";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.linux;
2018-10-04 23:03:53 +00:00
};
}