mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +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 © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
;;; 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>
|
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -725,6 +726,30 @@ (define-public ruby-actionmailer
|
||||||
(home-page "https://rubyonrails.org/")
|
(home-page "https://rubyonrails.org/")
|
||||||
(license license:expat)))
|
(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
|
(define-public ruby-railties
|
||||||
(package
|
(package
|
||||||
(name "ruby-railties")
|
(name "ruby-railties")
|
||||||
|
|
|
@ -5750,30 +5750,6 @@ (define-public ruby-arel
|
||||||
various relational database implementations.")
|
various relational database implementations.")
|
||||||
(license license:expat)))
|
(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
|
(define-public ruby-minitar
|
||||||
;; We package from the GitHub source to fix the security issue reported at
|
;; We package from the GitHub source to fix the security issue reported at
|
||||||
;; https://github.com/halostatue/minitar/issues/16.
|
;; https://github.com/halostatue/minitar/issues/16.
|
||||||
|
|
Loading…
Reference in a new issue