;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Andreas Enge ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages ssh) #:use-module ((guix licenses) #:renamer (symbol-prefix-proc 'license:)) #:use-module (gnu packages compression) #:use-module (gnu packages gnupg) #:use-module (gnu packages groff) #:use-module (gnu packages openssl) #:use-module (gnu packages elf) #:use-module (gnu packages guile) #:use-module (gnu packages pkg-config) #:use-module (gnu packages autotools) #:use-module (gnu packages which) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake)) (define-public libssh (package (name "libssh") (version "0.5.3") (source (origin (method url-fetch) (uri (string-append "http://www.libssh.org/files/0.5/libssh-" version ".tar.gz")) (sha256 (base32 "1w6s217vjq0w3v5i0c5ql6m0ki1yz05g9snah3azxfkl9k4schpd")))) (build-system cmake-build-system) (arguments '(#:configure-flags '("-DWITH_GCRYPT=ON" ;; Leave a valid RUNPATH upon install. "-DCMAKE_SKIP_BUILD_RPATH=ON") ;; TODO: Add 'CMockery' and '-DWITH_TESTING=ON' for the test suite. #:tests? #f #:modules ((guix build cmake-build-system) (guix build utils) (guix build rpath)) #:imported-modules ((guix build gnu-build-system) (guix build cmake-build-system) (guix build utils) (guix build rpath)) #:phases (alist-cons-after 'install 'augment-runpath (lambda* (#:key outputs #:allow-other-keys) ;; libssh_threads.so NEEDs libssh.so, so add $libdir to its ;; RUNPATH. (define (dereference file) (let ((target (false-if-exception (readlink file)))) (if target (dereference target) file))) (let* ((out (assoc-ref outputs "out")) (lib (string-append out "/lib"))) (with-directory-excursion lib (augment-rpath (dereference "libssh_threads.so") lib)))) %standard-phases))) (inputs `(("zlib" ,zlib) ("libgcrypt" ,libgcrypt))) (native-inputs `(("patchelf" ,patchelf))) (synopsis "SSH client library") (description "libssh is a C library implementing the SSHv2 and SSHv1 protocol for client and server implementations. With libssh, you can remotely execute programs, transfer files, and use a secure and transparent tunnel for your remote applications.") (home-page "http://www.libssh.org") (license license:lgpl2.1+))) (define-public libssh2 (package (name "libssh2") (version "1.4.3") (source (origin (method url-fetch) (uri (string-append "http://www.libssh2.org/download/libssh2-" version ".tar.gz")) (sha256 (base32 "0vdr478dbhbdgnniqmirawjb7mrcxckn4slhhrijxnzrkmgziipa")))) (build-system gnu-build-system) (inputs `(("libgcrypt" ,libgcrypt) ("zlib" ,zlib))) (synopsis "libssh2, a client-side C library implementing the SSH2 protocol") (description "libssh2 is a library intended to allow software developers access to the SSH-2 protocol in an easy-to-use self-contained package. It can be built into an application to perform many different tasks when communicating with a server that supports the SSH-2 protocol.") (license license:bsd-3) (home-page "http://www.libssh2.org/"))) (define-public openssh (package (name "openssh") (version "6.1p1") (source (origin (method url-fetch) (uri (string-append "ftp://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-" version ".tar.gz")) (sha256 (base32 "04f4l4vx6f964v5qjm03nhyixdc3llc90z6cj70r0bl5q3v5ghfi")))) (build-system gnu-build-system) (inputs `(("groff" ,groff) ("openssl" ,openssl) ("zlib" ,zlib))) (arguments `(#:test-target "tests" #:phases (alist-replace 'configure (lambda* (#:key outputs #:allow-other-keys #:rest args) (let ((configure (assoc-ref %standard-phases 'configure)) (out (assoc-ref outputs "out"))) (apply configure args) (substitute* "Makefile" (("PRIVSEP_PATH=/var/empty") (string-append "PRIVSEP_PATH=" out "/var/empty"))))) (alist-replace 'check (lambda* (#:key #:allow-other-keys #:rest args) (let ((check (assoc-ref %standard-phases 'check))) ;; remove tests that require the user sshd (substitute* "regress/Makefile" (("t9 t-exec") "t9")) (apply check args))) (alist-replace 'install (lambda* (#:key (make-flags '()) #:allow-other-keys) ;; install without host keys and system configuration files (zero? (apply system* "make" "install-nosysconf" make-flags))) %standard-phases))))) (synopsis "OpenSSH, a client and server for the secure shell (ssh) protocol") (description "The SSH2 protocol implemented in OpenSSH is standardised by the IETF secsh working group and is specified in several RFCs and drafts. It is composed of three layered components: The transport layer provides algorithm negotiation and a key exchange. The key exchange includes server authentication and results in a cryptographically secured connection: it provides integrity, confidentiality and optional compression. The user authentication layer uses the established connection and relies on the services provided by the transport layer. It provides several mechanisms for user authentication. These include traditional password authentication as well as public-key or host-based authentication mechanisms. The connection layer multiplexes many different concurrent channels over the authenticated connection and allows tunneling of login sessions and TCP-forwarding. It provides a flow control service for these channels. Additionally, various channel-specific options can be negotiated.") (license (license:bsd-style "file://LICENSE" "See LICENSE in the distribution.")) (home-page "http://www.openssh.org/"))) (define-public guile-ssh (package (name "guile-ssh") (version "0.4.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/artyom-poptsov/libguile-ssh/archive/v" version ".tar.gz")) (sha256 (base32 "0vw02r261amkp6238cflww2y9y1v6vfx9ias6hvn8dlx0ghrd5dw")))) (build-system gnu-build-system) (arguments '(#:phases (alist-cons-before 'configure 'autoreconf (lambda* (#:key inputs #:allow-other-keys) ;; The 'configure' script would want libssh 0.5.4, but that ;; doesn't exist. (substitute* "configure.ac" (("0\\.5\\.4") "0.5.3")) (substitute* "src/Makefile.am" (("-lssh_threads" match) (string-append "-L" (assoc-ref inputs "libssh") "/lib " match))) (zero? (system* "autoreconf" "-vfi"))) (alist-cons-after 'install 'fix-libguile-ssh-file-name (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (libdir (string-append out "/lib")) (guiledir (string-append out "/share/guile/site/2.0"))) (substitute* (find-files guiledir ".scm") (("\"libguile-ssh\"") (string-append "\"" libdir "/libguile-ssh\""))) ;; Make sure it works. (setenv "GUILE_LOAD_PATH" guiledir) (setenv "GUILE_LOAD_COMPILED_PATH" guiledir) (system* "guile" "-c" "(use-modules (ssh session))"))) %standard-phases)) #:configure-flags (list (string-append "--with-guilesitedir=" (assoc-ref %outputs "out") "/share/guile/site/2.0")))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) ("libtool" ,libtool "bin") ("pkg-config" ,pkg-config) ("which" ,which))) (inputs `(("guile" ,guile-2.0) ("libssh" ,libssh))) (synopsis "Guile bindings to libssh") (description "Guile-SSH is a library that provides access to the SSH protocol for programs written in GNU Guile interpreter. It is a wrapper to the underlying libssh library.") (home-page "https://github.com/artyom-poptsov/libguile-ssh") (license license:gpl3+)))