python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / vchan / default.nix
blobe88a86344285dc50d9eb7dbab28c6d040118aef5
1 { lib, buildDunePackage, fetchurl
2 , ppx_cstruct, ppx_sexp_conv, ounit
3 , lwt, cstruct, io-page, mirage-flow, xenstore, xenstore_transport
4 , sexplib, cmdliner
5 }:
7 buildDunePackage rec {
8   pname = "vchan";
9   version = "6.0.1";
11   minimalOCamlVersion = "4.08";
13   src = fetchurl {
14     url = "https://github.com/mirage/ocaml-vchan/releases/download/v${version}/vchan-${version}.tbz";
15     sha256 = "sha256-5E7dITMVirYoxUkp8ZamRAolyhA6avXGJNAioxeBuV0=";
16   };
18   nativeBuildInputs = [
19     ppx_cstruct
20   ];
22   propagatedBuildInputs = [
23     ppx_sexp_conv
24     lwt
25     cstruct
26     io-page
27     mirage-flow
28     xenstore
29     xenstore_transport
30     sexplib
31   ];
33   doCheck = true;
34   checkInputs = [
35     cmdliner
36     ounit
37   ];
39   meta = with lib; {
40     description = "Xen Vchan implementation";
41     homepage = "https://github.com/mirage/ocaml-vchan";
42     license = licenses.isc;
43     maintainers = [ maintainers.sternenseemann ];
44   };