3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add ruby-rc4.

* gnu/packages/ruby.scm (ruby-rc4): New variable.
This commit is contained in:
Ben Woodcroft 2015-12-29 14:52:04 +10:00
parent 72ccbfe314
commit 1f1d71e09f

View file

@ -3207,3 +3207,29 @@ standard @code{Hash} making it possible to subclass and augment to fit any
specific use case.")
(home-page "http://rubyworks.github.io/hashery")
(license license:bsd-2)))
(define-public ruby-rc4
(package
(name "ruby-rc4")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "ruby-rc4" version))
(sha256
(base32
"00vci475258mmbvsdqkmqadlwn6gj9m01sp7b5a3zd90knil1k00"))))
(build-system ruby-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(zero? (system* "rspec" "spec/rc4_spec.rb")))))))
(native-inputs
`(("ruby-rspec" ,ruby-rspec-2)))
(synopsis "Implementation of the RC4 algorithm")
(description
"RubyRC4 is a pure Ruby implementation of the RC4 algorithm.")
(home-page "https://github.com/caiges/Ruby-RC4")
(license license:expat)))