python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / xenstore_transport / default.nix
blob1981f2d5cabb19fe85b206dfe0c91620e1043e61
1 { lib, buildDunePackage, fetchFromGitHub, xenstore, lwt }:
3 buildDunePackage rec {
4   pname = "xenstore_transport";
5   version = "1.3.0";
7   minimumOCamlVersion = "4.04";
8   useDune2 = true;
10   src = fetchFromGitHub {
11     owner = "xapi-project";
12     repo = "ocaml-xenstore-clients";
13     rev = "v${version}";
14     sha256 = "1kxxd9i4qiq98r7sgvl59iq2ni7y6drnv48qj580q5cyiyyc85q3";
15   };
17   propagatedBuildInputs = [ xenstore lwt ];
19   # requires a mounted xenfs and xen server
20   doCheck = false;
22   meta = with lib; {
23     description = "Low-level libraries for connecting to a xenstore service on a xen host";
24     license = licenses.lgpl21Only;
25     homepage = "https://github.com/xapi-project/ocaml-xenstore-clients";
26   };