python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / dssi / default.nix
blobb8235cef96905f2361e6edf1be78f8ef5add5ae2
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, ladspa, alsa-lib }:
3 buildDunePackage rec {
4   pname = "dssi";
5   version = "0.1.5";
7   useDune2 = true;
9   src = fetchFromGitHub {
10     owner = "savonet";
11     repo = "ocaml-dssi";
12     rev = "v${version}";
13     sha256 = "1frbmx1aznwp60r6bkx1whqyr6mkflvd9ysmjg7s7b80mh0s4ix6";
14   };
16   buildInputs = [ dune-configurator ];
17   propagatedBuildInputs = [ ladspa alsa-lib ];
19   meta = with lib; {
20     homepage = "https://github.com/savonet/ocaml-dssi";
21     description = "Bindings for the DSSI API which provides audio synthesizers";
22     license = licenses.gpl2Only;
23     maintainers = with maintainers; [ dandellion ];
24   };