ocamlPackages.fuse3: init at 3.10.0
This commit is contained in:
@@ -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;
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user