mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: tcsh: Incorporate grafted patch.
* gnu/packages/shells.scm (tcsh)[replacement]: Remove field. [source]: Add patch 'tcsh-fix-out-of-bounds-read.patch'. (tcsh/fixed): Remove variable.
This commit is contained in:
parent
66707558b6
commit
0086496042
1 changed files with 2 additions and 11 deletions
|
@ -217,7 +217,6 @@ (define-public es
|
|||
(define-public tcsh
|
||||
(package
|
||||
(name "tcsh")
|
||||
(replacement tcsh/fixed)
|
||||
(version "6.18.01")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
|
@ -230,7 +229,8 @@ (define-public tcsh
|
|||
(base32
|
||||
"1a4z9kwgx1iqqzvv64si34m60gj34p7lp6rrcrb59s7ka5wa476q"))
|
||||
(patches (search-patches "tcsh-fix-autotest.patch"
|
||||
"tcsh-do-not-define-BSDWAIT.patch"))
|
||||
"tcsh-do-not-define-BSDWAIT.patch"
|
||||
"tcsh-fix-out-of-bounds-read.patch"))
|
||||
(patch-flags '("-p0"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
|
@ -275,15 +275,6 @@ (define-public tcsh
|
|||
history mechanism, job control and a C-like syntax.")
|
||||
(license bsd-4)))
|
||||
|
||||
(define tcsh/fixed
|
||||
(package
|
||||
(inherit tcsh)
|
||||
(name "tcsh")
|
||||
(source (origin
|
||||
(inherit (package-source tcsh))
|
||||
(patches (cons (search-patch "tcsh-fix-out-of-bounds-read.patch")
|
||||
(origin-patches (package-source tcsh))))))))
|
||||
|
||||
(define-public zsh
|
||||
(package
|
||||
(name "zsh")
|
||||
|
|
Loading…
Reference in a new issue