python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / bjack / default.nix
blobfa03194bde4a7f3983a748dd4fb7c0ff6ba8b095
1 { lib, buildDunePackage, fetchFromGitHub, dune-configurator, libsamplerate, libjack2 }:
3 buildDunePackage rec {
4   pname = "bjack";
5   version = "0.1.6";
7   useDune2 = true;
9   src = fetchFromGitHub {
10     owner = "savonet";
11     repo = "ocaml-bjack";
12     rev = "v${version}";
13     sha256 = "1gf31a8i9byp6npn0x6gydcickn6sf5dnzmqr2c1b9jn2nl7334c";
14   };
16   buildInputs = [ dune-configurator ];
17   propagatedBuildInputs = [ libsamplerate libjack2 ];
19   meta = with lib; {
20     homepage = "https://github.com/savonet/ocaml-bjack";
21     description = "Blocking API for the jack audio connection kit";
22     license = licenses.lgpl21Only;
23     maintainers = with maintainers; [ dandellion ];
24   };