[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
309/328: gnu: Update xmobar to 0.31.
From: |
guix-commits |
Subject: |
309/328: gnu: Update xmobar to 0.31. |
Date: |
Sat, 16 Nov 2019 19:33:32 -0500 (EST) |
samplet pushed a commit to branch wip-haskell-updates
in repository guix.
commit 55ee4f4031597ef7f4ade9ff048d989b6bd1a2cb
Author: John Soo <address@hidden>
Date: Thu Nov 14 01:32:38 2019 -0800
gnu: Update xmobar to 0.31.
* gnu/packages/wm.scm (xmobar): Update to 0.31.
[arguments]: Remove the previous configure flags and set the
'all_extensions' flag; add a 'patch-test-shebang' phase.
[inputs]: Add 'ghc-alsa-core', 'ghc-alsa-mixer', 'ghc-dbus',
'ghc-http-conduit', 'ghc-http-types', 'ghc-libmpd', 'ghc-old-locale',
'ghc-temporary', 'ghc-timezone-olson', and 'ghc-x11'.
Signed-off-by: Timothy Sample <address@hidden>
---
gnu/packages/wm.scm | 34 ++++++++++++++++++++++------------
1 file changed, 22 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 080b0f3..87e62aa 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -24,6 +24,7 @@
;;; Copyright © 2019 Kyle Andrews <address@hidden>
;;; Copyright © 2019 Ingo Ruhnke <address@hidden>
;;; Copyright © 2019 Tanguy Le Carrour <address@hidden>
+;;; Copyright © 2019 John Soo <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -649,36 +650,45 @@ tiled on several screens.")
(define-public xmobar
(package
(name "xmobar")
- (version "0.28")
+ (version "0.31")
(source (origin
(method url-fetch)
(uri (string-append "mirror://hackage/package/xmobar/"
"xmobar-" version ".tar.gz"))
(sha256
(base32
- "1xh87asg8y35srvp7d3gyyy4bkxsw122liihxgzgm8pqv2z3h4zd"))))
+ "1sbxva4zaj060bigmxivpn4zlz0q1qbq2np8gljdqkjvysjzpbka"))))
(build-system haskell-build-system)
(native-inputs
`(("ghc-hspec" ,ghc-hspec)
("hspec-discover" ,hspec-discover)))
(inputs
- `(("ghc-hinotify" ,ghc-hinotify)
+ `(("ghc-alsa-core" ,ghc-alsa-core)
+ ("ghc-alsa-mixer" ,ghc-alsa-mixer)
+ ("ghc-dbus" ,ghc-dbus)
+ ("ghc-hinotify" ,ghc-hinotify)
("ghc-http" ,ghc-http)
+ ("ghc-http-conduit" ,ghc-http-conduit)
+ ("ghc-http-types" ,ghc-http-types)
("ghc-iwlib" ,ghc-iwlib)
+ ("ghc-libmpd" ,ghc-libmpd)
+ ("ghc-old-locale" ,ghc-old-locale)
("ghc-parsec-numbers" ,ghc-parsec-numbers)
("ghc-regex-compat" ,ghc-regex-compat)
+ ("ghc-temporary" ,ghc-temporary)
+ ("ghc-timezone-olson" ,ghc-timezone-olson)
+ ("ghc-x11" ,ghc-x11)
("ghc-x11-xft" ,ghc-x11-xft)
("libxpm" ,libxpm)))
(arguments
- `(#:configure-flags
- (list (string-append "--flags="
- (string-join (list "with_inotify"
- "with_iwlib"
- "with_utf8"
- "with_weather"
- "with_xft"
- "with_xpm")
- " ")))))
+ `(#:configure-flags (list "--flags=all_extensions")
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'patch-test-shebang
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "test/Xmobar/Plugins/Monitors/AlsaSpec.hs"
+ (("/bin/bash") (which "bash")))
+ #t)))))
(home-page "http://xmobar.org")
(synopsis "Minimalistic text based status bar")
(description
- 227/328: gnu: ghc-foldl: Update to 1.4.5., (continued)
- 227/328: gnu: ghc-foldl: Update to 1.4.5., guix-commits, 2019/11/16
- 232/328: gnu: Add ghc-libyaml., guix-commits, 2019/11/16
- 241/328: gnu: hlint: Update to 2.1.26., guix-commits, 2019/11/16
- 239/328: gnu: ghc-hpack: Update to 0.31.2., guix-commits, 2019/11/16
- 259/328: gnu: ghc-deepseq-generics: Update Cabal file to r4., guix-commits, 2019/11/16
- 262/328: gnu: ghc-persistent-template: Update to 2.6.0., guix-commits, 2019/11/16
- 271/328: gnu: hoogle: Update to 5.0.17.11., guix-commits, 2019/11/16
- 273/328: gnu: ghc-haddock-library: Update to 1.7.0., guix-commits, 2019/11/16
- 295/328: gnu: Remove ghc-monadplus., guix-commits, 2019/11/16
- 307/328: gnu: Add ghc-timezone-olson., guix-commits, 2019/11/16
- 309/328: gnu: Update xmobar to 0.31.,
guix-commits <=
- 314/328: gnu: Add ghc-testing-feat., guix-commits, 2019/11/16
- 229/328: gnu: ghc-conduit: Update to 1.3.1.1., guix-commits, 2019/11/16
- 276/328: gnu: Add ghc-edit-distance-vector., guix-commits, 2019/11/16
- 288/328: gnu: ghc-tasty-rerun: Update to 1.1.14., guix-commits, 2019/11/16
- 306/328: gnu: Add ghc-timezone-series., guix-commits, 2019/11/16
- 310/328: gnu: Add ghc-tar-conduit., guix-commits, 2019/11/16
- 319/328: gnu: Add ghc-numeric-extras., guix-commits, 2019/11/16
- 316/328: gnu: Add ghc-monoid-extras., guix-commits, 2019/11/16
- 320/328: gnu: Add ghc-intervals., guix-commits, 2019/11/16
- 324/328: gnu: Add ghc-svg-builder., guix-commits, 2019/11/16