gnu: gkrellm: Update to 2.3.10.
* gnu/packages/gkrellm.scm (gkrellm): Update to 2.3.10. [arguments]: Remove X11_LIBS override.
This commit is contained in:
parent
48bbe06edf
commit
ce46dfeba5
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -30,7 +31,7 @@
|
||||||
(define-public gkrellm
|
(define-public gkrellm
|
||||||
(package
|
(package
|
||||||
(name "gkrellm")
|
(name "gkrellm")
|
||||||
(version "2.3.5")
|
(version "2.3.10")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -38,7 +39,7 @@
|
||||||
version ".tar.bz2"))
|
version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12rc6zaa7kb60b9744lbrlfkxxfniprm6x0mispv63h4kh75navh"))))
|
"0rnpzjr0ys0ypm078y63q4aplcgdr5nshjzhmz330n6dmnxci7lb"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
`(("gettext" ,gettext-minimal)
|
||||||
|
@ -49,12 +50,13 @@
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; there is no check target
|
`(#:tests? #f ; there is no check target
|
||||||
#:phases (modify-phases %standard-phases (delete 'configure))
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure)) ; no configure script
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
(list (string-append "INSTALLROOT=" out)
|
(list (string-append "INSTALLROOT=" out)
|
||||||
"CC=gcc"
|
"CC=gcc"))))
|
||||||
"X11_LIBS = -lX11 -lSM -lICE -lgmodule-2.0"))))
|
|
||||||
(home-page "http://gkrellm.srcbox.net/")
|
(home-page "http://gkrellm.srcbox.net/")
|
||||||
(synopsis "System monitors")
|
(synopsis "System monitors")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue