mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
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,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/;
|
||||
|
@ -4064,7 +4064,7 @@ let
|
||||
};
|
||||
|
||||
gss = import ../development/libraries/gss {
|
||||
inherit stdenv fetchurl;
|
||||
inherit stdenv fetchurl shishi;
|
||||
};
|
||||
|
||||
gtkimageview = import ../development/libraries/gtkimageview {
|
||||
|
Loading…
Reference in New Issue
Block a user