gnu: skribilo: Update to 0.9.3.
* gnu/packages/skribilo.scm (skribilo): Update to 0.9.3. [native-inputs]: New field.
This commit is contained in:
parent
0917e80ea8
commit
98f2339189
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -23,6 +23,7 @@
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages lout)
|
#:use-module (gnu packages lout)
|
||||||
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages plotutils)
|
#:use-module (gnu packages plotutils)
|
||||||
#:use-module (gnu packages imagemagick)
|
#:use-module (gnu packages imagemagick)
|
||||||
#:use-module (gnu packages ghostscript))
|
#:use-module (gnu packages ghostscript))
|
||||||
|
@ -30,14 +31,14 @@
|
||||||
(define-public skribilo
|
(define-public skribilo
|
||||||
(package
|
(package
|
||||||
(name "skribilo")
|
(name "skribilo")
|
||||||
(version "0.9.2")
|
(version "0.9.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://savannah/skribilo/skribilo-"
|
(uri (string-append "mirror://savannah/skribilo/skribilo-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wwi996403wzcp8s8iyc2p6w7f9v39lwmy35ysdd3wc31i5dy19q"))))
|
"04d8xa76jvlz25jnc6p1gzsplwcwcqrmi3f7ixdhddhl1chyz66y"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Make the modules available under the usual location.
|
;; Make the modules available under the usual location.
|
||||||
|
@ -62,6 +63,8 @@
|
||||||
|
|
||||||
#:parallel-build? #f))
|
#:parallel-build? #f))
|
||||||
|
|
||||||
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
|
|
||||||
(inputs `(("guile" ,guile-2.0)
|
(inputs `(("guile" ,guile-2.0)
|
||||||
("imagemagick" ,imagemagick)
|
("imagemagick" ,imagemagick)
|
||||||
("ghostscript" ,ghostscript) ; for 'convert'
|
("ghostscript" ,ghostscript) ; for 'convert'
|
||||||
|
|
Loading…
Reference in New Issue