gollum: add additional dependencies
(cherry picked from commit 3bdccfedaf0078eac4cae00e0646d8f0a8c1cfcf)
This commit is contained in:
parent
368e8bcf0c
commit
f187ac728a
|
@ -1,2 +1,8 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
gem 'gollum'
|
gem 'gollum'
|
||||||
|
|
||||||
|
gem 'asciidoctor'
|
||||||
|
gem 'creole'
|
||||||
|
gem 'wikicloth'
|
||||||
|
gem 'org-ruby'
|
||||||
|
gem 'RedCloth'
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
|
RedCloth (4.3.2)
|
||||||
|
asciidoctor (2.0.15)
|
||||||
|
builder (3.2.4)
|
||||||
concurrent-ruby (1.1.8)
|
concurrent-ruby (1.1.8)
|
||||||
crass (1.0.6)
|
crass (1.0.6)
|
||||||
|
creole (0.5.0)
|
||||||
execjs (2.7.0)
|
execjs (2.7.0)
|
||||||
|
expression_parser (0.9.0)
|
||||||
ffi (1.14.2)
|
ffi (1.14.2)
|
||||||
gemojione (4.3.3)
|
gemojione (4.3.3)
|
||||||
json
|
json
|
||||||
|
@ -36,6 +41,7 @@ GEM
|
||||||
gollum-rugged_adapter (1.0)
|
gollum-rugged_adapter (1.0)
|
||||||
mime-types (>= 1.15)
|
mime-types (>= 1.15)
|
||||||
rugged (~> 0.99)
|
rugged (~> 0.99)
|
||||||
|
htmlentities (4.3.4)
|
||||||
json (2.5.1)
|
json (2.5.1)
|
||||||
kramdown (2.3.0)
|
kramdown (2.3.0)
|
||||||
rexml
|
rexml
|
||||||
|
@ -59,6 +65,8 @@ GEM
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
octicons (12.1.0)
|
octicons (12.1.0)
|
||||||
nokogiri (>= 1.6.3.1)
|
nokogiri (>= 1.6.3.1)
|
||||||
|
org-ruby (0.9.12)
|
||||||
|
rubypants (~> 0.2)
|
||||||
racc (1.5.2)
|
racc (1.5.2)
|
||||||
rack (2.2.3)
|
rack (2.2.3)
|
||||||
rack-protection (2.1.0)
|
rack-protection (2.1.0)
|
||||||
|
@ -71,6 +79,7 @@ GEM
|
||||||
rss (0.2.9)
|
rss (0.2.9)
|
||||||
rexml
|
rexml
|
||||||
ruby2_keywords (0.0.4)
|
ruby2_keywords (0.0.4)
|
||||||
|
rubypants (0.7.1)
|
||||||
rugged (0.99.0)
|
rugged (0.99.0)
|
||||||
sass (3.7.4)
|
sass (3.7.4)
|
||||||
sass-listen (~> 4.0.0)
|
sass-listen (~> 4.0.0)
|
||||||
|
@ -105,12 +114,23 @@ GEM
|
||||||
unf_ext
|
unf_ext
|
||||||
unf_ext (0.0.7.7)
|
unf_ext (0.0.7.7)
|
||||||
useragent (0.16.10)
|
useragent (0.16.10)
|
||||||
|
wikicloth (0.8.3)
|
||||||
|
builder
|
||||||
|
expression_parser
|
||||||
|
htmlentities
|
||||||
|
nokogiri
|
||||||
|
twitter-text
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
|
RedCloth
|
||||||
|
asciidoctor
|
||||||
|
creole
|
||||||
gollum
|
gollum
|
||||||
|
org-ruby
|
||||||
|
wikicloth
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.1.4
|
2.2.20
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ lib, stdenv, bundlerEnv, ruby, makeWrapper, bundlerUpdateScript
|
{ lib, stdenv, bundlerEnv, ruby, makeWrapper, bundlerUpdateScript
|
||||||
, git }:
|
, git, docutils, perl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gollum";
|
pname = "gollum";
|
||||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||||
in ''
|
in ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
makeWrapper ${env}/bin/gollum $out/bin/gollum \
|
makeWrapper ${env}/bin/gollum $out/bin/gollum \
|
||||||
--prefix PATH ":" ${lib.makeBinPath [ git ]}
|
--prefix PATH ":" ${lib.makeBinPath [ git docutils perl]}
|
||||||
makeWrapper ${env}/bin/gollum-migrate-tags $out/bin/gollum-migrate-tags \
|
makeWrapper ${env}/bin/gollum-migrate-tags $out/bin/gollum-migrate-tags \
|
||||||
--prefix PATH ":" ${lib.makeBinPath [ git ]}
|
--prefix PATH ":" ${lib.makeBinPath [ git ]}
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,4 +1,24 @@
|
||||||
{
|
{
|
||||||
|
asciidoctor = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0k3lijm4dmiz977bfmpclk5glj5jwv7bidamwwwywm60ywb0n4n4";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.0.15";
|
||||||
|
};
|
||||||
|
builder = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "045wzckxpwcqzrjr353cxnyaxgf0qg22jh00dcx7z38cys5g1jlr";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "3.2.4";
|
||||||
|
};
|
||||||
concurrent-ruby = {
|
concurrent-ruby = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -19,6 +39,16 @@
|
||||||
};
|
};
|
||||||
version = "1.0.6";
|
version = "1.0.6";
|
||||||
};
|
};
|
||||||
|
creole = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "00rcscz16idp6dx0dk5yi5i0fz593i3r6anbn5bg2q07v3i025wm";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.5.0";
|
||||||
|
};
|
||||||
execjs = {
|
execjs = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -29,6 +59,16 @@
|
||||||
};
|
};
|
||||||
version = "2.7.0";
|
version = "2.7.0";
|
||||||
};
|
};
|
||||||
|
expression_parser = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1938z3wmmdabqxlh5d5c56xfg1jc6z15p7zjyhvk7364zwydnmib";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.9.0";
|
||||||
|
};
|
||||||
ffi = {
|
ffi = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -93,6 +133,16 @@
|
||||||
};
|
};
|
||||||
version = "1.0";
|
version = "1.0";
|
||||||
};
|
};
|
||||||
|
htmlentities = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1nkklqsn8ir8wizzlakncfv42i32wc0w9hxp00hvdlgjr7376nhj";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "4.3.4";
|
||||||
|
};
|
||||||
json = {
|
json = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -231,6 +281,17 @@
|
||||||
};
|
};
|
||||||
version = "12.1.0";
|
version = "12.1.0";
|
||||||
};
|
};
|
||||||
|
org-ruby = {
|
||||||
|
dependencies = ["rubypants"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.9.12";
|
||||||
|
};
|
||||||
racc = {
|
racc = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -283,6 +344,16 @@
|
||||||
};
|
};
|
||||||
version = "0.10.1";
|
version = "0.10.1";
|
||||||
};
|
};
|
||||||
|
RedCloth = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0m9dv7ya9q93r8x1pg2gi15rxlbck8m178j1fz7r5v6wr1avrrqy";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "4.3.2";
|
||||||
|
};
|
||||||
rexml = {
|
rexml = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -324,6 +395,16 @@
|
||||||
};
|
};
|
||||||
version = "0.0.4";
|
version = "0.0.4";
|
||||||
};
|
};
|
||||||
|
rubypants = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0kv2way45d2dz3h5b7wxyw36clvlwrz7ydf6699d0za5vm56gsrh";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.7.1";
|
||||||
|
};
|
||||||
rugged = {
|
rugged = {
|
||||||
groups = ["default"];
|
groups = ["default"];
|
||||||
platforms = [];
|
platforms = [];
|
||||||
|
@ -484,4 +565,15 @@
|
||||||
};
|
};
|
||||||
version = "0.16.10";
|
version = "0.16.10";
|
||||||
};
|
};
|
||||||
|
wikicloth = {
|
||||||
|
dependencies = ["builder" "expression_parser" "htmlentities" "nokogiri" "twitter-text"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0c78r1rg93mb5rcrfxl01b162ma9sh46dhjksc4c9dngg62nhbjh";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.8.3";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue