gnu: lyx: Improve package style.
* gnu/packages/tex.scm (lyx)[source]<snippet>: Remove trailing #T. [arguments]<#phases>: Use SEARCH-INPUT-FILE. [propagated-inputs]: Remove input label.master
parent
e09f3cf9b9
commit
6ad0fa893d
|
@ -8330,8 +8330,7 @@ and Karl Berry.")
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
(delete-file-recursively "3rdparty")
|
(delete-file-recursively "3rdparty")))))
|
||||||
#t))))
|
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags
|
(list #:configure-flags
|
||||||
|
@ -8352,8 +8351,8 @@ and Karl Berry.")
|
||||||
"src/support/filetools.cpp")
|
"src/support/filetools.cpp")
|
||||||
(("\"python ")
|
(("\"python ")
|
||||||
(string-append "\""
|
(string-append "\""
|
||||||
(assoc-ref inputs "python")
|
(search-input-file inputs "/bin/python3")
|
||||||
"/bin/python3 ")))))
|
" ")))))
|
||||||
(add-after 'unpack 'add-missing-test-file
|
(add-after 'unpack 'add-missing-test-file
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Create missing file that would cause tests to fail.
|
;; Create missing file that would cause tests to fail.
|
||||||
|
@ -8369,7 +8368,7 @@ and Karl Berry.")
|
||||||
qtsvg-5
|
qtsvg-5
|
||||||
zlib))
|
zlib))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("texlive" ,(texlive-updmap.cfg (list texlive-fonts-ec)))))
|
(list (texlive-updmap.cfg (list texlive-fonts-ec))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python pkg-config))
|
(list python pkg-config))
|
||||||
(home-page "https://www.lyx.org/")
|
(home-page "https://www.lyx.org/")
|
||||||
|
|
Reference in New Issue