cyrus-sasl: only apply patch on FreeBSD to fix #12279
I noticed the breakage but forgot this patch in another branch. https://github.com/NixOS/nixpkgs/pull/10816#issuecomment-168486249
This commit is contained in:
parent
732495017b
commit
513994da9d
@ -10,19 +10,19 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ openssl db gettext kerberos autoreconfHook ]
|
[ openssl db gettext kerberos ]
|
||||||
|
++ lib.optional stdenv.isFreeBSD autoreconfHook
|
||||||
++ lib.optional stdenv.isLinux pam
|
++ lib.optional stdenv.isLinux pam
|
||||||
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./missing-size_t.patch # https://bugzilla.redhat.com/show_bug.cgi?id=906519
|
./missing-size_t.patch # https://bugzilla.redhat.com/show_bug.cgi?id=906519
|
||||||
(
|
] ++ lib.optional stdenv.isFreeBSD (
|
||||||
fetchurl {
|
fetchurl {
|
||||||
url = "http://www.linuxfromscratch.org/patches/blfs/svn/cyrus-sasl-2.1.26-fixes-3.patch";
|
url = "http://www.linuxfromscratch.org/patches/blfs/svn/cyrus-sasl-2.1.26-fixes-3.patch";
|
||||||
sha256 = "1vh4pc2rxxm6yvykx0b7kg09jbcwcxwv5rs6yq2ag3y8p6a9x86w";
|
sha256 = "1vh4pc2rxxm6yvykx0b7kg09jbcwcxwv5rs6yq2ag3y8p6a9x86w";
|
||||||
}
|
}
|
||||||
)
|
);
|
||||||
];
|
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-openssl=${openssl}"
|
"--with-openssl=${openssl}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user