[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/17: gnu: gpgme: Hardcode gpg binaries' location.
From: |
guix-commits |
Subject: |
03/17: gnu: gpgme: Hardcode gpg binaries' location. |
Date: |
Thu, 18 Jan 2024 07:58:10 -0500 (EST) |
jpoiret pushed a commit to branch core-updates
in repository guix.
commit b452b07e400a216b8abff1d7dd9eb5b5cc534409
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Tue Dec 26 16:00:14 2023 +0100
gnu: gpgme: Hardcode gpg binaries' location.
* gnu/packages/gnupg.scm (gpgme): Pass the gpg binaries' location to
configure.
Change-Id: I13d8e4d97cd93fffa6e3d1a6e39972e08ed69376
---
gnu/packages/gnupg.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 70ed84a111..97e7b4a0f2 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -423,7 +423,12 @@ libskba (working with X.509 certificates and CMS data).")
(sha256
(base32 "17hfigfnq6xz45b5xrp299f68b5mwx0aysd51sx5v4nf8yp4w79n"))))
(build-system gnu-build-system)
- (native-inputs
+ (arguments
+ (list
+ #:configure-flags
+ #~(let ((gpg-bins (dirname (search-input-file %build-inputs
"/bin/gpg"))))
+ (list (string-append "--enable-fixed-path=" gpg-bins)))))
+ (inputs
(list gnupg))
(propagated-inputs
;; As required by the pkg-config's Requires.private.
- branch core-updates updated (ed07002906 -> a5735488d3), guix-commits, 2024/01/18
- 01/17: gnu: sway: Fix build with newer libinput., guix-commits, 2024/01/18
- 02/17: gnu: zig: Remove unneeded librt patch., guix-commits, 2024/01/18
- 08/17: gnu: liboauth: Use C unicode locale in tests., guix-commits, 2024/01/18
- 07/17: gnu: glib: Fix build with glibc 2.38., guix-commits, 2024/01/18
- 03/17: gnu: gpgme: Hardcode gpg binaries' location.,
guix-commits <=
- 05/17: gnu: docbook2x: Fix build., guix-commits, 2024/01/18
- 04/17: gnu: glib-networking: Disable broken TLS1.2 test., guix-commits, 2024/01/18
- 13/17: gnu: parted: Use C.UTF-8 for Unicode tests., guix-commits, 2024/01/18
- 15/17: gnu: ffmpeg-4: Fix build with binutils ≥ 2.41., guix-commits, 2024/01/18
- 09/17: gnu: python-pillow: Fix build with zlib 1.3., guix-commits, 2024/01/18
- 06/17: gnu: flite: Disable parallel build., guix-commits, 2024/01/18
- 16/17: gnu: python-matplotlib: Fix flaky Legend loc test., guix-commits, 2024/01/18
- 17/17: gnu: evolution-data-server: Use C.UTF-8 locale in test., guix-commits, 2024/01/18
- 11/17: gnu: ghc-9.2: Remove unneeded glibc 2.33 patch., guix-commits, 2024/01/18
- 10/17: gnu: glibc-locales: Fix build., guix-commits, 2024/01/18