diff options
| author | Eric Bavier <bavier@member.fsf.org> | 2015-06-27 21:00:27 -0500 | 
|---|---|---|
| committer | Eric Bavier <bavier@member.fsf.org> | 2015-06-30 05:01:42 -0500 | 
| commit | 9fe938c19f61688f862b19bb4afbbe1e24aa0abc (patch) | |
| tree | 0839a5ed6c11d15f3da769fda00729bc151e1693 | |
| parent | b1096f3dbbe8d91611ee18a05e4053478125bd45 (diff) | |
gnu: Add perl-gssapi.
* gnu/packages/web.scm (perl-gssapi): New variable.
| -rw-r--r-- | gnu/packages/web.scm | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index cbc795fa90..d3d02ade86 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -40,6 +40,7 @@    #:use-module (gnu packages compression)    #:use-module (gnu packages cyrus-sasl)    #:use-module (gnu packages databases) +  #:use-module (gnu packages mit-krb5)    #:use-module (gnu packages openssl)    #:use-module (gnu packages gd)    #:use-module (gnu packages gettext) @@ -1575,6 +1576,29 @@ Encode::decode(locale => $string).")  which can be used to parse directory listings.")      (home-page "http://search.cpan.org/~gaas/File-Listing/"))) +(define-public perl-gssapi +  (package +    (name "perl-gssapi") +    (version "0.28") +    (source +     (origin +       (method url-fetch) +       (uri (string-append "mirror://cpan/authors/id/A/AG/AGROLMS/" +                           "GSSAPI-" version ".tar.gz")) +       (sha256 +        (base32 +         "1mkhwxjjlhr58pd770i9gnf7zy7jj092iv6jfbnb8bvnc5xjr3vx")))) +    (build-system perl-build-system) +    (inputs `(("gssapi" ,mit-krb5))) +    (arguments +     `(#:make-maker-flags +       `(,(string-append "--gssapiimpl=" (assoc-ref %build-inputs "gssapi"))))) +    (home-page "http://search.cpan.org/dist/GSSAPI") +    (synopsis "Perl extension providing access to the GSSAPIv2 library") +    (description "This is a Perl extension for using GSSAPI C bindings as +described in RFC 2744.") +    (license (package-license perl)))) +  (define-public perl-html-form    (package      (name "perl-html-form") | 
