GNU GSS: Add dependency on GNU Shishi.

svn path=/nixpkgs/trunk/; revision=21922
This commit is contained in:
Ludovic Courtès 2010-05-20 13:00:30 +00:00
parent b93b157771
commit 1fe9b4a3b1
2 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,4 @@
{ fetchurl, stdenv }:
{ fetchurl, stdenv, shishi }:
stdenv.mkDerivation rec {
name = "gss-1.0.0";
@ -8,16 +8,22 @@ stdenv.mkDerivation rec {
sha256 = "0rcbzg19m7bddvbhjqv1iwyydkj61czb0xr691mkj0i5p4d4bakk";
};
buildInputs = [ shishi ];
doCheck = true;
# Work around the lack of `-lshishi' for `krb5context'. See
# <http://lists.gnu.org/archive/html/help-gsasl/2010-05/msg00005.html>.
checkPhase = "make check LDFLAGS=-lshishi";
meta = {
description = "GNU GSS Generic Security Service";
longDescription =
'' GSS is an implementation of the Generic Security Service Application
Program Interface (GSS-API). GSS-API is used by network servers to
provide security services, e.g., to authenticate SMTP/IMAP clients
against SMTP/IMAP servers.
Program Interface (GSS-API). GSS-API is used by network servers to
provide security services, e.g., to authenticate SMTP/IMAP clients
against SMTP/IMAP servers.
'';
homepage = http://www.gnu.org/software/gss/;

View File

@ -4064,7 +4064,7 @@ let
};
gss = import ../development/libraries/gss {
inherit stdenv fetchurl;
inherit stdenv fetchurl shishi;
};
gtkimageview = import ../development/libraries/gtkimageview {