3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #81601 from andir/gsasl

gsasl: export LOCALDOMAIN before running tests
This commit is contained in:
Andreas Rammhold 2020-03-03 16:12:56 +01:00 committed by GitHub
commit c70840206a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,16 +12,19 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-gssapi-impl=mit" ]; configureFlags = [ "--with-gssapi-impl=mit" ];
preCheck = ''
export LOCALDOMAIN="dummydomain"
'';
doCheck = !stdenv.hostPlatform.isDarwin; doCheck = !stdenv.hostPlatform.isDarwin;
meta = { meta = {
description = "GNU SASL, Simple Authentication and Security Layer library"; description = "GNU SASL, Simple Authentication and Security Layer library";
longDescription = longDescription =
'' GNU SASL is a library that implements the IETF Simple '' GNU SASL is a library that implements the IETF Simple
Authentication and Security Layer (SASL) framework and Authentication and Security Layer (SASL) framework and
some SASL mechanisms. SASL is used in network servers some SASL mechanisms. SASL is used in network servers
(e.g. IMAP, SMTP, etc.) to authenticate peers. (e.g. IMAP, SMTP, etc.) to authenticate peers.
''; '';
homepage = https://www.gnu.org/software/gsasl/; homepage = https://www.gnu.org/software/gsasl/;