mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: recutils: Build the Bash builtin, readrec.
* gnu/packages/databases.scm (recutils)[native-inputs]: Add bash:include. [arguments]: Add configure-flag with path to headers provided by bash:include. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c30f65237b
commit
b747a9db1e
1 changed files with 8 additions and 4 deletions
|
@ -6,6 +6,7 @@
|
||||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
|
;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -24,6 +25,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages databases)
|
(define-module (gnu packages databases)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages language)
|
#:use-module (gnu packages language)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
|
@ -286,16 +288,18 @@ (define-public recutils
|
||||||
|
|
||||||
;; Running tests in parallel leads to test failures and crashes in
|
;; Running tests in parallel leads to test failures and crashes in
|
||||||
;; torture/utils.
|
;; torture/utils.
|
||||||
(arguments '(#:parallel-tests? #f))
|
(arguments '(#:parallel-tests? #f
|
||||||
|
#:configure-flags
|
||||||
|
(list (string-append "--with-bash-headers="
|
||||||
|
(assoc-ref %build-inputs "bash:include")
|
||||||
|
"/include/bash"))))
|
||||||
|
|
||||||
(native-inputs `(("emacs" ,emacs-no-x)
|
(native-inputs `(("emacs" ,emacs-no-x)
|
||||||
("bc" ,bc)
|
("bc" ,bc)
|
||||||
|
("bash:include" ,bash "include")
|
||||||
("libuuid", util-linux)))
|
("libuuid", util-linux)))
|
||||||
|
|
||||||
;; TODO: Add more optional inputs.
|
;; TODO: Add more optional inputs.
|
||||||
;; FIXME: Our Bash doesn't have development headers (need for the 'readrec'
|
|
||||||
;; built-in command), but it's not clear how to get them installed.
|
|
||||||
;; See <https://lists.gnu.org/archive/html/bug-bash/2014-03/msg00125.html>.
|
|
||||||
(inputs `(("curl" ,curl)
|
(inputs `(("curl" ,curl)
|
||||||
("libgcrypt" ,libgcrypt)
|
("libgcrypt" ,libgcrypt)
|
||||||
("check" ,check)))
|
("check" ,check)))
|
||||||
|
|
Loading…
Reference in a new issue