From 5e3dcfd7aa61fae41b20dcf24cfca00995a069e1 Mon Sep 17 00:00:00 2001 From: Franz Geffke Date: Sun, 27 Apr 2025 11:52:20 +0100 Subject: px: ruby-jekyll-polyglot: Added --- px/packages/ruby.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 px/packages/ruby.scm (limited to 'px') 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 -- cgit v1.2.3