guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add imagemagick-6.


From: Leo Famulari
Subject: 02/02: gnu: Add imagemagick-6.
Date: Mon, 9 Jan 2017 23:15:48 +0000 (UTC)

lfam pushed a commit to branch imagemagick-updates
in repository guix.

commit 90ba28ea155047f487ed13c012f0f27e8035bf19
Author: Leo Famulari <address@hidden>
Date:   Mon Jan 9 14:26:28 2017 -0500

    gnu: Add imagemagick-6.
    
    * gnu/packages/imagemagick.scm (imagemagick-6): New variable.
---
 gnu/packages/imagemagick.scm |   16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/imagemagick.scm b/gnu/packages/imagemagick.scm
index d191ea7..9fe9998 100644
--- a/gnu/packages/imagemagick.scm
+++ b/gnu/packages/imagemagick.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2015 Eric Bavier <address@hidden>
 ;;; Copyright © 2015 Ricardo Wurmus <address@hidden>
-;;; Copyright © 2016 Leo Famulari <address@hidden>
+;;; Copyright © 2016, 2017 Leo Famulari <address@hidden>
 ;;; Copyright © 2016 Mark H Weaver <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -113,6 +113,20 @@ transform images, adjust image colors, apply various 
special effects, or draw
 text, lines, polygons, ellipses and Bézier curves.")
     (license (license:fsf-free 
"http://www.imagemagick.org/script/license.php";))))
 
+;;; The ImageMagick 6 series is still maintained, in parallel with 7. We keep 
it
+;;; around for packages that have not adapted to the 7-series API. See
+;;; <https://www.imagemagick.org/script/porting.php> for more information.
+(define-public imagemagick-6
+  (package (inherit imagemagick)
+    (version "6.9.7-3")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append "mirror://imagemagick/ImageMagick-"
+                                 version ".tar.xz"))
+             (sha256
+              (base32
+               "18cibh5rmxddwpsrpzjd4sbim80g5w36zhl8bw582nw39cs6f5w0"))))))
+
 (define-public perl-image-magick
   (package
     (name "perl-image-magick")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]