mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: gpgme: Hardcode gpg binaries' location.
* gnu/packages/gnupg.scm (gpgme): Pass the gpg binaries' location to configure. Change-Id: I13d8e4d97cd93fffa6e3d1a6e39972e08ed69376
This commit is contained in:
parent
828daf0ab0
commit
609acbbc29
1 changed files with 6 additions and 1 deletions
|
@ -446,7 +446,12 @@ (define-public gpgme
|
|||
(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.
|
||||
|
|
Loading…
Reference in a new issue