gnu: scribus: Update to 1.5.8.
* gnu/packages/scribus.scm (scribus): Update to 1.5.8. [inputs]: Remove labels.
This commit is contained in:
parent
d41bb831af
commit
1bfd634e33
1 changed files with 30 additions and 30 deletions
|
@ -1,7 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015, 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2017, 2018, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2017, 2018, 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||||
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
@ -49,47 +49,47 @@
|
||||||
(define-public scribus
|
(define-public scribus
|
||||||
(package
|
(package
|
||||||
(name "scribus")
|
(name "scribus")
|
||||||
(version "1.5.7")
|
(version "1.5.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/scribus/scribus-devel/"
|
(uri (string-append "mirror://sourceforge/scribus/scribus-devel/"
|
||||||
version "/scribus-" version ".tar.xz"))
|
version "/scribus-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1kpq4vc95hj3w8l205kh0pmdlisi4v1gilz0sf8n39y7ryr1d0ri"))))
|
(base32 "0x3bw58v920akca8jxvsfwf468pzjyglk93ay67ph1bdry7nx0a7"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no test target
|
`(#:tests? #f ;no test target
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
'("-DWANT_GRAPHICSMAGICK=1")))
|
'("-DWANT_GRAPHICSMAGICK=1")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
(list boost
|
||||||
("cairo" ,cairo)
|
cairo
|
||||||
("cups" ,cups)
|
cups
|
||||||
("fontconfig" ,fontconfig)
|
fontconfig
|
||||||
("freetype" ,freetype)
|
freetype
|
||||||
("graphicsmagick" ,graphicsmagick)
|
graphicsmagick
|
||||||
("harfbuzz" ,harfbuzz)
|
harfbuzz
|
||||||
("hunspell" ,hunspell)
|
hunspell
|
||||||
("icu4c" ,icu4c)
|
icu4c
|
||||||
("lcms" ,lcms)
|
lcms
|
||||||
("libcdr" ,libcdr)
|
libcdr
|
||||||
("libfreehand" ,libfreehand)
|
libfreehand
|
||||||
("libjpeg" ,libjpeg-turbo)
|
libjpeg-turbo
|
||||||
("libmspub" ,libmspub)
|
libmspub
|
||||||
("libpagemaker" ,libpagemaker)
|
libpagemaker
|
||||||
("librevenge" ,librevenge)
|
librevenge
|
||||||
("libtiff" ,libtiff)
|
libtiff
|
||||||
("libvisio" ,libvisio)
|
libvisio
|
||||||
("libxml2" ,libxml2)
|
libxml2
|
||||||
("libzmf" ,libzmf)
|
libzmf
|
||||||
("openssl" ,openssl)
|
openssl
|
||||||
("podofo" ,podofo)
|
podofo
|
||||||
("poppler" ,poppler)
|
poppler
|
||||||
("python" ,python) ; need Python library
|
python ;need Python library
|
||||||
("qtbase" ,qtbase-5)
|
qtbase-5
|
||||||
("qtdeclarative" ,qtdeclarative)
|
qtdeclarative
|
||||||
("zlib" ,zlib)))
|
zlib))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config qttools util-linux))
|
(list pkg-config qttools util-linux))
|
||||||
(home-page "https://www.scribus.net")
|
(home-page "https://www.scribus.net")
|
||||||
|
|
Reference in a new issue