about summary refs log tree commit diff
path: root/pkgs/tools/text/dos2unix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/dos2unix')
-rw-r--r--pkgs/tools/text/dos2unix/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/dos2unix/default.nix b/pkgs/tools/text/dos2unix/default.nix
index b85d33d887aa..e2e07e9e4884 100644
--- a/pkgs/tools/text/dos2unix/default.nix
+++ b/pkgs/tools/text/dos2unix/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, perl, gettext }:
+{lib, stdenv, fetchurl, perl, gettext }:
 
 stdenv.mkDerivation rec {
   pname = "dos2unix";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ perl gettext ];
   makeFlags = [ "prefix=${placeholder "out"}" ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Convert text files with DOS or Mac line breaks to Unix line breaks and vice versa";
     homepage = "https://waterlan.home.xs4all.nl/dos2unix.html";
     changelog = "https://sourceforge.net/p/dos2unix/dos2unix/ci/dos2unix-${version}/tree/dos2unix/NEWS.txt?format=raw";