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