summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocamlfuse/default.nix
blob: c2ca6a2cc8aafe57b58e5c0c2905e6845c3626b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildDunePackage, fetchFromGitHub, camlidl, fuse }:

buildDunePackage {
  pname = "ocamlfuse";
  version = "2.7.1_cvs6_e35e76b";

  src = fetchFromGitHub {
    owner = "astrada";
    repo = "ocamlfuse";
    rev = "e35e76bee3b06806256b5bfca108b7697267cd5c";
    sha256 = "1v9g0wh7rnjkrjrnw50145g6ry38plyjs8fq8w0nlzwizhf3qhff";
  };

  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 ];
  };
}