mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ruby-ipaddr.
* gnu/packages/ruby.scm (ruby-ipaddr): New variable.
This commit is contained in:
parent
8bd01bb2d1
commit
10f72f90b3
1 changed files with 21 additions and 0 deletions
|
@ -4427,6 +4427,27 @@ (define-public ruby-flores
|
||||||
(home-page "https://github.com/jordansissel/ruby-flores")
|
(home-page "https://github.com/jordansissel/ruby-flores")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public ruby-ipaddr
|
||||||
|
(package
|
||||||
|
(name "ruby-ipaddr")
|
||||||
|
(version "1.2.6")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch) ;for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ruby/ipaddr")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0h3z8i1fa8s4gx48322fflhpkzghd4bmd9109hglsgdkic7b0dyp"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(native-inputs (list ruby-test-unit-ruby-core))
|
||||||
|
(synopsis "Manipulate IP addresses")
|
||||||
|
(description "This package provides a set of methods to manipulate an IP
|
||||||
|
address. Both IPv4 and IPv6 are supported.")
|
||||||
|
(home-page "https://github.com/ruby/ipaddr")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public ruby-net-http-persistent
|
(define-public ruby-net-http-persistent
|
||||||
(package
|
(package
|
||||||
(name "ruby-net-http-persistent")
|
(name "ruby-net-http-persistent")
|
||||||
|
|
Loading…
Reference in a new issue