gnu: frescobaldi: Make it display icons with qtsvg-5.
* gnu/packages/music.scm (frescobaldi) [origin]<uri>: Updated to avoid automatic redirect. [arguments]<phases>: Add 'wrap-executable to export QT_PLUGIN_PATH. [inputs]: Add qtsvg-5, bash-minimal. Change-Id: I55b3c56d41bd60e4ba4c938109ff41631e211ad2 Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
82bb2ed9c9
commit
00bf07eccc
1 changed files with 27 additions and 20 deletions
|
@ -3105,32 +3105,39 @@ using a system-independent interface.")
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://github.com/wbsoft/frescobaldi/releases/download/v"
|
"https://github.com/frescobaldi/frescobaldi/releases/download/v"
|
||||||
version "/frescobaldi-" version ".tar.gz"))
|
version "/frescobaldi-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1n60gfnf6x0l1bac088g9adzx0lskbl9knd4y1ynr3y0zcs0kfcz"))))
|
(base32 "1n60gfnf6x0l1bac088g9adzx0lskbl9knd4y1ynr3y0zcs0kfcz"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:tests? #f ;no tests included
|
#:tests? #f ;no tests included
|
||||||
#:phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
#~(modify-phases %standard-phases
|
(add-before 'build 'generate-translations
|
||||||
(add-before 'build 'generate-translations
|
(lambda _
|
||||||
(lambda _
|
(invoke "make" "-C" "i18n")))
|
||||||
(invoke "make" "-C" "i18n")))
|
(add-before 'build 'generate-metadata
|
||||||
(add-before 'build 'generate-metadata
|
(lambda _
|
||||||
(lambda _
|
(invoke "make" "-C" "linux")))
|
||||||
(invoke "make" "-C" "linux"))))))
|
(add-after 'install 'wrap-executable
|
||||||
(inputs
|
(lambda _
|
||||||
(list lilypond
|
;; Ensure that icons are found at runtime.
|
||||||
poppler
|
(wrap-program (string-append #$output
|
||||||
portmidi-2
|
"/bin/frescobaldi")
|
||||||
python-ly
|
`("QT_PLUGIN_PATH" prefix
|
||||||
python-poppler-qt5
|
,(list (getenv "QT_PLUGIN_PATH")))))))))
|
||||||
python-pyportmidi
|
(inputs (list bash-minimal
|
||||||
python-pyqt
|
lilypond
|
||||||
python-sip
|
poppler
|
||||||
qpageview))
|
portmidi-2
|
||||||
|
python-ly
|
||||||
|
python-poppler-qt5
|
||||||
|
python-pyportmidi
|
||||||
|
python-pyqt
|
||||||
|
python-sip
|
||||||
|
qpageview
|
||||||
|
qtsvg-5))
|
||||||
(home-page "https://www.frescobaldi.org/")
|
(home-page "https://www.frescobaldi.org/")
|
||||||
(synopsis "LilyPond sheet music text editor")
|
(synopsis "LilyPond sheet music text editor")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue