ocamlPackages.fuse3: init at 3.10.0

This commit is contained in:
Vincent Laporte
2026-07-08 02:54:31 +02:00
parent bd3c09ca2a
commit e31461c02c
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,40 @@
{
lib,
fetchFromGitHub,
buildDunePackage,
camlidl,
dune-configurator,
pkg-config,
fuse3,
}:
buildDunePackage (finalAttrs: {
pname = "fuse3";
version = "3.10.0";
src = fetchFromGitHub {
owner = "astrada";
repo = "ocamlfuse";
tag = "v${finalAttrs.version}";
hash = "sha256-xy3Jf4GTQP3vM6vRxBAeOIASWRuoNdlbt91eCco2zMg=";
};
nativeBuildInputs = [
camlidl
pkg-config
];
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [
camlidl
fuse3
];
meta = {
description = "OCaml bindings for libfuse 3";
homepage = "https://github.com/astrada/ocamlfuse/";
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
};
})
+4
View File
@@ -710,6 +710,10 @@ let
functory = callPackage ../development/ocaml-modules/functory { };
fuse3 = callPackage ../development/ocaml-modules/fuse3 {
inherit (pkgs) fuse3;
};
### G ###
gapi-ocaml = callPackage ../development/ocaml-modules/gapi-ocaml { };