about summary refs log tree commit diff
path: root/pkgs/tools/text/schema2ldif
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/schema2ldif')
-rw-r--r--pkgs/tools/text/schema2ldif/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/schema2ldif/default.nix b/pkgs/tools/text/schema2ldif/default.nix
index 5df4e90ff1aa..409bbc16a93f 100644
--- a/pkgs/tools/text/schema2ldif/default.nix
+++ b/pkgs/tools/text/schema2ldif/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, makeWrapper, perlPackages }: stdenv.mkDerivation rec {
+{ lib, stdenv, fetchurl, makeWrapper, perlPackages }: stdenv.mkDerivation rec {
   pname = "schema2ldif";
   version = "1.3";
 
@@ -21,7 +21,7 @@
        --prefix PERL5PATH : "${perlPackages.makePerlPath [ perlPackages.GetoptLong ]}"
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Utilities to manage schema in .schema and .ldif format";
     homepage = "https://www.fusiondirectory.org/schema2ldif-project-and-components/";
     license = licenses.bsd3;