gnu: python-dateutil: Update to 2.7.3.
[jackhill/guix/guix.git] / gnu / packages / libedit.scm
CommitLineData
c8daf572
FB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
ab952dc3 3;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
85389321 4;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
c8daf572
FB
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (gnu packages libedit)
22 #:use-module (guix licenses)
23 #:use-module (guix packages)
24 #:use-module (guix download)
25 #:use-module (guix build-system gnu)
26 #:use-module (gnu packages ncurses))
27
28(define-public libedit
29 (package
30 (name "libedit")
57b1dba1 31 (version "20180525-3.1")
c8daf572
FB
32 (source
33 (origin
34 (method url-fetch)
35 (uri (string-append "http://thrysoee.dk/editline"
36 "/" name "-" version ".tar.gz"))
37 (sha256
38 (base32
57b1dba1 39 "05iicng4kag5hxdc7adbyj1gm3qbmvcc33m9cyx5gys0s67yl6y4"))))
c8daf572
FB
40 (build-system gnu-build-system)
41 (inputs
42 `(("ncurses" ,ncurses)))
c3d8bf39 43 (home-page "https://thrysoee.dk/editline/")
c8daf572
FB
44 (synopsis "NetBSD Editline library")
45 (description
46 "This is an autotool- and libtoolized port of the NetBSD Editline
1eefe4a8 47library (libedit). This Berkeley-style licensed command line editor library
c8daf572
FB
48provides generic line editing, history, and tokenization functions, similar to
49those found in GNU Readline.")
50 (license bsd-3)))