2021-01-11 05:14:57 -08:00
|
|
|
{ lib, buildDunePackage, fetchFromGitHub, camlidl, fuse }:
|
2015-01-25 13:08:33 -08:00
|
|
|
|
2020-05-10 12:24:18 -07:00
|
|
|
buildDunePackage {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ocamlfuse";
|
2020-05-10 12:24:18 -07:00
|
|
|
version = "2.7.1_cvs6_e35e76b";
|
2017-09-21 04:14:22 -07:00
|
|
|
|
2016-10-01 05:13:41 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "astrada";
|
|
|
|
repo = "ocamlfuse";
|
2020-05-10 12:24:18 -07:00
|
|
|
rev = "e35e76bee3b06806256b5bfca108b7697267cd5c";
|
|
|
|
sha256 = "1v9g0wh7rnjkrjrnw50145g6ry38plyjs8fq8w0nlzwizhf3qhff";
|
2015-01-25 13:08:33 -08:00
|
|
|
};
|
|
|
|
|
2020-05-10 12:24:18 -07:00
|
|
|
propagatedBuildInputs = [ camlidl fuse ];
|
2015-01-25 13:08:33 -08:00
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://sourceforge.net/projects/ocamlfuse";
|
2017-09-21 04:14:22 -07:00
|
|
|
description = "OCaml bindings for FUSE";
|
2021-01-11 04:49:15 -08:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ bennofs ];
|
2015-01-25 13:08:33 -08:00
|
|
|
};
|
|
|
|
}
|