Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
30 lines
819 B
Nix
30 lines
819 B
Nix
{ lib, buildDunePackage, fetchFromGitHub, camlidl, fuse, dune-configurator }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocamlfuse";
|
|
version = "2.7.1_cvs11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astrada";
|
|
repo = "ocamlfuse";
|
|
rev = "v${version}";
|
|
hash = "sha256-D/Gn+02Kq4mqEpNZrYYw/NXSJce2joGhl3wUZDhVDYo=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace lib/Fuse_main.c \
|
|
--replace-warn "<fuse_lowlevel.h>" "<fuse/fuse_lowlevel.h>"
|
|
'';
|
|
|
|
nativeBuildInputs = [ camlidl ];
|
|
buildInputs = [ dune-configurator ];
|
|
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 ];
|
|
};
|
|
}
|