gnu: emacs-osm: Record the absolute file name of 'curl'.

* gnu/packages/emacs-xyz.scm (emacs-osm)[arguments, inputs]: New fields.
This commit is contained in:
Ludovic Courtès 2022-03-18 15:52:19 +01:00
parent 0011dd0a01
commit 09c7eeb659
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -30817,6 +30817,16 @@ (define-public emacs-osm
(sha256 (sha256
(base32 "0aiq2z9vv4jsl0s0x9vpjgp0mnn27wanhirzj3h80ivgiphzs7l5")))) (base32 "0aiq2z9vv4jsl0s0x9vpjgp0mnn27wanhirzj3h80ivgiphzs7l5"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
(add-after 'unpack 'set-curl-file-name
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "osm.el"
(("\"curl( ?)\"" _ space)
(string-append "\""
(search-input-file inputs "/bin/curl")
space "\""))))))))
(inputs (list curl))
(synopsis "OpenStreetMap viewer for Emacs") (synopsis "OpenStreetMap viewer for Emacs")
(description (description
"This package provides an OpenStreetMap viewer for Emacs, featuring "This package provides an OpenStreetMap viewer for Emacs, featuring