pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user