summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-01-13 10:56:25 +0100
committerLudovic Courtès <ludo@gnu.org>2016-01-13 11:13:34 +0100
commit98f2339189a7e67f3e63e9bd44ab5a754d5e3290 (patch)
tree17a391ad2642a4c07bbf40fd5eeb7ab6a60e7ced
parent0917e80ea8fb86abd940d022bf7f51f24fd24283 (diff)
gnu: skribilo: Update to 0.9.3.
* gnu/packages/skribilo.scm (skribilo): Update to 0.9.3. [native-inputs]: New field.
-rw-r--r--gnu/packages/skribilo.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/skribilo.scm b/gnu/packages/skribilo.scm
index a1b3fe7c53d..52ed1c34e32 100644
--- a/gnu/packages/skribilo.scm
+++ b/gnu/packages/skribilo.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
3;;; 3;;;
4;;; This file is part of GNU Guix. 4;;; This file is part of GNU Guix.
5;;; 5;;;
@@ -23,6 +23,7 @@
23 #:use-module (guix build-system gnu) 23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages guile) 24 #:use-module (gnu packages guile)
25 #:use-module (gnu packages lout) 25 #:use-module (gnu packages lout)
26 #:use-module (gnu packages pkg-config)
26 #:use-module (gnu packages plotutils) 27 #:use-module (gnu packages plotutils)
27 #:use-module (gnu packages imagemagick) 28 #:use-module (gnu packages imagemagick)
28 #:use-module (gnu packages ghostscript)) 29 #:use-module (gnu packages ghostscript))
@@ -30,14 +31,14 @@
30(define-public skribilo 31(define-public skribilo
31 (package 32 (package
32 (name "skribilo") 33 (name "skribilo")
33 (version "0.9.2") 34 (version "0.9.3")
34 (source (origin 35 (source (origin
35 (method url-fetch) 36 (method url-fetch)
36 (uri (string-append "mirror://savannah/skribilo/skribilo-" 37 (uri (string-append "mirror://savannah/skribilo/skribilo-"
37 version ".tar.gz")) 38 version ".tar.gz"))
38 (sha256 39 (sha256
39 (base32 40 (base32
40 "0wwi996403wzcp8s8iyc2p6w7f9v39lwmy35ysdd3wc31i5dy19q")))) 41 "04d8xa76jvlz25jnc6p1gzsplwcwcqrmi3f7ixdhddhl1chyz66y"))))
41 (build-system gnu-build-system) 42 (build-system gnu-build-system)
42 (arguments 43 (arguments
43 ;; Make the modules available under the usual location. 44 ;; Make the modules available under the usual location.
@@ -62,6 +63,8 @@
62 63
63 #:parallel-build? #f)) 64 #:parallel-build? #f))
64 65
66 (native-inputs `(("pkg-config" ,pkg-config)))
67
65 (inputs `(("guile" ,guile-2.0) 68 (inputs `(("guile" ,guile-2.0)
66 ("imagemagick" ,imagemagick) 69 ("imagemagick" ,imagemagick)
67 ("ghostscript" ,ghostscript) ; for 'convert' 70 ("ghostscript" ,ghostscript) ; for 'convert'