ruby-tpp.scm 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. (define-module (python-mypy-extensions)
  2. #:use-module (guix packages)
  3. #:use-module (gnu packages ruby)
  4. #:use-module (guix utils)
  5. #:use-module (guix download)
  6. #:use-module (guix licenses)
  7. #:use-module (guix build-system ruby))
  8. (define-public ruby-ncurses-ruby
  9. (package
  10. (name "ruby-ncurses-ruby")
  11. (version "1.2.4")
  12. (source
  13. (origin
  14. (method url-fetch)
  15. (uri (rubygems-uri "ncurses-ruby" version))
  16. (sha256
  17. (base32
  18. "1zr2r2ryz7gpviqd52kyf4x9alm1cd2p8rhaf2cqzjdd76i9wa2y"))))
  19. (build-system ruby-build-system)
  20. (synopsis
  21. "This wrapper provides access to the functions, macros, global variables and constants of the ncurses library. These are mapped to a Ruby Module named \"Ncurses\". Functions and external variables are implemented as singleton functions of the Ncurses module.")
  22. (description
  23. "This wrapper provides access to the functions, macros, global variables and constants of the ncurses library. These are mapped to a Ruby Module named \"Ncurses\". Functions and external variables are implemented as singleton functions of the Ncurses module.")
  24. (home-page
  25. "http://github.com/eclubb/ncurses-ruby")
  26. (license #f)))
  27. (define-public ruby-tpp
  28. (package
  29. (name "ruby-tpp")
  30. (version "1.3.1")
  31. (source
  32. (origin
  33. (method url-fetch)
  34. (uri (rubygems-uri "tpp" version))
  35. (sha256
  36. (base32
  37. "1r1y70m58mjagf8ppl44bfw3ffs7373snzwnxb39p8ppzmv15jnp"))))
  38. (build-system ruby-build-system)
  39. (propagated-inputs
  40. `(("ruby-ncurses-ruby" ,ruby-ncurses-ruby)))
  41. (synopsis
  42. "a ruby wrapper of tpp - a text based presentation program using ncurses")
  43. (description
  44. "a ruby wrapper of tpp - a text based presentation program using ncurses")
  45. (home-page "http://github.com/yong/tpp")
  46. (license #f)))
  47. ruby-ncurses-ruby
  48. ruby-tpp