mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: libedit: Update to 20170329-3.1.
* gnu/packages/libedit.scm (libedit): Update to 20170329-3.1. [arguments]: Remove deprecated ‘--enable-widec’ from #:configure-flags.
This commit is contained in:
parent
c3d8bf3992
commit
85389321f0
1 changed files with 3 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||||
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -27,7 +28,7 @@ (define-module (gnu packages libedit)
|
||||||
(define-public libedit
|
(define-public libedit
|
||||||
(package
|
(package
|
||||||
(name "libedit")
|
(name "libedit")
|
||||||
(version "20150325-3.1")
|
(version "20170329-3.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -35,9 +36,8 @@ (define-public libedit
|
||||||
"/" name "-" version ".tar.gz"))
|
"/" name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1if8zi9h52m80ck796an28rrqfljk2n8cn25m3fl0prwz155x2n8"))))
|
"1gnlgl0x8g9ky59s70nriy5gv47676d1s4ypvbv8y11apl7xkwli"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments `(#:configure-flags (list "--enable-widec")))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("ncurses" ,ncurses)))
|
`(("ncurses" ,ncurses)))
|
||||||
(home-page "https://thrysoee.dk/editline/")
|
(home-page "https://thrysoee.dk/editline/")
|
||||||
|
@ -48,5 +48,3 @@ (define-public libedit
|
||||||
provides generic line editing, history, and tokenization functions, similar to
|
provides generic line editing, history, and tokenization functions, similar to
|
||||||
those found in GNU Readline.")
|
those found in GNU Readline.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
;;; libedit.scm ends here
|
|
||||||
|
|
Loading…
Reference in a new issue