summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ladspa
diff options
context:
space:
mode:
authorDaniel Olsen <daniel.olsen99@gmail.com>2021-10-09 15:20:22 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-04-18 16:06:31 +0200
commit0c7af2f43d9e9450026f57c59226be934763ee97 (patch)
tree1494f6c0189e626c20f24e3fdf5002e1d320fca9 /pkgs/development/ocaml-modules/ladspa
parentb4d1b975e41ed78ca940e7fafea1a61930265fb5 (diff)
downloadnixpkgs-0c7af2f43d9e9450026f57c59226be934763ee97.tar
nixpkgs-0c7af2f43d9e9450026f57c59226be934763ee97.tar.gz
nixpkgs-0c7af2f43d9e9450026f57c59226be934763ee97.tar.bz2
nixpkgs-0c7af2f43d9e9450026f57c59226be934763ee97.tar.lz
nixpkgs-0c7af2f43d9e9450026f57c59226be934763ee97.tar.xz
nixpkgs-0c7af2f43d9e9450026f57c59226be934763ee97.tar.zst
nixpkgs-0c7af2f43d9e9450026f57c59226be934763ee97.zip
ocamlPackages.ladspa: init at 0.2.2
Diffstat (limited to 'pkgs/development/ocaml-modules/ladspa')
-rw-r--r--pkgs/development/ocaml-modules/ladspa/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/ladspa/default.nix b/pkgs/development/ocaml-modules/ladspa/default.nix
new file mode 100644
index 00000000000..b037a61a0fb
--- /dev/null
+++ b/pkgs/development/ocaml-modules/ladspa/default.nix
@@ -0,0 +1,25 @@
+{ lib, buildDunePackage, fetchFromGitHub, dune-configurator, ladspaH }:
+
+buildDunePackage rec {
+  pname = "ladspa";
+  version = "0.2.2";
+
+  useDune2 = true;
+
+  src = fetchFromGitHub {
+    owner = "savonet";
+    repo = "ocaml-ladspa";
+    rev = "v${version}";
+    sha256 = "1y83infjaz9apzyvaaqw331zqdysmn3bpidfab061v3bczv4jzbz";
+  };
+
+  buildInputs = [ dune-configurator ];
+  propagatedBuildInputs = [ ladspaH ];
+
+  meta = with lib; {
+    homepage = "https://github.com/savonet/ocaml-alsa";
+    description = "Bindings for the LADSPA API which provides audio effects";
+    license = licenses.lgpl21Only;
+    maintainers = with maintainers; [ dandellion ];
+  };
+}