ocamlPackages.ladspa: init at 0.2.2

This commit is contained in:
Daniel Olsen 2021-10-09 15:20:22 +02:00 committed by Vincent Laporte
parent b4d1b975e4
commit 0c7af2f43d
2 changed files with 27 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -645,6 +645,8 @@ let
lacaml = callPackage ../development/ocaml-modules/lacaml { };
ladspa = callPackage ../development/ocaml-modules/ladspa { };
lambdasoup = callPackage ../development/ocaml-modules/lambdasoup { };
lambda-term = callPackage ../development/ocaml-modules/lambda-term { };