mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add ruby-mini-portile.
* gnu/packages/ruby.scm (ruby-mini-portile): New variable.
This commit is contained in:
parent
616eaead7e
commit
bea1c0e246
1 changed files with 21 additions and 0 deletions
|
@ -788,3 +788,24 @@ (define-public ruby-minitar
|
|||
that provides the ability to deal with POSIX tar archive files.")
|
||||
(home-page "http://www.github.com/atoulme/minitar")
|
||||
(license (list license:gpl2+ license:ruby))))
|
||||
|
||||
(define-public ruby-mini-portile
|
||||
(package
|
||||
(name "ruby-mini-portile")
|
||||
(version "0.6.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "mini_portile" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0h3xinmacscrnkczq44s6pnhrp4nqma7k056x5wv5xixvf2wsq2w"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ; tests require network access
|
||||
(synopsis "Ports system for Ruby developers")
|
||||
(description "Mini-portile is a port/recipe system for Ruby developers.
|
||||
It provides a standard way to compile against specific versions of libraries
|
||||
to reproduce user environments.")
|
||||
(home-page "http://github.com/flavorjones/mini_portile")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue