mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: ruby-marcel: Relocate to (gnu packages rails).
* gnu/packages/ruby.scm (ruby-marcel): Move to... * gnu/packages/rails.scm (ruby-marcel): ... here. [home-page]: Update URL.
This commit is contained in:
parent
90e38a14a3
commit
e7747e79c6
2 changed files with 25 additions and 24 deletions
|
@ -2,6 +2,7 @@
|
|||
;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2019, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019 Christopher Baines <mail@cbaines.net>
|
||||
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -725,6 +726,30 @@ (define-public ruby-actionmailer
|
|||
(home-page "https://rubyonrails.org/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-marcel
|
||||
(package
|
||||
(name "ruby-marcel")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "marcel" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0kky3yiwagsk8gfbzn3mvl2fxlh3b39v6nawzm4wpjs6xxvvc4x0"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(;; No included tests
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
(list ruby-mimemagic))
|
||||
(synopsis "MIME type detection using magic numbers, filenames and extensions")
|
||||
(description
|
||||
"@code{marcel} provides @acronym{MIME, Multipurpose Internet Mail
|
||||
Extensions} type detection using magic numbers, filenames, and extensions")
|
||||
(home-page "https://github.com/rails/marcel")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-railties
|
||||
(package
|
||||
(name "ruby-railties")
|
||||
|
|
|
@ -5750,30 +5750,6 @@ (define-public ruby-arel
|
|||
various relational database implementations.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-marcel
|
||||
(package
|
||||
(name "ruby-marcel")
|
||||
(version "1.0.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "marcel" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0kky3yiwagsk8gfbzn3mvl2fxlh3b39v6nawzm4wpjs6xxvvc4x0"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(;; No included tests
|
||||
#:tests? #f))
|
||||
(propagated-inputs
|
||||
(list ruby-mimemagic))
|
||||
(synopsis "MIME type detection using magic numbers, filenames and extensions")
|
||||
(description
|
||||
"@code{marcel} provides @acronym{MIME, Multipurpose Internet Mail
|
||||
Extensions} 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.
|
||||
|
|
Loading…
Reference in a new issue