me
/
guix
Archived
1
0
Fork 0

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.
master
Maxim Cournoyer 2023-03-09 15:05:47 -05:00
parent 90e38a14a3
commit e7747e79c6
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
2 changed files with 25 additions and 24 deletions

View File

@ -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 @@ pattern. Including support for multipart email and attachments.")
(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")

View File

@ -5750,30 +5750,6 @@ Ruby. It simplifies the generation of complex SQL queries and adapts to
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.