gnu: Add ruby-minitar.

* gnu/packages/ruby.scm (ruby-minitar): New variable.
This commit is contained in:
David Thompson 2015-08-29 08:32:32 -04:00
parent cfc5d39888
commit 616eaead7e
1 changed files with 21 additions and 0 deletions

View File

@ -767,3 +767,24 @@ net/http library.")
(description "Arel is a SQL AST manager for Ruby. It simplifies the (description "Arel is a SQL AST manager for Ruby. It simplifies the
generation of complex SQL queries and is compatible with various RDBMSes.") generation of complex SQL queries and is compatible with various RDBMSes.")
(license license:expat))) (license license:expat)))
(define-public ruby-minitar
(package
(name "ruby-minitar")
(version "0.5.4")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "minitar" version))
(sha256
(base32
"1vpdjfmdq1yc4i620frfp9af02ia435dnpj8ybsd7dc3rypkvbka"))))
(build-system ruby-build-system)
(arguments
'(#:tests? #f)) ; missing a gemspec
(synopsis "Ruby library and utility for handling tar archives")
(description
"Archive::Tar::Minitar is a pure-Ruby library and command-line utility
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))))