mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: transcode: Build with a newer ImageMagick.
* gnu/packages/imagemagick.scm (imagemagick-next): New public variable. * gnu/packages/video.scm (transcode)[inputs]: Change from IMAGEMAGICK to IMAGEMAGICK-NEXT.
This commit is contained in:
parent
a9a0d34874
commit
4688dc9bb8
2 changed files with 16 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
|
||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -124,6 +125,20 @@ (define-public imagemagick
|
|||
text, lines, polygons, ellipses and Bézier curves.")
|
||||
(license (license:fsf-free "http://www.imagemagick.org/script/license.php"))))
|
||||
|
||||
;; XXX: 'transcode' fails to detect the above ImageMagick, so we provide
|
||||
;; this newer version.
|
||||
(define-public imagemagick-next
|
||||
(package
|
||||
(inherit imagemagick)
|
||||
(version "6.9.11-37")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://imagemagick/ImageMagick-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"19r6fyhr1bycx0p6jz034mil1zh2k7hfr02is40h4g3wf9b9sdni"))))))
|
||||
|
||||
(define-public perl-image-magick
|
||||
(package
|
||||
(name "perl-image-magick")
|
||||
|
|
|
@ -245,7 +245,7 @@ (define-public transcode
|
|||
("faac" ,faac)
|
||||
("ffmpeg" ,ffmpeg)
|
||||
("freetype" ,freetype)
|
||||
("imagemagick" ,imagemagick)
|
||||
("imagemagick" ,imagemagick-next)
|
||||
("lame" ,lame)
|
||||
("liba52" ,liba52)
|
||||
("libdv" ,libdv)
|
||||
|
|
Loading…
Reference in a new issue