gnu: libtirpc: Remove the --disable-gssapi configure flag.

* gnu/packages/onc-rpc.scm (libtirpc)[arguments]: Remove the --disable-gssapi
configure flag.
[inputs]: Add mit-krb5
This commit is contained in:
John Darrington 2016-08-27 19:57:22 +02:00
parent 06550e0779
commit 13bef904d7
No known key found for this signature in database
GPG Key ID: 8A67719C2DE827B3
1 changed files with 3 additions and 4 deletions

View File

@ -20,6 +20,7 @@
#:use-module (guix licenses) #:use-module (guix licenses)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (gnu packages mit-krb5)
#:use-module (guix build-system gnu)) #:use-module (guix build-system gnu))
(define-public libtirpc (define-public libtirpc
@ -36,16 +37,14 @@
"18a337wa4amf0k21wnimp3yzs5l3cxqndz4x3x8bm993zhfy5hs5")))) "18a337wa4amf0k21wnimp3yzs5l3cxqndz4x3x8bm993zhfy5hs5"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(;; Doesn't work with GNU GSS. '(#:phases (alist-cons-after
#:configure-flags '("--disable-gssapi")
#:phases (alist-cons-after
'unpack 'remote-dangling-symlink 'unpack 'remote-dangling-symlink
(lambda _ (lambda _
;; Remote the dangling symlinks since it breaks the ;; Remote the dangling symlinks since it breaks the
;; 'patch-source-shebangs' file tree traversal. ;; 'patch-source-shebangs' file tree traversal.
(delete-file "INSTALL")) (delete-file "INSTALL"))
%standard-phases))) %standard-phases)))
(inputs `(("mit-krb5" ,mit-krb5)))
(home-page "http://sourceforge.net/projects/libtirpc/") (home-page "http://sourceforge.net/projects/libtirpc/")
(synopsis "Transport-independent Sun/ONC RPC implementation") (synopsis "Transport-independent Sun/ONC RPC implementation")
(description (description