about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/xml-light/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/xml-light/default.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/xml-light/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/xml-light/default.nix b/nixpkgs/pkgs/development/ocaml-modules/xml-light/default.nix
index 82f635afb684..a6db0dc78705 100644
--- a/nixpkgs/pkgs/development/ocaml-modules/xml-light/default.nix
+++ b/nixpkgs/pkgs/development/ocaml-modules/xml-light/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ocaml, findlib}:
+{stdenv, lib, fetchurl, ocaml, findlib}:
 let
   pname = "xml-light";
   version = "2.4";
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
     make all
     make opt
   '';
-  
+
   installPhase = ''
     make install_ocamlfind
     mkdir -p $out/share
@@ -36,8 +36,8 @@ stdenv.mkDerivation {
       library.
     '';
     homepage = "http://tech.motion-twin.com/xmllight.html";
-    license = stdenv.lib.licenses.lgpl21;
-    maintainers = [ stdenv.lib.maintainers.romildo ];
+    license = lib.licenses.lgpl21;
+    maintainers = [ lib.maintainers.romildo ];
     platforms = ocaml.meta.platforms or [];
   };
 }