mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
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:
parent
81404a858c
commit
852ba914a4
1 changed files with 5 additions and 2 deletions
|
@ -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"))))))
|
||||
|
|
Loading…
Reference in a new issue