2013-01-29 17:02:22 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-07-13 12:13:11 -04:00
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
2014-04-27 05:09:07 -04:00
|
|
|
;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
|
2016-01-14 10:34:16 -05:00
|
|
|
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
|
2016-02-24 02:18:14 -05:00
|
|
|
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
|
2016-02-24 15:57:30 -05:00
|
|
|
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
2013-01-29 17:02:22 -05:00
|
|
|
;;;
|
|
|
|
;;; 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages ssh)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module (gnu packages)
|
|
|
|
#:use-module (gnu packages autotools)
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
#:autoload (gnu packages boost) (boost)
|
2013-01-29 17:02:22 -05:00
|
|
|
#:use-module (gnu packages compression)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module (gnu packages elf)
|
2013-01-29 17:02:22 -05:00
|
|
|
#:use-module (gnu packages gnupg)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module (gnu packages gperf)
|
2013-01-30 15:31:50 -05:00
|
|
|
#:use-module (gnu packages groff)
|
2013-12-04 16:24:28 -05:00
|
|
|
#:use-module (gnu packages guile)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages m4)
|
|
|
|
#:use-module (gnu packages multiprecision)
|
2014-04-11 16:05:33 -04:00
|
|
|
#:use-module (gnu packages ncurses)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module (gnu packages nettle)
|
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2014-04-11 16:05:33 -04:00
|
|
|
#:autoload (gnu packages protobuf) (protobuf)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module (gnu packages readline)
|
|
|
|
#:use-module (gnu packages texinfo)
|
gnu: Move content of openssl module into tls module.
* gnu/packages/openssl.scm (openssl, perl-net-ssleay): Move to...
* gnu/packages/tls.scm: ...here.
* gnu/packages/openssl.scm: Delete file.
* gnu-system.am (GNU_SYSTEM_MODULES): Unregister deleted file.
* gnu/packages/{admin.scm, bittorrent.scm, certs.scm, ci.scm,
cyrus-sasl.scm, databases.scm, dns.scm, ebook.scm, enlightenment.scm,
gnunet.scm, libreoffice.scm, links.scm, mail.scm, messaging.scm,
networking.scm, ntp.scm, openldap.scm, package-management.scm, pdf.scm,
python.scm, qt.scm, rdesktop.scm, rdf.scm, ruby.scm, ssh.scm,
synergy.scm, tor.scm, version-control.scm, video.scm, vpn.scm,
w3m.scm, web.scm, weechat.scm, xiph.scm}: Adapt module import.
2015-07-05 12:27:24 -04:00
|
|
|
#:use-module (gnu packages tls)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (guix build-system cmake)
|
|
|
|
#:use-module (guix build-system gnu)
|
2013-01-29 17:02:22 -05:00
|
|
|
#:use-module (guix download)
|
2014-10-12 18:32:14 -04:00
|
|
|
#:use-module (guix git-download)
|
2016-07-13 12:13:11 -04:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages))
|
2013-11-27 17:52:53 -05:00
|
|
|
|
|
|
|
(define-public libssh
|
|
|
|
(package
|
|
|
|
(name "libssh")
|
2016-02-24 15:57:31 -05:00
|
|
|
(version "0.7.3")
|
2013-11-27 17:52:53 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2015-09-01 07:45:38 -04:00
|
|
|
(uri (string-append
|
2016-02-24 15:57:31 -05:00
|
|
|
"https://red.libssh.org/attachments/download/195/libssh-"
|
2015-09-01 07:45:38 -04:00
|
|
|
version ".tar.xz"))
|
2013-11-27 17:52:53 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-02-24 15:57:31 -05:00
|
|
|
"165g49i4kmm3bfsjm0n8hm21kadv79g9yjqyq09138jxanz4dvr6"))))
|
2013-11-27 17:52:53 -05:00
|
|
|
(build-system cmake-build-system)
|
2013-12-03 18:29:19 -05:00
|
|
|
(arguments
|
2014-04-27 05:09:07 -04:00
|
|
|
'(#:configure-flags '("-DWITH_GCRYPT=ON")
|
2013-12-03 18:29:19 -05:00
|
|
|
|
|
|
|
;; TODO: Add 'CMockery' and '-DWITH_TESTING=ON' for the test suite.
|
2014-04-27 05:09:07 -04:00
|
|
|
#:tests? #f))
|
2013-11-27 17:52:53 -05:00
|
|
|
(inputs `(("zlib" ,zlib)
|
gnu: Fix misplaced commas (unquote).
Fix many occurrences of comma (unquote) being placed immediately after the
previous list item, e.g. ("ncurses", ncurses) in the inputs.
* gnu/packages/base.scm (patch, gnu-make),
gnu/packages/bioinformatics.scm (hmmer),
gnu/packages/bittorrent.scm (aria2),
gnu/packages/compression.scm (pbzip2),
gnu/packages/databases.scm (recutils),
gnu/packages/fonts.scm (font-terminus),
gnu/packages/freedesktop.scm (xdg-utils, elogind),
gnu/packages/games.scm (gnujump),
gnu/packages/gnome.scm (libidl, gnumeric, eog, gedit),
gnu/packages/gnunet.scm (gnunet),
gnu/packages/gnuzilla.scm (mozjs, nspr),
gnu/packages/gtk.scm (gtksourceview, gdk-pixbuf),
gnu/packages/lua.scm (lua),
gnu/packages/openstack.scm (python-swiftclient),
gnu/packages/perl.scm (perl-json-any),
gnu/packages/polkit.scm (polkit-qt),
gnu/packages/python.scm (wrap-python3, python-oauthlib)
(python-mccabe-0.2.1, python-contextlib2, python2-rauth),
gnu/packages/qt.scm (qtkeychain),
gnu/packages/ruby.scm (ruby-nokogiri),
gnu/packages/screen.scm (screen),
gnu/packages/ssh.scm (libssh),
gnu/packages/video.scm (ffmpeg, mplayer),
gnu/packages/vim.scm (vim),
gnu/packages/xdisorg.scm (redshift),
gnu/packages/xfce.scm (xfce4-panel, xfce4-settings),
gnu/packages/xnee.scm (xnee),
gnu/packages/xorg.scm (font-adobe100dpi, font-adobe75dpi),
gnu/packages/zsh.scm (zsh): Fix misplaced commas (unquote).
2016-02-27 08:37:28 -05:00
|
|
|
("libgcrypt" ,libgcrypt)))
|
2013-11-27 17:52:53 -05:00
|
|
|
(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+)))
|
2013-01-29 17:02:22 -05:00
|
|
|
|
2016-02-24 15:57:31 -05:00
|
|
|
(define libssh-0.6 ; kept private for use in guile-ssh
|
2014-04-04 16:00:23 -04:00
|
|
|
(package (inherit libssh)
|
2016-02-24 15:57:31 -05:00
|
|
|
(version "0.6.5")
|
2014-04-04 16:00:23 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-02-24 15:57:31 -05:00
|
|
|
(uri (string-append "https://red.libssh.org/attachments/"
|
|
|
|
"download/121/libssh-"
|
|
|
|
version ".tar.xz"))
|
2014-04-04 16:00:23 -04:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-02-24 15:57:31 -05:00
|
|
|
"0b6wyx6bwbb8jpn8x4rhlrdiqwqrwrs0mxjmrnqykm9kw1ijgm8g"))
|
2016-04-08 08:18:13 -04:00
|
|
|
(patches (search-patches
|
|
|
|
"libssh-0.6.5-CVE-2016-0739.patch"))))))
|
2014-04-04 16:00:23 -04:00
|
|
|
|
2013-01-29 17:02:22 -05:00
|
|
|
(define-public libssh2
|
|
|
|
(package
|
|
|
|
(name "libssh2")
|
2016-02-24 15:57:30 -05:00
|
|
|
(version "1.7.0")
|
2013-01-29 17:02:22 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-02-24 15:57:30 -05:00
|
|
|
"https://www.libssh2.org/download/libssh2-"
|
2013-01-29 17:02:22 -05:00
|
|
|
version ".tar.gz"))
|
2016-02-24 15:57:30 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"116mh112w48vv9k3f15ggp5kxw5sj4b88dzb5j69llsh7ba1ymp4"))))
|
2013-01-29 17:02:22 -05:00
|
|
|
(build-system gnu-build-system)
|
2014-03-25 16:51:32 -04:00
|
|
|
;; The installed libssh2.pc file does not include paths to libgcrypt and
|
|
|
|
;; zlib libraries, so we need to propagate the inputs.
|
|
|
|
(propagated-inputs `(("libgcrypt" ,libgcrypt)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(arguments '(#:configure-flags `("--with-libgcrypt")))
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
(synopsis "Client-side C library implementing the SSH2 protocol")
|
2013-01-29 17:02:22 -05:00
|
|
|
(description
|
|
|
|
"libssh2 is a library intended to allow software developers access to
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
the SSH-2 protocol in an easy-to-use self-contained package. It can be built
|
2013-01-29 17:02:22 -05:00
|
|
|
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/")))
|
2013-01-30 15:31:50 -05:00
|
|
|
|
|
|
|
(define-public openssh
|
|
|
|
(package
|
|
|
|
(name "openssh")
|
2016-03-10 15:30:00 -05:00
|
|
|
(version "7.2p2")
|
2013-01-30 15:31:50 -05:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2014-04-12 08:18:45 -04:00
|
|
|
(uri (let ((tail (string-append name "-" version ".tar.gz")))
|
2015-07-11 18:38:44 -04:00
|
|
|
(list (string-append "http://openbsd.cs.fau.de/pub/OpenBSD/OpenSSH/portable/"
|
2014-04-12 08:18:45 -04:00
|
|
|
tail)
|
2015-07-11 18:38:44 -04:00
|
|
|
(string-append "http://ftp.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/"
|
|
|
|
tail)
|
|
|
|
(string-append "http://ftp2.fr.openbsd.org/pub/OpenBSD/OpenSSH/portable/"
|
2014-04-12 08:18:45 -04:00
|
|
|
tail))))
|
2013-01-30 15:31:50 -05:00
|
|
|
(sha256 (base32
|
2016-04-15 13:56:34 -04:00
|
|
|
"132lh9aanb0wkisji1d6cmsxi520m8nh7c7i9wi6m1s3l38q29x7"))
|
2016-07-24 09:18:41 -04:00
|
|
|
(patches (search-patches "openssh-CVE-2015-8325.patch"
|
|
|
|
"openssh-CVE-2016-6210-1.patch"
|
|
|
|
"openssh-CVE-2016-6210-2.patch"
|
|
|
|
"openssh-CVE-2016-6210-3.patch"))))
|
2013-01-30 15:31:50 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs `(("groff" ,groff)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(arguments
|
|
|
|
`(#:test-target "tests"
|
|
|
|
#:phases
|
2015-11-27 04:57:03 -05:00
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'configure 'reset-/var/empty
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("PRIVSEP_PATH=/var/empty")
|
|
|
|
(string-append "PRIVSEP_PATH=" out "/var/empty")))
|
|
|
|
#t)))
|
|
|
|
(add-before 'check 'patch-tests
|
|
|
|
(lambda _
|
|
|
|
;; remove 't-exec' regress target which requires user 'sshd'
|
|
|
|
(substitute* "regress/Makefile"
|
|
|
|
(("^(REGRESS_TARGETS=.*) t-exec(.*)" all pre post)
|
|
|
|
(string-append pre post)))
|
|
|
|
#t))
|
|
|
|
(replace 'install
|
2015-11-27 05:35:50 -05:00
|
|
|
(lambda* (#:key outputs (make-flags '()) #:allow-other-keys)
|
2015-11-27 04:57:03 -05:00
|
|
|
;; install without host keys and system configuration files
|
2015-11-27 05:35:50 -05:00
|
|
|
(and (zero? (apply system* "make" "install-nosysconf" make-flags))
|
|
|
|
(begin
|
|
|
|
(install-file "contrib/ssh-copy-id"
|
|
|
|
(string-append (assoc-ref outputs "out")
|
|
|
|
"/bin/"))
|
|
|
|
(chmod (string-append (assoc-ref outputs "out")
|
|
|
|
"/bin/ssh-copy-id") #o555)
|
|
|
|
(install-file "contrib/ssh-copy-id.1"
|
|
|
|
(string-append (assoc-ref outputs "out")
|
|
|
|
"/share/man/man1/"))
|
|
|
|
#t)))))))
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
(synopsis "Client and server for the secure shell (ssh) protocol")
|
2013-01-30 15:31:50 -05:00
|
|
|
(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
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
the services provided by the transport layer. It provides several mechanisms
|
|
|
|
for user authentication. These include traditional password authentication
|
2013-01-30 15:31:50 -05:00
|
|
|
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
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
TCP-forwarding. It provides a flow control service for these channels.
|
2013-01-30 15:31:50 -05:00
|
|
|
Additionally, various channel-specific options can be negotiated.")
|
gnu: Update packages to use 'non-copyleft' instead of 'bsd-style'.
* gnu/packages/avr.scm, gnu/packages/compression.scm,
gnu/packages/curl.scm, gnu/packages/cyrus-sasl.scm,
gnu/packages/databases.scm, gnu/packages/firmware.scm,
gnu/packages/flex.scm, gnu/packages/fontutils.scm,
gnu/packages/gd.scm, gnu/packages/ghostscript.scm,
gnu/packages/gnunet.scm, gnu/packages/graphics.scm,
gnu/packages/hugs.scm, gnu/packages/image.scm,
gnu/packages/linux.scm, gnu/packages/mail.scm,
gnu/packages/maths.scm, gnu/packages/mit-krb5.scm,
gnu/packages/python.scm, gnu/packages/rdf.scm,
gnu/packages/ssh.scm, gnu/packages/tcl.scm,
gnu/packages/xdisorg.scm, gnu/packages/xiph.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm: Use 'non-copyleft'
instead of 'bsd-style'.
2015-03-14 14:26:34 -04:00
|
|
|
(license (license:non-copyleft "file://LICENSE"
|
2013-01-30 15:31:50 -05:00
|
|
|
"See LICENSE in the distribution."))
|
|
|
|
(home-page "http://www.openssh.org/")))
|
|
|
|
|
2013-12-04 16:24:28 -05:00
|
|
|
(define-public guile-ssh
|
|
|
|
(package
|
|
|
|
(name "guile-ssh")
|
2016-01-01 16:59:20 -05:00
|
|
|
(version "0.9.0")
|
2013-12-04 16:24:28 -05:00
|
|
|
(source (origin
|
2015-09-01 07:46:35 -04:00
|
|
|
;; ftp://memory-heap.org/software/guile-ssh/guile-ssh-VERSION.tar.gz
|
|
|
|
;; exists, but the server appears to be too slow and unreliable.
|
2014-10-12 18:32:14 -04:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/artyom-poptsov/libguile-ssh.git")
|
2015-03-11 18:23:16 -04:00
|
|
|
(commit (string-append "v" version))))
|
2015-11-23 04:50:55 -05:00
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
2013-12-04 16:24:28 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2016-01-01 16:59:20 -05:00
|
|
|
"04zs1cykwdyj51ag62ymrkgsja9dbhbaaglkvbfbac0bkxl2ir6d"))))
|
2013-12-04 16:24:28 -05:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2015-01-28 15:23:40 -05:00
|
|
|
'(#:phases (alist-cons-after
|
|
|
|
'unpack 'autoreconf
|
2013-12-04 16:24:28 -05:00
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2014-10-12 18:32:14 -04:00
|
|
|
(chmod "doc/version.texi" #o777) ;make it writable
|
2013-12-04 16:24:28 -05:00
|
|
|
(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)
|
2015-02-07 19:32:53 -05:00
|
|
|
(zero?
|
|
|
|
(system* "guile" "-c" "(use-modules (ssh session))"))))
|
2013-12-04 16:24:28 -05:00
|
|
|
%standard-phases))
|
|
|
|
#:configure-flags (list (string-append "--with-guilesitedir="
|
|
|
|
(assoc-ref %outputs "out")
|
2014-03-01 09:41:18 -05:00
|
|
|
"/share/guile/site/2.0"))
|
|
|
|
|
2014-03-25 11:14:45 -04:00
|
|
|
;; Tests are not parallel-safe.
|
|
|
|
#:parallel-tests? #f))
|
2013-12-04 16:24:28 -05:00
|
|
|
(native-inputs `(("autoconf" ,autoconf)
|
|
|
|
("automake" ,automake)
|
2015-01-07 03:44:10 -05:00
|
|
|
("libtool" ,libtool)
|
2014-03-01 09:41:18 -05:00
|
|
|
("texinfo" ,texinfo)
|
2013-12-04 16:24:28 -05:00
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
("which" ,which)))
|
|
|
|
(inputs `(("guile" ,guile-2.0)
|
2016-02-24 15:57:31 -05:00
|
|
|
("libssh" ,libssh-0.6)
|
2015-09-01 07:46:35 -04:00
|
|
|
("libgcrypt" ,libgcrypt)))
|
2013-12-04 16:24:28 -05:00
|
|
|
(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+)))
|
2014-01-24 19:51:29 -05:00
|
|
|
|
|
|
|
(define-public corkscrew
|
|
|
|
(package
|
|
|
|
(name "corkscrew")
|
|
|
|
(version "2.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://www.agroman.net/corkscrew/corkscrew-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256 (base32
|
|
|
|
"1gmhas4va6gd70i2x2mpxpwpgww6413mji29mg282jms3jscn3qd"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
;; Replace configure phase as the ./configure script does not link
|
|
|
|
;; CONFIG_SHELL and SHELL passed as parameters
|
|
|
|
'(#:phases
|
|
|
|
(alist-replace
|
|
|
|
'configure
|
2015-07-13 19:05:17 -04:00
|
|
|
(lambda* (#:key outputs inputs system build target
|
2014-01-24 19:51:29 -05:00
|
|
|
#:allow-other-keys #:rest args)
|
|
|
|
(let* ((configure (assoc-ref %standard-phases 'configure))
|
|
|
|
(prefix (assoc-ref outputs "out"))
|
|
|
|
(bash (which "bash"))
|
|
|
|
;; Set --build and --host flags as the provided config.guess
|
|
|
|
;; is not able to detect them
|
|
|
|
(flags `(,(string-append "--prefix=" prefix)
|
2015-07-13 19:05:17 -04:00
|
|
|
,(string-append "--build=" build)
|
|
|
|
,(string-append "--host=" (or target build)))))
|
2014-01-24 19:51:29 -05:00
|
|
|
(setenv "CONFIG_SHELL" bash)
|
|
|
|
(zero? (apply system* bash
|
|
|
|
(string-append "." "/configure")
|
|
|
|
flags))))
|
|
|
|
%standard-phases)))
|
|
|
|
(home-page "http://www.agroman.net/corkscrew")
|
2014-09-13 09:50:30 -04:00
|
|
|
(synopsis "Tunneling SSH through HTTP proxies")
|
2014-01-24 19:51:29 -05:00
|
|
|
(description
|
|
|
|
"Corkscrew allows creating TCP tunnels through HTTP proxies. WARNING:
|
|
|
|
At the moment only plain text authentication is supported, should you require
|
|
|
|
to use it with your HTTP proxy. Digest based authentication may be supported
|
|
|
|
in future and NTLM based authentication is most likey never be supported.")
|
|
|
|
(license license:gpl2+)))
|
2014-04-11 16:05:33 -04:00
|
|
|
|
|
|
|
(define-public mosh
|
|
|
|
(package
|
|
|
|
(name "mosh")
|
2015-10-07 09:43:40 -04:00
|
|
|
(version "1.2.5")
|
2014-04-11 16:05:33 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2015-10-07 09:43:40 -04:00
|
|
|
(uri (string-append "https://mosh.mit.edu/mosh-"
|
2014-04-11 16:05:33 -04:00
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-10-07 09:43:40 -04:00
|
|
|
"1qsb0y882yfgwnpy6f98pi5xqm6kykdsrxzvaal37hs7szjhky0s"))))
|
2014-04-11 16:05:33 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases (alist-cons-after
|
|
|
|
'install 'wrap
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; Make sure 'mosh' can find 'mosh-client' and
|
|
|
|
;; 'mosh-server'.
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
(wrap-program (string-append bin "/mosh")
|
|
|
|
`("PATH" ":" prefix (,bin)))))
|
|
|
|
%standard-phases)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("openssl" ,openssl)
|
|
|
|
("perl" ,perl)
|
|
|
|
("perl-io-tty" ,perl-io-tty)
|
|
|
|
("zlib" ,zlib)
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
("protobuf" ,protobuf)
|
|
|
|
("boost-headers" ,boost)))
|
|
|
|
(home-page "http://mosh.mit.edu/")
|
|
|
|
(synopsis "Remote shell tolerant to intermittent connectivity")
|
|
|
|
(description
|
|
|
|
"Remote terminal application that allows roaming, supports intermittent
|
|
|
|
connectivity, and provides intelligent local echo and line editing of user
|
|
|
|
keystrokes. Mosh is a replacement for SSH. It's more robust and responsive,
|
|
|
|
especially over Wi-Fi, cellular, and long-distance links.")
|
|
|
|
(license license:gpl3+)))
|
2014-06-12 08:46:39 -04:00
|
|
|
|
|
|
|
(define-public dropbear
|
|
|
|
(package
|
|
|
|
(name "dropbear")
|
2016-07-09 18:07:29 -04:00
|
|
|
(version "2016.73")
|
2014-06-12 08:46:39 -04:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
2016-02-24 02:18:14 -05:00
|
|
|
"https://matt.ucc.asn.au/" name "/releases/"
|
gnu: Adjust formatting as recommended by 'guix lint'.
* gnu/packages/aidc.scm (barcode, qrencode),
gnu/packages/bash.scm (bash, bash-completion),
gnu/packages/busybox.scm (busybox),
gnu/packages/cdrom.scm (cdparanoia),
gnu/packages/cmake.scm (cmake),
gnu/packages/conkeror.scm (conkeror),
gnu/packages/cook.scm (cook),
gnu/packages/curl.scm (curl),
gnu/packages/docbook.scm (docbook-xsl),
gnu/packages/enlightenment.scm (enlightenment),
gnu/packages/games.scm (abbaye),
gnu/packages/geeqie.scm (exiv2),
gnu/packages/gimp.scm (gegl),
gnu/packages/gl.scm (glu, freeglut, ftgl),
gnu/packages/glib.scm (glib),
gnu/packages/gnome.scm (orbit2, gconf, geocode-glib),
gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base),
gnu/packages/linux.scm (util-linux),
gnu/packages/lisp.scm (gcl, ecl),
gnu/packages/maths.scm (gnuplot, hdf5),
gnu/packages/ssh.scm (dropbear),
gnu/packages/web.scm (json-c): Remove tabulations and trailing
white spaces or reformat to fit within 80 columns.
* gnu/packages/audio.scm (aubio),
gnu/packages/emacs.scm (emacs-s),
gnu/packages/engineering.scm (geda-gaf),
gnu/packages/games.scm (dosbox),
gnu/packages/gnome.scm (gusb),
gnu/packages/gtk.scm (gtk+),
gnu/packages/guile.scm (guile-wisp),
gnu/packages/hurd.scm (hurd-headers),
gnu/packages/wm.scm (i3-wm): Adjust synopsis or description.
2015-11-13 09:50:36 -05:00
|
|
|
name "-" version ".tar.bz2"))
|
2014-06-12 08:46:39 -04:00
|
|
|
(sha256
|
2016-02-24 02:18:14 -05:00
|
|
|
(base32
|
2016-07-09 18:07:29 -04:00
|
|
|
"1mzg18jss1bsmcnn88zv7kv5yj01hzimndnd5636hfq9kgva8qaw"))))
|
2014-06-12 08:46:39 -04:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments `(#:tests? #f)) ; There is no "make check" or anything similar
|
|
|
|
(inputs `(("zlib" ,zlib)))
|
|
|
|
(synopsis "Small SSH server and client")
|
|
|
|
(description "Dropbear is a relatively small SSH server and
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
client. It runs on a variety of POSIX-based platforms. Dropbear is
|
|
|
|
particularly useful for embedded systems, such as wireless routers.")
|
2014-06-12 08:46:39 -04:00
|
|
|
(home-page "https://matt.ucc.asn.au/dropbear/dropbear.html")
|
|
|
|
(license (license:x11-style "" "See file LICENSE."))))
|
2016-07-13 12:13:11 -04:00
|
|
|
|
|
|
|
(define-public liboop
|
|
|
|
(package
|
|
|
|
(name "liboop")
|
|
|
|
(version "1.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://download.ofb.net/liboop/liboop-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0z6rlalhvfca64jpvksppc9bdhs7jwhiw4y35g5ibvh91xp3rn1l"))
|
|
|
|
(patches (search-patches "liboop-mips64-deplibs-fix.patch"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(home-page "http://www.lysator.liu.se/liboop/")
|
|
|
|
(synopsis "Event loop library")
|
|
|
|
(description "Liboop is a low-level event loop management library for
|
|
|
|
POSIX-based operating systems. It supports the development of modular,
|
|
|
|
multiplexed applications which may respond to events from several sources. It
|
|
|
|
replaces the \"select() loop\" and allows the registration of event handlers
|
|
|
|
for file and network I/O, timers and signals. Since processes use these
|
|
|
|
mechanisms for almost all external communication, liboop can be used as the
|
|
|
|
basis for almost any application.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
|
|
|
(define-public lsh
|
|
|
|
(package
|
|
|
|
(name "lsh")
|
|
|
|
(version "2.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://gnu/lsh/lsh-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1qqjy9zfzgny0rkb27c8c7dfsylvb6n0ld8h3an2r83pmaqr9gwb"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
(substitute* "src/testsuite/functions.sh"
|
|
|
|
(("localhost")
|
|
|
|
;; Avoid host name lookups since they don't work in
|
|
|
|
;; chroot builds.
|
|
|
|
"127.0.0.1")
|
|
|
|
(("set -e")
|
|
|
|
;; Make tests more verbose.
|
|
|
|
"set -e\nset -x"))
|
|
|
|
|
|
|
|
(substitute* (find-files "src/testsuite" "-test$")
|
|
|
|
(("localhost") "127.0.0.1"))
|
|
|
|
|
|
|
|
(substitute* "src/testsuite/login-auth-test"
|
|
|
|
(("/bin/cat") "cat"))))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("m4" ,m4)
|
|
|
|
("guile" ,guile-2.0)
|
|
|
|
("gperf" ,gperf)
|
|
|
|
("psmisc" ,psmisc))) ; for `killall'
|
|
|
|
(inputs
|
|
|
|
`(("nettle" ,nettle-2)
|
|
|
|
("linux-pam" ,linux-pam)
|
|
|
|
|
|
|
|
;; 'rl.c' uses the 'CPPFunction' type, which is no longer in
|
|
|
|
;; Readline 6.3.
|
|
|
|
("readline" ,readline-6.2)
|
|
|
|
|
|
|
|
("liboop" ,liboop)
|
|
|
|
("zlib" ,zlib)
|
|
|
|
("gmp" ,gmp)
|
|
|
|
|
|
|
|
;; The server (lshd) invokes xauth when X11 forwarding is requested.
|
|
|
|
;; This adds 24 MiB (or 27%) to the closure of lsh.
|
|
|
|
("xauth" ,xauth)))
|
|
|
|
(arguments
|
|
|
|
'(;; Skip the `configure' test that checks whether /dev/ptmx &
|
|
|
|
;; co. work as expected, because it relies on impurities (for
|
|
|
|
;; instance, /dev/pts may be unavailable in chroots.)
|
|
|
|
#:configure-flags '("lsh_cv_sys_unix98_ptys=yes")
|
|
|
|
|
|
|
|
;; FIXME: Tests won't run in a chroot, presumably because
|
|
|
|
;; /etc/profile is missing, and thus clients get an empty $PATH
|
|
|
|
;; and nothing works.
|
|
|
|
#:tests? #f
|
|
|
|
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'pre-configure
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let* ((nettle (assoc-ref inputs "nettle"))
|
|
|
|
(sexp-conv (string-append nettle "/bin/sexp-conv")))
|
|
|
|
;; Make sure 'lsh' and 'lshd' pick 'sexp-conv' in the right place
|
|
|
|
;; by default.
|
|
|
|
(substitute* "src/environ.h.in"
|
|
|
|
(("^#define PATH_SEXP_CONV.*")
|
|
|
|
(string-append "#define PATH_SEXP_CONV \""
|
|
|
|
sexp-conv "\"\n")))
|
|
|
|
|
|
|
|
;; Same for the 'lsh-authorize' script.
|
|
|
|
(substitute* "src/lsh-authorize"
|
|
|
|
(("=sexp-conv")
|
|
|
|
(string-append "=" sexp-conv)))
|
|
|
|
|
|
|
|
;; Tell lshd where 'xauth' lives. Another option would be to
|
|
|
|
;; hardcode "/run/current-system/profile/bin/xauth", thereby
|
|
|
|
;; reducing the closure size, but that wouldn't work on foreign
|
|
|
|
;; distros.
|
|
|
|
(with-fluids ((%default-port-encoding "ISO-8859-1"))
|
|
|
|
(substitute* "src/server_x11.c"
|
|
|
|
(("define XAUTH_PROGRAM.*")
|
|
|
|
(string-append "define XAUTH_PROGRAM \""
|
|
|
|
(assoc-ref inputs "xauth")
|
|
|
|
"/bin/xauth\"\n")))))
|
|
|
|
|
|
|
|
;; Tests rely on $USER being set.
|
|
|
|
(setenv "USER" "guix"))))))
|
|
|
|
(home-page "http://www.lysator.liu.se/~nisse/lsh/")
|
|
|
|
(synopsis "GNU implementation of the Secure Shell (ssh) protocols")
|
|
|
|
(description
|
|
|
|
"GNU lsh is a free implementation of the SSH version 2 protocol. It is
|
|
|
|
used to create a secure line of communication between two computers,
|
|
|
|
providing shell access to the server system from the client. It provides
|
|
|
|
both the server daemon and the client application, as well as tools for
|
|
|
|
manipulating key files.")
|
|
|
|
(license license:gpl2+)))
|