summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/ocamlfuse/default.nix
blob: 13ac62f645145ca35c7a680a05ebadc7447ccfe3 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                             
 
                      
                      
                         
 


                         

                                                            

    




                                      
                                           

          
                                                            
                                            


                                                    

    
{ lib, buildDunePackage, fetchFromGitHub, camlidl, fuse, dune-configurator }:

buildDunePackage rec {
  pname = "ocamlfuse";
  version = "2.7.1_cvs7";

  src = fetchFromGitHub {
    owner = "astrada";
    repo = "ocamlfuse";
    rev = "v${version}";
    sha256 = "6nmPXZx38hBGlg+gV9nnlRpPfeSAqDj4zBPcjUNvTRo=";
  };

  # This currently fails with dune
  strictDeps = false;

  nativeBuildInputs = [ camlidl ];
  buildInputs = [ dune-configurator ];
  propagatedBuildInputs = [ camlidl fuse ];

  meta = {
    homepage = "https://sourceforge.net/projects/ocamlfuse";
    description = "OCaml bindings for FUSE";
    license = lib.licenses.gpl2;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ bennofs ];
  };
}