summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/ocamlfuse/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/ocamlfuse/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/ocamlfuse/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/ocamlfuse/default.nix b/pkgs/development/ocaml-modules/ocamlfuse/default.nix
index dabe7ae52a3e..11c8b559842e 100644
--- a/pkgs/development/ocaml-modules/ocamlfuse/default.nix
+++ b/pkgs/development/ocaml-modules/ocamlfuse/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildDunePackage, fetchFromGitHub, camlidl, fuse }:
+{ stdenv, lib, buildDunePackage, fetchFromGitHub, camlidl, fuse }:
buildDunePackage {
pname = "ocamlfuse";
@@ -16,8 +16,8 @@ buildDunePackage {
meta = {
homepage = "https://sourceforge.net/projects/ocamlfuse";
description = "OCaml bindings for FUSE";
- license = stdenv.lib.licenses.gpl2;
- platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ bennofs ];
+ license = lib.licenses.gpl2;
+ platforms = lib.platforms.linux;
+ maintainers = with lib.maintainers; [ bennofs ];
};
}