summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/config-file/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/config-file/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/config-file/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/config-file/default.nix b/pkgs/development/ocaml-modules/config-file/default.nix
index 724c5b1e2d6a..29c7cd61c3f5 100644
--- a/pkgs/development/ocaml-modules/config-file/default.nix
+++ b/pkgs/development/ocaml-modules/config-file/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml, findlib, camlp4 }:
+{ stdenv, lib, fetchurl, ocaml, findlib, camlp4 }:
stdenv.mkDerivation {
name = "ocaml-config-file-1.2";
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
homepage = "http://config-file.forge.ocamlcore.org/";
platforms = ocaml.meta.platforms or [];
description = "An OCaml library used to manage the configuration file(s) of an application";
- license = stdenv.lib.licenses.lgpl2Plus;
- maintainers = with stdenv.lib.maintainers; [ vbgl ];
+ license = lib.licenses.lgpl2Plus;
+ maintainers = with lib.maintainers; [ vbgl ];
};
}