about summary refs log tree commit diff
path: root/pkgs/applications/audio/csa
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2018-09-29 03:37:03 +0200
committerBart Brouns <bart@magnetophon.nl>2018-10-01 07:15:30 +0200
commit396320cab710c0045d0860ee1cff586c15a86c14 (patch)
tree88dd45548c2586979de6541c625ad5af0e736d3f /pkgs/applications/audio/csa
parenta3c44a7969c0f0a79a7adb6881df6144423ac5c7 (diff)
csa: init at 0.5.100810
Diffstat (limited to 'pkgs/applications/audio/csa')
-rw-r--r--pkgs/applications/audio/csa/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/audio/csa/default.nix b/pkgs/applications/audio/csa/default.nix
new file mode 100644
index 0000000000000..c3b3b94413570
--- /dev/null
+++ b/pkgs/applications/audio/csa/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "csa-${version}";
+  version = "0.5.100810";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/csa/${name}.tar.gz";
+    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.*";
+
+  meta = with stdenv.lib; {
+    homepage = https://sourceforge.net/projects/csa/;
+    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 ];
+    platforms = platforms.linux;
+  };
+}