* [PATCH] gnu: openssh: Enable kerberos features.
@ 2016-10-17 17:26 John Darrington
2016-10-17 19:00 ` Leo Famulari
0 siblings, 1 reply; 2+ messages in thread
From: John Darrington @ 2016-10-17 17:26 UTC (permalink / raw)
To: guix-devel; +Cc: John Darrington
* gnu/packages/ssh.scm (openssh): New input mit-krb5.
---
gnu/packages/ssh.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index c551f18..9fd1506 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -37,6 +37,7 @@
#:use-module (gnu packages multiprecision)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages nettle)
+ #:use-module (gnu packages mit-krb5)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:autoload (gnu packages protobuf) (protobuf)
@@ -126,15 +127,21 @@ a server that supports the SSH-2 protocol.")
(inputs `(("groff" ,groff)
("openssl" ,openssl)
("pam" ,linux-pam)
+ ("mit-krb5" ,mit-krb5)
("zlib" ,zlib)
("xauth" ,xauth))) ;for 'ssh -X' and 'ssh -Y'
(arguments
`(#:test-target "tests"
- #:configure-flags '("--sysconfdir=/etc/ssh"
+ #:configure-flags `("--sysconfdir=/etc/ssh"
- ;; Default value of 'PATH' used by sshd.
+ ;; Default value of 'PATH' used by sshd.
"--with-default-path=/run/current-system/profile/bin"
+ ;; configure needs to find krb5-config
+ ,(string-append "--with-kerberos5="
+ (assoc-ref %build-inputs "mit-krb5")
+ "/bin")
+
;; Enable PAM support in sshd.
"--with-pam")
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] gnu: openssh: Enable kerberos features.
2016-10-17 17:26 [PATCH] gnu: openssh: Enable kerberos features John Darrington
@ 2016-10-17 19:00 ` Leo Famulari
0 siblings, 0 replies; 2+ messages in thread
From: Leo Famulari @ 2016-10-17 19:00 UTC (permalink / raw)
To: John Darrington; +Cc: guix-devel
On Mon, Oct 17, 2016 at 07:26:11PM +0200, John Darrington wrote:
> * gnu/packages/ssh.scm (openssh): New input mit-krb5.
It should mention the addition to configure-flags and that mit-krb5 is
added to [inputs].
Otherwise LGTM. It increases the OpenSSH closure by ~4 MiB, to 117.9.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-10-17 19:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-17 17:26 [PATCH] gnu: openssh: Enable kerberos features John Darrington
2016-10-17 19:00 ` Leo Famulari
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).