gnu: highlight: Don't hard-code Lua version.

* gnu/packages/pretty-print.scm (highlight)[arguments]: Construct the
Lua prefix programatically instead of hard-coding it.
master
Tobias Geerinckx-Rice 2018-03-02 01:41:40 +01:00
parent 3a5c02777d
commit 6e48fbb19a
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,7 @@
#:use-module (guix download)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages ghostscript)
#:use-module (gnu packages groff)
@ -266,7 +267,8 @@ seen in a terminal.")
(lambda _
(substitute* "src/makefile"
(("(pkg-config.*)lua" _ prefix)
(string-append prefix "lua-5.3")))
(string-append prefix "lua-" ,(version-major+minor
(package-version lua)))))
#t)))))
(inputs
`(("lua" ,lua)