aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/libedit.scm
blob: a1a1ac6bb58181fb623a816300b70f2b6d21ca89 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
;;;
;;; 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 libedit)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages ncurses))

(define-public libedit
  (package
    (name "libedit")
    (version "20150325-3.1")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "http://thrysoee.dk/editline"
                          "/" name "-" version ".tar.gz"))
      (sha256
       (base32
        "1if8zi9h52m80ck796an28rrqfljk2n8cn25m3fl0prwz155x2n8"))))
    (build-system gnu-build-system)
    (arguments `(#:configure-flags (list "--enable-widec")))
    (inputs
     `(("ncurses" ,ncurses)))
    (home-page "http://thrysoee.dk/editline/")
    (synopsis "NetBSD Editline library")
    (description
     "This is an autotool- and libtoolized port of the NetBSD Editline
library (libedit).  This Berkeley-style licensed command line editor library
provides generic line editing, history, and tokenization functions, similar to
those found in GNU Readline.")
    (license bsd-3)))

;;; libedit.scm ends here
31e7faa6c44ff'>gnu: talloc: Update to 2.1.13....Marius Bakke 2018-03-22gnu: talloc: Update to 2.1.12....Marius Bakke 2018-03-15gnu: cifs-utils: Update to 6.8....Tobias Geerinckx-Rice 2018-03-14gnu: samba: Update to 4.7.6 [fixes CVE-2018-1050 and CVE-2018-1057]....Marius Bakke 2018-02-28gnu: ldb: Update to 1.3.2....Marius Bakke 2018-02-23gnu: tevent: Update to 0.9.36....Marius Bakke 2018-02-09gnu: samba: Update to 4.7.5....Marius Bakke 2018-02-01gnu: tevent: Update to 0.9.35....Marius Bakke 2018-02-01gnu: ldb: Update to 1.3.1....Marius Bakke 2018-01-15gnu: talloc: Update to 2.1.11....Tobias Geerinckx-Rice 2018-01-15gnu: iniparser: Update to 4.1....Tobias Geerinckx-Rice 2018-01-15gnu: iniparser: Use INSTALL-FILE....Tobias Geerinckx-Rice 2018-01-15gnu: iniparser: Use #:make-flags....Tobias Geerinckx-Rice 2018-01-15gnu: iniparser: Fix documentation directory....Tobias Geerinckx-Rice 2018-01-09gnu: samba: Update to 4.7.4....Marius Bakke 2017-11-21gnu: samba: Update to 4.7.3 [fixes CVE-2017-14746 and CVE-2017-15275]....Marius Bakke 2017-11-19gnu: samba: Update to 4.7.2....Marius Bakke 2017-11-19gnu: tevent: Update to 0.9.34....Marius Bakke 2017-11-04gnu: samba: Update to 4.7.1....Marius Bakke 2017-11-04gnu: ldb: Update to 1.3.0....Marius Bakke 2017-09-27gnu: samba: Install manual pages....Marius Bakke 2017-09-20gnu: samba: Update to 4.6.8....Marius Bakke