GNU GSS: Add dependency on GNU Shishi.
svn path=/nixpkgs/trunk/; revision=21922
This commit is contained in:
parent
b93b157771
commit
1fe9b4a3b1
@ -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";
|
||||
|
||||
|
@ -4064,7 +4064,7 @@ let
|
||||
};
|
||||
|
||||
gss = import ../development/libraries/gss {
|
||||
inherit stdenv fetchurl;
|
||||
inherit stdenv fetchurl shishi;
|
||||
};
|
||||
|
||||
gtkimageview = import ../development/libraries/gtkimageview {
|
||||
|
Loading…
x
Reference in New Issue
Block a user