summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2015-09-28 23:57:26 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2015-09-28 23:57:26 +0300
commite916273209560b302ab231606babf5ce1c481f08 (patch)
treef1d1688f886f6c89e4473f82bb6f380f4c90f123 /pkgs/applications
parent248e38d995be0166dbd657425824eb9f34f4cf94 (diff)
parent2131d401ea80938cec578de02db1eaa272faffbb (diff)
downloadnixlib-e916273209560b302ab231606babf5ce1c481f08.tar
nixlib-e916273209560b302ab231606babf5ce1c481f08.tar.gz
nixlib-e916273209560b302ab231606babf5ce1c481f08.tar.bz2
nixlib-e916273209560b302ab231606babf5ce1c481f08.tar.lz
nixlib-e916273209560b302ab231606babf5ce1c481f08.tar.xz
nixlib-e916273209560b302ab231606babf5ce1c481f08.tar.zst
nixlib-e916273209560b302ab231606babf5ce1c481f08.zip
Merge pull request #10102 from bdimcheff/add-textile-to-jekyll
jekyll: add RedCloth dependency for textile support
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/jekyll/Gemfile1
-rw-r--r--pkgs/applications/misc/jekyll/Gemfile.lock5
-rw-r--r--pkgs/applications/misc/jekyll/gemset.nix7
3 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/applications/misc/jekyll/Gemfile b/pkgs/applications/misc/jekyll/Gemfile
index 0788a359116d..0a5688503cac 100644
--- a/pkgs/applications/misc/jekyll/Gemfile
+++ b/pkgs/applications/misc/jekyll/Gemfile
@@ -2,3 +2,4 @@ source "https://rubygems.org"
 
 gem 'jekyll'
 gem 'rdiscount'
+gem 'RedCloth'
diff --git a/pkgs/applications/misc/jekyll/Gemfile.lock b/pkgs/applications/misc/jekyll/Gemfile.lock
index 76bddef5869e..ec81bc703c68 100644
--- a/pkgs/applications/misc/jekyll/Gemfile.lock
+++ b/pkgs/applications/misc/jekyll/Gemfile.lock
@@ -1,6 +1,7 @@
 GEM
   remote: https://rubygems.org/
   specs:
+    RedCloth (4.2.9)
     blankslate (2.1.2.4)
     celluloid (0.16.0)
       timers (~> 4.0.0)
@@ -68,5 +69,9 @@ PLATFORMS
   ruby
 
 DEPENDENCIES
+  RedCloth
   jekyll
   rdiscount
+
+BUNDLED WITH
+   1.10.6
diff --git a/pkgs/applications/misc/jekyll/gemset.nix b/pkgs/applications/misc/jekyll/gemset.nix
index 0ceb095b4c82..f6ad34fcad98 100644
--- a/pkgs/applications/misc/jekyll/gemset.nix
+++ b/pkgs/applications/misc/jekyll/gemset.nix
@@ -1,4 +1,11 @@
 {
+  "RedCloth" = {
+    version = "4.2.9";
+    source = {
+      type = "gem";
+      sha256 = "06pahxyrckhgb7alsxwhhlx1ib2xsx33793finj01jk8i054bkxl";
+    };
+  };
   "blankslate" = {
     version = "2.1.2.4";
     source = {