diff options
author | Franz Geffke <m@f-a.nz> | 2025-04-27 11:52:20 +0100 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2025-04-27 11:52:20 +0100 |
commit | 5e3dcfd7aa61fae41b20dcf24cfca00995a069e1 (patch) | |
tree | 6ab930bdd8efb86f5229c56c04348c902fe6ffc6 /px | |
parent | 9ac03415daf183761ec3d4e443d187049cdfe214 (diff) |
px: ruby-jekyll-polyglot: Added
Diffstat (limited to 'px')
-rw-r--r-- | px/packages/ruby.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/px/packages/ruby.scm b/px/packages/ruby.scm new file mode 100644 index 0000000..99f237a --- /dev/null +++ b/px/packages/ruby.scm @@ -0,0 +1,26 @@ +(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)))
\ No newline at end of file |