mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
uwimap: fix build on darwin
This commit is contained in:
parent
978895272f
commit
28fd333c1d
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user