python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ocamlfuse / default.nix
blob13ac62f645145ca35c7a680a05ebadc7447ccfe3
1 { lib, buildDunePackage, fetchFromGitHub, camlidl, fuse, dune-configurator }:
3 buildDunePackage rec {
4   pname = "ocamlfuse";
5   version = "2.7.1_cvs7";
7   src = fetchFromGitHub {
8     owner = "astrada";
9     repo = "ocamlfuse";
10     rev = "v${version}";
11     sha256 = "6nmPXZx38hBGlg+gV9nnlRpPfeSAqDj4zBPcjUNvTRo=";
12   };
14   # This currently fails with dune
15   strictDeps = false;
17   nativeBuildInputs = [ camlidl ];
18   buildInputs = [ dune-configurator ];
19   propagatedBuildInputs = [ camlidl fuse ];
21   meta = {
22     homepage = "https://sourceforge.net/projects/ocamlfuse";
23     description = "OCaml bindings for FUSE";
24     license = lib.licenses.gpl2;
25     platforms = lib.platforms.linux;
26     maintainers = with lib.maintainers; [ bennofs ];
27   };