about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/config-file/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/config-file/default.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/config-file/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/config-file/default.nix b/nixpkgs/pkgs/development/ocaml-modules/config-file/default.nix
index 724c5b1e2d6a..29c7cd61c3f5 100644
--- a/nixpkgs/pkgs/development/ocaml-modules/config-file/default.nix
+++ b/nixpkgs/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 ];
   };
 }