summaryrefslogtreecommitdiff
path: root/px/packages/ruby.scm
blob: 9362ad6f678c75cb680f7dbe5d71ffde9f7b99ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;; Package Repository for GNU Guix
;;; Copyright © 2021-2025 Franz Geffke <m@f-a.nz>

(define-module (px packages ruby)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix build-system ruby)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (gnu packages)
  #:use-module (gnu packages ruby))

(define-public ruby-jekyll-polyglot
  (package
    (name "ruby-jekyll-polyglot")
    (version "1.9.0")
    (source
     (origin
       (method url-fetch)
       (uri (rubygems-uri "jekyll-polyglot" version))
       (sha256
        (base32 "0g7z5psi72pclkq6z2spqlyabw9jj11w1al9fmb2005ik8yn0ryr"))))
    (build-system ruby-build-system)
    (arguments
     '(#:tests? #f)) ; No Rakefile
    (propagated-inputs (list jekyll))
    (synopsis "Fast open source i18n plugin for Jekyll blogs.")
    (description "Fast open source i18n plugin for Jekyll blogs.")
    (home-page "https://polyglot.untra.io/")
    (license license:expat)))