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,8 +8,14 @@ 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";

View File

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