me
/
guix
Archived
1
0
Fork 0

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

* gnu/packages/imagemagick.scm (imagemagick/fixed):
[version]: Append 'g'.
[source]: Hardcode version.
master
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
1 changed files with 5 additions and 2 deletions

View File

@ -130,11 +130,14 @@ text, lines, polygons, ellipses and Bézier curves.")
(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"))))))