diff options
Diffstat (limited to 'gnu/packages/wm.scm')
-rw-r--r-- | gnu/packages/wm.scm | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 8098560e4c..0cf6c1a2de 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -15,6 +15,7 @@ ;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com> ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2017 Oleg Pykhalov <go.wigust@gmail.com> +;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -503,27 +504,34 @@ tiled on several screens.") (define-public xmobar (package (name "xmobar") - (version "0.24.5") + (version "0.25") (source (origin (method url-fetch) (uri (string-append "mirror://hackage/package/xmobar/" name "-" version ".tar.gz")) (sha256 (base32 - "0sdzfj2wa4wpig1i2i5n9qpwm90jp88qifsmaa7j37yhhs6snfir")))) + "0382r4vzqkz76jlp2069rdbwf4gh1a22r9w4rkphcn5qflw0dlb6")))) (build-system haskell-build-system) (inputs - `(("ghc-http" ,ghc-http) + `(("ghc-hinotify" ,ghc-hinotify) + ("ghc-http" ,ghc-http) + ("ghc-iwlib" ,ghc-iwlib) ("ghc-parsec" ,ghc-parsec) ("ghc-regex-compat" ,ghc-regex-compat) ("ghc-stm" ,ghc-stm) ("ghc-x11-xft" ,ghc-x11-xft) - ("ghc-hinotify" ,ghc-hinotify) - ("libxpm" ,libxpm) - ("wireless-tools" ,wireless-tools))) + ("libxpm" ,libxpm))) (arguments `(#:configure-flags - '("--flags=with_utf8 with_xft with_xpm with_inotify with_iwlib"))) + (list (string-append "--flags=" + (string-join (list "with_inotify" + "with_iwlib" + "with_utf8" + "with_weather" + "with_xft" + "with_xpm") + " "))))) (home-page "http://xmobar.org") (synopsis "Minimalistic text based status bar") (description @@ -809,8 +817,8 @@ all of them. Currently supported window managers include: (source (origin (method url-fetch) - (uri (string-append "https://github.com/engla/keybinder/releases/" - "download/v" version "/keybinder-" + (uri (string-append "https://github.com/kupferlauncher/keybinder" + "/releases/download/v" version "/keybinder-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 @@ -828,7 +836,7 @@ all of them. Currently supported window managers include: (description "Keybinder is a library for registering global keyboard shortcuts. Keybinder works with GTK-based applications using the X Window System.") - (home-page "https://github.com/engla/keybinder") + (home-page "https://github.com/kupferlauncher/keybinder") (license license:gpl2+))) (define-public spectrwm |