Merge pull request #194109 from stephank/fix/darwin-uw-imap

uwimap: fix build on darwin
This commit is contained in:
Elis Hirwing 2022-10-03 08:36:05 +02:00 committed by GitHub
commit 9b9830c41f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, fetchpatch, pam, openssl }:
{ lib, stdenv, fetchurl, fetchpatch, pam, openssl, libkrb5 }:
stdenv.mkDerivation rec {
pname = "uw-imap";
@ -18,8 +18,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
buildInputs = [ openssl ]
++ lib.optional (!stdenv.isDarwin) pam;
buildInputs = [
openssl
(if stdenv.isDarwin then libkrb5 else pam) # Matches the make target.
];
patches = [ (fetchpatch {
url = "https://salsa.debian.org/holmgren/uw-imap/raw/dcb42981201ea14c2d71c01ebb4a61691b6f68b3/debian/patches/1006_openssl1.1_autoverify.patch";
@ -43,11 +45,11 @@ stdenv.mkDerivation rec {
tools/{an,ua} $out/bin
'';
meta = {
meta = with lib; {
homepage = "https://www.washington.edu/imap/";
description = "UW IMAP toolkit - IMAP-supporting software developed by the UW";
license = lib.licenses.asl20;
platforms = with lib.platforms; linux;
license = licenses.asl20;
platforms = platforms.unix;
};
passthru = {