diff options
author | Christopher Baines <mail@cbaines.net> | 2018-10-10 08:15:31 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-28 11:21:19 +0000 |
commit | 4d806ace19015a6b3a6a608bc1271823e9dc0274 (patch) | |
tree | 6a43cfe0ffe72cf7f41e2cbd2a735d455d443f2b | |
parent | 0a08ac0eadc024c14761a7b38e5c22be5d176f41 (diff) | |
download | guix-4d806ace19015a6b3a6a608bc1271823e9dc0274.tar guix-4d806ace19015a6b3a6a608bc1271823e9dc0274.tar.gz |
gnu: Add ruby-marcel.
-rw-r--r-- | gnu/packages/ruby.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index dc9e405e5f..9108b175fe 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -3039,6 +3039,29 @@ Ruby. It simplifies the generation of complex SQL queries and adapts to various relational database implementations.") (license license:expat))) +(define-public ruby-marcel + (package + (name "ruby-marcel") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "marcel" version)) + (sha256 + (base32 + "1nxbjmcyg8vlw6zwagf17l9y2mwkagmmkg95xybpn4bmf3rfnksx")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("ruby-mimemagic" ,ruby-mimemagic))) + (synopsis + "Simple mime type detection using magic numbers, filenames, and extensions") + (description + "Simple mime type detection using magic numbers, filenames, and extensions") + (home-page "https://github.com/basecamp/marcel") + (license license:expat))) + (define-public ruby-minitar ;; We package from the GitHub source to fix the security issue reported at ;; https://github.com/halostatue/minitar/issues/16. |