12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- (define-module (python-mypy-extensions)
- #:use-module (guix packages)
- #:use-module (gnu packages ruby)
- #:use-module (guix utils)
- #:use-module (guix download)
- #:use-module (guix licenses)
- #:use-module (guix build-system ruby))
- (define-public ruby-ncurses-ruby
- (package
- (name "ruby-ncurses-ruby")
- (version "1.2.4")
- (source
- (origin
- (method url-fetch)
- (uri (rubygems-uri "ncurses-ruby" version))
- (sha256
- (base32
- "1zr2r2ryz7gpviqd52kyf4x9alm1cd2p8rhaf2cqzjdd76i9wa2y"))))
- (build-system ruby-build-system)
- (synopsis
- "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.")
- (description
- "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.")
- (home-page
- "http://github.com/eclubb/ncurses-ruby")
- (license #f)))
- (define-public ruby-tpp
- (package
- (name "ruby-tpp")
- (version "1.3.1")
- (source
- (origin
- (method url-fetch)
- (uri (rubygems-uri "tpp" version))
- (sha256
- (base32
- "1r1y70m58mjagf8ppl44bfw3ffs7373snzwnxb39p8ppzmv15jnp"))))
- (build-system ruby-build-system)
- (propagated-inputs
- `(("ruby-ncurses-ruby" ,ruby-ncurses-ruby)))
- (synopsis
- "a ruby wrapper of tpp - a text based presentation program using ncurses")
- (description
- "a ruby wrapper of tpp - a text based presentation program using ncurses")
- (home-page "http://github.com/yong/tpp")
- (license #f)))
- ruby-ncurses-ruby
- ruby-tpp
|