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