~ruther/guix-local

39012aab3333868d5ab3b39c95682f95212437e2 — Ludovic Courtès 9 years ago d4b1977
gnu: openssh: Add PAM support in sshd.

* gnu/packages/ssh.scm (openssh)[inputs]: Add LINUX-PAM.
[arguments]: Add "--with-pam" to #:configure-flags.
1 files changed, 6 insertions(+), 1 deletions(-)

M gnu/packages/ssh.scm
M gnu/packages/ssh.scm => gnu/packages/ssh.scm +6 -1
@@ 139,11 139,16 @@ a server that supports the SSH-2 protocol.")
   (build-system gnu-build-system)
   (inputs `(("groff" ,groff)
             ("openssl" ,openssl)
             ("pam" ,linux-pam)
             ("zlib" ,zlib)
             ("xauth" ,xauth)))                   ;for 'ssh -X' and 'ssh -Y'
   (arguments
    `(#:test-target "tests"
      #:configure-flags '("--sysconfdir=/etc")
      #:configure-flags '("--sysconfdir=/etc"

                          ;; Enable PAM support in sshd.
                          "--with-pam")

      #:phases
      (modify-phases %standard-phases
        (add-after 'configure 'reset-/var/empty