diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-02-02 15:29:11 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-02-02 20:38:30 -0500 |
commit | bc3510015169f3bc02454335fd28ae2f890a60c2 (patch) | |
tree | cf2ae55df7ade7053fdb7a4eebff84e0e3f5a831 /gnu/packages/inkscape.scm | |
parent | 20fbd2093281a995c2c2f2bacc622c72e0dd6f4b (diff) | |
download | patches-bc3510015169f3bc02454335fd28ae2f890a60c2.tar patches-bc3510015169f3bc02454335fd28ae2f890a60c2.tar.gz |
gnu: inkscape: Update to 0.91.
* gnu/packages/inkscape.scm (inkscape): Update to 0.91.
Diffstat (limited to 'gnu/packages/inkscape.scm')
-rw-r--r-- | gnu/packages/inkscape.scm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm index 26513b87be..76102fab05 100644 --- a/gnu/packages/inkscape.scm +++ b/gnu/packages/inkscape.scm @@ -21,6 +21,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix utils) #:use-module (guix build-system gnu) #:use-module (gnu packages) #:use-module (gnu packages aspell) @@ -42,14 +43,16 @@ (define-public inkscape (package (name "inkscape") - (version "0.48.5") + (version "0.91") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/inkscape/inkscape-" - version ".tar.bz2")) + (uri (string-append "https://launchpad.net/inkscape/" + (version-major+minor version) ".x/" + version "/+download/inkscape-" + version ".tar.gz")) (sha256 (base32 - "0sfr7a1vr1066rrkkqbqvcqs3gawalj68ralnhd6k87jz62fcv1b")))) + "086v01jy896dj86bq7plrf6si4p6gh6ga2v5417llgmminycz8rc")))) (build-system gnu-build-system) (inputs `(("aspell" ,aspell) |