gnu: xlockmore: Update to 5.45.
* gnu/packages/xlockmore.scm (xlockmore): Update to 5.45. [arguments]: Add #:configure-flags.
This commit is contained in:
parent
3d243e9c45
commit
bb54c8ff05
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -27,16 +27,20 @@
|
||||||
(define-public xlockmore
|
(define-public xlockmore
|
||||||
(package
|
(package
|
||||||
(name "xlockmore")
|
(name "xlockmore")
|
||||||
(version "5.42")
|
(version "5.45")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://www.tux.org/~bagleyd/xlock/xlockmore-"
|
(uri (string-append "http://www.tux.org/~bagleyd/xlock/xlockmore-"
|
||||||
version "/xlockmore-" version ".tar.bz2"))
|
version "/xlockmore-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17xicps92ah9377zk65k9l1bmvzzj3bpxzzwxx21g9696l71gr0z"))))
|
"1xqm61bbfn5q056w57vp16gvai8nqpcw570ysxlm5h46nh6ai0bz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:tests? #f)) ; no such thing as a test suite
|
(arguments
|
||||||
|
'(#:configure-flags (list (string-append "--enable-appdefaultdir="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/lib/X11/app-defaults"))
|
||||||
|
#:tests? #f)) ;no such thing as a test suite
|
||||||
(inputs
|
(inputs
|
||||||
`(("libX11" ,libx11)
|
`(("libX11" ,libx11)
|
||||||
("libXext" ,libxext)
|
("libXext" ,libxext)
|
||||||
|
|
Loading…
Reference in New Issue