mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add bash-with-syslog.
* gnu/packages/bash.scm (bash-with-syslog): New variable.
This commit is contained in:
parent
62d2c36e77
commit
0a17eee8eb
1 changed files with 17 additions and 0 deletions
|
@ -269,6 +269,23 @@ (define-public static-bash
|
|||
(delete-file-recursively (string-append out "/share"))
|
||||
#t))))))))))
|
||||
|
||||
(define-public bash-with-syslog
|
||||
(package
|
||||
(inherit bash)
|
||||
(name "bash-with-syslog")
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments bash)
|
||||
((#:phases phases '%standard-phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'enable-syslogging
|
||||
(lambda _
|
||||
(substitute* "config-top.h"
|
||||
(("/\\* #define SYSLOG_HISTORY \\*/")
|
||||
"#define SYSLOG_HISTORY"))))))))
|
||||
(description
|
||||
"Bash is the shell, or command-line interpreter, of the GNU system. This
|
||||
variant logs the history to syslog.")))
|
||||
|
||||
(define-public bash-completion
|
||||
(package
|
||||
(name "bash-completion")
|
||||
|
|
Loading…
Reference in a new issue