2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2018-09-29 02:37:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "csa";
|
2018-09-29 02:37:03 +01:00
|
|
|
version = "0.5.100810";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/csa/${pname}-${version}.tar.gz";
|
2018-09-29 02:37:03 +01:00
|
|
|
sha256 = "1syg81dzdil0dyx1mlx1n7if3qsf2iz243p2zv34a1acfqm509r3";
|
|
|
|
};
|
|
|
|
|
|
|
|
# after running either cellular leveler mono or stereo, the other stops working,
|
|
|
|
# so we remove one of them:
|
|
|
|
postInstall = "rm $out/lib/ladspa/celllm_3890.*";
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/csa/";
|
2018-09-29 02:37:03 +01:00
|
|
|
description = "A group of LADSPA Audio plugins for FM broadcast and more";
|
|
|
|
longDescription = ''
|
|
|
|
CSA means : Contrôle Signal Audio.
|
|
|
|
It contains the following plugins:
|
|
|
|
Emphazised Limiter, Cellular Leveler, Simple right/left amplifier. Blind Peak Meter.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
2021-03-08 14:39:35 +00:00
|
|
|
platforms = platforms.unix;
|
2018-09-29 02:37:03 +01:00
|
|
|
};
|
|
|
|
}
|