Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
842 B
Nix
41 lines
842 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
camlidl,
|
|
fuse,
|
|
dune-configurator,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocamlfuse";
|
|
version = "2.7.1_cvs13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astrada";
|
|
repo = "ocamlfuse";
|
|
rev = "v${version}";
|
|
hash = "sha256-h1ExohTlr1gP2DwHKQW3PTwz6d3pust5gdeyTHJ2KBk=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|