gnu: imagemagick/fixed: Retain version length for successful grafting.

* gnu/packages/imagemagick.scm (imagemagick/fixed):
[version]: Append 'g'.
[source]: Hardcode version.
This commit is contained in:
Léo Le Bouter 2021-03-10 01:34:11 +01:00
parent 81404a858c
commit 852ba914a4
No known key found for this signature in database
GPG key ID: 45A8B1E86BCD10A6

View file

@ -130,11 +130,14 @@ (define-public imagemagick
(define-public imagemagick/fixed
(package
(inherit imagemagick)
(version "6.9.12-2")
(version "6.9.12-2g") ;; 'g' for 'guix', appended character to retain
;; version length so grafting works properly.
(source (origin
(method url-fetch)
(uri (string-append "mirror://imagemagick/ImageMagick-"
version ".tar.xz"))
"6.9.12-2" ;; Hardcode version here since we
;; had to change it up there.
".tar.xz"))
(sha256
(base32
"17da5zihz58qm41y61sbvw626m5xfwr2nzszlikrvxyq1j1q7asa"))))))