mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-hyperbole: Use inputs instead of propagated inputs.
* gnu/packages/emacs-xyz.scm (emacs-hyperbole)[arguments]: Replace domainname with dnsdomainname, not hostname. [propagated-inputs]: move to... [inputs]: ...this.
This commit is contained in:
parent
377a5f65ed
commit
a70e2f0f07
1 changed files with 6 additions and 4 deletions
|
@ -276,14 +276,16 @@ using geiser.")
|
||||||
;; Fix build issues about missing "domainname" and "hpmap:dir-user"
|
;; Fix build issues about missing "domainname" and "hpmap:dir-user"
|
||||||
;; parent dir.
|
;; parent dir.
|
||||||
(add-after 'unpack 'fix-build
|
(add-after 'unpack 'fix-build
|
||||||
(lambda _
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "hypb.el"
|
(substitute* "hypb.el"
|
||||||
(("(/usr)?/bin/domainname") "/bin/hostname"))
|
(("/bin/domainname")
|
||||||
|
(string-append (assoc-ref inputs "inetutils")
|
||||||
|
"/bin/dnsdomainname")))
|
||||||
(substitute* "hyperbole.el"
|
(substitute* "hyperbole.el"
|
||||||
(("\\(hyperb:check-dir-user\\)") ""))
|
(("\\(hyperb:check-dir-user\\)") ""))
|
||||||
#t)))))
|
#t)))))
|
||||||
(propagated-inputs
|
(inputs
|
||||||
`(("inetutils" ,inetutils))) ;for hostname
|
`(("inetutils" ,inetutils)))
|
||||||
(home-page "https://www.gnu.org/software/hyperbole/")
|
(home-page "https://www.gnu.org/software/hyperbole/")
|
||||||
(synopsis "The Everyday Hypertextual Information Manager")
|
(synopsis "The Everyday Hypertextual Information Manager")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue