mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add ruby-net-protocol.
* gnu/packages/ruby.scm (ruby-net-protocol): New variable.
This commit is contained in:
parent
93d038c827
commit
2b64afab76
1 changed files with 21 additions and 0 deletions
|
@ -11340,6 +11340,27 @@ (define-public ruby-mail
|
||||||
(home-page "https://github.com/mikel/mail")
|
(home-page "https://github.com/mikel/mail")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-net-protocol
|
||||||
|
(package
|
||||||
|
(name "ruby-net-protocol")
|
||||||
|
(version "0.2.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ruby/net-protocol")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0niivmjx7bc6vsylc1ag17mw6mnvjxw02s7cin1f0422xyr8msq9"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(propagated-inputs (list ruby-timeout))
|
||||||
|
(synopsis "Abstract interface for Ruby network clients")
|
||||||
|
(description "This Ruby library provides an abstract interface for network
|
||||||
|
clients.")
|
||||||
|
(home-page "https://github.com/ruby/net-protocol")
|
||||||
|
(license (list license:bsd-2))))
|
||||||
|
|
||||||
(define-public ruby-email-reply-trimmer
|
(define-public ruby-email-reply-trimmer
|
||||||
(package
|
(package
|
||||||
(name "ruby-email-reply-trimmer")
|
(name "ruby-email-reply-trimmer")
|
||||||
|
|
Loading…
Reference in a new issue