1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "csa";
9 version = "0.5.100810";
10
11 src = fetchurl {
12 url = "mirror://sourceforge/csa/${pname}-${version}.tar.gz";
13 sha256 = "1syg81dzdil0dyx1mlx1n7if3qsf2iz243p2zv34a1acfqm509r3";
14 };
15
16 # after running either cellular leveler mono or stereo, the other stops working,
17 # so we remove one of them:
18 postInstall = "rm $out/lib/ladspa/celllm_3890.*";
19
20 meta = with lib; {
21 homepage = "https://sourceforge.net/projects/csa/";
22 description = "Group of LADSPA Audio plugins for FM broadcast and more";
23 longDescription = ''
24 CSA means : Contrôle Signal Audio.
25 It contains the following plugins:
26 Emphazised Limiter, Cellular Leveler, Simple right/left amplifier. Blind Peak Meter.
27 '';
28 license = licenses.gpl3;
29 maintainers = [ maintainers.magnetophon ];
30 platforms = platforms.unix;
31 };
32}