nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 dune-configurator,
6 ladspaH,
7}:
8
9buildDunePackage (finalAttrs: {
10 pname = "ladspa";
11 version = "0.2.2";
12
13 src = fetchFromGitHub {
14 owner = "savonet";
15 repo = "ocaml-ladspa";
16 tag = "v${finalAttrs.version}";
17 hash = "sha256-f31J9mdr7GDAUq7Fu4at2jf8wxgcK7X9vyp9JZ2NA/k=";
18 };
19
20 buildInputs = [ dune-configurator ];
21 propagatedBuildInputs = [ ladspaH ];
22
23 meta = {
24 homepage = "https://github.com/savonet/ocaml-alsa";
25 description = "Bindings for the LADSPA API which provides audio effects";
26 license = lib.licenses.lgpl21Only;
27 maintainers = [ lib.maintainers.dandellion ];
28 };
29})