gnu: qiv: Update to 2.3.2.
* gnu/packages/image-viewers.scm (qiv): Update to 2.3.2. [source]: Add a snippet. [arguments]: Don't explicitly return #t from phases.master
parent
5052829f1c
commit
57b7e1cfd0
|
@ -808,14 +808,21 @@ with tiling window managers. Features include:
|
||||||
(define-public qiv
|
(define-public qiv
|
||||||
(package
|
(package
|
||||||
(name "qiv")
|
(name "qiv")
|
||||||
(version "2.3.1")
|
(version "2.3.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://spiegl.de/qiv/download/qiv-"
|
(uri (string-append "http://spiegl.de/qiv/download/qiv-"
|
||||||
version ".tgz"))
|
version ".tgz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1rlf5h67vhj7n1y7jqkm9k115nfnzpwngj3kzqsi2lg676srclv7"))))
|
(base32 "1mc0f2nnas4q0d7zc9r6g4z93i32xlx0p9hl4fn5zkyml24a1q28"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; Fix a typo. This can probably be removed on the next update.
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("\\$\\(PREFIX\\)/man")
|
||||||
|
"$(PREFIX)/share/man"))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
|
@ -846,8 +853,7 @@ with tiling window managers. Features include:
|
||||||
;; There must be a running X server and make install doesn't start one.
|
;; There must be a running X server and make install doesn't start one.
|
||||||
;; Therefore we must do it.
|
;; Therefore we must do it.
|
||||||
(system "Xvfb :1 &")
|
(system "Xvfb :1 &")
|
||||||
(setenv "DISPLAY" ":1")
|
(setenv "DISPLAY" ":1"))))
|
||||||
#t)))
|
|
||||||
#:tests? #f ; there is no check target
|
#:tests? #f ; there is no check target
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list
|
(list
|
||||||
|
|
Reference in New Issue