forked from mirrors/nixpkgs
a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
29 lines
782 B
Nix
29 lines
782 B
Nix
{ lib, buildDunePackage, fetchFromGitHub, camlidl, fuse, dune-configurator }:
|
|
|
|
buildDunePackage {
|
|
pname = "ocamlfuse";
|
|
version = "2.7.1_cvs6_e35e76b";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astrada";
|
|
repo = "ocamlfuse";
|
|
rev = "e35e76bee3b06806256b5bfca108b7697267cd5c";
|
|
sha256 = "1v9g0wh7rnjkrjrnw50145g6ry38plyjs8fq8w0nlzwizhf3qhff";
|
|
};
|
|
|
|
# This currently fails with dune
|
|
strictDeps = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|