telephone-line.scm 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. (define-module (emacs telephone-line)
  2. #:use-module ((guix licenses) #:prefix license:)
  3. #:use-module (guix build-system emacs)
  4. #:use-module (guix packages)
  5. #:use-module (gnu packages emacs)
  6. #:use-module (gnu packages emacs-xyz)
  7. #:use-module (guix download))
  8. (define-public emacs-telephone-line
  9. (package
  10. (name "emacs-telephone-line")
  11. (version "0.4")
  12. (source
  13. (origin
  14. (method url-fetch)
  15. (uri (string-append
  16. "https://stable.melpa.org/packages/telephone-line-"
  17. version
  18. ".tar"))
  19. (sha256
  20. (base32
  21. "13g79sljmaj0zx648ga3qxhhyzxshv6bqkf5c1043dm4sm7v37v5"))))
  22. (build-system emacs-build-system)
  23. ;; (propagated-inputs
  24. ;; `(("emacs-cl-generic" ,emacs-cl-generic)))
  25. (home-page
  26. "https://github.com/dbordak/telephone-line")
  27. (synopsis "Rewrite of Powerline")
  28. (description
  29. "Telephone Line is a library for customizing the mode-line that is
  30. based on the Vim Powerline. Themes can be created by customizing
  31. the telephone-line-lhs and telephone-line-rhs variables.
  32. ")
  33. (license license:gpl3+))
  34. )