Skip to content

Instantly share code, notes, and snippets.

Created July 23, 2017 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/d9d5fa513edeb4b95cedfbaca2d6dc22 to your computer and use it in GitHub Desktop.
Save anonymous/d9d5fa513edeb4b95cedfbaca2d6dc22 to your computer and use it in GitHub Desktop.
stdin
(define-public xmobar
(package
(name "xmobar")
(version "0.24.5")
(source (origin
(method url-fetch)
(uri (string-append "mirror://hackage/package/xmobar/"
name "-" version ".tar.gz"))
(sha256
(base32
"0sdzfj2wa4wpig1i2i5n9qpwm90jp88qifsmaa7j37yhhs6snfir"))))
(build-system haskell-build-system)
(inputs
`(("ghc-extensible-exceptions" ,ghc-extensible-exceptions)
("ghc-mtl" ,ghc-mtl)
("ghc-quickcheck" ,ghc-quickcheck)
("ghc-setlocale" ,ghc-setlocale)
("ghc-utf8-string" ,ghc-utf8-string)
("ghc-directory" ,ghc-directory)
("ghc-x11" ,ghc-x11)
("ghc-http" ,ghc-http)
("ghc-parsec" ,ghc-parsec)
("ghc-regex-compat" ,ghc-regex-compat)
("ghc-stm" ,ghc-stm)
("ghc-x11-xft" ,ghc-x11-xft)
("libxpm" ,libxpm)
("iw" ,iw)))
;; ISSUE WITH \" quotes in configure phase
(arguments
`(#:configure-flags
`(,(string-append "--flags=" "\"with_utf8 with_xft\""))))
(home-page "https://hackage.haskell.org/package/xmobar")
(synopsis "Minimalistic text based status bar")
(description
"xmobar")
(license license:bsd-3)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment