mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add ruby-minima.
I added a test by `jekyll build`. * gnu/packages/ruby.scm (ruby-minima): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
aceb150d29
commit
5e0b8d51b8
1 changed files with 31 additions and 0 deletions
|
@ -32,6 +32,7 @@
|
|||
;;; Copyright © 2022, 2023 Remco van 't Veer <remco@remworks.net>
|
||||
;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
|
||||
;;; Copyright © 2023 Yovan Naumovski <yovan@gorski.stream>
|
||||
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -5258,6 +5259,36 @@ (define-public ruby-net-scp
|
|||
(home-page "https://github.com/net-ssh/net-scp")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-minima
|
||||
(package
|
||||
(name "ruby-minima")
|
||||
(version "2.5.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "minima" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1gk7jmriiswda1ykjzpsw9cpiya4m9n0yrh0h6xnrc8zcfy543jj"))))
|
||||
(arguments
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "jekyll" "build"))
|
||||
;; Without the following, an attempt to remove
|
||||
;; minima-<version>.gem is made during installation,
|
||||
;; which will fail.
|
||||
(delete-file #$(string-append "_site/minima-"
|
||||
version ".gem")))))))
|
||||
(build-system ruby-build-system)
|
||||
(propagated-inputs (list jekyll ruby-jekyll-feed ruby-jekyll-seo-tag))
|
||||
(synopsis "Beautiful, minimal theme for Jekyll")
|
||||
(description
|
||||
"Minima is a one-size-fits-all Jekyll theme for writers. It's Jekyll's
|
||||
default (and first) theme. It's what you get when you run @code{jekyll new}.")
|
||||
(home-page "https://github.com/jekyll/minima")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-minitest
|
||||
(package
|
||||
(name "ruby-minitest")
|
||||
|
|
Loading…
Reference in a new issue