pkgs/development/libraries: stdenv.lib -> lib
This commit is contained in:
committed by
Jonathan Ringer
parent
046d24424e
commit
66e44425c6
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user