pkgs/tools: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 17:12:36 +07:00
parent 94f3683935
commit 8c5d37129f
916 changed files with 2510 additions and 2510 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "uni2ascii-4.18";
@@ -8,11 +8,11 @@ stdenv.mkDerivation rec {
};
meta = {
license = stdenv.lib.licenses.gpl3;
license = lib.licenses.gpl3;
homepage = "http://billposer.org/Software/uni2ascii.html";
description = "Converts between UTF-8 and many 7-bit ASCII equivalents and back";
longDescription = ''
longDescription = ''
This package provides conversion in both directions between UTF-8
Unicode and more than thirty 7-bit ASCII equivalents, including
RFC 2396 URI format and RFC 2045 Quoted Printable format, the
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
It also provides ways of converting non-ASCII characters to
similar ASCII characters, e.g. by stripping diacritics.
'';
maintainers = with stdenv.lib.maintainers; [ goibhniu ];
platforms = stdenv.lib.platforms.linux;
maintainers = with lib.maintainers; [ goibhniu ];
platforms = lib.platforms.linux;
};
}