diff options
author | Leo Famulari <leo@famulari.name> | 2016-12-07 18:51:27 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-12-08 13:53:36 -0500 |
commit | 57513498def74f8d95ef10df654d28e5a638a612 (patch) | |
tree | 8d9cacc02fe22acb12b0f9ff919718d595e4e3ad /gnu/packages/shells.scm | |
parent | a2c1dceadd2bf86ab17c70cd674bc98aec32a842 (diff) | |
download | patches-57513498def74f8d95ef10df654d28e5a638a612.tar patches-57513498def74f8d95ef10df654d28e5a638a612.tar.gz |
gnu: tcsh: Fix out of bounds read.
* gnu/packages/patches/tcsh-fix-out-of-bounds-read.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/shells.scm (tcsh)[replacement]: New field.
(tcsh/fixed): New variable.
Diffstat (limited to 'gnu/packages/shells.scm')
-rw-r--r-- | gnu/packages/shells.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index f3350ef501..1931609753 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -174,6 +174,7 @@ has a small feature set similar to a traditional Bourne shell.") (define-public tcsh (package (name "tcsh") + (replacement tcsh/fixed) (version "6.18.01") (source (origin (method url-fetch) @@ -231,6 +232,15 @@ command-line editor, programmable word completion, spelling correction, a 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") |