[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/13: gnu: recutils: Remove some input labels.
From: |
guix-commits |
Subject: |
06/13: gnu: recutils: Remove some input labels. |
Date: |
Wed, 11 May 2022 18:31:48 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit b4c9a3d23b06d9441e96938b45fbf6669685955d
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun May 8 02:00:01 2022 +0200
gnu: recutils: Remove some input labels.
* gnu/packages/databases.scm (recutils)[inputs]:
Remove input labels.
[arguments]: Adjust accordingly.
---
gnu/packages/databases.scm | 33 +++++++++++++++++----------------
1 file changed, 17 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index b7cbfa6536..91d2e28eb8 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1568,22 +1568,23 @@ organized in a hash table or B+ tree.")
(base32
"03kf91f20brn2ffljfjzirxh5xj99m1mvvspcx2lph9000mmj0b3"))))
(build-system gnu-build-system)
-
- (arguments '(#:configure-flags
- (list "--disable-static"
- (string-append "--with-bash-headers="
- (assoc-ref %build-inputs "bash:include")
- "/include/bash"))))
-
- (native-inputs `(("bc" ,bc)
- ("bash:include" ,bash "include")
- ("check" ,check-0.14)
- ("pkg-config" ,pkg-config)))
-
- ;; TODO: Add more optional inputs.
- (inputs `(("curl" ,curl)
- ("libgcrypt" ,libgcrypt)
- ("libuuid" ,util-linux "lib")))
+ (arguments
+ (list #:configure-flags
+ '(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-0.14)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ ;; TODO: Add more optional inputs.
+ (list curl
+ libgcrypt
+ `(,util-linux "lib")))
(synopsis "Manipulate plain text files as databases")
(description
"GNU Recutils is a set of tools and libraries for creating and
- branch master updated (d355381062 -> f04dceac72), guix-commits, 2022/05/11
- 04/13: gnu: iceauth: Update to 1.0.9., guix-commits, 2022/05/11
- 05/13: doc: Avoid leading ‘But’., guix-commits, 2022/05/11
- 06/13: gnu: recutils: Remove some input labels.,
guix-commits <=
- 13/13: gnu: beep: Drop obsolete $(pkgdocdir) make flag., guix-commits, 2022/05/11
- 08/13: gnu: lighttpd: Fix bash reference., guix-commits, 2022/05/11
- 09/13: gnu: lighttpd: Update to 1.4.64., guix-commits, 2022/05/11
- 12/13: gnu: beep: Use G-expressions., guix-commits, 2022/05/11
- 01/13: gnu: isc-dhcp: Update to 4.4.3., guix-commits, 2022/05/11
- 07/13: gnu: recutils: Fix cross-compilation., guix-commits, 2022/05/11
- 02/13: gnu: agda: Update to 2.6.2.2., guix-commits, 2022/05/11
- 03/13: gnu: agda: Use G-expressions., guix-commits, 2022/05/11
- 11/13: gnu: beep: Update to 1.4.12., guix-commits, 2022/05/11
- 10/13: gnu: lighttpd: Update style., guix-commits, 2022/05/11