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
+8 -8
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, pam, openssl }:
{ lib, stdenv, fetchurl, fetchpatch, pam, openssl }:
stdenv.mkDerivation ({
name = "uw-imap-2007f";
@@ -12,13 +12,13 @@ stdenv.mkDerivation ({
then "osx"
else "lnp") ] # Linux with PAM modules;
# -fPIC is required to compile php with imap on x86_64 systems
++ stdenv.lib.optional stdenv.isx86_64 "EXTRACFLAGS=-fPIC"
++ stdenv.lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "CC=${stdenv.hostPlatform.config}-gcc" "RANLIB=${stdenv.hostPlatform.config}-ranlib" ];
++ lib.optional stdenv.isx86_64 "EXTRACFLAGS=-fPIC"
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "CC=${stdenv.hostPlatform.config}-gcc" "RANLIB=${stdenv.hostPlatform.config}-ranlib" ];
hardeningDisable = [ "format" ];
buildInputs = [ openssl ]
++ stdenv.lib.optional (!stdenv.isDarwin) pam;
++ lib.optional (!stdenv.isDarwin) pam;
patches = [ (fetchpatch {
url = "https://salsa.debian.org/holmgren/uw-imap/raw/dcb42981201ea14c2d71c01ebb4a61691b6f68b3/debian/patches/1006_openssl1.1_autoverify.patch";
@@ -31,7 +31,7 @@ stdenv.mkDerivation ({
sed -i src/osdep/unix/Makefile -e 's,^SSLLIB=.*,SSLLIB=${openssl.out}/lib,'
'';
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin
"-I${openssl.dev}/include/openssl";
installPhase = ''
@@ -45,14 +45,14 @@ stdenv.mkDerivation ({
meta = {
homepage = "https://www.washington.edu/imap/";
description = "UW IMAP toolkit - IMAP-supporting software developed by the UW";
license = stdenv.lib.licenses.asl20;
platforms = with stdenv.lib.platforms; linux;
license = lib.licenses.asl20;
platforms = with lib.platforms; linux;
};
passthru = {
withSSL = true;
};
} // stdenv.lib.optionalAttrs (stdenv.buildPlatform != stdenv.hostPlatform) {
} // lib.optionalAttrs (stdenv.buildPlatform != stdenv.hostPlatform) {
# This is set here to prevent rebuilds on native compilation.
# Configure phase is a no-op there, because this package doesn't use ./configure scripts.
configurePhase = ''