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