gnu: musescore: Use new package style.
* gnu/packages/music.scm (musescore)[source]<snippet>: Remove trailing #T. [inputs]: Remove labels.master
parent
7e651ab3e6
commit
6a54715988
|
@ -10,7 +10,7 @@
|
||||||
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
||||||
;;; Copyright © 2017 nikita <nikita@n0.is>
|
;;; Copyright © 2017 nikita <nikita@n0.is>
|
||||||
;;; Copyright © 2017 Rodger Fox <thylakoid@openmailbox.org>
|
;;; Copyright © 2017 Rodger Fox <thylakoid@openmailbox.org>
|
||||||
;;; Copyright © 2017, 2018, 2019, 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2017–2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2017, 2018, 2019, 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2017, 2018, 2019, 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
@ -4878,8 +4878,7 @@ includes LV2 plugins and a JACK standalone client.")
|
||||||
'("thirdparty/freetype"
|
'("thirdparty/freetype"
|
||||||
"thirdparty/openssl"
|
"thirdparty/openssl"
|
||||||
"thirdparty/portmidi"
|
"thirdparty/portmidi"
|
||||||
"thirdparty/qt-google-analytics"))
|
"thirdparty/qt-google-analytics"))))))
|
||||||
#t))))
|
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
|
@ -4898,24 +4897,24 @@ includes LV2 plugins and a JACK standalone client.")
|
||||||
;; So we simply skip them.
|
;; So we simply skip them.
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("alsa-lib" ,alsa-lib)
|
(list alsa-lib
|
||||||
("freetype" ,freetype)
|
freetype
|
||||||
("gtk+-bin" ,gtk+ "bin") ;for gtk-update-icon-cache
|
`(,gtk+ "bin") ;for gtk-update-icon-cache
|
||||||
("jack" ,jack-1)
|
jack-1
|
||||||
("lame" ,lame)
|
lame
|
||||||
("libogg" ,libogg)
|
libogg
|
||||||
("libsndfile" ,libsndfile)
|
libsndfile
|
||||||
("libvorbis" ,libvorbis)
|
libvorbis
|
||||||
("portaudio" ,portaudio)
|
portaudio
|
||||||
("portmidi" ,portmidi)
|
portmidi
|
||||||
("pulseaudio" ,pulseaudio)
|
pulseaudio
|
||||||
("qtbase" ,qtbase-5)
|
qtbase-5
|
||||||
("qtdeclarative" ,qtdeclarative)
|
qtdeclarative
|
||||||
("qtgraphicaleffects" ,qtgraphicaleffects)
|
qtgraphicaleffects
|
||||||
("qtquickcontrols2" ,qtquickcontrols2)
|
qtquickcontrols2
|
||||||
("qtscript" ,qtscript)
|
qtscript
|
||||||
("qtsvg" ,qtsvg)
|
qtsvg
|
||||||
("qtxmlpatterns" ,qtxmlpatterns)))
|
qtxmlpatterns))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config qttools))
|
(list pkg-config qttools))
|
||||||
(synopsis "Music composition and notation software")
|
(synopsis "Music composition and notation software")
|
||||||
|
|
Reference in New Issue