pkgs/development/libraries: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-21 19:11:02 -08:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, libiconv, libunistring, help2man, buildPackages }:
{ fetchurl, lib, stdenv, libiconv, libunistring, help2man, buildPackages }:
# Note: this package is used for bootstrapping fetchurl, and thus
# cannot use fetchpatch! All mutable patches (generated by GitHub or
# cgit) that are needed here should be included directly in Nixpkgs as
# files.
with stdenv.lib;
with lib;
stdenv.mkDerivation rec {
pname = "libidn2";
@@ -38,8 +38,8 @@ stdenv.mkDerivation rec {
'';
repositories.git = "https://gitlab.com/jas/libidn2";
license = with stdenv.lib.licenses; [ lgpl3Plus gpl2Plus gpl3Plus ];
platforms = stdenv.lib.platforms.all;
maintainers = with stdenv.lib.maintainers; [ fpletz ];
license = with lib.licenses; [ lgpl3Plus gpl2Plus gpl3Plus ];
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ fpletz ];
};
}