me
/
guix
Archived
1
0
Fork 0

gnu: recutils: Use correct bash headers.

* gnu/packages/databases.scm (recutils)[arguments]: Convert to G-Expressions.
Drop gratuitous dirname.
[native-inputs]: Drop labels.  Move bash:include...
[inputs]: ... here.  Also add regular bash.
master
Liliana Marie Prikler 2022-06-04 10:30:12 +02:00
parent d54faf155a
commit e4087930f3
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 8 additions and 11 deletions

View File

@ -1556,20 +1556,17 @@ organized in a hash table or B+ tree.")
(build-system gnu-build-system)
(arguments
(list #:configure-flags
'(list "--disable-static"
(string-append "--with-bash-headers="
(dirname (search-input-directory
%build-inputs
"include/bash"))))))
#~(list "--disable-static"
(string-append "--with-bash-headers="
(search-input-directory %build-inputs
"include/bash")))))
(native-inputs
;; XXX Without labels, the default 'configure phase picks the wrong "bash".
`(("bc" ,bc)
("bash:include" ,bash "include")
("check" ,check)
("pkg-config" ,pkg-config)))
(list bc check-0.14 pkg-config))
(inputs
;; TODO: Add more optional inputs.
(list curl
(list bash ; /bin/bash for native compilation
`(,bash "include")
curl
libgcrypt
`(,util-linux "lib")))
(synopsis "Manipulate plain text files as databases")