gnu: wmbattery: Update to 2.51.
* gnu/packages/gnustep.scm (wmbattery): Update to 2.51. [source]: Remove upstreamed bugfix snippet.
This commit is contained in:
parent
340978d7b0
commit
93710d861f
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
|
;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -154,7 +155,7 @@ interface. It is fast, feature rich, easy to configure, and easy to use.")
|
||||||
(define-public wmbattery
|
(define-public wmbattery
|
||||||
(package
|
(package
|
||||||
(name "wmbattery")
|
(name "wmbattery")
|
||||||
(version "2.50")
|
(version "2.51")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -162,15 +163,7 @@ interface. It is fast, feature rich, easy to configure, and easy to use.")
|
||||||
version ".orig.tar.gz"))
|
version ".orig.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0hi6bivv3xd2k68w08krndfl68wdx7nmc2wjzsmcd4q3qgwgyk44"))
|
"084a3irxbmgms4bqaga80mlx9wgvlkx6d2w0ns939yrpfzg87laj"))))
|
||||||
(modules '((guix build utils)))
|
|
||||||
(snippet
|
|
||||||
;; Fix memory leak:
|
|
||||||
;; <https://lists.gnu.org/archive/html/guix-devel/2016-05/msg00466.html>.
|
|
||||||
'(substitute* "upower.c"
|
|
||||||
(("up = up_client_new\\(\\);")
|
|
||||||
(string-append "if (!up)\n"
|
|
||||||
" up = up_client_new();"))))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no "check" target
|
`(#:tests? #f ; no "check" target
|
||||||
|
|
Loading…
Reference in New Issue