summary refs log tree commit diff
path: root/pkgs
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
parenta3c44a7969c0f0a79a7adb6881df6144423ac5c7 (diff)
downloadnixpkgs-396320cab710c0045d0860ee1cff586c15a86c14.tar
nixpkgs-396320cab710c0045d0860ee1cff586c15a86c14.tar.gz
nixpkgs-396320cab710c0045d0860ee1cff586c15a86c14.tar.bz2
nixpkgs-396320cab710c0045d0860ee1cff586c15a86c14.tar.lz
nixpkgs-396320cab710c0045d0860ee1cff586c15a86c14.tar.xz
nixpkgs-396320cab710c0045d0860ee1cff586c15a86c14.tar.zst
nixpkgs-396320cab710c0045d0860ee1cff586c15a86c14.zip
csa: init at 0.5.100810
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/csa/default.nix28
-rw-r--r--pkgs/top-level/all-packages.nix4
2 files changed, 31 insertions, 1 deletions
diff --git a/pkgs/applications/audio/csa/default.nix b/pkgs/applications/audio/csa/default.nix
new file mode 100644
index 00000000000..c3b3b944135
--- /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;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 8c0ea7c7ad2..6d12efcb99a 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1537,7 +1537,7 @@ with pkgs;
   riot-web = callPackage ../applications/networking/instant-messengers/riot/riot-web.nix {
     conf = config.riot-web.conf or null;
   };
-  
+
   roundcube = callPackage ../servers/roundcube { };
 
   rsbep = callPackage ../tools/backup/rsbep { };
@@ -15844,6 +15844,8 @@ with pkgs;
     inherit (gnome2) libgnomeui GConf;
   };
 
+  csa = callPackage ../applications/audio/csa { };
+
   csound = callPackage ../applications/audio/csound { };
 
   cinepaint = callPackage ../applications/graphics/cinepaint {