mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
1c4d9e9a75
Diff: https://github.com/astrada/ocamlfuse/compare/v2.7.1_cvs7...v2.7.1_cvs8 Changelog: https://github.com/astrada/ocamlfuse/releases/tag/v2.7.1_cvs8
26 lines
688 B
Nix
26 lines
688 B
Nix
{ lib, buildDunePackage, fetchFromGitHub, camlidl, fuse, dune-configurator }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ocamlfuse";
|
|
version = "2.7.1_cvs8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astrada";
|
|
repo = "ocamlfuse";
|
|
rev = "v${version}";
|
|
hash = "sha256-Cm9mdYzpKnYoNyAJvjJkiDBP/O4n1JiTkhXQO3w7+hA=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|