diff options
Diffstat (limited to 'pkgs/webapps')
257 files changed, 0 insertions, 40383 deletions
diff --git a/pkgs/webapps/adminer/default.nix b/pkgs/webapps/adminer/default.nix deleted file mode 100644 index 203b565..0000000 --- a/pkgs/webapps/adminer/default.nix +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | { stdenv, fetchurl }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "4.7.1"; | ||
4 | name = "adminer-${version}"; | ||
5 | src = fetchurl { | ||
6 | url = "https://github.com/vrana/adminer/releases/download/v${version}/${name}.php"; | ||
7 | sha256 = "00gnck9vd44wc6ihf7hh4ma6jvdsw69xgjlkbrdf6irnni6rnvhn"; | ||
8 | }; | ||
9 | phases = "installPhase"; | ||
10 | installPhase = '' | ||
11 | mkdir -p $out | ||
12 | cp $src $out/index.php | ||
13 | ''; | ||
14 | } | ||
diff --git a/pkgs/webapps/apache-theme/default.nix b/pkgs/webapps/apache-theme/default.nix deleted file mode 100644 index 4b5755a..0000000 --- a/pkgs/webapps/apache-theme/default.nix +++ /dev/null | |||
@@ -1,88 +0,0 @@ | |||
1 | { theme_root ? null }: | ||
2 | rec { | ||
3 | theme = ./theme; | ||
4 | apacheConfig = let | ||
5 | theme_root' = if isNull theme_root then theme else theme_root; | ||
6 | in '' | ||
7 | <Macro Apaxy %{folder} %{ignored}> | ||
8 | Alias /theme ${theme_root'} | ||
9 | <Directory ${theme_root'}> | ||
10 | Options -Indexes | ||
11 | AllowOverride None | ||
12 | Require all granted | ||
13 | </Directory> | ||
14 | |||
15 | # mod_autoindex | ||
16 | <Directory %{folder}> | ||
17 | Options Indexes | ||
18 | AllowOverride None | ||
19 | Require all granted | ||
20 | |||
21 | # Inspired from Apaxy by @adamwhitcroft | ||
22 | |||
23 | IndexOptions +Charset=UTF-8 +FancyIndexing +IgnoreCase +FoldersFirst +XHTML +HTMLTable +SuppressRules +SuppressDescription +NameWidth=* +IconsAreLinks +ShowForbidden | ||
24 | |||
25 | IndexHeadInsert "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />" | ||
26 | |||
27 | IndexIgnoreReset ON | ||
28 | IndexIgnore /theme .htaccess %{ignored} | ||
29 | |||
30 | AddIcon /theme/icons/blank.png ^^BLANKICON^^ | ||
31 | AddIcon /theme/icons/folder.png ^^DIRECTORY^^ | ||
32 | AddIcon /theme/icons/folder-home.png .. | ||
33 | |||
34 | AddIconByType (TXT,/theme/icons/text.png) text/* | ||
35 | AddIconByType (IMG,/theme/icons/image.png) image/* | ||
36 | AddIconByType (SND,/theme/icons/audio.png) audio/* | ||
37 | AddIconByType (VID,/theme/icons/video.png) video/* | ||
38 | |||
39 | AddIcon /theme/icons/archive.png .7z .bz2 .cab .gz .tar | ||
40 | AddIcon /theme/icons/audio.png .aac .aif .aifc .aiff .ape .au .flac .iff .m4a .mid .mp3 .mpa .ra .wav .wma .f4a .f4b .oga .ogg .xm .it .s3m .mod | ||
41 | AddIcon /theme/icons/bin.png .bin .hex | ||
42 | AddIcon /theme/icons/bmp.png .bmp | ||
43 | AddIcon /theme/icons/c.png .c | ||
44 | AddIcon /theme/icons/calc.png .xlsx .xlsm .xltx .xltm .xlam .xlr .xls .csv | ||
45 | AddIcon /theme/icons/cd.png .iso | ||
46 | AddIcon /theme/icons/cpp.png .cpp | ||
47 | AddIcon /theme/icons/css.png .css .sass .scss | ||
48 | AddIcon /theme/icons/deb.png .deb | ||
49 | AddIcon /theme/icons/doc.png .doc .docx .docm .dot .dotx .dotm .log .msg .odt .pages .rtf .tex .wpd .wps | ||
50 | AddIcon /theme/icons/draw.png .svg .svgz | ||
51 | AddIcon /theme/icons/eps.png .ai .eps | ||
52 | AddIcon /theme/icons/exe.png .exe | ||
53 | AddIcon /theme/icons/gif.png .gif | ||
54 | AddIcon /theme/icons/h.png .h | ||
55 | AddIcon /theme/icons/html.png .html .xhtml .shtml .htm .URL .url | ||
56 | AddIcon /theme/icons/ico.png .ico | ||
57 | AddIcon /theme/icons/java.png .jar | ||
58 | AddIcon /theme/icons/jpg.png .jpg .jpeg .jpe | ||
59 | AddIcon /theme/icons/js.png .js .json | ||
60 | AddIcon /theme/icons/markdown.png .md | ||
61 | AddIcon /theme/icons/package.png .pkg .dmg | ||
62 | AddIcon /theme/icons/pdf.png .pdf | ||
63 | AddIcon /theme/icons/php.png .php .phtml | ||
64 | AddIcon /theme/icons/playlist.png .m3u .m3u8 .pls .pls8 | ||
65 | AddIcon /theme/icons/png.png .png | ||
66 | AddIcon /theme/icons/ps.png .ps | ||
67 | AddIcon /theme/icons/psd.png .psd | ||
68 | AddIcon /theme/icons/py.png .py | ||
69 | AddIcon /theme/icons/rar.png .rar | ||
70 | AddIcon /theme/icons/rb.png .rb | ||
71 | AddIcon /theme/icons/rpm.png .rpm | ||
72 | AddIcon /theme/icons/rss.png .rss | ||
73 | AddIcon /theme/icons/script.png .bat .cmd .sh | ||
74 | AddIcon /theme/icons/sql.png .sql | ||
75 | AddIcon /theme/icons/tiff.png .tiff .tif | ||
76 | AddIcon /theme/icons/text.png .txt .nfo | ||
77 | AddIcon /theme/icons/video.png .asf .asx .avi .flv .mkv .mov .mp4 .mpg .rm .srt .swf .vob .wmv .m4v .f4v .f4p .ogv | ||
78 | AddIcon /theme/icons/xml.png .xml | ||
79 | AddIcon /theme/icons/zip.png .zip | ||
80 | DefaultIcon /theme/icons/default.png | ||
81 | |||
82 | HeaderName /theme/header.html | ||
83 | ReadmeName /theme/footer.html | ||
84 | IndexStyleSheet /theme/style.css | ||
85 | </Directory> | ||
86 | </Macro> | ||
87 | ''; | ||
88 | } | ||
diff --git a/pkgs/webapps/apache-theme/theme/.htaccess b/pkgs/webapps/apache-theme/theme/.htaccess deleted file mode 100644 index f9e5472..0000000 --- a/pkgs/webapps/apache-theme/theme/.htaccess +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | # | ||
2 | # Apaxy by @adamwhitcroft | ||
3 | # | ||
4 | # For a full breakdown of the mod_autoindex module | ||
5 | # http://apache.org/docs/2.2/mod/mod_autoindex.html | ||
6 | # | ||
7 | |||
8 | # Don't index this folder | ||
9 | Options -Indexes | ||
diff --git a/pkgs/webapps/apache-theme/theme/footer.html b/pkgs/webapps/apache-theme/theme/footer.html deleted file mode 100644 index 57a2012..0000000 --- a/pkgs/webapps/apache-theme/theme/footer.html +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | </div><!--/.wrapper--> | ||
2 | |||
3 | <script type="text/javascript"> | ||
4 | // grab the 2nd child and add the parent class. tr:nth-child(2) | ||
5 | document.getElementsByTagName('tr')[1].className = 'parent'; | ||
6 | // fix links when not adding a / at the end of the URI | ||
7 | var uri = window.location.pathname.substr(1); | ||
8 | if (uri.length > 0 && uri.substring(uri.length-1) != '/'){ | ||
9 | var indexes = document.getElementsByClassName('indexcolname'), | ||
10 | i = indexes.length; | ||
11 | while (i--){ | ||
12 | var a = indexes[i].getElementsByTagName('a')[0]; | ||
13 | a.href = '/' + uri + '/' + a.getAttribute('href',2); | ||
14 | } | ||
15 | } | ||
16 | |||
17 | function getAjax(url, success) { | ||
18 | var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP'); | ||
19 | xhr.open('GET', url); | ||
20 | xhr.onreadystatechange = function() { | ||
21 | if (xhr.readyState>3 && xhr.status==200) | ||
22 | success(xhr.responseText); | ||
23 | }; | ||
24 | xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest'); | ||
25 | xhr.send(); | ||
26 | return xhr; | ||
27 | } | ||
28 | getAjax("title", function(data) { | ||
29 | document.getElementById('pagetitle').innerHTML = data; | ||
30 | }); | ||
31 | </script> | ||
diff --git a/pkgs/webapps/apache-theme/theme/header.html b/pkgs/webapps/apache-theme/theme/header.html deleted file mode 100644 index cbded6a..0000000 --- a/pkgs/webapps/apache-theme/theme/header.html +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | <div class="wrapper"> | ||
2 | <h1 id="pagetitle"></h1> | ||
3 | <!-- we open the `wrapper` element here, but close it in the `footer.html` file --> | ||
diff --git a/pkgs/webapps/apache-theme/theme/icons/archive.png b/pkgs/webapps/apache-theme/theme/icons/archive.png deleted file mode 100644 index 99ae6fc..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/archive.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/audio.png b/pkgs/webapps/apache-theme/theme/icons/audio.png deleted file mode 100644 index a67618d..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/audio.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/authors.png b/pkgs/webapps/apache-theme/theme/icons/authors.png deleted file mode 100644 index 78bf784..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/authors.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/bin.png b/pkgs/webapps/apache-theme/theme/icons/bin.png deleted file mode 100644 index ec2220b..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/bin.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/blank.png b/pkgs/webapps/apache-theme/theme/icons/blank.png deleted file mode 100644 index bef1f60..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/blank.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/bmp.png b/pkgs/webapps/apache-theme/theme/icons/bmp.png deleted file mode 100644 index c6f3044..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/bmp.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/c.png b/pkgs/webapps/apache-theme/theme/icons/c.png deleted file mode 100644 index 12adaa3..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/c.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/calc.png b/pkgs/webapps/apache-theme/theme/icons/calc.png deleted file mode 100644 index a034367..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/calc.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/cd.png b/pkgs/webapps/apache-theme/theme/icons/cd.png deleted file mode 100644 index 3a3ffbb..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/cd.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/copying.png b/pkgs/webapps/apache-theme/theme/icons/copying.png deleted file mode 100644 index 83fa06e..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/copying.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/cpp.png b/pkgs/webapps/apache-theme/theme/icons/cpp.png deleted file mode 100644 index 47e8b1e..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/cpp.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/css.png b/pkgs/webapps/apache-theme/theme/icons/css.png deleted file mode 100644 index 15f7695..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/css.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/deb.png b/pkgs/webapps/apache-theme/theme/icons/deb.png deleted file mode 100644 index 1b12d29..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/deb.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/default.png b/pkgs/webapps/apache-theme/theme/icons/default.png deleted file mode 100644 index 6997229..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/default.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/diff.png b/pkgs/webapps/apache-theme/theme/icons/diff.png deleted file mode 100644 index 5bef920..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/diff.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/doc.png b/pkgs/webapps/apache-theme/theme/icons/doc.png deleted file mode 100644 index 5732f9b..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/doc.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/draw.png b/pkgs/webapps/apache-theme/theme/icons/draw.png deleted file mode 100644 index 8f1da5c..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/draw.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/eps.png b/pkgs/webapps/apache-theme/theme/icons/eps.png deleted file mode 100644 index 93736bb..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/eps.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/exe.png b/pkgs/webapps/apache-theme/theme/icons/exe.png deleted file mode 100644 index 31299b7..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/exe.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/folder-home.png b/pkgs/webapps/apache-theme/theme/icons/folder-home.png deleted file mode 100644 index 14fe20a..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/folder-home.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/folder-open.png b/pkgs/webapps/apache-theme/theme/icons/folder-open.png deleted file mode 100644 index 2aa5cc7..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/folder-open.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/folder-page.png b/pkgs/webapps/apache-theme/theme/icons/folder-page.png deleted file mode 100644 index 604f9ad..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/folder-page.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/folder-parent-old.png b/pkgs/webapps/apache-theme/theme/icons/folder-parent-old.png deleted file mode 100644 index b82d7a9..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/folder-parent-old.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/folder-parent.png b/pkgs/webapps/apache-theme/theme/icons/folder-parent.png deleted file mode 100644 index 3c964f1..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/folder-parent.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/folder.png b/pkgs/webapps/apache-theme/theme/icons/folder.png deleted file mode 100644 index 7c613e0..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/folder.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/gif.png b/pkgs/webapps/apache-theme/theme/icons/gif.png deleted file mode 100644 index 01a2f2a..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/gif.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/gzip.png b/pkgs/webapps/apache-theme/theme/icons/gzip.png deleted file mode 100644 index 99ae6fc..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/gzip.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/h.png b/pkgs/webapps/apache-theme/theme/icons/h.png deleted file mode 100644 index d3c7a9c..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/h.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/hpp.png b/pkgs/webapps/apache-theme/theme/icons/hpp.png deleted file mode 100644 index e5e52e2..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/hpp.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/html.png b/pkgs/webapps/apache-theme/theme/icons/html.png deleted file mode 100644 index 2f94a78..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/html.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/ico.png b/pkgs/webapps/apache-theme/theme/icons/ico.png deleted file mode 100644 index 82227e8..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/ico.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/image.png b/pkgs/webapps/apache-theme/theme/icons/image.png deleted file mode 100644 index add1c59..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/image.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/install.png b/pkgs/webapps/apache-theme/theme/icons/install.png deleted file mode 100644 index 0a9c036..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/install.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/java.png b/pkgs/webapps/apache-theme/theme/icons/java.png deleted file mode 100644 index 63b8683..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/java.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/jpg.png b/pkgs/webapps/apache-theme/theme/icons/jpg.png deleted file mode 100644 index a50c99b..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/jpg.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/js.png b/pkgs/webapps/apache-theme/theme/icons/js.png deleted file mode 100644 index af1a475..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/js.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/json.png b/pkgs/webapps/apache-theme/theme/icons/json.png deleted file mode 100644 index af1a475..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/json.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/log.png b/pkgs/webapps/apache-theme/theme/icons/log.png deleted file mode 100644 index 02f1b9a..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/log.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/makefile.png b/pkgs/webapps/apache-theme/theme/icons/makefile.png deleted file mode 100644 index f99ea4c..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/makefile.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/markdown.png b/pkgs/webapps/apache-theme/theme/icons/markdown.png deleted file mode 100644 index 25c8373..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/markdown.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/package.png b/pkgs/webapps/apache-theme/theme/icons/package.png deleted file mode 100644 index fb1343e..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/package.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/pdf.png b/pkgs/webapps/apache-theme/theme/icons/pdf.png deleted file mode 100644 index 7408d8d..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/pdf.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/php.png b/pkgs/webapps/apache-theme/theme/icons/php.png deleted file mode 100644 index 22c4df6..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/php.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/playlist.png b/pkgs/webapps/apache-theme/theme/icons/playlist.png deleted file mode 100644 index 8d6f281..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/playlist.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/png.png b/pkgs/webapps/apache-theme/theme/icons/png.png deleted file mode 100644 index 1fe1ec4..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/png.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/pres.png b/pkgs/webapps/apache-theme/theme/icons/pres.png deleted file mode 100644 index db195e9..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/pres.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/ps.png b/pkgs/webapps/apache-theme/theme/icons/ps.png deleted file mode 100644 index 05f3ed9..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/ps.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/psd.png b/pkgs/webapps/apache-theme/theme/icons/psd.png deleted file mode 100644 index 62718ee..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/psd.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/py.png b/pkgs/webapps/apache-theme/theme/icons/py.png deleted file mode 100644 index 0aaffd1..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/py.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/rar.png b/pkgs/webapps/apache-theme/theme/icons/rar.png deleted file mode 100644 index 8a0ff54..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/rar.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/rb.png b/pkgs/webapps/apache-theme/theme/icons/rb.png deleted file mode 100644 index c7db42f..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/rb.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/readme.png b/pkgs/webapps/apache-theme/theme/icons/readme.png deleted file mode 100644 index 3ae48cd..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/readme.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/rpm.png b/pkgs/webapps/apache-theme/theme/icons/rpm.png deleted file mode 100644 index 64699ac..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/rpm.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/rss.png b/pkgs/webapps/apache-theme/theme/icons/rss.png deleted file mode 100644 index a1130a1..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/rss.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/rtf.png b/pkgs/webapps/apache-theme/theme/icons/rtf.png deleted file mode 100644 index 25c8373..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/rtf.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/script.png b/pkgs/webapps/apache-theme/theme/icons/script.png deleted file mode 100644 index 1099b5f..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/script.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/source.png b/pkgs/webapps/apache-theme/theme/icons/source.png deleted file mode 100644 index 5bef920..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/source.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/sql.png b/pkgs/webapps/apache-theme/theme/icons/sql.png deleted file mode 100644 index b3b1467..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/sql.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/tar.png b/pkgs/webapps/apache-theme/theme/icons/tar.png deleted file mode 100644 index bab3b6a..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/tar.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/tex.png b/pkgs/webapps/apache-theme/theme/icons/tex.png deleted file mode 100644 index 1487b25..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/tex.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/text.png b/pkgs/webapps/apache-theme/theme/icons/text.png deleted file mode 100644 index 1d48677..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/text.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/tiff.png b/pkgs/webapps/apache-theme/theme/icons/tiff.png deleted file mode 100644 index 819e64c..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/tiff.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/unknown.png b/pkgs/webapps/apache-theme/theme/icons/unknown.png deleted file mode 100644 index b1dcc3f..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/unknown.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/vcal.png b/pkgs/webapps/apache-theme/theme/icons/vcal.png deleted file mode 100644 index 3d81455..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/vcal.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/video.png b/pkgs/webapps/apache-theme/theme/icons/video.png deleted file mode 100644 index f92f7e1..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/video.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/xml.png b/pkgs/webapps/apache-theme/theme/icons/xml.png deleted file mode 100644 index 83a83df..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/xml.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/icons/zip.png b/pkgs/webapps/apache-theme/theme/icons/zip.png deleted file mode 100644 index cc196c1..0000000 --- a/pkgs/webapps/apache-theme/theme/icons/zip.png +++ /dev/null | |||
Binary files differ | |||
diff --git a/pkgs/webapps/apache-theme/theme/style.css b/pkgs/webapps/apache-theme/theme/style.css deleted file mode 100644 index 4d25c9f..0000000 --- a/pkgs/webapps/apache-theme/theme/style.css +++ /dev/null | |||
@@ -1,160 +0,0 @@ | |||
1 | /*------------------------------------*\ | ||
2 | Apaxy | ||
3 | by @adamwhitcroft | ||
4 | |||
5 | Theme name: Apaxy | ||
6 | Theme author: @adamwhitcroft | ||
7 | \*------------------------------------*/ | ||
8 | @import url('//fonts.googleapis.com/css?family=Open+Sans'); | ||
9 | /* Have to use @import for the font, as you can only specify a single stylesheet */ | ||
10 | * { | ||
11 | margin:0; | ||
12 | padding:0; | ||
13 | -webkit-box-sizing:border-box; | ||
14 | -moz-box-sizing:border-box; | ||
15 | box-sizing: border-box; | ||
16 | } | ||
17 | |||
18 | html { | ||
19 | min-height:100%; | ||
20 | border-top:10px solid #ECEEF1; | ||
21 | border-bottom:10px solid #ECEEF1; | ||
22 | color:#61666c; | ||
23 | font-weight:400; | ||
24 | font-size:1em; | ||
25 | font-family:'Open Sans', sans-serif; | ||
26 | line-height:2em; | ||
27 | } | ||
28 | body { | ||
29 | padding:20px; | ||
30 | -webkit-backface-visibility:hidden; | ||
31 | } | ||
32 | code { | ||
33 | font-family:consolas,monospace; | ||
34 | } | ||
35 | a { | ||
36 | color:#61666c; | ||
37 | text-decoration:none; | ||
38 | } | ||
39 | a, img { | ||
40 | border:none; | ||
41 | outline:none | ||
42 | } | ||
43 | a:hover { | ||
44 | color:#2a2a2a; | ||
45 | } | ||
46 | /*------------------------------------*\ | ||
47 | Wrapper | ||
48 | \*------------------------------------*/ | ||
49 | .wrapper { | ||
50 | margin:0 auto; | ||
51 | padding-top:20px; | ||
52 | max-width:80%; | ||
53 | } | ||
54 | /*------------------------------------*\ | ||
55 | Demo block | ||
56 | \*------------------------------------*/ | ||
57 | .block { | ||
58 | font-size:.875em; | ||
59 | margin:20px 0; | ||
60 | padding:20px; | ||
61 | color:#9099A3; | ||
62 | } | ||
63 | /*------------------------------------*\ | ||
64 | Table (directory listing) | ||
65 | \*------------------------------------*/ | ||
66 | table { | ||
67 | width:100%; | ||
68 | border-collapse:collapse; | ||
69 | font-size:.875em; | ||
70 | } | ||
71 | tr { | ||
72 | outline:0; | ||
73 | border:0; | ||
74 | } | ||
75 | tr:hover td { | ||
76 | background:#f6f6f6; | ||
77 | } | ||
78 | th { | ||
79 | text-align:left; | ||
80 | font-size:.75em; | ||
81 | padding-right:20px; | ||
82 | } | ||
83 | /* 2nd Column: Filename */ | ||
84 | th + th { | ||
85 | width:65%; | ||
86 | } | ||
87 | /* 3rd Column: Last Modified */ | ||
88 | th + th + th { | ||
89 | } | ||
90 | /* 4th Column: Size */ | ||
91 | th + th + th + th { | ||
92 | width:5%; | ||
93 | } | ||
94 | tr td:first-of-type { | ||
95 | padding-left:10px; | ||
96 | padding-right:10px; | ||
97 | } | ||
98 | td { | ||
99 | padding:5px 0; | ||
100 | outline:0; | ||
101 | border:0; | ||
102 | border-bottom:1px solid #edf1f5; | ||
103 | vertical-align:middle; | ||
104 | text-align:left; | ||
105 | -webkit-transition:background 300ms ease; | ||
106 | -moz-transition:background 300ms ease; | ||
107 | -ms-transition:background 300ms ease; | ||
108 | -o-transition:background 300ms ease; | ||
109 | transition:background 300ms ease; | ||
110 | } | ||
111 | td a{ | ||
112 | display: block; | ||
113 | } | ||
114 | tr.parent a[href^="/"] { | ||
115 | color:#9099A3; | ||
116 | } | ||
117 | .parent a[href^="/"]:hover { | ||
118 | color:#2281d0; | ||
119 | } | ||
120 | /*------------------------------------*\ | ||
121 | Footer | ||
122 | \*------------------------------------*/ | ||
123 | .footer { | ||
124 | text-align:center; | ||
125 | font-size:.75em; | ||
126 | } | ||
127 | |||
128 | h1#pagetitle { | ||
129 | text-align: center; | ||
130 | } | ||
131 | tr.parent a[href="/"]{ | ||
132 | display: none; | ||
133 | } | ||
134 | |||
135 | tr.indexhead { | ||
136 | visibility: hidden; | ||
137 | } | ||
138 | |||
139 | th.indexcollastmod, td.indexcollastmod, th.indexcolsize, td.indexcolsize { | ||
140 | visibility: hidden; | ||
141 | } | ||
142 | |||
143 | .instructions a { | ||
144 | text-decoration: underline; | ||
145 | } | ||
146 | |||
147 | .instructions h2 { | ||
148 | margin-top: 10px; | ||
149 | } | ||
150 | .instructions em.important:before { | ||
151 | content: "⚠ Important ⚠ "; | ||
152 | color: red; | ||
153 | } | ||
154 | .instructions pre { | ||
155 | width: 50em; | ||
156 | padding: 10px 15px; | ||
157 | display: table; | ||
158 | border: 1px inset black; | ||
159 | line-height: 1em; | ||
160 | } | ||
diff --git a/pkgs/webapps/awl/default.nix b/pkgs/webapps/awl/default.nix deleted file mode 100644 index dc78339..0000000 --- a/pkgs/webapps/awl/default.nix +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | { stdenv, fetchurl }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "0.62"; | ||
4 | name = "awl-${version}"; | ||
5 | src = fetchurl { | ||
6 | url = "https://www.davical.org/downloads/awl_${version}.orig.tar.xz"; | ||
7 | sha256 = "0x9pr8sq3bicnvzsxfwdsqxnvfygn6gy5pawmm6i6fyb1p5h5izz"; | ||
8 | }; | ||
9 | unpackCmd = '' | ||
10 | tar --one-top-level -xf $curSrc | ||
11 | ''; | ||
12 | installPhase = '' | ||
13 | mkdir -p $out | ||
14 | cp -ra dba docs inc scripts tests $out | ||
15 | ''; | ||
16 | } | ||
diff --git a/pkgs/webapps/davical/default.nix b/pkgs/webapps/davical/default.nix deleted file mode 100644 index 045a93b..0000000 --- a/pkgs/webapps/davical/default.nix +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | { davical_config ? "/etc/davical/config.php", stdenv, fetchurl, gettext }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "1.1.10"; | ||
4 | name = "davical-${version}"; | ||
5 | src = fetchurl { | ||
6 | url = "https://www.davical.org/downloads/davical_${version}.orig.tar.xz"; | ||
7 | sha256 = "1d8zw558qrz2rybdv853ai04ar7v5a2dsypnffapx9ihgnrv4hq3"; | ||
8 | }; | ||
9 | unpackCmd = '' | ||
10 | tar --one-top-level -xf $curSrc | ||
11 | ''; | ||
12 | makeFlags = "all"; | ||
13 | patchPhase = '' | ||
14 | # https://gitlab.com/davical-project/davical/-/issues/229 | ||
15 | sed -i -e 's/"newpass1"/"newpass1", "password"/g' htdocs/always.php | ||
16 | ''; | ||
17 | installPhase = '' | ||
18 | mkdir -p $out | ||
19 | cp -ra config dba docs htdocs inc locale po scripts testing zonedb $out | ||
20 | ln -s ${davical_config} $out/config/config.php | ||
21 | ''; | ||
22 | buildInputs = [ gettext ]; | ||
23 | } | ||
diff --git a/pkgs/webapps/default.nix b/pkgs/webapps/default.nix deleted file mode 100644 index cbee0b3..0000000 --- a/pkgs/webapps/default.nix +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | { callPackage, mylibs, composerEnv }: | ||
2 | rec { | ||
3 | adminer = callPackage ./adminer {}; | ||
4 | apache-theme = callPackage ./apache-theme {}; | ||
5 | awl = callPackage ./awl {}; | ||
6 | davical = callPackage ./davical {}; | ||
7 | diaspora = callPackage ./diaspora { inherit mylibs; }; | ||
8 | dokuwiki = callPackage ./dokuwiki { inherit mylibs; }; | ||
9 | etherpad-lite = callPackage ./etherpad-lite {}; | ||
10 | grocy = callPackage ./grocy { inherit mylibs composerEnv; }; | ||
11 | infcloud = callPackage ./infcloud {}; | ||
12 | mantisbt_2 = callPackage ./mantisbt_2 {}; | ||
13 | mastodon = callPackage ./mastodon { inherit mylibs; }; | ||
14 | mediagoblin = callPackage ./mediagoblin { inherit mylibs; }; | ||
15 | nextcloud = callPackage ./nextcloud {}; | ||
16 | peertube = (mylibs.flakeCompat ../../flakes/peertube).default; | ||
17 | phpbb = callPackage ./phpbb {}; | ||
18 | phpldapadmin = callPackage ./phpldapadmin {}; | ||
19 | rompr = callPackage ./rompr { inherit mylibs; }; | ||
20 | roundcubemail = callPackage ./roundcubemail {}; | ||
21 | spip = callPackage ./spip {}; | ||
22 | surfer = callPackage ./surfer { inherit mylibs; }; | ||
23 | taskwarrior-web = callPackage ./taskwarrior-web { inherit mylibs; }; | ||
24 | ttrss = callPackage ./ttrss {}; | ||
25 | wallabag = callPackage ./wallabag { inherit composerEnv; }; | ||
26 | yourls = callPackage ./yourls { inherit mylibs; }; | ||
27 | } | ||
diff --git a/pkgs/webapps/diaspora/default.nix b/pkgs/webapps/diaspora/default.nix deleted file mode 100644 index b435347..0000000 --- a/pkgs/webapps/diaspora/default.nix +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | { ldap ? false, varDir ? "/var/lib/diaspora", podmin_email ? null, config_dir ? "/etc/diaspora", | ||
2 | mylibs, stdenv, bundlerEnv, writeText, | ||
3 | cacert, defaultGemConfig, perl, ruby_2_4, nodejs, which, git }: | ||
4 | let | ||
5 | diaspora_src = stdenv.mkDerivation (mylibs.fetchedGithub ./diaspora.json // rec { | ||
6 | buildPhase = '' | ||
7 | ${if ldap then "patch -p1 < ${./ldap.patch}" else ""} | ||
8 | # FIXME: bundlerEnv below doesn't take postgresql group for some | ||
9 | # reason | ||
10 | echo 'gem "pg", "1.1.3"' >> Gemfile | ||
11 | ''; | ||
12 | installPhase = '' | ||
13 | cp -a . $out | ||
14 | ''; | ||
15 | }); | ||
16 | gems = bundlerEnv { | ||
17 | name = "diaspora-env"; | ||
18 | gemfile = "${diaspora_src}/Gemfile"; | ||
19 | lockfile = "${diaspora_src}/Gemfile.lock"; | ||
20 | gemset = if ldap then ./gemset_ldap.nix else ./gemset.nix; | ||
21 | groups = [ "postgresql" "default" "production" ]; | ||
22 | gemConfig = defaultGemConfig // { | ||
23 | kostya-sigar = attrs: { | ||
24 | buildInputs = [ perl ]; | ||
25 | }; | ||
26 | }; | ||
27 | }; | ||
28 | build_config = writeText "diaspora.yml" '' | ||
29 | configuration: | ||
30 | environment: | ||
31 | certificate_authorities: '${cacert}/etc/ssl/certs/ca-bundle.crt' | ||
32 | ${if podmin_email != null then '' | ||
33 | # dummy comment for indentation | ||
34 | admins: | ||
35 | podmin_email: '${podmin_email}' | ||
36 | '' else ""} | ||
37 | production: | ||
38 | environment: | ||
39 | ''; | ||
40 | dummy_token = writeText "secret_token.rb" '' | ||
41 | Diaspora::Application.config.secret_key_base = 'dummy' | ||
42 | ''; | ||
43 | in | ||
44 | stdenv.mkDerivation { | ||
45 | name = "diaspora"; | ||
46 | inherit diaspora_src; | ||
47 | builder = writeText "build_diaspora" '' | ||
48 | source $stdenv/setup | ||
49 | cp -a $diaspora_src $out | ||
50 | cd $out | ||
51 | chmod -R u+rwX . | ||
52 | tar -czf public/source.tar.gz ./{app,db,lib,script,Gemfile,Gemfile.lock,Rakefile,config.ru} | ||
53 | ln -s database.yml.example config/database.yml | ||
54 | ln -s ${build_config} config/diaspora.yml | ||
55 | ln -s ${dummy_token} config/initializers/secret_token.rb | ||
56 | ln -sf ${varDir}/schedule.yml config/schedule.yml | ||
57 | ln -sf ${varDir}/oidc_key.pem config/oidc_key.pem | ||
58 | ln -sf ${varDir}/uploads public/uploads | ||
59 | RAILS_ENV=production ${gems}/bin/rake assets:precompile | ||
60 | ln -sf ${config_dir}/database.yml config/database.yml | ||
61 | ln -sf ${config_dir}/diaspora.yml config/diaspora.yml | ||
62 | ln -sf ${config_dir}/secret_token.rb config/initializers/secret_token.rb | ||
63 | rm -rf tmp log | ||
64 | ln -sf ${varDir}/tmp tmp | ||
65 | ln -sf ${varDir}/log log | ||
66 | ''; | ||
67 | propagatedBuildInputs = [ gems nodejs which git ]; | ||
68 | passthru = { inherit gems varDir; }; | ||
69 | } | ||
diff --git a/pkgs/webapps/diaspora/diaspora.json b/pkgs/webapps/diaspora/diaspora.json deleted file mode 100644 index e6795aa..0000000 --- a/pkgs/webapps/diaspora/diaspora.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "v0.7.10.0", | ||
3 | "meta": { | ||
4 | "name": "diaspora", | ||
5 | "url": "https://github.com/diaspora/diaspora", | ||
6 | "branch": "refs/tags/v0.7.10.0" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "diaspora", | ||
10 | "repo": "diaspora", | ||
11 | "rev": "f0085cf5bb1c45bdfba866f628153d299e56eca8", | ||
12 | "sha256": "02mnb40rdkk6jlnvpy61fad59gbpgnlwz1k35w4wfqdwzq0znaqp", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/diaspora/gemset.nix b/pkgs/webapps/diaspora/gemset.nix deleted file mode 100644 index e47f5b7..0000000 --- a/pkgs/webapps/diaspora/gemset.nix +++ /dev/null | |||
@@ -1,3047 +0,0 @@ | |||
1 | { | ||
2 | actioncable = { | ||
3 | dependencies = ["actionpack" "nio4r" "websocket-driver"]; | ||
4 | platforms = []; | ||
5 | source = { | ||
6 | remotes = ["https://rubygems.org"]; | ||
7 | sha256 = "07r6hnh05db84yr9419mbhyzp20hr8yy9m50jxc2w91ghm2qnrrf"; | ||
8 | type = "gem"; | ||
9 | }; | ||
10 | version = "5.1.6"; | ||
11 | }; | ||
12 | actionmailer = { | ||
13 | dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; | ||
14 | platforms = []; | ||
15 | source = { | ||
16 | remotes = ["https://rubygems.org"]; | ||
17 | sha256 = "1s9xcqfx97q4yva2zc4qzb567mwzhry6v3x3zc318aqhcrz31g7c"; | ||
18 | type = "gem"; | ||
19 | }; | ||
20 | version = "5.1.6"; | ||
21 | }; | ||
22 | actionpack = { | ||
23 | dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; | ||
24 | platforms = []; | ||
25 | source = { | ||
26 | remotes = ["https://rubygems.org"]; | ||
27 | sha256 = "0vz2ms80nqw21c304g3w2vkbs80gadzhi3mcwwym7smxccr37kcd"; | ||
28 | type = "gem"; | ||
29 | }; | ||
30 | version = "5.1.6"; | ||
31 | }; | ||
32 | actionview = { | ||
33 | dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; | ||
34 | platforms = []; | ||
35 | source = { | ||
36 | remotes = ["https://rubygems.org"]; | ||
37 | sha256 = "1kfxlz9v7b47pdyy1whb4zzhvaj8h4sp1ajhbih2ax1hkldyg081"; | ||
38 | type = "gem"; | ||
39 | }; | ||
40 | version = "5.1.6"; | ||
41 | }; | ||
42 | active_model_serializers = { | ||
43 | dependencies = ["activemodel" "concurrent-ruby"]; | ||
44 | platforms = []; | ||
45 | source = { | ||
46 | remotes = ["https://rubygems.org"]; | ||
47 | sha256 = "19zr5pp84q4ya7mfrcanakjv86lv4wfmbcbbd2xnd4bkyprw5w7z"; | ||
48 | type = "gem"; | ||
49 | }; | ||
50 | version = "0.9.7"; | ||
51 | }; | ||
52 | activejob = { | ||
53 | dependencies = ["activesupport" "globalid"]; | ||
54 | platforms = []; | ||
55 | source = { | ||
56 | remotes = ["https://rubygems.org"]; | ||
57 | sha256 = "02lssq8ps98mfg20dyhcpd16f9c0v4zzy7gfbb6ksbs06wrrd4d2"; | ||
58 | type = "gem"; | ||
59 | }; | ||
60 | version = "5.1.6"; | ||
61 | }; | ||
62 | activemodel = { | ||
63 | dependencies = ["activesupport"]; | ||
64 | platforms = []; | ||
65 | source = { | ||
66 | remotes = ["https://rubygems.org"]; | ||
67 | sha256 = "10f8cpv4sl1w3m1qj8hl6sd2f1n7x91h45qaf57qr894ll22jgby"; | ||
68 | type = "gem"; | ||
69 | }; | ||
70 | version = "5.1.6"; | ||
71 | }; | ||
72 | activerecord = { | ||
73 | dependencies = ["activemodel" "activesupport" "arel"]; | ||
74 | platforms = []; | ||
75 | source = { | ||
76 | remotes = ["https://rubygems.org"]; | ||
77 | sha256 = "1iqkvxzx5bfp8rmlccww0cj1xr6iaxmn3hhbj1dv5j9c8mnm980x"; | ||
78 | type = "gem"; | ||
79 | }; | ||
80 | version = "5.1.6"; | ||
81 | }; | ||
82 | activerecord-import = { | ||
83 | dependencies = ["activerecord"]; | ||
84 | platforms = []; | ||
85 | source = { | ||
86 | remotes = ["https://rubygems.org"]; | ||
87 | sha256 = "1bxpbrcwc9k6khizwdikvfbhw9pcvs4sp3h4grpcww5k7bgpliz6"; | ||
88 | type = "gem"; | ||
89 | }; | ||
90 | version = "0.27.0"; | ||
91 | }; | ||
92 | activesupport = { | ||
93 | dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; | ||
94 | platforms = []; | ||
95 | source = { | ||
96 | remotes = ["https://rubygems.org"]; | ||
97 | sha256 = "08dm0mgmj31ggk7ib66wfagj4bgbr2jfl500bqb22x0szslz5lll"; | ||
98 | type = "gem"; | ||
99 | }; | ||
100 | version = "5.1.6"; | ||
101 | }; | ||
102 | acts-as-taggable-on = { | ||
103 | dependencies = ["activerecord"]; | ||
104 | platforms = []; | ||
105 | source = { | ||
106 | remotes = ["https://rubygems.org"]; | ||
107 | sha256 = "0hl52pjgfzy3acdwnbxfqy08m808vlv9dmsyp03d5x7x0y499kvl"; | ||
108 | type = "gem"; | ||
109 | }; | ||
110 | version = "6.0.0"; | ||
111 | }; | ||
112 | acts_as_api = { | ||
113 | dependencies = ["activemodel" "activesupport" "rack"]; | ||
114 | platforms = []; | ||
115 | source = { | ||
116 | remotes = ["https://rubygems.org"]; | ||
117 | sha256 = "06miad13nnfr2gslc203ahsbvj499s9lngxxvfizwp964vglygsc"; | ||
118 | type = "gem"; | ||
119 | }; | ||
120 | version = "1.0.1"; | ||
121 | }; | ||
122 | addressable = { | ||
123 | dependencies = ["public_suffix"]; | ||
124 | platforms = []; | ||
125 | source = { | ||
126 | remotes = ["https://rubygems.org"]; | ||
127 | sha256 = "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk"; | ||
128 | type = "gem"; | ||
129 | }; | ||
130 | version = "2.5.2"; | ||
131 | }; | ||
132 | aes_key_wrap = { | ||
133 | platforms = []; | ||
134 | source = { | ||
135 | remotes = ["https://rubygems.org"]; | ||
136 | sha256 = "0li86k0g812jkzrppb2fvqngvzp09nygywjpn81nx90s01wxqw07"; | ||
137 | type = "gem"; | ||
138 | }; | ||
139 | version = "1.0.1"; | ||
140 | }; | ||
141 | arel = { | ||
142 | platforms = []; | ||
143 | source = { | ||
144 | remotes = ["https://rubygems.org"]; | ||
145 | sha256 = "0nw0qbc6ph625p6n3maqq9f527vz3nbl0hk72fbyka8jzsmplxzl"; | ||
146 | type = "gem"; | ||
147 | }; | ||
148 | version = "8.0.0"; | ||
149 | }; | ||
150 | asset_sync = { | ||
151 | dependencies = ["activemodel" "fog-core" "mime-types" "unf"]; | ||
152 | platforms = []; | ||
153 | source = { | ||
154 | remotes = ["https://rubygems.org"]; | ||
155 | sha256 = "0mfz51g8rzk5h5fpdhfkycnm7y4dpfhx46wm7fygna7nd4w9ixdx"; | ||
156 | type = "gem"; | ||
157 | }; | ||
158 | version = "2.5.0"; | ||
159 | }; | ||
160 | ast = { | ||
161 | platforms = []; | ||
162 | source = { | ||
163 | remotes = ["https://rubygems.org"]; | ||
164 | sha256 = "184ssy3w93nkajlz2c70ifm79jp3j737294kbc5fjw69v1w0n9x7"; | ||
165 | type = "gem"; | ||
166 | }; | ||
167 | version = "2.4.0"; | ||
168 | }; | ||
169 | attr_required = { | ||
170 | platforms = []; | ||
171 | source = { | ||
172 | remotes = ["https://rubygems.org"]; | ||
173 | sha256 = "1g22axmi2rhhy7w8c3x6gppsawxqavbrnxpnmphh22fk7cwi0kh2"; | ||
174 | type = "gem"; | ||
175 | }; | ||
176 | version = "1.0.1"; | ||
177 | }; | ||
178 | autoprefixer-rails = { | ||
179 | dependencies = ["execjs"]; | ||
180 | platforms = []; | ||
181 | source = { | ||
182 | remotes = ["https://rubygems.org"]; | ||
183 | sha256 = "08irrl1mz6skagr1lygq79l34lc0dghgva0v9q7nng76dpiglgj3"; | ||
184 | type = "gem"; | ||
185 | }; | ||
186 | version = "8.6.5"; | ||
187 | }; | ||
188 | backports = { | ||
189 | platforms = []; | ||
190 | source = { | ||
191 | remotes = ["https://rubygems.org"]; | ||
192 | sha256 = "1hshjxww2h7s0dk57njrygq4zpp0nlqrjfya7zwm27iq3rhc3y8g"; | ||
193 | type = "gem"; | ||
194 | }; | ||
195 | version = "3.11.4"; | ||
196 | }; | ||
197 | bcrypt = { | ||
198 | platforms = []; | ||
199 | source = { | ||
200 | remotes = ["https://rubygems.org"]; | ||
201 | sha256 = "0ysblqxkclmnhrd0kmb5mr8p38mbar633gdsb14b7dhkhgawgzfy"; | ||
202 | type = "gem"; | ||
203 | }; | ||
204 | version = "3.1.12"; | ||
205 | }; | ||
206 | bindata = { | ||
207 | platforms = []; | ||
208 | source = { | ||
209 | remotes = ["https://rubygems.org"]; | ||
210 | sha256 = "0kz42nvxnk1j9cj0i8lcnhprcgdqsqska92g6l19ziadydfk2gqy"; | ||
211 | type = "gem"; | ||
212 | }; | ||
213 | version = "2.4.4"; | ||
214 | }; | ||
215 | bootstrap-sass = { | ||
216 | dependencies = ["autoprefixer-rails" "sass"]; | ||
217 | platforms = []; | ||
218 | source = { | ||
219 | remotes = ["https://rubygems.org"]; | ||
220 | sha256 = "1bc9bf6caddqn1rv15b5x56yczmbjzaxzl9lk5zbwrg1bfph4bx9"; | ||
221 | type = "gem"; | ||
222 | }; | ||
223 | version = "3.3.7"; | ||
224 | }; | ||
225 | bootstrap-switch-rails = { | ||
226 | groups = ["default"]; | ||
227 | platforms = []; | ||
228 | source = { | ||
229 | remotes = ["https://rubygems.org"]; | ||
230 | sha256 = "1zkwc1hfmihnm0n9lkva5zk0cmqpfcpnrwnmaniyvgx7rac2r14l"; | ||
231 | type = "gem"; | ||
232 | }; | ||
233 | version = "3.3.3"; | ||
234 | }; | ||
235 | buftok = { | ||
236 | platforms = []; | ||
237 | source = { | ||
238 | remotes = ["https://rubygems.org"]; | ||
239 | sha256 = "1rzsy1vy50v55x9z0nivf23y0r9jkmq6i130xa75pq9i8qrn1mxs"; | ||
240 | type = "gem"; | ||
241 | }; | ||
242 | version = "0.2.0"; | ||
243 | }; | ||
244 | builder = { | ||
245 | platforms = []; | ||
246 | source = { | ||
247 | remotes = ["https://rubygems.org"]; | ||
248 | sha256 = "0qibi5s67lpdv1wgcj66wcymcr04q6j4mzws6a479n0mlrmh5wr1"; | ||
249 | type = "gem"; | ||
250 | }; | ||
251 | version = "3.2.3"; | ||
252 | }; | ||
253 | byebug = { | ||
254 | platforms = []; | ||
255 | source = { | ||
256 | remotes = ["https://rubygems.org"]; | ||
257 | sha256 = "10znc1hjv8n686hhpl08f3m2g6h08a4b83nxblqwy2kqamkxcqf8"; | ||
258 | type = "gem"; | ||
259 | }; | ||
260 | version = "10.0.2"; | ||
261 | }; | ||
262 | capybara = { | ||
263 | dependencies = ["addressable" "mini_mime" "nokogiri" "rack" "rack-test" "regexp_parser" "xpath"]; | ||
264 | platforms = []; | ||
265 | source = { | ||
266 | remotes = ["https://rubygems.org"]; | ||
267 | sha256 = "10zj8syak12xd1kqywr35bkr2hkdjq18kij54x1ys8c26h6j4d0m"; | ||
268 | type = "gem"; | ||
269 | }; | ||
270 | version = "3.11.1"; | ||
271 | }; | ||
272 | carrierwave = { | ||
273 | dependencies = ["activemodel" "activesupport" "mime-types"]; | ||
274 | platforms = []; | ||
275 | source = { | ||
276 | remotes = ["https://rubygems.org"]; | ||
277 | sha256 = "1k9kla5ncygm97vn33lsrs7ch5zy4qqhhvc8m3khm986yaqh75qs"; | ||
278 | type = "gem"; | ||
279 | }; | ||
280 | version = "1.2.3"; | ||
281 | }; | ||
282 | celluloid = { | ||
283 | dependencies = ["celluloid-essentials" "celluloid-extras" "celluloid-fsm" "celluloid-pool" "celluloid-supervision" "timers"]; | ||
284 | platforms = []; | ||
285 | source = { | ||
286 | remotes = ["https://rubygems.org"]; | ||
287 | sha256 = "10i29q7kkdlrhf5rg43xygdfm795a02vp28k2ca3nklmqna57qmg"; | ||
288 | type = "gem"; | ||
289 | }; | ||
290 | version = "0.17.3"; | ||
291 | }; | ||
292 | celluloid-essentials = { | ||
293 | dependencies = ["timers"]; | ||
294 | platforms = []; | ||
295 | source = { | ||
296 | remotes = ["https://rubygems.org"]; | ||
297 | sha256 = "1l4p3p73wjdj07ww124q0db5k1cyzggbndzmcb12xbsf2dnj121k"; | ||
298 | type = "gem"; | ||
299 | }; | ||
300 | version = "0.20.5"; | ||
301 | }; | ||
302 | celluloid-extras = { | ||
303 | dependencies = ["timers"]; | ||
304 | platforms = []; | ||
305 | source = { | ||
306 | remotes = ["https://rubygems.org"]; | ||
307 | sha256 = "078agvnsfp78jv343kn5g1cz50147dk0q46blwh5r8lk6whag7ng"; | ||
308 | type = "gem"; | ||
309 | }; | ||
310 | version = "0.20.5"; | ||
311 | }; | ||
312 | celluloid-fsm = { | ||
313 | dependencies = ["timers"]; | ||
314 | platforms = []; | ||
315 | source = { | ||
316 | remotes = ["https://rubygems.org"]; | ||
317 | sha256 = "1pmpi6h4abpkczp46rd6llk1mldpx19i9hll8mkxp3kxin9slivc"; | ||
318 | type = "gem"; | ||
319 | }; | ||
320 | version = "0.20.5"; | ||
321 | }; | ||
322 | celluloid-io = { | ||
323 | dependencies = ["celluloid" "nio4r" "timers"]; | ||
324 | platforms = []; | ||
325 | source = { | ||
326 | remotes = ["https://rubygems.org"]; | ||
327 | sha256 = "1frcpja7h9vcxsw7w7ff550x54rfx514fpv2n6kawbk1j4zrm314"; | ||
328 | type = "gem"; | ||
329 | }; | ||
330 | version = "0.17.3"; | ||
331 | }; | ||
332 | celluloid-pool = { | ||
333 | dependencies = ["timers"]; | ||
334 | platforms = []; | ||
335 | source = { | ||
336 | remotes = ["https://rubygems.org"]; | ||
337 | sha256 = "1bfr54ijl95bnhqlabhf5p4ff9n0y2sslc91f49jjn33n2zm755c"; | ||
338 | type = "gem"; | ||
339 | }; | ||
340 | version = "0.20.5"; | ||
341 | }; | ||
342 | celluloid-supervision = { | ||
343 | dependencies = ["timers"]; | ||
344 | platforms = []; | ||
345 | source = { | ||
346 | remotes = ["https://rubygems.org"]; | ||
347 | sha256 = "1b41gg1rsmms0m5mshy6h66y5rydl3nv6x9wf050ixfa1s2c8vzw"; | ||
348 | type = "gem"; | ||
349 | }; | ||
350 | version = "0.20.6"; | ||
351 | }; | ||
352 | chunky_png = { | ||
353 | platforms = []; | ||
354 | source = { | ||
355 | remotes = ["https://rubygems.org"]; | ||
356 | sha256 = "05g2xli9wbjylkmblln3bhvjalziwb92q452q8ibjagmb853424w"; | ||
357 | type = "gem"; | ||
358 | }; | ||
359 | version = "1.3.10"; | ||
360 | }; | ||
361 | cliver = { | ||
362 | platforms = []; | ||
363 | source = { | ||
364 | remotes = ["https://rubygems.org"]; | ||
365 | sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; | ||
366 | type = "gem"; | ||
367 | }; | ||
368 | version = "0.3.2"; | ||
369 | }; | ||
370 | coderay = { | ||
371 | platforms = []; | ||
372 | source = { | ||
373 | remotes = ["https://rubygems.org"]; | ||
374 | sha256 = "15vav4bhcc2x3jmi3izb11l4d9f3xv8hp2fszb7iqmpsccv1pz4y"; | ||
375 | type = "gem"; | ||
376 | }; | ||
377 | version = "1.1.2"; | ||
378 | }; | ||
379 | compass = { | ||
380 | dependencies = ["chunky_png" "compass-core" "compass-import-once" "rb-fsevent" "rb-inotify" "sass"]; | ||
381 | platforms = []; | ||
382 | source = { | ||
383 | remotes = ["https://rubygems.org"]; | ||
384 | sha256 = "0lfi83w8z75czr0pf0rmj9hda22082h3cmvczl8r1ma9agf88y2c"; | ||
385 | type = "gem"; | ||
386 | }; | ||
387 | version = "1.0.3"; | ||
388 | }; | ||
389 | compass-core = { | ||
390 | dependencies = ["multi_json" "sass"]; | ||
391 | platforms = []; | ||
392 | source = { | ||
393 | remotes = ["https://rubygems.org"]; | ||
394 | sha256 = "0yaspqwdmzwdcqviclbs3blq7an16pysrfzylz8q1gxmmd6bpj3a"; | ||
395 | type = "gem"; | ||
396 | }; | ||
397 | version = "1.0.3"; | ||
398 | }; | ||
399 | compass-import-once = { | ||
400 | dependencies = ["sass"]; | ||
401 | platforms = []; | ||
402 | source = { | ||
403 | remotes = ["https://rubygems.org"]; | ||
404 | sha256 = "0bn7gwbfz7jvvdd0qdfqlx67fcb83gyvxqc7dr9fhcnks3z8z5rq"; | ||
405 | type = "gem"; | ||
406 | }; | ||
407 | version = "1.0.5"; | ||
408 | }; | ||
409 | compass-rails = { | ||
410 | dependencies = ["compass" "sass-rails" "sprockets"]; | ||
411 | platforms = []; | ||
412 | source = { | ||
413 | remotes = ["https://rubygems.org"]; | ||
414 | sha256 = "02ydlbl1qb80myjv5xrpwzhmmj6qd80jf5izvpqhq2bikv84j9wr"; | ||
415 | type = "gem"; | ||
416 | }; | ||
417 | version = "3.1.0"; | ||
418 | }; | ||
419 | concurrent-ruby = { | ||
420 | platforms = []; | ||
421 | source = { | ||
422 | remotes = ["https://rubygems.org"]; | ||
423 | sha256 = "18q9skp5pfq4jwbxzmw8q2rn4cpw6mf4561i2hsjcl1nxdag2jvb"; | ||
424 | type = "gem"; | ||
425 | }; | ||
426 | version = "1.1.3"; | ||
427 | }; | ||
428 | configurate = { | ||
429 | platforms = []; | ||
430 | source = { | ||
431 | remotes = ["https://rubygems.org"]; | ||
432 | sha256 = "1m6cppb4jf7liwc3f5dvgn2v2nhp2jq8ixb9papaqz24f4s8dnd1"; | ||
433 | type = "gem"; | ||
434 | }; | ||
435 | version = "0.3.1"; | ||
436 | }; | ||
437 | connection_pool = { | ||
438 | platforms = []; | ||
439 | source = { | ||
440 | remotes = ["https://rubygems.org"]; | ||
441 | sha256 = "0lflx29mlznf1hn0nihkgllzbj8xp5qasn8j7h838465pi399k68"; | ||
442 | type = "gem"; | ||
443 | }; | ||
444 | version = "2.2.2"; | ||
445 | }; | ||
446 | coveralls = { | ||
447 | dependencies = ["json" "simplecov" "term-ansicolor" "thor" "tins"]; | ||
448 | platforms = []; | ||
449 | source = { | ||
450 | remotes = ["https://rubygems.org"]; | ||
451 | sha256 = "022kc16np6w4mv17hq3m9hhw9l8hjl78ld3fzqqx6337vwvwvwcg"; | ||
452 | type = "gem"; | ||
453 | }; | ||
454 | version = "0.8.22"; | ||
455 | }; | ||
456 | crack = { | ||
457 | dependencies = ["safe_yaml"]; | ||
458 | platforms = []; | ||
459 | source = { | ||
460 | remotes = ["https://rubygems.org"]; | ||
461 | sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k"; | ||
462 | type = "gem"; | ||
463 | }; | ||
464 | version = "0.4.3"; | ||
465 | }; | ||
466 | crass = { | ||
467 | platforms = []; | ||
468 | source = { | ||
469 | remotes = ["https://rubygems.org"]; | ||
470 | sha256 = "0bpxzy6gjw9ggjynlxschbfsgmx8lv3zw1azkjvnb8b9i895dqfi"; | ||
471 | type = "gem"; | ||
472 | }; | ||
473 | version = "1.0.4"; | ||
474 | }; | ||
475 | cucumber = { | ||
476 | dependencies = ["builder" "cucumber-core" "cucumber-expressions" "cucumber-wire" "diff-lcs" "gherkin" "multi_json" "multi_test"]; | ||
477 | platforms = []; | ||
478 | source = { | ||
479 | remotes = ["https://rubygems.org"]; | ||
480 | sha256 = "1s2brssrpal8hyhcgg974x3xyhpmvpwps5ypd9p8w2lg01l1pp3j"; | ||
481 | type = "gem"; | ||
482 | }; | ||
483 | version = "3.1.2"; | ||
484 | }; | ||
485 | cucumber-api-steps = { | ||
486 | dependencies = ["cucumber" "jsonpath"]; | ||
487 | platforms = []; | ||
488 | source = { | ||
489 | remotes = ["https://rubygems.org"]; | ||
490 | sha256 = "0fij6bgzshda68jp7kac0hs5n6xsmv49g8ynqhy6s3znc9d4qjbw"; | ||
491 | type = "gem"; | ||
492 | }; | ||
493 | version = "0.14.0"; | ||
494 | }; | ||
495 | cucumber-core = { | ||
496 | dependencies = ["backports" "cucumber-tag_expressions" "gherkin"]; | ||
497 | platforms = []; | ||
498 | source = { | ||
499 | remotes = ["https://rubygems.org"]; | ||
500 | sha256 = "1iavlh8hqj9lwljbpkw06259gdicbr1bdb6pbj5yy3n8szgr8k3c"; | ||
501 | type = "gem"; | ||
502 | }; | ||
503 | version = "3.2.1"; | ||
504 | }; | ||
505 | cucumber-expressions = { | ||
506 | platforms = []; | ||
507 | source = { | ||
508 | remotes = ["https://rubygems.org"]; | ||
509 | sha256 = "0zwmv6hznyz9vk81f5dhwcr9jhxx2vmbk8yyazayvllvhy0fkpdw"; | ||
510 | type = "gem"; | ||
511 | }; | ||
512 | version = "6.0.1"; | ||
513 | }; | ||
514 | cucumber-rails = { | ||
515 | dependencies = ["capybara" "cucumber" "mime-types" "nokogiri" "railties"]; | ||
516 | platforms = []; | ||
517 | source = { | ||
518 | remotes = ["https://rubygems.org"]; | ||
519 | sha256 = "0pmlza6r2601k1i7v3z8gj4apdcq6qa830bzwkj1pnfjzn4z12n7"; | ||
520 | type = "gem"; | ||
521 | }; | ||
522 | version = "1.6.0"; | ||
523 | }; | ||
524 | cucumber-tag_expressions = { | ||
525 | platforms = []; | ||
526 | source = { | ||
527 | remotes = ["https://rubygems.org"]; | ||
528 | sha256 = "0cvmbljybws0qzjs1l67fvr9gqr005l8jk1ni5gcsis9pfmqh3vc"; | ||
529 | type = "gem"; | ||
530 | }; | ||
531 | version = "1.1.1"; | ||
532 | }; | ||
533 | cucumber-wire = { | ||
534 | platforms = []; | ||
535 | source = { | ||
536 | remotes = ["https://rubygems.org"]; | ||
537 | sha256 = "09ymvqb0sbw2if1nxg8rcj33sf0va88ancq5nmp8g01dfwzwma2f"; | ||
538 | type = "gem"; | ||
539 | }; | ||
540 | version = "0.0.1"; | ||
541 | }; | ||
542 | database_cleaner = { | ||
543 | platforms = []; | ||
544 | source = { | ||
545 | remotes = ["https://rubygems.org"]; | ||
546 | sha256 = "05i0nf2aj70m61y3fspypdkc6d1qgibf5kav05a71b5gjz0k7y5x"; | ||
547 | type = "gem"; | ||
548 | }; | ||
549 | version = "1.7.0"; | ||
550 | }; | ||
551 | devise = { | ||
552 | dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "warden"]; | ||
553 | platforms = []; | ||
554 | source = { | ||
555 | remotes = ["https://rubygems.org"]; | ||
556 | sha256 = "1vs8nibl568ghm6a7hbw6xgcv8zbm4gykprcxpnzi7bz5d4gvcjx"; | ||
557 | type = "gem"; | ||
558 | }; | ||
559 | version = "4.5.0"; | ||
560 | }; | ||
561 | devise_lastseenable = { | ||
562 | dependencies = ["devise" "rails"]; | ||
563 | platforms = []; | ||
564 | source = { | ||
565 | remotes = ["https://rubygems.org"]; | ||
566 | sha256 = "1h83h73qjh8fc7lmr089shky8lc3wm4xn653rjdbb0cddflvrx8y"; | ||
567 | type = "gem"; | ||
568 | }; | ||
569 | version = "0.0.6"; | ||
570 | }; | ||
571 | diaspora-prosody-config = { | ||
572 | platforms = []; | ||
573 | source = { | ||
574 | remotes = ["https://rubygems.org"]; | ||
575 | sha256 = "1976ijqjf5jcq1jwr6vi0srjadhbqfa9y3nxyipzcv91pzskl2lp"; | ||
576 | type = "gem"; | ||
577 | }; | ||
578 | version = "0.0.7"; | ||
579 | }; | ||
580 | diaspora_federation = { | ||
581 | dependencies = ["faraday" "faraday_middleware" "nokogiri" "typhoeus" "valid"]; | ||
582 | platforms = []; | ||
583 | source = { | ||
584 | remotes = ["https://rubygems.org"]; | ||
585 | sha256 = "1xxy6ahlhgyr00qkfmmq0h3nqm6gjkr9i6hsqr0nkb3l6qg0m0yc"; | ||
586 | type = "gem"; | ||
587 | }; | ||
588 | version = "0.2.5"; | ||
589 | }; | ||
590 | diaspora_federation-json_schema = { | ||
591 | platforms = []; | ||
592 | source = { | ||
593 | remotes = ["https://rubygems.org"]; | ||
594 | sha256 = "0hfv4cq5wfdg86xmbp5y0h50b11326ymzks1yr9dvr4wa7di00hr"; | ||
595 | type = "gem"; | ||
596 | }; | ||
597 | version = "0.2.5"; | ||
598 | }; | ||
599 | diaspora_federation-rails = { | ||
600 | dependencies = ["actionpack" "diaspora_federation"]; | ||
601 | platforms = []; | ||
602 | source = { | ||
603 | remotes = ["https://rubygems.org"]; | ||
604 | sha256 = "1wrni7d9084v3pqd3sq8j532wx5ym6kmd959bw29bzwxc3zidd9h"; | ||
605 | type = "gem"; | ||
606 | }; | ||
607 | version = "0.2.5"; | ||
608 | }; | ||
609 | diaspora_federation-test = { | ||
610 | dependencies = ["diaspora_federation" "fabrication" "uuid"]; | ||
611 | platforms = []; | ||
612 | source = { | ||
613 | remotes = ["https://rubygems.org"]; | ||
614 | sha256 = "1b09y78pyl9kix8slbybnks2cbq0ac9wml31j2s6qwjixranjsm4"; | ||
615 | type = "gem"; | ||
616 | }; | ||
617 | version = "0.2.5"; | ||
618 | }; | ||
619 | diff-lcs = { | ||
620 | platforms = []; | ||
621 | source = { | ||
622 | remotes = ["https://rubygems.org"]; | ||
623 | sha256 = "18w22bjz424gzafv6nzv98h0aqkwz3d9xhm7cbr1wfbyas8zayza"; | ||
624 | type = "gem"; | ||
625 | }; | ||
626 | version = "1.3"; | ||
627 | }; | ||
628 | docile = { | ||
629 | platforms = []; | ||
630 | source = { | ||
631 | remotes = ["https://rubygems.org"]; | ||
632 | sha256 = "04d2izkna3ahfn6fwq4xrcafa715d3bbqczxm16fq40fqy87xn17"; | ||
633 | type = "gem"; | ||
634 | }; | ||
635 | version = "1.3.1"; | ||
636 | }; | ||
637 | domain_name = { | ||
638 | dependencies = ["unf"]; | ||
639 | platforms = []; | ||
640 | source = { | ||
641 | remotes = ["https://rubygems.org"]; | ||
642 | sha256 = "0abdlwb64ns7ssmiqhdwgl27ly40x2l27l8hs8hn0z4kb3zd2x3v"; | ||
643 | type = "gem"; | ||
644 | }; | ||
645 | version = "0.5.20180417"; | ||
646 | }; | ||
647 | entypo-rails = { | ||
648 | dependencies = ["railties"]; | ||
649 | platforms = []; | ||
650 | source = { | ||
651 | remotes = ["https://rubygems.org"]; | ||
652 | sha256 = "124x0jszg6n0k2lcacd627ndlp1fv7cbgnv4scwy5s3czp0qwip6"; | ||
653 | type = "gem"; | ||
654 | }; | ||
655 | version = "3.0.0"; | ||
656 | }; | ||
657 | equalizer = { | ||
658 | platforms = []; | ||
659 | source = { | ||
660 | remotes = ["https://rubygems.org"]; | ||
661 | sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; | ||
662 | type = "gem"; | ||
663 | }; | ||
664 | version = "0.0.11"; | ||
665 | }; | ||
666 | erubi = { | ||
667 | platforms = []; | ||
668 | source = { | ||
669 | remotes = ["https://rubygems.org"]; | ||
670 | sha256 = "0bws86na9k565raiz0kk61yy5pxxp0fmwyzpibdwjkq0xzx8q6q1"; | ||
671 | type = "gem"; | ||
672 | }; | ||
673 | version = "1.7.1"; | ||
674 | }; | ||
675 | eslintrb = { | ||
676 | dependencies = ["execjs" "multi_json" "rake"]; | ||
677 | platforms = []; | ||
678 | source = { | ||
679 | remotes = ["https://rubygems.org"]; | ||
680 | sha256 = "0kx9sbs7pnl436zyczylnqqb1858hffy66fwdqfmcn18q8xdqwkx"; | ||
681 | type = "gem"; | ||
682 | }; | ||
683 | version = "2.1.0"; | ||
684 | }; | ||
685 | et-orbi = { | ||
686 | dependencies = ["tzinfo"]; | ||
687 | platforms = []; | ||
688 | source = { | ||
689 | remotes = ["https://rubygems.org"]; | ||
690 | sha256 = "0wk7i0bmsy46la8gcvbmdns0ni8lmdqas838phj97bdwykxw8m4b"; | ||
691 | type = "gem"; | ||
692 | }; | ||
693 | version = "1.1.6"; | ||
694 | }; | ||
695 | ethon = { | ||
696 | dependencies = ["ffi"]; | ||
697 | platforms = []; | ||
698 | source = { | ||
699 | remotes = ["https://rubygems.org"]; | ||
700 | sha256 = "0y70szwm2p0b9qfvpqrzjrgm3jz0ig65vlbfr6ppc3z0m1h7kv48"; | ||
701 | type = "gem"; | ||
702 | }; | ||
703 | version = "0.11.0"; | ||
704 | }; | ||
705 | excon = { | ||
706 | platforms = []; | ||
707 | source = { | ||
708 | remotes = ["https://rubygems.org"]; | ||
709 | sha256 = "15l9w0938c19nxmrp09n75qpmm64k12xj69h47yvxzcxcpbgnkb2"; | ||
710 | type = "gem"; | ||
711 | }; | ||
712 | version = "0.62.0"; | ||
713 | }; | ||
714 | execjs = { | ||
715 | platforms = []; | ||
716 | source = { | ||
717 | remotes = ["https://rubygems.org"]; | ||
718 | sha256 = "1yz55sf2nd3l666ms6xr18sm2aggcvmb8qr3v53lr4rir32y1yp1"; | ||
719 | type = "gem"; | ||
720 | }; | ||
721 | version = "2.7.0"; | ||
722 | }; | ||
723 | eye = { | ||
724 | dependencies = ["celluloid" "celluloid-io" "kostya-sigar" "state_machines" "thor"]; | ||
725 | platforms = []; | ||
726 | source = { | ||
727 | remotes = ["https://rubygems.org"]; | ||
728 | sha256 = "0gqrrrisy492m6sczq775dyg9sxkl926r8lkr6z33kfb4cnimfzk"; | ||
729 | type = "gem"; | ||
730 | }; | ||
731 | version = "0.10.0"; | ||
732 | }; | ||
733 | fabrication = { | ||
734 | platforms = []; | ||
735 | source = { | ||
736 | remotes = ["https://rubygems.org"]; | ||
737 | sha256 = "0an28kjand4mjbkmnwd9fmgq3y5vf717zpmiijavar3sxqj52zri"; | ||
738 | type = "gem"; | ||
739 | }; | ||
740 | version = "2.20.1"; | ||
741 | }; | ||
742 | factory_girl = { | ||
743 | dependencies = ["activesupport"]; | ||
744 | platforms = []; | ||
745 | source = { | ||
746 | remotes = ["https://rubygems.org"]; | ||
747 | sha256 = "0cc60v28r7w1gp34p4amzdnq7cyip6qhffvxywsj3ypilyf8jqla"; | ||
748 | type = "gem"; | ||
749 | }; | ||
750 | version = "4.8.0"; | ||
751 | }; | ||
752 | factory_girl_rails = { | ||
753 | dependencies = ["factory_girl" "railties"]; | ||
754 | platforms = []; | ||
755 | source = { | ||
756 | remotes = ["https://rubygems.org"]; | ||
757 | sha256 = "0hw8qqp30vm4yf4a36r1r65wk78ihxmas7jg5fyl6fcf705z9fvv"; | ||
758 | type = "gem"; | ||
759 | }; | ||
760 | version = "4.8.0"; | ||
761 | }; | ||
762 | faraday = { | ||
763 | dependencies = ["multipart-post"]; | ||
764 | platforms = []; | ||
765 | source = { | ||
766 | remotes = ["https://rubygems.org"]; | ||
767 | sha256 = "16hwxc8v0z6gkanckjhx0ffgqmzpc4ywz4dfhxpjlz2mbz8d5m52"; | ||
768 | type = "gem"; | ||
769 | }; | ||
770 | version = "0.15.3"; | ||
771 | }; | ||
772 | faraday-cookie_jar = { | ||
773 | dependencies = ["faraday" "http-cookie"]; | ||
774 | platforms = []; | ||
775 | source = { | ||
776 | remotes = ["https://rubygems.org"]; | ||
777 | sha256 = "1di4gx6446a6zdkrpj679m5k515i53wvb4yxcsqvy8d8zacxiiv6"; | ||
778 | type = "gem"; | ||
779 | }; | ||
780 | version = "0.0.6"; | ||
781 | }; | ||
782 | faraday_middleware = { | ||
783 | dependencies = ["faraday"]; | ||
784 | platforms = []; | ||
785 | source = { | ||
786 | remotes = ["https://rubygems.org"]; | ||
787 | sha256 = "1p7icfl28nvl8qqdsngryz1snqic9l8x6bk0dxd7ygn230y0k41d"; | ||
788 | type = "gem"; | ||
789 | }; | ||
790 | version = "0.12.2"; | ||
791 | }; | ||
792 | ffi = { | ||
793 | platforms = []; | ||
794 | source = { | ||
795 | remotes = ["https://rubygems.org"]; | ||
796 | sha256 = "0jpm2dis1j7zvvy3lg7axz9jml316zrn7s0j59vyq3qr127z0m7q"; | ||
797 | type = "gem"; | ||
798 | }; | ||
799 | version = "1.9.25"; | ||
800 | }; | ||
801 | fixture_builder = { | ||
802 | dependencies = ["activerecord" "activesupport" "hashdiff"]; | ||
803 | platforms = []; | ||
804 | source = { | ||
805 | remotes = ["https://rubygems.org"]; | ||
806 | sha256 = "1qlq0nyfhjvz09hm0jankl9bgs9672k31b3lmsfq8p135x3xs627"; | ||
807 | type = "gem"; | ||
808 | }; | ||
809 | version = "0.5.2.rc3"; | ||
810 | }; | ||
811 | fog-aws = { | ||
812 | dependencies = ["fog-core" "fog-json" "fog-xml" "ipaddress"]; | ||
813 | platforms = []; | ||
814 | source = { | ||
815 | remotes = ["https://rubygems.org"]; | ||
816 | sha256 = "1zprxg0spvkkri1jf40zg3rfr5h2gq6009d7l36lifpvhjn658cs"; | ||
817 | type = "gem"; | ||
818 | }; | ||
819 | version = "3.3.0"; | ||
820 | }; | ||
821 | fog-core = { | ||
822 | dependencies = ["builder" "excon" "formatador" "mime-types"]; | ||
823 | platforms = []; | ||
824 | source = { | ||
825 | remotes = ["https://rubygems.org"]; | ||
826 | sha256 = "1fsama04wlxhv537bm4b7rr4zzn0mvisy87m3qzv6f0mhlrq3zp8"; | ||
827 | type = "gem"; | ||
828 | }; | ||
829 | version = "2.1.2"; | ||
830 | }; | ||
831 | fog-json = { | ||
832 | dependencies = ["fog-core" "multi_json"]; | ||
833 | platforms = []; | ||
834 | source = { | ||
835 | remotes = ["https://rubygems.org"]; | ||
836 | sha256 = "1zj8llzc119zafbmfa4ai3z5s7c4vp9akfs0f9l2piyvcarmlkyx"; | ||
837 | type = "gem"; | ||
838 | }; | ||
839 | version = "1.2.0"; | ||
840 | }; | ||
841 | fog-xml = { | ||
842 | dependencies = ["fog-core" "nokogiri"]; | ||
843 | platforms = []; | ||
844 | source = { | ||
845 | remotes = ["https://rubygems.org"]; | ||
846 | sha256 = "043lwdw2wsi6d55ifk0w3izi5l1d1h0alwyr3fixic7b94kc812n"; | ||
847 | type = "gem"; | ||
848 | }; | ||
849 | version = "0.1.3"; | ||
850 | }; | ||
851 | formatador = { | ||
852 | platforms = []; | ||
853 | source = { | ||
854 | remotes = ["https://rubygems.org"]; | ||
855 | sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; | ||
856 | type = "gem"; | ||
857 | }; | ||
858 | version = "0.2.5"; | ||
859 | }; | ||
860 | fugit = { | ||
861 | dependencies = ["et-orbi" "raabro"]; | ||
862 | platforms = []; | ||
863 | source = { | ||
864 | remotes = ["https://rubygems.org"]; | ||
865 | sha256 = "1szijawzdii668z5is9xi849399gy786951dx0l5r2z5mbfqvl9i"; | ||
866 | type = "gem"; | ||
867 | }; | ||
868 | version = "1.1.6"; | ||
869 | }; | ||
870 | fuubar = { | ||
871 | dependencies = ["rspec-core" "ruby-progressbar"]; | ||
872 | platforms = []; | ||
873 | source = { | ||
874 | remotes = ["https://rubygems.org"]; | ||
875 | sha256 = "1sqkr1nh49rlm86l3qyrgsdqavgqii4pnrjn7855z6dfavh3spxr"; | ||
876 | type = "gem"; | ||
877 | }; | ||
878 | version = "2.3.2"; | ||
879 | }; | ||
880 | get_process_mem = { | ||
881 | platforms = []; | ||
882 | source = { | ||
883 | remotes = ["https://rubygems.org"]; | ||
884 | sha256 = "1bvfjdign16r0zwm2rlfrq0sk1licvmlgbnlpnyckniv5r7i080g"; | ||
885 | type = "gem"; | ||
886 | }; | ||
887 | version = "0.2.3"; | ||
888 | }; | ||
889 | gherkin = { | ||
890 | platforms = []; | ||
891 | source = { | ||
892 | remotes = ["https://rubygems.org"]; | ||
893 | sha256 = "1cgcdchwwdm10rsk44frjwqd4ihprhxjbm799nscqy2q1raqfj5s"; | ||
894 | type = "gem"; | ||
895 | }; | ||
896 | version = "5.1.0"; | ||
897 | }; | ||
898 | gitlab = { | ||
899 | dependencies = ["httparty" "terminal-table"]; | ||
900 | platforms = []; | ||
901 | source = { | ||
902 | remotes = ["https://rubygems.org"]; | ||
903 | sha256 = "1nncjmk71ivjxmgkpv100yybry5c7ld6xjgi1b5zsfv4g3mz0v34"; | ||
904 | type = "gem"; | ||
905 | }; | ||
906 | version = "4.7.0"; | ||
907 | }; | ||
908 | globalid = { | ||
909 | dependencies = ["activesupport"]; | ||
910 | platforms = []; | ||
911 | source = { | ||
912 | remotes = ["https://rubygems.org"]; | ||
913 | sha256 = "02smrgdi11kziqi9zhnsy9i6yr2fnxrqlv3lllsvdjki3cd4is38"; | ||
914 | type = "gem"; | ||
915 | }; | ||
916 | version = "0.4.1"; | ||
917 | }; | ||
918 | gon = { | ||
919 | dependencies = ["actionpack" "multi_json" "request_store"]; | ||
920 | platforms = []; | ||
921 | source = { | ||
922 | remotes = ["https://rubygems.org"]; | ||
923 | sha256 = "07sm7fd94pfscrbs4lyprs0das8s1yn32cw521ch738jaqb388xl"; | ||
924 | type = "gem"; | ||
925 | }; | ||
926 | version = "6.2.1"; | ||
927 | }; | ||
928 | guard = { | ||
929 | dependencies = ["formatador" "listen" "lumberjack" "nenv" "notiffany" "pry" "shellany" "thor"]; | ||
930 | platforms = []; | ||
931 | source = { | ||
932 | remotes = ["https://rubygems.org"]; | ||
933 | sha256 = "0h84ja6qvii3hx86w9l4vjpbgl4m8ma8fbawwp7s8l791cgkdcmk"; | ||
934 | type = "gem"; | ||
935 | }; | ||
936 | version = "2.15.0"; | ||
937 | }; | ||
938 | guard-compat = { | ||
939 | platforms = []; | ||
940 | source = { | ||
941 | remotes = ["https://rubygems.org"]; | ||
942 | sha256 = "1zj6sr1k8w59mmi27rsii0v8xyy2rnsi09nqvwpgj1q10yq1mlis"; | ||
943 | type = "gem"; | ||
944 | }; | ||
945 | version = "1.2.1"; | ||
946 | }; | ||
947 | guard-rspec = { | ||
948 | dependencies = ["guard" "guard-compat" "rspec"]; | ||
949 | platforms = []; | ||
950 | source = { | ||
951 | remotes = ["https://rubygems.org"]; | ||
952 | sha256 = "1jkm5xp90gm4c5s51pmf92i9hc10gslwwic6mvk72g0yplya0yx4"; | ||
953 | type = "gem"; | ||
954 | }; | ||
955 | version = "4.7.3"; | ||
956 | }; | ||
957 | guard-rubocop = { | ||
958 | dependencies = ["guard" "rubocop"]; | ||
959 | platforms = []; | ||
960 | source = { | ||
961 | remotes = ["https://rubygems.org"]; | ||
962 | sha256 = "1p97zkzasghl1md13rh57n3s2rr2kqly8w4vfn6vaj89igjpagdp"; | ||
963 | type = "gem"; | ||
964 | }; | ||
965 | version = "1.3.0"; | ||
966 | }; | ||
967 | haml = { | ||
968 | dependencies = ["temple" "tilt"]; | ||
969 | platforms = []; | ||
970 | source = { | ||
971 | remotes = ["https://rubygems.org"]; | ||
972 | sha256 = "1q0a9fvqh8kn6wm97fcks6qzbjd400bv8bx748w8v87m7p4klhac"; | ||
973 | type = "gem"; | ||
974 | }; | ||
975 | version = "5.0.4"; | ||
976 | }; | ||
977 | haml_lint = { | ||
978 | dependencies = ["haml" "rainbow" "rake" "rubocop" "sysexits"]; | ||
979 | platforms = []; | ||
980 | source = { | ||
981 | remotes = ["https://rubygems.org"]; | ||
982 | sha256 = "125aj0j84nx5gqm42hfx5d8486higlra423ahgfpsdjwbp399rwv"; | ||
983 | type = "gem"; | ||
984 | }; | ||
985 | version = "0.28.0"; | ||
986 | }; | ||
987 | hamlit = { | ||
988 | dependencies = ["temple" "thor" "tilt"]; | ||
989 | platforms = []; | ||
990 | source = { | ||
991 | remotes = ["https://rubygems.org"]; | ||
992 | sha256 = "14fsc208qsf46cflk23vs2fdw435dk65fwv55zhziciwn96ld8sf"; | ||
993 | type = "gem"; | ||
994 | }; | ||
995 | version = "2.9.1"; | ||
996 | }; | ||
997 | handlebars_assets = { | ||
998 | dependencies = ["execjs" "sprockets" "tilt"]; | ||
999 | platforms = []; | ||
1000 | source = { | ||
1001 | remotes = ["https://rubygems.org"]; | ||
1002 | sha256 = "18pyksz4jb0n28acqxv14ahy8mkc9ldqbbn73gcj28m0l9wjzsca"; | ||
1003 | type = "gem"; | ||
1004 | }; | ||
1005 | version = "0.23.2"; | ||
1006 | }; | ||
1007 | hashdiff = { | ||
1008 | platforms = []; | ||
1009 | source = { | ||
1010 | remotes = ["https://rubygems.org"]; | ||
1011 | sha256 = "0yj5l2rw8i8jc725hbcpc4wks0qlaaimr3dpaqamfjkjkxl0hjp9"; | ||
1012 | type = "gem"; | ||
1013 | }; | ||
1014 | version = "0.3.7"; | ||
1015 | }; | ||
1016 | hashie = { | ||
1017 | platforms = []; | ||
1018 | source = { | ||
1019 | remotes = ["https://rubygems.org"]; | ||
1020 | sha256 = "1hh5lybf8hm7d7xs4xm8hxvm8xqrs2flc8fnwkrclaj746izw6xb"; | ||
1021 | type = "gem"; | ||
1022 | }; | ||
1023 | version = "3.5.7"; | ||
1024 | }; | ||
1025 | http = { | ||
1026 | dependencies = ["addressable" "http-cookie" "http-form_data" "http_parser.rb"]; | ||
1027 | platforms = []; | ||
1028 | source = { | ||
1029 | remotes = ["https://rubygems.org"]; | ||
1030 | sha256 = "1jlm5prw437wqpfxcigh88lfap3m7g8mnmj5as7qw6dzqnvrxwmc"; | ||
1031 | type = "gem"; | ||
1032 | }; | ||
1033 | version = "3.3.0"; | ||
1034 | }; | ||
1035 | http-cookie = { | ||
1036 | dependencies = ["domain_name"]; | ||
1037 | platforms = []; | ||
1038 | source = { | ||
1039 | remotes = ["https://rubygems.org"]; | ||
1040 | sha256 = "004cgs4xg5n6byjs7qld0xhsjq3n6ydfh897myr2mibvh6fjc49g"; | ||
1041 | type = "gem"; | ||
1042 | }; | ||
1043 | version = "1.0.3"; | ||
1044 | }; | ||
1045 | http-form_data = { | ||
1046 | platforms = []; | ||
1047 | source = { | ||
1048 | remotes = ["https://rubygems.org"]; | ||
1049 | sha256 = "15lpn604byf7cyxnw949xz4rvpcknqp7a48q73nm630gqxsa76f3"; | ||
1050 | type = "gem"; | ||
1051 | }; | ||
1052 | version = "2.1.1"; | ||
1053 | }; | ||
1054 | http_accept_language = { | ||
1055 | platforms = []; | ||
1056 | source = { | ||
1057 | remotes = ["https://rubygems.org"]; | ||
1058 | sha256 = "0d0nlfz9vm4jr1l6q0chx4rp2hrnrfbx3gadc1dz930lbbaz0hq0"; | ||
1059 | type = "gem"; | ||
1060 | }; | ||
1061 | version = "2.1.1"; | ||
1062 | }; | ||
1063 | "http_parser.rb" = { | ||
1064 | platforms = []; | ||
1065 | source = { | ||
1066 | remotes = ["https://rubygems.org"]; | ||
1067 | sha256 = "15nidriy0v5yqfjsgsra51wmknxci2n2grliz78sf9pga3n0l7gi"; | ||
1068 | type = "gem"; | ||
1069 | }; | ||
1070 | version = "0.6.0"; | ||
1071 | }; | ||
1072 | httparty = { | ||
1073 | dependencies = ["mime-types" "multi_xml"]; | ||
1074 | platforms = []; | ||
1075 | source = { | ||
1076 | remotes = ["https://rubygems.org"]; | ||
1077 | sha256 = "1xmm7pxmz3pblkdr76dg7qm5s60kpp3yvh46c2i0bn1dm0zgl730"; | ||
1078 | type = "gem"; | ||
1079 | }; | ||
1080 | version = "0.16.3"; | ||
1081 | }; | ||
1082 | httpclient = { | ||
1083 | platforms = []; | ||
1084 | source = { | ||
1085 | remotes = ["https://rubygems.org"]; | ||
1086 | sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99"; | ||
1087 | type = "gem"; | ||
1088 | }; | ||
1089 | version = "2.8.3"; | ||
1090 | }; | ||
1091 | i18n = { | ||
1092 | dependencies = ["concurrent-ruby"]; | ||
1093 | platforms = []; | ||
1094 | source = { | ||
1095 | remotes = ["https://rubygems.org"]; | ||
1096 | sha256 = "1gcp1m1p6dpasycfz2sj82ci9ggz7lsskz9c9q6gvfwxrl8y9dx7"; | ||
1097 | type = "gem"; | ||
1098 | }; | ||
1099 | version = "1.1.1"; | ||
1100 | }; | ||
1101 | i18n-inflector = { | ||
1102 | dependencies = ["i18n"]; | ||
1103 | platforms = []; | ||
1104 | source = { | ||
1105 | remotes = ["https://rubygems.org"]; | ||
1106 | sha256 = "081jr7z947aqjfmpbfs10w9jxi205jwgk4mgd8jds1b4m4i8mc7g"; | ||
1107 | type = "gem"; | ||
1108 | }; | ||
1109 | version = "2.6.7"; | ||
1110 | }; | ||
1111 | i18n-inflector-rails = { | ||
1112 | dependencies = ["actionpack" "i18n-inflector" "railties"]; | ||
1113 | platforms = []; | ||
1114 | source = { | ||
1115 | remotes = ["https://rubygems.org"]; | ||
1116 | sha256 = "0c04jm657akp5n14syhcwnn3hnsvx7harvg97768bvf3f9a37hyk"; | ||
1117 | type = "gem"; | ||
1118 | }; | ||
1119 | version = "1.0.7"; | ||
1120 | }; | ||
1121 | ipaddress = { | ||
1122 | platforms = []; | ||
1123 | source = { | ||
1124 | remotes = ["https://rubygems.org"]; | ||
1125 | sha256 = "1x86s0s11w202j6ka40jbmywkrx8fhq8xiy8mwvnkhllj57hqr45"; | ||
1126 | type = "gem"; | ||
1127 | }; | ||
1128 | version = "0.8.3"; | ||
1129 | }; | ||
1130 | jaro_winkler = { | ||
1131 | platforms = []; | ||
1132 | source = { | ||
1133 | remotes = ["https://rubygems.org"]; | ||
1134 | sha256 = "0rr797nqz081bfk30m2apj5h24bg5d1jr1c8p3xwx4hbwsrbclah"; | ||
1135 | type = "gem"; | ||
1136 | }; | ||
1137 | version = "1.5.1"; | ||
1138 | }; | ||
1139 | jasmine = { | ||
1140 | dependencies = ["jasmine-core" "phantomjs" "rack" "rake"]; | ||
1141 | platforms = []; | ||
1142 | source = { | ||
1143 | remotes = ["https://rubygems.org"]; | ||
1144 | sha256 = "1xfwf163wi5a9i0vlm564cqi6k30h15wnrwd15ph95jfa5516kv1"; | ||
1145 | type = "gem"; | ||
1146 | }; | ||
1147 | version = "3.3.0"; | ||
1148 | }; | ||
1149 | jasmine-core = { | ||
1150 | platforms = []; | ||
1151 | source = { | ||
1152 | remotes = ["https://rubygems.org"]; | ||
1153 | sha256 = "1b12bjfrxvb8mwjwlfyngykd80lz956glcpfz7rhhw7n75b2rdlv"; | ||
1154 | type = "gem"; | ||
1155 | }; | ||
1156 | version = "3.3.0"; | ||
1157 | }; | ||
1158 | jasmine-jquery-rails = { | ||
1159 | platforms = []; | ||
1160 | source = { | ||
1161 | remotes = ["https://rubygems.org"]; | ||
1162 | sha256 = "0cq5zd4ng5dlza45whd6sa7bzd60rlddk9760271mybdqyd96jlv"; | ||
1163 | type = "gem"; | ||
1164 | }; | ||
1165 | version = "2.0.3"; | ||
1166 | }; | ||
1167 | jquery-rails = { | ||
1168 | dependencies = ["rails-dom-testing" "railties" "thor"]; | ||
1169 | platforms = []; | ||
1170 | source = { | ||
1171 | remotes = ["https://rubygems.org"]; | ||
1172 | sha256 = "17201sb8ddwy4yprizmqabq1kfx3m9c53p0yqngn63m07jjcpnh8"; | ||
1173 | type = "gem"; | ||
1174 | }; | ||
1175 | version = "4.3.3"; | ||
1176 | }; | ||
1177 | js-routes = { | ||
1178 | dependencies = ["railties" "sprockets-rails"]; | ||
1179 | platforms = []; | ||
1180 | source = { | ||
1181 | remotes = ["https://rubygems.org"]; | ||
1182 | sha256 = "14yx3jrd4sgcwgj8yrrqdwl691mci1hcjqyyvp0v15jbzis1bclm"; | ||
1183 | type = "gem"; | ||
1184 | }; | ||
1185 | version = "1.4.4"; | ||
1186 | }; | ||
1187 | js_image_paths = { | ||
1188 | dependencies = ["rails" "sprockets"]; | ||
1189 | platforms = []; | ||
1190 | source = { | ||
1191 | remotes = ["https://rubygems.org"]; | ||
1192 | sha256 = "1d4kq8895i61a338ddk5f2k16l5lvmnkby9cdjwnmm2jddw4q7nf"; | ||
1193 | type = "gem"; | ||
1194 | }; | ||
1195 | version = "0.1.1"; | ||
1196 | }; | ||
1197 | json = { | ||
1198 | platforms = []; | ||
1199 | source = { | ||
1200 | remotes = ["https://rubygems.org"]; | ||
1201 | sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp"; | ||
1202 | type = "gem"; | ||
1203 | }; | ||
1204 | version = "2.1.0"; | ||
1205 | }; | ||
1206 | json-jwt = { | ||
1207 | dependencies = ["activesupport" "aes_key_wrap" "bindata"]; | ||
1208 | platforms = []; | ||
1209 | source = { | ||
1210 | remotes = ["https://rubygems.org"]; | ||
1211 | sha256 = "065k7vffdki73f4nz89lxi6wxmcw5dlf593831pgvlbralll6x3r"; | ||
1212 | type = "gem"; | ||
1213 | }; | ||
1214 | version = "1.9.4"; | ||
1215 | }; | ||
1216 | json-schema = { | ||
1217 | dependencies = ["addressable"]; | ||
1218 | platforms = []; | ||
1219 | source = { | ||
1220 | remotes = ["https://rubygems.org"]; | ||
1221 | sha256 = "1yv5lfmr2nzd14af498xqd5p89f3g080q8wk0klr3vxgypsikkb5"; | ||
1222 | type = "gem"; | ||
1223 | }; | ||
1224 | version = "2.8.1"; | ||
1225 | }; | ||
1226 | json-schema-rspec = { | ||
1227 | dependencies = ["json-schema" "rspec"]; | ||
1228 | platforms = []; | ||
1229 | source = { | ||
1230 | remotes = ["https://rubygems.org"]; | ||
1231 | sha256 = "1ip30yjzyigqqp9jwkrw9x9vrfpnmwi160zmk2vkrwlv9pby0wr9"; | ||
1232 | type = "gem"; | ||
1233 | }; | ||
1234 | version = "0.0.4"; | ||
1235 | }; | ||
1236 | jsonpath = { | ||
1237 | dependencies = ["multi_json" "to_regexp"]; | ||
1238 | platforms = []; | ||
1239 | source = { | ||
1240 | remotes = ["https://rubygems.org"]; | ||
1241 | sha256 = "06i41lwpj0dwvbxcpqrad5pjn2gmcv0srv0zw0ap7irwc21ifd7d"; | ||
1242 | type = "gem"; | ||
1243 | }; | ||
1244 | version = "0.9.6"; | ||
1245 | }; | ||
1246 | jwt = { | ||
1247 | platforms = []; | ||
1248 | source = { | ||
1249 | remotes = ["https://rubygems.org"]; | ||
1250 | sha256 = "1w0kaqrbl71cq9sbnixc20x5lqah3hs2i93xmhlfdg2y3by7yzky"; | ||
1251 | type = "gem"; | ||
1252 | }; | ||
1253 | version = "2.1.0"; | ||
1254 | }; | ||
1255 | kgio = { | ||
1256 | platforms = []; | ||
1257 | source = { | ||
1258 | remotes = ["https://rubygems.org"]; | ||
1259 | sha256 = "1528pyj1szzzp3pgj05fzjd36qjrxm9yj2x5radc9p1z7vl67y50"; | ||
1260 | type = "gem"; | ||
1261 | }; | ||
1262 | version = "2.11.2"; | ||
1263 | }; | ||
1264 | kostya-sigar = { | ||
1265 | platforms = []; | ||
1266 | source = { | ||
1267 | remotes = ["https://rubygems.org"]; | ||
1268 | sha256 = "0z0pcykhjyrb7kq76jfcyxc1qq23gj5zmgy3miy87v85ydrxiqwb"; | ||
1269 | type = "gem"; | ||
1270 | }; | ||
1271 | version = "2.0.4"; | ||
1272 | }; | ||
1273 | leaflet-rails = { | ||
1274 | dependencies = ["rails"]; | ||
1275 | platforms = []; | ||
1276 | source = { | ||
1277 | remotes = ["https://rubygems.org"]; | ||
1278 | sha256 = "0dy7vhsjj1fhbbqm2s7pw57vgysd31qqi4y0hm91325hmvq75grb"; | ||
1279 | type = "gem"; | ||
1280 | }; | ||
1281 | version = "1.3.1"; | ||
1282 | }; | ||
1283 | listen = { | ||
1284 | dependencies = ["rb-fsevent" "rb-inotify" "ruby_dep"]; | ||
1285 | platforms = []; | ||
1286 | source = { | ||
1287 | remotes = ["https://rubygems.org"]; | ||
1288 | sha256 = "01v5mrnfqm6sgm8xn2v5swxsn1wlmq7rzh2i48d4jzjsc7qvb6mx"; | ||
1289 | type = "gem"; | ||
1290 | }; | ||
1291 | version = "3.1.5"; | ||
1292 | }; | ||
1293 | little-plugger = { | ||
1294 | platforms = []; | ||
1295 | source = { | ||
1296 | remotes = ["https://rubygems.org"]; | ||
1297 | sha256 = "1frilv82dyxnlg8k1jhrvyd73l6k17mxc5vwxx080r4x1p04gwym"; | ||
1298 | type = "gem"; | ||
1299 | }; | ||
1300 | version = "1.1.4"; | ||
1301 | }; | ||
1302 | logging = { | ||
1303 | dependencies = ["little-plugger" "multi_json"]; | ||
1304 | platforms = []; | ||
1305 | source = { | ||
1306 | remotes = ["https://rubygems.org"]; | ||
1307 | sha256 = "06j6iaj89h9jhkx1x3hlswqrfnqds8br05xb1qra69dpvbdmjcwn"; | ||
1308 | type = "gem"; | ||
1309 | }; | ||
1310 | version = "2.2.2"; | ||
1311 | }; | ||
1312 | logging-rails = { | ||
1313 | dependencies = ["logging"]; | ||
1314 | platforms = []; | ||
1315 | source = { | ||
1316 | remotes = ["https://rubygems.org"]; | ||
1317 | sha256 = "022cnj9v177282kadd9ygzjpvlvbq9k5z0xhdbbmgypi05z4i239"; | ||
1318 | type = "gem"; | ||
1319 | }; | ||
1320 | version = "0.6.0"; | ||
1321 | }; | ||
1322 | loofah = { | ||
1323 | dependencies = ["crass" "nokogiri"]; | ||
1324 | platforms = []; | ||
1325 | source = { | ||
1326 | remotes = ["https://rubygems.org"]; | ||
1327 | sha256 = "1ccsid33xjajd0im2xv941aywi58z7ihwkvaf1w2bv89vn5bhsjg"; | ||
1328 | type = "gem"; | ||
1329 | }; | ||
1330 | version = "2.2.3"; | ||
1331 | }; | ||
1332 | lumberjack = { | ||
1333 | platforms = []; | ||
1334 | source = { | ||
1335 | remotes = ["https://rubygems.org"]; | ||
1336 | sha256 = "06im7gcg42x77yhz2w5da2ly9xz0n0c36y5ks7xs53v0l9g0vf5n"; | ||
1337 | type = "gem"; | ||
1338 | }; | ||
1339 | version = "1.0.13"; | ||
1340 | }; | ||
1341 | macaddr = { | ||
1342 | dependencies = ["systemu"]; | ||
1343 | platforms = []; | ||
1344 | source = { | ||
1345 | remotes = ["https://rubygems.org"]; | ||
1346 | sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; | ||
1347 | type = "gem"; | ||
1348 | }; | ||
1349 | version = "1.7.1"; | ||
1350 | }; | ||
1351 | mail = { | ||
1352 | dependencies = ["mini_mime"]; | ||
1353 | platforms = []; | ||
1354 | source = { | ||
1355 | remotes = ["https://rubygems.org"]; | ||
1356 | sha256 = "00wwz6ys0502dpk8xprwcqfwyf3hmnx6lgxaiq6vj43mkx43sapc"; | ||
1357 | type = "gem"; | ||
1358 | }; | ||
1359 | version = "2.7.1"; | ||
1360 | }; | ||
1361 | markdown-it-html5-embed = { | ||
1362 | platforms = []; | ||
1363 | source = { | ||
1364 | remotes = ["https://rubygems.org"]; | ||
1365 | sha256 = "10n2z6j0whc6makxvcf2jhpwb8xrj4s6vyywijsaaxs0cn490a5c"; | ||
1366 | type = "gem"; | ||
1367 | }; | ||
1368 | version = "1.0.0"; | ||
1369 | }; | ||
1370 | markerb = { | ||
1371 | platforms = []; | ||
1372 | source = { | ||
1373 | remotes = ["https://rubygems.org"]; | ||
1374 | sha256 = "08sm3kafc3086l0a9is2cysk7j2k71mxy6ba295pwwzyvy734y76"; | ||
1375 | type = "gem"; | ||
1376 | }; | ||
1377 | version = "1.1.0"; | ||
1378 | }; | ||
1379 | memoizable = { | ||
1380 | dependencies = ["thread_safe"]; | ||
1381 | platforms = []; | ||
1382 | source = { | ||
1383 | remotes = ["https://rubygems.org"]; | ||
1384 | sha256 = "0v42bvghsvfpzybfazl14qhkrjvx0xlmxz0wwqc960ga1wld5x5c"; | ||
1385 | type = "gem"; | ||
1386 | }; | ||
1387 | version = "0.4.2"; | ||
1388 | }; | ||
1389 | method_source = { | ||
1390 | platforms = []; | ||
1391 | source = { | ||
1392 | remotes = ["https://rubygems.org"]; | ||
1393 | sha256 = "1pviwzvdqd90gn6y7illcdd9adapw8fczml933p5vl739dkvl3lq"; | ||
1394 | type = "gem"; | ||
1395 | }; | ||
1396 | version = "0.9.2"; | ||
1397 | }; | ||
1398 | mime-types = { | ||
1399 | dependencies = ["mime-types-data"]; | ||
1400 | platforms = []; | ||
1401 | source = { | ||
1402 | remotes = ["https://rubygems.org"]; | ||
1403 | sha256 = "0fjxy1jm52ixpnv3vg9ld9pr9f35gy0jp66i1njhqjvmnvq0iwwk"; | ||
1404 | type = "gem"; | ||
1405 | }; | ||
1406 | version = "3.2.2"; | ||
1407 | }; | ||
1408 | mime-types-data = { | ||
1409 | platforms = []; | ||
1410 | source = { | ||
1411 | remotes = ["https://rubygems.org"]; | ||
1412 | sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; | ||
1413 | type = "gem"; | ||
1414 | }; | ||
1415 | version = "3.2018.0812"; | ||
1416 | }; | ||
1417 | mini_magick = { | ||
1418 | platforms = []; | ||
1419 | source = { | ||
1420 | remotes = ["https://rubygems.org"]; | ||
1421 | sha256 = "0sisx59mr5kydmxmx5vr8spmrxhrjkfqv35zhsqdlyzmp1z5px9p"; | ||
1422 | type = "gem"; | ||
1423 | }; | ||
1424 | version = "4.9.2"; | ||
1425 | }; | ||
1426 | mini_mime = { | ||
1427 | platforms = []; | ||
1428 | source = { | ||
1429 | remotes = ["https://rubygems.org"]; | ||
1430 | sha256 = "1q4pshq387lzv9m39jv32vwb8wrq3wc4jwgl4jk209r4l33v09d3"; | ||
1431 | type = "gem"; | ||
1432 | }; | ||
1433 | version = "1.0.1"; | ||
1434 | }; | ||
1435 | mini_portile2 = { | ||
1436 | platforms = []; | ||
1437 | source = { | ||
1438 | remotes = ["https://rubygems.org"]; | ||
1439 | sha256 = "13d32jjadpjj6d2wdhkfpsmy68zjx90p49bgf8f7nkpz86r1fr11"; | ||
1440 | type = "gem"; | ||
1441 | }; | ||
1442 | version = "2.3.0"; | ||
1443 | }; | ||
1444 | minitest = { | ||
1445 | platforms = []; | ||
1446 | source = { | ||
1447 | remotes = ["https://rubygems.org"]; | ||
1448 | sha256 = "0icglrhghgwdlnzzp4jf76b0mbc71s80njn5afyfjn4wqji8mqbq"; | ||
1449 | type = "gem"; | ||
1450 | }; | ||
1451 | version = "5.11.3"; | ||
1452 | }; | ||
1453 | mobile-fu = { | ||
1454 | dependencies = ["rack-mobile-detect" "rails"]; | ||
1455 | platforms = []; | ||
1456 | source = { | ||
1457 | remotes = ["https://rubygems.org"]; | ||
1458 | sha256 = "0lxfcsd7dwwcpa1j2jbl382anmv6kksf5q1wqj14gc6jxxjq9s4i"; | ||
1459 | type = "gem"; | ||
1460 | }; | ||
1461 | version = "1.4.0"; | ||
1462 | }; | ||
1463 | multi_json = { | ||
1464 | platforms = []; | ||
1465 | source = { | ||
1466 | remotes = ["https://rubygems.org"]; | ||
1467 | sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv"; | ||
1468 | type = "gem"; | ||
1469 | }; | ||
1470 | version = "1.13.1"; | ||
1471 | }; | ||
1472 | multi_test = { | ||
1473 | platforms = []; | ||
1474 | source = { | ||
1475 | remotes = ["https://rubygems.org"]; | ||
1476 | sha256 = "1sx356q81plr67hg16jfwz9hcqvnk03bd9n75pmdw8pfxjfy1yxd"; | ||
1477 | type = "gem"; | ||
1478 | }; | ||
1479 | version = "0.1.2"; | ||
1480 | }; | ||
1481 | multi_xml = { | ||
1482 | platforms = []; | ||
1483 | source = { | ||
1484 | remotes = ["https://rubygems.org"]; | ||
1485 | sha256 = "0lmd4f401mvravi1i1yq7b2qjjli0yq7dfc4p1nj5nwajp7r6hyj"; | ||
1486 | type = "gem"; | ||
1487 | }; | ||
1488 | version = "0.6.0"; | ||
1489 | }; | ||
1490 | multipart-post = { | ||
1491 | platforms = []; | ||
1492 | source = { | ||
1493 | remotes = ["https://rubygems.org"]; | ||
1494 | sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; | ||
1495 | type = "gem"; | ||
1496 | }; | ||
1497 | version = "2.0.0"; | ||
1498 | }; | ||
1499 | mysql2 = { | ||
1500 | groups = ["mysql"]; | ||
1501 | platforms = []; | ||
1502 | source = { | ||
1503 | remotes = ["https://rubygems.org"]; | ||
1504 | sha256 = "1a2kdjgzwh1p2rkcmxaawy6ibi32b04wbdd5d4wr8i342pq76di4"; | ||
1505 | type = "gem"; | ||
1506 | }; | ||
1507 | version = "0.5.2"; | ||
1508 | }; | ||
1509 | naught = { | ||
1510 | platforms = []; | ||
1511 | source = { | ||
1512 | remotes = ["https://rubygems.org"]; | ||
1513 | sha256 = "1wwjx35zgbc0nplp8a866iafk4zsrbhwwz4pav5gydr2wm26nksg"; | ||
1514 | type = "gem"; | ||
1515 | }; | ||
1516 | version = "1.1.0"; | ||
1517 | }; | ||
1518 | nenv = { | ||
1519 | platforms = []; | ||
1520 | source = { | ||
1521 | remotes = ["https://rubygems.org"]; | ||
1522 | sha256 = "0r97jzknll9bhd8yyg2bngnnkj8rjhal667n7d32h8h7ny7nvpnr"; | ||
1523 | type = "gem"; | ||
1524 | }; | ||
1525 | version = "0.3.0"; | ||
1526 | }; | ||
1527 | nio4r = { | ||
1528 | platforms = []; | ||
1529 | source = { | ||
1530 | remotes = ["https://rubygems.org"]; | ||
1531 | sha256 = "1a41ca1kpdmrypjp9xbgvckpy8g26zxphkja9vk7j5wl4n8yvlyr"; | ||
1532 | type = "gem"; | ||
1533 | }; | ||
1534 | version = "2.3.1"; | ||
1535 | }; | ||
1536 | nokogiri = { | ||
1537 | dependencies = ["mini_portile2"]; | ||
1538 | platforms = []; | ||
1539 | source = { | ||
1540 | remotes = ["https://rubygems.org"]; | ||
1541 | sha256 = "0byyxrazkfm29ypcx5q4syrv126nvjnf7z6bqi01sqkv4llsi4qz"; | ||
1542 | type = "gem"; | ||
1543 | }; | ||
1544 | version = "1.8.5"; | ||
1545 | }; | ||
1546 | notiffany = { | ||
1547 | dependencies = ["nenv" "shellany"]; | ||
1548 | platforms = []; | ||
1549 | source = { | ||
1550 | remotes = ["https://rubygems.org"]; | ||
1551 | sha256 = "0x838fa5il0dd9zbm3lxkpbfxcf5fxv9556mayc2mxsdl5ghv8nx"; | ||
1552 | type = "gem"; | ||
1553 | }; | ||
1554 | version = "0.1.1"; | ||
1555 | }; | ||
1556 | oauth = { | ||
1557 | platforms = []; | ||
1558 | source = { | ||
1559 | remotes = ["https://rubygems.org"]; | ||
1560 | sha256 = "1zszdg8q1b135z7l7crjj234k4j0m347hywp5kj6zsq7q78pw09y"; | ||
1561 | type = "gem"; | ||
1562 | }; | ||
1563 | version = "0.5.4"; | ||
1564 | }; | ||
1565 | oauth2 = { | ||
1566 | dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"]; | ||
1567 | platforms = []; | ||
1568 | source = { | ||
1569 | remotes = ["https://rubygems.org"]; | ||
1570 | sha256 = "0av6nlb5y2sm6m8fx669ywrqa9858yqaqfqzny75nqp3anag89qh"; | ||
1571 | type = "gem"; | ||
1572 | }; | ||
1573 | version = "1.4.1"; | ||
1574 | }; | ||
1575 | octokit = { | ||
1576 | dependencies = ["sawyer"]; | ||
1577 | platforms = []; | ||
1578 | source = { | ||
1579 | remotes = ["https://rubygems.org"]; | ||
1580 | sha256 = "1yh0yzzqg575ix3y2l2261b9ag82gv2v4f1wczdhcmfbxcz755x6"; | ||
1581 | type = "gem"; | ||
1582 | }; | ||
1583 | version = "4.13.0"; | ||
1584 | }; | ||
1585 | omniauth = { | ||
1586 | dependencies = ["hashie" "rack"]; | ||
1587 | platforms = []; | ||
1588 | source = { | ||
1589 | remotes = ["https://rubygems.org"]; | ||
1590 | sha256 = "1msqr4qq7mfdvl3rg89529isrv595hvjpj2gi0say4b8nwqfggmg"; | ||
1591 | type = "gem"; | ||
1592 | }; | ||
1593 | version = "1.8.1"; | ||
1594 | }; | ||
1595 | omniauth-oauth = { | ||
1596 | dependencies = ["oauth" "omniauth"]; | ||
1597 | platforms = []; | ||
1598 | source = { | ||
1599 | remotes = ["https://rubygems.org"]; | ||
1600 | sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; | ||
1601 | type = "gem"; | ||
1602 | }; | ||
1603 | version = "1.1.0"; | ||
1604 | }; | ||
1605 | omniauth-oauth2 = { | ||
1606 | dependencies = ["oauth2" "omniauth"]; | ||
1607 | platforms = []; | ||
1608 | source = { | ||
1609 | remotes = ["https://rubygems.org"]; | ||
1610 | sha256 = "0kscjf1y0lnggsl4z3w5bwllqshqjlsl5kmcya5haydajdnzvdjr"; | ||
1611 | type = "gem"; | ||
1612 | }; | ||
1613 | version = "1.5.0"; | ||
1614 | }; | ||
1615 | omniauth-tumblr = { | ||
1616 | dependencies = ["multi_json" "omniauth-oauth"]; | ||
1617 | platforms = []; | ||
1618 | source = { | ||
1619 | remotes = ["https://rubygems.org"]; | ||
1620 | sha256 = "10ncmfym4l6k6aqp402g7mqxahbggcj5xkpsjxgngs746s82y97w"; | ||
1621 | type = "gem"; | ||
1622 | }; | ||
1623 | version = "1.2"; | ||
1624 | }; | ||
1625 | omniauth-twitter = { | ||
1626 | dependencies = ["omniauth-oauth" "rack"]; | ||
1627 | platforms = []; | ||
1628 | source = { | ||
1629 | remotes = ["https://rubygems.org"]; | ||
1630 | sha256 = "0r5j65hkpgzhvvbs90id3nfsjgsad6ymzggbm7zlaxvnrmvnrk65"; | ||
1631 | type = "gem"; | ||
1632 | }; | ||
1633 | version = "1.4.0"; | ||
1634 | }; | ||
1635 | omniauth-wordpress = { | ||
1636 | dependencies = ["omniauth-oauth2"]; | ||
1637 | platforms = []; | ||
1638 | source = { | ||
1639 | remotes = ["https://rubygems.org"]; | ||
1640 | sha256 = "008zx4zwrbzyvlgv6hy68k1d05zskiwvcgwvxxbxhbl0mvlmh303"; | ||
1641 | type = "gem"; | ||
1642 | }; | ||
1643 | version = "0.2.2"; | ||
1644 | }; | ||
1645 | open_graph_reader = { | ||
1646 | dependencies = ["faraday" "nokogiri"]; | ||
1647 | platforms = []; | ||
1648 | source = { | ||
1649 | remotes = ["https://rubygems.org"]; | ||
1650 | sha256 = "0af4yldyb0d8zglw73s13pyn0g90gs4m5zf7bwy8r4kym9zbvc21"; | ||
1651 | type = "gem"; | ||
1652 | }; | ||
1653 | version = "0.6.2"; | ||
1654 | }; | ||
1655 | openid_connect = { | ||
1656 | dependencies = ["activemodel" "attr_required" "json-jwt" "rack-oauth2" "swd" "tzinfo" "validate_email" "validate_url" "webfinger"]; | ||
1657 | platforms = []; | ||
1658 | source = { | ||
1659 | remotes = ["https://rubygems.org"]; | ||
1660 | sha256 = "1r13bv18nyvw0g1nw3fzffvv2si99zj24w0k5zgawf4q6nn5f7vd"; | ||
1661 | type = "gem"; | ||
1662 | }; | ||
1663 | version = "1.1.6"; | ||
1664 | }; | ||
1665 | orm_adapter = { | ||
1666 | platforms = []; | ||
1667 | source = { | ||
1668 | remotes = ["https://rubygems.org"]; | ||
1669 | sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; | ||
1670 | type = "gem"; | ||
1671 | }; | ||
1672 | version = "0.5.0"; | ||
1673 | }; | ||
1674 | parallel = { | ||
1675 | platforms = []; | ||
1676 | source = { | ||
1677 | remotes = ["https://rubygems.org"]; | ||
1678 | sha256 = "01hj8v1qnyl5ndrs33g8ld8ibk0rbcqdpkpznr04gkbxd11pqn67"; | ||
1679 | type = "gem"; | ||
1680 | }; | ||
1681 | version = "1.12.1"; | ||
1682 | }; | ||
1683 | parser = { | ||
1684 | dependencies = ["ast"]; | ||
1685 | platforms = []; | ||
1686 | source = { | ||
1687 | remotes = ["https://rubygems.org"]; | ||
1688 | sha256 = "1zjk0w1kjj3xk8ymy1430aa4gg0k8ckphfj88br6il4pm83f0n1f"; | ||
1689 | type = "gem"; | ||
1690 | }; | ||
1691 | version = "2.5.3.0"; | ||
1692 | }; | ||
1693 | pg = { | ||
1694 | platforms = []; | ||
1695 | source = { | ||
1696 | remotes = ["https://rubygems.org"]; | ||
1697 | sha256 = "1pnjw3rspdfjssxyf42jnbsdlgri8ylysimp0s28wxb93k6ff2qb"; | ||
1698 | type = "gem"; | ||
1699 | }; | ||
1700 | version = "1.1.3"; | ||
1701 | }; | ||
1702 | phantomjs = { | ||
1703 | platforms = []; | ||
1704 | source = { | ||
1705 | remotes = ["https://rubygems.org"]; | ||
1706 | sha256 = "0y8pbbyq9dirxb7igkb2s5limz2895qmr41c09fjhx6k6fxcz4mk"; | ||
1707 | type = "gem"; | ||
1708 | }; | ||
1709 | version = "2.1.1.0"; | ||
1710 | }; | ||
1711 | poltergeist = { | ||
1712 | dependencies = ["capybara" "cliver" "websocket-driver"]; | ||
1713 | platforms = []; | ||
1714 | source = { | ||
1715 | remotes = ["https://rubygems.org"]; | ||
1716 | sha256 = "0il80p97psmhs6scl0grq031gv7kws4ylvvd6zyr8xv91qadga95"; | ||
1717 | type = "gem"; | ||
1718 | }; | ||
1719 | version = "1.18.1"; | ||
1720 | }; | ||
1721 | powerpack = { | ||
1722 | platforms = []; | ||
1723 | source = { | ||
1724 | remotes = ["https://rubygems.org"]; | ||
1725 | sha256 = "1r51d67wd467rpdfl6x43y84vwm8f5ql9l9m85ak1s2sp3nc5hyv"; | ||
1726 | type = "gem"; | ||
1727 | }; | ||
1728 | version = "0.1.2"; | ||
1729 | }; | ||
1730 | pronto = { | ||
1731 | dependencies = ["gitlab" "httparty" "octokit" "rainbow" "rugged" "thor"]; | ||
1732 | platforms = []; | ||
1733 | source = { | ||
1734 | remotes = ["https://rubygems.org"]; | ||
1735 | sha256 = "13xbg1pm3kz5zbzxad5qgqnkzkp3ddajj7wxx16aqbfr7rqggvhz"; | ||
1736 | type = "gem"; | ||
1737 | }; | ||
1738 | version = "0.9.5"; | ||
1739 | }; | ||
1740 | pronto-eslint = { | ||
1741 | dependencies = ["eslintrb" "pronto"]; | ||
1742 | platforms = []; | ||
1743 | source = { | ||
1744 | remotes = ["https://rubygems.org"]; | ||
1745 | sha256 = "1cxyx6mlcdgv4ykliaizkx9cps68xf7qvy8lzxmv7pcqzkxaq7xc"; | ||
1746 | type = "gem"; | ||
1747 | }; | ||
1748 | version = "0.9.1"; | ||
1749 | }; | ||
1750 | pronto-haml = { | ||
1751 | dependencies = ["haml_lint" "pronto"]; | ||
1752 | platforms = []; | ||
1753 | source = { | ||
1754 | remotes = ["https://rubygems.org"]; | ||
1755 | sha256 = "116iln1whwiqy55f86q33lnnic0awnqm415xvxwnhwlagcbwmnkg"; | ||
1756 | type = "gem"; | ||
1757 | }; | ||
1758 | version = "0.9.0"; | ||
1759 | }; | ||
1760 | pronto-rubocop = { | ||
1761 | dependencies = ["pronto" "rubocop"]; | ||
1762 | platforms = []; | ||
1763 | source = { | ||
1764 | remotes = ["https://rubygems.org"]; | ||
1765 | sha256 = "0bcm34qlpp02wf69why5lpi5p53h5r4fq36f4b1fwi621fwzlgsy"; | ||
1766 | type = "gem"; | ||
1767 | }; | ||
1768 | version = "0.9.1"; | ||
1769 | }; | ||
1770 | pronto-scss = { | ||
1771 | dependencies = ["pronto" "scss_lint"]; | ||
1772 | platforms = []; | ||
1773 | source = { | ||
1774 | remotes = ["https://rubygems.org"]; | ||
1775 | sha256 = "0kgaqd6l2w3brdsp5231fpfr6fwajciz2hdr925l1zhh6ni1y2za"; | ||
1776 | type = "gem"; | ||
1777 | }; | ||
1778 | version = "0.9.1"; | ||
1779 | }; | ||
1780 | pry = { | ||
1781 | dependencies = ["coderay" "method_source"]; | ||
1782 | platforms = []; | ||
1783 | source = { | ||
1784 | remotes = ["https://rubygems.org"]; | ||
1785 | sha256 = "00rm71x0r1jdycwbs83lf9l6p494m99asakbvqxh8rz7zwnlzg69"; | ||
1786 | type = "gem"; | ||
1787 | }; | ||
1788 | version = "0.12.2"; | ||
1789 | }; | ||
1790 | pry-byebug = { | ||
1791 | dependencies = ["byebug" "pry"]; | ||
1792 | platforms = []; | ||
1793 | source = { | ||
1794 | remotes = ["https://rubygems.org"]; | ||
1795 | sha256 = "0y2758593i2ij0nhmv0j1pbdfx2cgi52ns6wkij0frgnk2lf650g"; | ||
1796 | type = "gem"; | ||
1797 | }; | ||
1798 | version = "3.6.0"; | ||
1799 | }; | ||
1800 | public_suffix = { | ||
1801 | platforms = []; | ||
1802 | source = { | ||
1803 | remotes = ["https://rubygems.org"]; | ||
1804 | sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; | ||
1805 | type = "gem"; | ||
1806 | }; | ||
1807 | version = "3.0.3"; | ||
1808 | }; | ||
1809 | raabro = { | ||
1810 | platforms = []; | ||
1811 | source = { | ||
1812 | remotes = ["https://rubygems.org"]; | ||
1813 | sha256 = "0xzdmbn48753f6k0ckirp8ja5p0xn1a92wbwxfyggyhj0hza9ylq"; | ||
1814 | type = "gem"; | ||
1815 | }; | ||
1816 | version = "1.1.6"; | ||
1817 | }; | ||
1818 | rack = { | ||
1819 | platforms = []; | ||
1820 | source = { | ||
1821 | remotes = ["https://rubygems.org"]; | ||
1822 | sha256 = "1pcgv8dv4vkaczzlix8q3j68capwhk420cddzijwqgi2qb4lm1zm"; | ||
1823 | type = "gem"; | ||
1824 | }; | ||
1825 | version = "2.0.6"; | ||
1826 | }; | ||
1827 | rack-cors = { | ||
1828 | platforms = []; | ||
1829 | source = { | ||
1830 | remotes = ["https://rubygems.org"]; | ||
1831 | sha256 = "1j27vy1bmhbqcyzhxg8d07qassmax769xjalfwcwz6qfiq8cf013"; | ||
1832 | type = "gem"; | ||
1833 | }; | ||
1834 | version = "1.0.2"; | ||
1835 | }; | ||
1836 | rack-google-analytics = { | ||
1837 | dependencies = ["actionpack" "activesupport"]; | ||
1838 | platforms = []; | ||
1839 | source = { | ||
1840 | remotes = ["https://rubygems.org"]; | ||
1841 | sha256 = "09pv0z5dhjjrlhi9qj5qy48hi66f7iix337qrapg7mvwwz6czcvj"; | ||
1842 | type = "gem"; | ||
1843 | }; | ||
1844 | version = "1.2.0"; | ||
1845 | }; | ||
1846 | rack-mobile-detect = { | ||
1847 | dependencies = ["rack"]; | ||
1848 | platforms = []; | ||
1849 | source = { | ||
1850 | remotes = ["https://rubygems.org"]; | ||
1851 | sha256 = "0bagli6ldhkpd1yym775sxy7w5n4jds6gbcjm3gmcl37vggvm8a5"; | ||
1852 | type = "gem"; | ||
1853 | }; | ||
1854 | version = "0.4.0"; | ||
1855 | }; | ||
1856 | rack-oauth2 = { | ||
1857 | dependencies = ["activesupport" "attr_required" "httpclient" "json-jwt" "rack"]; | ||
1858 | platforms = []; | ||
1859 | source = { | ||
1860 | remotes = ["https://rubygems.org"]; | ||
1861 | sha256 = "0kmxj9hbjhhcs3yyb433s82hkpmzb536m0mwfadjiaisganx1cii"; | ||
1862 | type = "gem"; | ||
1863 | }; | ||
1864 | version = "1.9.3"; | ||
1865 | }; | ||
1866 | rack-piwik = { | ||
1867 | platforms = []; | ||
1868 | source = { | ||
1869 | remotes = ["https://rubygems.org"]; | ||
1870 | sha256 = "0raxrckapqh693lpid0cnx1j1v2i3mz5cyssg7grgrilgrn9318z"; | ||
1871 | type = "gem"; | ||
1872 | }; | ||
1873 | version = "0.3.0"; | ||
1874 | }; | ||
1875 | rack-protection = { | ||
1876 | dependencies = ["rack"]; | ||
1877 | platforms = []; | ||
1878 | source = { | ||
1879 | remotes = ["https://rubygems.org"]; | ||
1880 | sha256 = "0ylx74ravz7nvnyygq0nk3v86qdzrmqxpwpayhppyy50l72rcajq"; | ||
1881 | type = "gem"; | ||
1882 | }; | ||
1883 | version = "2.0.4"; | ||
1884 | }; | ||
1885 | rack-rewrite = { | ||
1886 | platforms = []; | ||
1887 | source = { | ||
1888 | remotes = ["https://rubygems.org"]; | ||
1889 | sha256 = "0milw71dv96wnc6i48vbzypws51dgf415kkp8c4air0mkdhpj838"; | ||
1890 | type = "gem"; | ||
1891 | }; | ||
1892 | version = "1.5.1"; | ||
1893 | }; | ||
1894 | rack-ssl = { | ||
1895 | dependencies = ["rack"]; | ||
1896 | platforms = []; | ||
1897 | source = { | ||
1898 | remotes = ["https://rubygems.org"]; | ||
1899 | sha256 = "0c21xqkjyl10fngq6dy8082vmn2png8cwkiyzv83ymixq5cx7ygp"; | ||
1900 | type = "gem"; | ||
1901 | }; | ||
1902 | version = "1.4.1"; | ||
1903 | }; | ||
1904 | rack-test = { | ||
1905 | dependencies = ["rack"]; | ||
1906 | platforms = []; | ||
1907 | source = { | ||
1908 | remotes = ["https://rubygems.org"]; | ||
1909 | sha256 = "0rh8h376mx71ci5yklnpqqn118z3bl67nnv5k801qaqn1zs62h8m"; | ||
1910 | type = "gem"; | ||
1911 | }; | ||
1912 | version = "1.1.0"; | ||
1913 | }; | ||
1914 | rails = { | ||
1915 | dependencies = ["actioncable" "actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; | ||
1916 | platforms = []; | ||
1917 | source = { | ||
1918 | remotes = ["https://rubygems.org"]; | ||
1919 | sha256 = "0lb07cbwgm371zyn9i6fyj9q8rmv89lacmyzrfvzxqqx2n3ilc5q"; | ||
1920 | type = "gem"; | ||
1921 | }; | ||
1922 | version = "5.1.6"; | ||
1923 | }; | ||
1924 | rails-assets-autosize = { | ||
1925 | platforms = []; | ||
1926 | source = { | ||
1927 | remotes = ["https://rails-assets.org"]; | ||
1928 | sha256 = "0hr72mfprb9678lf7dj9lh801lm7p98nzkrnrz764sy9lmbpzcib"; | ||
1929 | type = "gem"; | ||
1930 | }; | ||
1931 | version = "4.0.2"; | ||
1932 | }; | ||
1933 | rails-assets-backbone = { | ||
1934 | dependencies = ["rails-assets-underscore"]; | ||
1935 | platforms = []; | ||
1936 | source = { | ||
1937 | remotes = ["https://rails-assets.org"]; | ||
1938 | sha256 = "0zjgwhgfmg1jyyds7zfjp6g4bz8vw56qvhlrpj943wcqpdxm93id"; | ||
1939 | type = "gem"; | ||
1940 | }; | ||
1941 | version = "1.3.3"; | ||
1942 | }; | ||
1943 | rails-assets-blueimp-gallery = { | ||
1944 | platforms = []; | ||
1945 | source = { | ||
1946 | remotes = ["https://rails-assets.org"]; | ||
1947 | sha256 = "18b7xvvkdnd39xlbkyw46i86w3wzj349s8iv5wdiypa5qdcql8mq"; | ||
1948 | type = "gem"; | ||
1949 | }; | ||
1950 | version = "2.33.0"; | ||
1951 | }; | ||
1952 | rails-assets-bootstrap = { | ||
1953 | dependencies = ["rails-assets-jquery"]; | ||
1954 | platforms = []; | ||
1955 | source = { | ||
1956 | remotes = ["https://rails-assets.org"]; | ||
1957 | sha256 = "0x4i11132qcmghmqb061iq47yksrr7i0la5hzzdm38dxybh87x5v"; | ||
1958 | type = "gem"; | ||
1959 | }; | ||
1960 | version = "3.3.7"; | ||
1961 | }; | ||
1962 | rails-assets-bootstrap-markdown = { | ||
1963 | dependencies = ["rails-assets-bootstrap"]; | ||
1964 | platforms = []; | ||
1965 | source = { | ||
1966 | remotes = ["https://rails-assets.org"]; | ||
1967 | sha256 = "1nxirs9wx5jxrjmxjwvsqlf2rsypjn3ajg7fs28c4ib7wwpabwj3"; | ||
1968 | type = "gem"; | ||
1969 | }; | ||
1970 | version = "2.10.0"; | ||
1971 | }; | ||
1972 | rails-assets-corejs-typeahead = { | ||
1973 | dependencies = ["rails-assets-jquery"]; | ||
1974 | platforms = []; | ||
1975 | source = { | ||
1976 | remotes = ["https://rails-assets.org"]; | ||
1977 | sha256 = "1p5i6afd156rakrin99c2ryaz3zykx21ir6y10l34jnw03rikcfg"; | ||
1978 | type = "gem"; | ||
1979 | }; | ||
1980 | version = "1.2.1"; | ||
1981 | }; | ||
1982 | rails-assets-diaspora_jsxc = { | ||
1983 | dependencies = ["rails-assets-emojione" "rails-assets-favico.js" "rails-assets-jquery-colorbox" "rails-assets-jquery-fullscreen-plugin" "rails-assets-jquery.slimscroll" "rails-assets-jquery.ui"]; | ||
1984 | platforms = []; | ||
1985 | source = { | ||
1986 | remotes = ["https://rails-assets.org"]; | ||
1987 | sha256 = "07vqdj0l8fsj4fd2sschba2jgfbimyfad56009ldzlcvb6ml5nhi"; | ||
1988 | type = "gem"; | ||
1989 | }; | ||
1990 | version = "0.1.5.develop.7"; | ||
1991 | }; | ||
1992 | rails-assets-emojione = { | ||
1993 | platforms = []; | ||
1994 | source = { | ||
1995 | remotes = ["https://rails-assets.org"]; | ||
1996 | sha256 = "1j29vbsf6v9ikiqlmnfgzxys4xsa1glvmfky8id5xfyymnjx2c52"; | ||
1997 | type = "gem"; | ||
1998 | }; | ||
1999 | version = "2.0.1"; | ||
2000 | }; | ||
2001 | "rails-assets-favico.js" = { | ||
2002 | platforms = []; | ||
2003 | source = { | ||
2004 | remotes = ["https://rails-assets.org"]; | ||
2005 | sha256 = "19yndhljmqlvarf49h5v71zq0p0ngvspjr2v0m6lac0q9ni7r5bv"; | ||
2006 | type = "gem"; | ||
2007 | }; | ||
2008 | version = "0.3.10"; | ||
2009 | }; | ||
2010 | rails-assets-fine-uploader = { | ||
2011 | platforms = []; | ||
2012 | source = { | ||
2013 | remotes = ["https://rails-assets.org"]; | ||
2014 | sha256 = "1vxj78x2vvlchpapxpaawysc9wn8alzdd3gxhwfwy11xv8ka9mdv"; | ||
2015 | type = "gem"; | ||
2016 | }; | ||
2017 | version = "5.13.0"; | ||
2018 | }; | ||
2019 | rails-assets-highlightjs = { | ||
2020 | platforms = []; | ||
2021 | source = { | ||
2022 | remotes = ["https://rails-assets.org"]; | ||
2023 | sha256 = "0spmb0gkfs13fmljjv1n53r53q69fhb6r573ndbxnhgb3izqgnqp"; | ||
2024 | type = "gem"; | ||
2025 | }; | ||
2026 | version = "9.12.0"; | ||
2027 | }; | ||
2028 | rails-assets-jasmine = { | ||
2029 | platforms = []; | ||
2030 | source = { | ||
2031 | remotes = ["https://rails-assets.org"]; | ||
2032 | sha256 = "1n6yixrl9cgq5kckay75b44p878s1kqi69mhgyw99w8dsq8i2vy5"; | ||
2033 | type = "gem"; | ||
2034 | }; | ||
2035 | version = "3.3.0"; | ||
2036 | }; | ||
2037 | rails-assets-jasmine-ajax = { | ||
2038 | dependencies = ["rails-assets-jasmine"]; | ||
2039 | platforms = []; | ||
2040 | source = { | ||
2041 | remotes = ["https://rails-assets.org"]; | ||
2042 | sha256 = "0l8z0p75x1yzk1l1ryfvdlvq8yq4w2xngp4icz478axd5jcqx6kg"; | ||
2043 | type = "gem"; | ||
2044 | }; | ||
2045 | version = "3.4.0"; | ||
2046 | }; | ||
2047 | rails-assets-jquery = { | ||
2048 | platforms = []; | ||
2049 | source = { | ||
2050 | remotes = ["https://rails-assets.org"]; | ||
2051 | sha256 = "1wcaappk12w300733lrqb571cir9nw35d9q6d2i52wwdvhv2fx2y"; | ||
2052 | type = "gem"; | ||
2053 | }; | ||
2054 | version = "3.3.1"; | ||
2055 | }; | ||
2056 | rails-assets-jquery-colorbox = { | ||
2057 | dependencies = ["rails-assets-jquery"]; | ||
2058 | platforms = []; | ||
2059 | source = { | ||
2060 | remotes = ["https://rails-assets.org"]; | ||
2061 | sha256 = "19ws3r1zfviwnfr9s0jh6iqss50iwqkf4a78zhrk0p3bb4lvmmsp"; | ||
2062 | type = "gem"; | ||
2063 | }; | ||
2064 | version = "1.6.4"; | ||
2065 | }; | ||
2066 | rails-assets-jquery-fullscreen-plugin = { | ||
2067 | platforms = []; | ||
2068 | source = { | ||
2069 | remotes = ["https://rails-assets.org"]; | ||
2070 | sha256 = "0ldvq4s15lap9p6w7d1yw6dajn2gh6p75dbkp79p0d8ylzapsd58"; | ||
2071 | type = "gem"; | ||
2072 | }; | ||
2073 | version = "0.5.0"; | ||
2074 | }; | ||
2075 | rails-assets-jquery-placeholder = { | ||
2076 | dependencies = ["rails-assets-jquery"]; | ||
2077 | platforms = []; | ||
2078 | source = { | ||
2079 | remotes = ["https://rails-assets.org"]; | ||
2080 | sha256 = "0h17gjazc27pj4cm2ig232ww4d4ppq9bcginwzjss95pl63richi"; | ||
2081 | type = "gem"; | ||
2082 | }; | ||
2083 | version = "2.3.1"; | ||
2084 | }; | ||
2085 | rails-assets-jquery-textchange = { | ||
2086 | dependencies = ["rails-assets-jquery"]; | ||
2087 | platforms = []; | ||
2088 | source = { | ||
2089 | remotes = ["https://rails-assets.org"]; | ||
2090 | sha256 = "0rsw3cn9a5njv80zy53339kmrmv60b8fqcrr7bacapbagb2rd4dj"; | ||
2091 | type = "gem"; | ||
2092 | }; | ||
2093 | version = "0.2.3"; | ||
2094 | }; | ||
2095 | "rails-assets-jquery.are-you-sure" = { | ||
2096 | dependencies = ["rails-assets-jquery"]; | ||
2097 | platforms = []; | ||
2098 | source = { | ||
2099 | remotes = ["https://rails-assets.org"]; | ||
2100 | sha256 = "0nj04aqh9jpcg57xbjxpm2vn7mkd5clnpma907515a1nxy40bym0"; | ||
2101 | type = "gem"; | ||
2102 | }; | ||
2103 | version = "1.9.0"; | ||
2104 | }; | ||
2105 | "rails-assets-jquery.slimscroll" = { | ||
2106 | platforms = []; | ||
2107 | source = { | ||
2108 | remotes = ["https://rails-assets.org"]; | ||
2109 | sha256 = "1rymmd2rxy1vjjj70v88abmdlfs55276rs3rksj300dgirnnj998"; | ||
2110 | type = "gem"; | ||
2111 | }; | ||
2112 | version = "1.3.8"; | ||
2113 | }; | ||
2114 | "rails-assets-jquery.ui" = { | ||
2115 | dependencies = ["rails-assets-jquery"]; | ||
2116 | platforms = []; | ||
2117 | source = { | ||
2118 | remotes = ["https://rails-assets.org"]; | ||
2119 | sha256 = "0xc9kfb29hi441irj49b7aawxkddk1dxzy938rpqv9ylpsj7knaa"; | ||
2120 | type = "gem"; | ||
2121 | }; | ||
2122 | version = "1.11.4"; | ||
2123 | }; | ||
2124 | rails-assets-markdown-it = { | ||
2125 | platforms = []; | ||
2126 | source = { | ||
2127 | remotes = ["https://rails-assets.org"]; | ||
2128 | sha256 = "0fxx7ldszsdqr5ry21bnxmv33byz7abpk9lcp100q5cqsjx091r9"; | ||
2129 | type = "gem"; | ||
2130 | }; | ||
2131 | version = "8.4.2"; | ||
2132 | }; | ||
2133 | rails-assets-markdown-it--markdown-it-for-inline = { | ||
2134 | platforms = []; | ||
2135 | source = { | ||
2136 | remotes = ["https://rails-assets.org"]; | ||
2137 | sha256 = "0fznv2x7ndadr3wb4dzhh86bpcpwz8f4d8rfhz4sfbqlai40j3jl"; | ||
2138 | type = "gem"; | ||
2139 | }; | ||
2140 | version = "0.1.1"; | ||
2141 | }; | ||
2142 | rails-assets-markdown-it-diaspora-mention = { | ||
2143 | platforms = []; | ||
2144 | source = { | ||
2145 | remotes = ["https://rails-assets.org"]; | ||
2146 | sha256 = "0asggm7wgmdll8x94291p2w6icmp2izi914dlh3b7vb7dpjq3jig"; | ||
2147 | type = "gem"; | ||
2148 | }; | ||
2149 | version = "1.2.0"; | ||
2150 | }; | ||
2151 | rails-assets-markdown-it-hashtag = { | ||
2152 | platforms = []; | ||
2153 | source = { | ||
2154 | remotes = ["https://rails-assets.org"]; | ||
2155 | sha256 = "0dr8fwaxgkfqm7z4rl4jdym0i1ycqw1sgkxshkd9k0849ry12cdk"; | ||
2156 | type = "gem"; | ||
2157 | }; | ||
2158 | version = "0.4.0"; | ||
2159 | }; | ||
2160 | rails-assets-markdown-it-sanitizer = { | ||
2161 | platforms = []; | ||
2162 | source = { | ||
2163 | remotes = ["https://rails-assets.org"]; | ||
2164 | sha256 = "0fkpffh83fc257zkzaia93j4hw2baz90lg10s5yxsxww06q5dn36"; | ||
2165 | type = "gem"; | ||
2166 | }; | ||
2167 | version = "0.4.3"; | ||
2168 | }; | ||
2169 | rails-assets-markdown-it-sub = { | ||
2170 | platforms = []; | ||
2171 | source = { | ||
2172 | remotes = ["https://rails-assets.org"]; | ||
2173 | sha256 = "08hjij5fqvhvg7s27n4g8qqsks974g3kc5k7xl2qmh41k7f4hcrk"; | ||
2174 | type = "gem"; | ||
2175 | }; | ||
2176 | version = "1.0.0"; | ||
2177 | }; | ||
2178 | rails-assets-markdown-it-sup = { | ||
2179 | platforms = []; | ||
2180 | source = { | ||
2181 | remotes = ["https://rails-assets.org"]; | ||
2182 | sha256 = "17nnnvky7zy0yiwwl6dm8ibbkyvvf63xfp3snch4dzmras05lmig"; | ||
2183 | type = "gem"; | ||
2184 | }; | ||
2185 | version = "1.0.0"; | ||
2186 | }; | ||
2187 | rails-assets-underscore = { | ||
2188 | platforms = []; | ||
2189 | source = { | ||
2190 | remotes = ["https://rails-assets.org"]; | ||
2191 | sha256 = "1ccnzj7aqrvngcs915y290pijryqmjygimdwlrykpyj8vwzifdnc"; | ||
2192 | type = "gem"; | ||
2193 | }; | ||
2194 | version = "1.9.1"; | ||
2195 | }; | ||
2196 | rails-assets-utatti-perfect-scrollbar = { | ||
2197 | platforms = []; | ||
2198 | source = { | ||
2199 | remotes = ["https://rails-assets.org"]; | ||
2200 | sha256 = "0m8syfv8p5bnwm8nrba6mpjnhrd29ffwzi6awhiw537jqw42b12v"; | ||
2201 | type = "gem"; | ||
2202 | }; | ||
2203 | version = "1.4.0"; | ||
2204 | }; | ||
2205 | rails-controller-testing = { | ||
2206 | dependencies = ["actionpack" "actionview" "activesupport"]; | ||
2207 | platforms = []; | ||
2208 | source = { | ||
2209 | remotes = ["https://rubygems.org"]; | ||
2210 | sha256 = "16kdkk73mhhs73iz3i1i0ryjm84dadiyh817b3nh8acdi490jyhy"; | ||
2211 | type = "gem"; | ||
2212 | }; | ||
2213 | version = "1.0.2"; | ||
2214 | }; | ||
2215 | rails-dom-testing = { | ||
2216 | dependencies = ["activesupport" "nokogiri"]; | ||
2217 | platforms = []; | ||
2218 | source = { | ||
2219 | remotes = ["https://rubygems.org"]; | ||
2220 | sha256 = "1lfq2a7kp2x64dzzi5p4cjcbiv62vxh9lyqk2f0rqq3fkzrw8h5i"; | ||
2221 | type = "gem"; | ||
2222 | }; | ||
2223 | version = "2.0.3"; | ||
2224 | }; | ||
2225 | rails-html-sanitizer = { | ||
2226 | dependencies = ["loofah"]; | ||
2227 | platforms = []; | ||
2228 | source = { | ||
2229 | remotes = ["https://rubygems.org"]; | ||
2230 | sha256 = "1gv7vr5d9g2xmgpjfq4nxsqr70r9pr042r9ycqqnfvw5cz9c7jwr"; | ||
2231 | type = "gem"; | ||
2232 | }; | ||
2233 | version = "1.0.4"; | ||
2234 | }; | ||
2235 | rails-i18n = { | ||
2236 | dependencies = ["i18n" "railties"]; | ||
2237 | platforms = []; | ||
2238 | source = { | ||
2239 | remotes = ["https://rubygems.org"]; | ||
2240 | sha256 = "05lkhc737a9dw0hd5ljmja0yp4cw39r3200s1r0n4bs7z1g3ka7l"; | ||
2241 | type = "gem"; | ||
2242 | }; | ||
2243 | version = "5.1.2"; | ||
2244 | }; | ||
2245 | rails-timeago = { | ||
2246 | dependencies = ["actionpack" "activesupport"]; | ||
2247 | platforms = []; | ||
2248 | source = { | ||
2249 | remotes = ["https://rubygems.org"]; | ||
2250 | sha256 = "01x1vs9hni9wn8dc4fmyqzkrn651chzsi2mhmk0pxdrfx9md0lxv"; | ||
2251 | type = "gem"; | ||
2252 | }; | ||
2253 | version = "2.16.0"; | ||
2254 | }; | ||
2255 | railties = { | ||
2256 | dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor"]; | ||
2257 | platforms = []; | ||
2258 | source = { | ||
2259 | remotes = ["https://rubygems.org"]; | ||
2260 | sha256 = "0ycy2gdaj0px1vfaghskvl6qkczwaigrli2zxn54w7zn1z29faj8"; | ||
2261 | type = "gem"; | ||
2262 | }; | ||
2263 | version = "5.1.6"; | ||
2264 | }; | ||
2265 | rainbow = { | ||
2266 | dependencies = ["rake"]; | ||
2267 | platforms = []; | ||
2268 | source = { | ||
2269 | remotes = ["https://rubygems.org"]; | ||
2270 | sha256 = "08w2ghc5nv0kcq5b257h7dwjzjz1pqcavajfdx2xjyxqsvh2y34w"; | ||
2271 | type = "gem"; | ||
2272 | }; | ||
2273 | version = "2.2.2"; | ||
2274 | }; | ||
2275 | raindrops = { | ||
2276 | platforms = []; | ||
2277 | source = { | ||
2278 | remotes = ["https://rubygems.org"]; | ||
2279 | sha256 = "1qpbd9jif40c53fz2r0l8khfl016y8s8bkx37ibcaafclbl3xygp"; | ||
2280 | type = "gem"; | ||
2281 | }; | ||
2282 | version = "0.19.0"; | ||
2283 | }; | ||
2284 | rake = { | ||
2285 | platforms = []; | ||
2286 | source = { | ||
2287 | remotes = ["https://rubygems.org"]; | ||
2288 | sha256 = "1idi53jay34ba9j68c3mfr9wwkg3cd9qh0fn9cg42hv72c6q8dyg"; | ||
2289 | type = "gem"; | ||
2290 | }; | ||
2291 | version = "12.3.1"; | ||
2292 | }; | ||
2293 | rb-fsevent = { | ||
2294 | platforms = []; | ||
2295 | source = { | ||
2296 | remotes = ["https://rubygems.org"]; | ||
2297 | sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8"; | ||
2298 | type = "gem"; | ||
2299 | }; | ||
2300 | version = "0.10.3"; | ||
2301 | }; | ||
2302 | rb-inotify = { | ||
2303 | dependencies = ["ffi"]; | ||
2304 | platforms = []; | ||
2305 | source = { | ||
2306 | remotes = ["https://rubygems.org"]; | ||
2307 | sha256 = "0yfsgw5n7pkpyky6a9wkf1g9jafxb0ja7gz0qw0y14fd2jnzfh71"; | ||
2308 | type = "gem"; | ||
2309 | }; | ||
2310 | version = "0.9.10"; | ||
2311 | }; | ||
2312 | redcarpet = { | ||
2313 | platforms = []; | ||
2314 | source = { | ||
2315 | remotes = ["https://rubygems.org"]; | ||
2316 | sha256 = "0h9qz2hik4s9knpmbwrzb3jcp3vc5vygp9ya8lcpl7f1l9khmcd7"; | ||
2317 | type = "gem"; | ||
2318 | }; | ||
2319 | version = "3.4.0"; | ||
2320 | }; | ||
2321 | redis = { | ||
2322 | platforms = []; | ||
2323 | source = { | ||
2324 | remotes = ["https://rubygems.org"]; | ||
2325 | sha256 = "0i415x8gi0c5vsiy6ikvx5js6fhc4x80a5lqv8iidy2iymd20irv"; | ||
2326 | type = "gem"; | ||
2327 | }; | ||
2328 | version = "3.3.5"; | ||
2329 | }; | ||
2330 | regexp_parser = { | ||
2331 | platforms = []; | ||
2332 | source = { | ||
2333 | remotes = ["https://rubygems.org"]; | ||
2334 | sha256 = "18g5jyg3blsdrz3mc8d87bms6qqn6gcdh1nvdhvgbjdpk9pw21dq"; | ||
2335 | type = "gem"; | ||
2336 | }; | ||
2337 | version = "1.3.0"; | ||
2338 | }; | ||
2339 | request_store = { | ||
2340 | dependencies = ["rack"]; | ||
2341 | platforms = []; | ||
2342 | source = { | ||
2343 | remotes = ["https://rubygems.org"]; | ||
2344 | sha256 = "1963330z03fk382fi8y231ygcbnh86m91dqlp5rh1mwy9ihzzl6d"; | ||
2345 | type = "gem"; | ||
2346 | }; | ||
2347 | version = "1.4.1"; | ||
2348 | }; | ||
2349 | responders = { | ||
2350 | dependencies = ["actionpack" "railties"]; | ||
2351 | platforms = []; | ||
2352 | source = { | ||
2353 | remotes = ["https://rubygems.org"]; | ||
2354 | sha256 = "1rhdyyvvm26f2l3fgwdp6xasfl2y0whwgy766bhdwz697mf78zfn"; | ||
2355 | type = "gem"; | ||
2356 | }; | ||
2357 | version = "2.4.0"; | ||
2358 | }; | ||
2359 | rspec = { | ||
2360 | dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; | ||
2361 | platforms = []; | ||
2362 | source = { | ||
2363 | remotes = ["https://rubygems.org"]; | ||
2364 | sha256 = "15ppasvb9qrscwlyjz67ppw1lnxiqnkzx5vkx1bd8x5n3dhikxc3"; | ||
2365 | type = "gem"; | ||
2366 | }; | ||
2367 | version = "3.8.0"; | ||
2368 | }; | ||
2369 | rspec-core = { | ||
2370 | dependencies = ["rspec-support"]; | ||
2371 | platforms = []; | ||
2372 | source = { | ||
2373 | remotes = ["https://rubygems.org"]; | ||
2374 | sha256 = "1p1s5bnbqp3sxk67y0fh0x884jjym527r0vgmhbm81w7aq6b7l4p"; | ||
2375 | type = "gem"; | ||
2376 | }; | ||
2377 | version = "3.8.0"; | ||
2378 | }; | ||
2379 | rspec-expectations = { | ||
2380 | dependencies = ["diff-lcs" "rspec-support"]; | ||
2381 | platforms = []; | ||
2382 | source = { | ||
2383 | remotes = ["https://rubygems.org"]; | ||
2384 | sha256 = "18l21hy1zdc2pgc2yb17k3n2al1khpfr0z6pijlm852iz6vj0dkm"; | ||
2385 | type = "gem"; | ||
2386 | }; | ||
2387 | version = "3.8.2"; | ||
2388 | }; | ||
2389 | rspec-json_expectations = { | ||
2390 | platforms = []; | ||
2391 | source = { | ||
2392 | remotes = ["https://rubygems.org"]; | ||
2393 | sha256 = "0l3dhvkb95zwyg72wz33azxigc9cisqgg3z16ksns1sx0b93nnbn"; | ||
2394 | type = "gem"; | ||
2395 | }; | ||
2396 | version = "2.1.0"; | ||
2397 | }; | ||
2398 | rspec-mocks = { | ||
2399 | dependencies = ["diff-lcs" "rspec-support"]; | ||
2400 | platforms = []; | ||
2401 | source = { | ||
2402 | remotes = ["https://rubygems.org"]; | ||
2403 | sha256 = "06y508cjqycb4yfhxmb3nxn0v9xqf17qbd46l1dh4xhncinr4fyp"; | ||
2404 | type = "gem"; | ||
2405 | }; | ||
2406 | version = "3.8.0"; | ||
2407 | }; | ||
2408 | rspec-rails = { | ||
2409 | dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; | ||
2410 | platforms = []; | ||
2411 | source = { | ||
2412 | remotes = ["https://rubygems.org"]; | ||
2413 | sha256 = "0sqj5da2kc937j5jb18jcf0hrmmzwgj7pk62j0q3qndhc2kvx88p"; | ||
2414 | type = "gem"; | ||
2415 | }; | ||
2416 | version = "3.8.1"; | ||
2417 | }; | ||
2418 | rspec-support = { | ||
2419 | platforms = []; | ||
2420 | source = { | ||
2421 | remotes = ["https://rubygems.org"]; | ||
2422 | sha256 = "0p3m7drixrlhvj2zpc38b11x145bvm311x6f33jjcxmvcm0wq609"; | ||
2423 | type = "gem"; | ||
2424 | }; | ||
2425 | version = "3.8.0"; | ||
2426 | }; | ||
2427 | rubocop = { | ||
2428 | dependencies = ["jaro_winkler" "parallel" "parser" "powerpack" "rainbow" "ruby-progressbar" "unicode-display_width"]; | ||
2429 | platforms = []; | ||
2430 | source = { | ||
2431 | remotes = ["https://rubygems.org"]; | ||
2432 | sha256 = "1ivk049z3mp12nc6v1wn35bsq1g7nz1i2r4xwzqf0v25hm2v7n1i"; | ||
2433 | type = "gem"; | ||
2434 | }; | ||
2435 | version = "0.60.0"; | ||
2436 | }; | ||
2437 | ruby-oembed = { | ||
2438 | platforms = []; | ||
2439 | source = { | ||
2440 | remotes = ["https://rubygems.org"]; | ||
2441 | sha256 = "1kw4aplb3m13z3kchhb79wf87qb3prn1m99s6vl5cyp0xqwyymv0"; | ||
2442 | type = "gem"; | ||
2443 | }; | ||
2444 | version = "0.12.0"; | ||
2445 | }; | ||
2446 | ruby-progressbar = { | ||
2447 | platforms = []; | ||
2448 | source = { | ||
2449 | remotes = ["https://rubygems.org"]; | ||
2450 | sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"; | ||
2451 | type = "gem"; | ||
2452 | }; | ||
2453 | version = "1.10.0"; | ||
2454 | }; | ||
2455 | ruby_dep = { | ||
2456 | platforms = []; | ||
2457 | source = { | ||
2458 | remotes = ["https://rubygems.org"]; | ||
2459 | sha256 = "1c1bkl97i9mkcvkn1jks346ksnvnnp84cs22gwl0vd7radybrgy5"; | ||
2460 | type = "gem"; | ||
2461 | }; | ||
2462 | version = "1.5.0"; | ||
2463 | }; | ||
2464 | rubyzip = { | ||
2465 | platforms = []; | ||
2466 | source = { | ||
2467 | remotes = ["https://rubygems.org"]; | ||
2468 | sha256 = "1n1lb2sdwh9h27y244hxzg1lrxxg2m53pk1vq7p33bna003qkyrj"; | ||
2469 | type = "gem"; | ||
2470 | }; | ||
2471 | version = "1.2.2"; | ||
2472 | }; | ||
2473 | rugged = { | ||
2474 | platforms = []; | ||
2475 | source = { | ||
2476 | remotes = ["https://rubygems.org"]; | ||
2477 | sha256 = "1jv4nw9hvlxp8hhhlllrfcznki82i50fp1sj65zsjllfl2bvz8x6"; | ||
2478 | type = "gem"; | ||
2479 | }; | ||
2480 | version = "0.27.5"; | ||
2481 | }; | ||
2482 | safe_yaml = { | ||
2483 | platforms = []; | ||
2484 | source = { | ||
2485 | remotes = ["https://rubygems.org"]; | ||
2486 | sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; | ||
2487 | type = "gem"; | ||
2488 | }; | ||
2489 | version = "1.0.4"; | ||
2490 | }; | ||
2491 | sass = { | ||
2492 | platforms = []; | ||
2493 | source = { | ||
2494 | remotes = ["https://rubygems.org"]; | ||
2495 | sha256 = "0kfpcwh8dgw4lc81qglkvjl73689jy3g7196zkxm4fpskg1p5lkw"; | ||
2496 | type = "gem"; | ||
2497 | }; | ||
2498 | version = "3.4.25"; | ||
2499 | }; | ||
2500 | sass-rails = { | ||
2501 | dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"]; | ||
2502 | platforms = []; | ||
2503 | source = { | ||
2504 | remotes = ["https://rubygems.org"]; | ||
2505 | sha256 = "1wa63sbsimrsf7nfm8h0m1wbsllkfxvd7naph5d1j6pbc555ma7s"; | ||
2506 | type = "gem"; | ||
2507 | }; | ||
2508 | version = "5.0.7"; | ||
2509 | }; | ||
2510 | sawyer = { | ||
2511 | dependencies = ["addressable" "faraday"]; | ||
2512 | platforms = []; | ||
2513 | source = { | ||
2514 | remotes = ["https://rubygems.org"]; | ||
2515 | sha256 = "0sv1463r7bqzvx4drqdmd36m7rrv6sf1v3c6vswpnq3k6vdw2dvd"; | ||
2516 | type = "gem"; | ||
2517 | }; | ||
2518 | version = "0.8.1"; | ||
2519 | }; | ||
2520 | scss_lint = { | ||
2521 | dependencies = ["rake" "sass"]; | ||
2522 | platforms = []; | ||
2523 | source = { | ||
2524 | remotes = ["https://rubygems.org"]; | ||
2525 | sha256 = "11rl8kj32p34mqlkhxvlwfrwl8gdl0iha8q9xsrr3sjxjagzv8yp"; | ||
2526 | type = "gem"; | ||
2527 | }; | ||
2528 | version = "0.55.0"; | ||
2529 | }; | ||
2530 | secure_headers = { | ||
2531 | platforms = []; | ||
2532 | source = { | ||
2533 | remotes = ["https://rubygems.org"]; | ||
2534 | sha256 = "17cxci8jyvlgssix0cy7kbm5m2h7s8ym9caj8nilrbd21jis9pc5"; | ||
2535 | type = "gem"; | ||
2536 | }; | ||
2537 | version = "6.0.0"; | ||
2538 | }; | ||
2539 | shellany = { | ||
2540 | platforms = []; | ||
2541 | source = { | ||
2542 | remotes = ["https://rubygems.org"]; | ||
2543 | sha256 = "1ryyzrj1kxmnpdzhlv4ys3dnl2r5r3d2rs2jwzbnd1v96a8pl4hf"; | ||
2544 | type = "gem"; | ||
2545 | }; | ||
2546 | version = "0.0.1"; | ||
2547 | }; | ||
2548 | shoulda-matchers = { | ||
2549 | dependencies = ["activesupport"]; | ||
2550 | platforms = []; | ||
2551 | source = { | ||
2552 | remotes = ["https://rubygems.org"]; | ||
2553 | sha256 = "1zvv94pqk5b5my3w1shdz7h34xf2ldhg5k4qfdpbwi2iy0j9zw2a"; | ||
2554 | type = "gem"; | ||
2555 | }; | ||
2556 | version = "3.1.2"; | ||
2557 | }; | ||
2558 | sidekiq = { | ||
2559 | dependencies = ["connection_pool" "rack-protection" "redis"]; | ||
2560 | platforms = []; | ||
2561 | source = { | ||
2562 | remotes = ["https://rubygems.org"]; | ||
2563 | sha256 = "1zyf9y3rvzizbwh68i2g1lzd40lalrdc4iyjmaa74gnfwsf92i26"; | ||
2564 | type = "gem"; | ||
2565 | }; | ||
2566 | version = "5.2.3"; | ||
2567 | }; | ||
2568 | sidekiq-cron = { | ||
2569 | dependencies = ["fugit" "sidekiq"]; | ||
2570 | platforms = []; | ||
2571 | source = { | ||
2572 | remotes = ["https://rubygems.org"]; | ||
2573 | sha256 = "1aliswahmpxn1ib2brn4126gk97ac3zdnwr71mn8vzbr3vdd7fl0"; | ||
2574 | type = "gem"; | ||
2575 | }; | ||
2576 | version = "1.0.4"; | ||
2577 | }; | ||
2578 | simple_captcha2 = { | ||
2579 | dependencies = ["rails"]; | ||
2580 | platforms = []; | ||
2581 | source = { | ||
2582 | remotes = ["https://rubygems.org"]; | ||
2583 | sha256 = "0vdjydym8sjpa8c1q0n2hanj3n9vzi4ycdw2p6bbm6qqmm1f3fq3"; | ||
2584 | type = "gem"; | ||
2585 | }; | ||
2586 | version = "0.4.3"; | ||
2587 | }; | ||
2588 | simple_oauth = { | ||
2589 | platforms = []; | ||
2590 | source = { | ||
2591 | remotes = ["https://rubygems.org"]; | ||
2592 | sha256 = "0dw9ii6m7wckml100xhjc6vxpjcry174lbi9jz5v7ibjr3i94y8l"; | ||
2593 | type = "gem"; | ||
2594 | }; | ||
2595 | version = "0.3.1"; | ||
2596 | }; | ||
2597 | simplecov = { | ||
2598 | dependencies = ["docile" "json" "simplecov-html"]; | ||
2599 | platforms = []; | ||
2600 | source = { | ||
2601 | remotes = ["https://rubygems.org"]; | ||
2602 | sha256 = "1sfyfgf7zrp2n42v7rswkqgk3bbwk1bnsphm24y7laxv3f8z0947"; | ||
2603 | type = "gem"; | ||
2604 | }; | ||
2605 | version = "0.16.1"; | ||
2606 | }; | ||
2607 | simplecov-html = { | ||
2608 | platforms = []; | ||
2609 | source = { | ||
2610 | remotes = ["https://rubygems.org"]; | ||
2611 | sha256 = "1lihraa4rgxk8wbfl77fy9sf0ypk31iivly8vl3w04srd7i0clzn"; | ||
2612 | type = "gem"; | ||
2613 | }; | ||
2614 | version = "0.10.2"; | ||
2615 | }; | ||
2616 | sinon-rails = { | ||
2617 | dependencies = ["railties"]; | ||
2618 | platforms = []; | ||
2619 | source = { | ||
2620 | remotes = ["https://rubygems.org"]; | ||
2621 | sha256 = "1b7996hb8vfky29b0zcql90x8i6vhdg2zy9nfzmhh820gjv3kggb"; | ||
2622 | type = "gem"; | ||
2623 | }; | ||
2624 | version = "1.15.0"; | ||
2625 | }; | ||
2626 | spring = { | ||
2627 | dependencies = ["activesupport"]; | ||
2628 | platforms = []; | ||
2629 | source = { | ||
2630 | remotes = ["https://rubygems.org"]; | ||
2631 | sha256 = "168yz9c1fv21wc5i8q7n43b9nk33ivg3ws1fn6x0afgryz3ssx75"; | ||
2632 | type = "gem"; | ||
2633 | }; | ||
2634 | version = "2.0.2"; | ||
2635 | }; | ||
2636 | spring-commands-cucumber = { | ||
2637 | dependencies = ["spring"]; | ||
2638 | platforms = []; | ||
2639 | source = { | ||
2640 | remotes = ["https://rubygems.org"]; | ||
2641 | sha256 = "0mw81gvms2svn4k4pc6ly7smkmf0j9r2xbf0d38vygbyhiwd1c9a"; | ||
2642 | type = "gem"; | ||
2643 | }; | ||
2644 | version = "1.0.1"; | ||
2645 | }; | ||
2646 | spring-commands-rspec = { | ||
2647 | dependencies = ["spring"]; | ||
2648 | platforms = []; | ||
2649 | source = { | ||
2650 | remotes = ["https://rubygems.org"]; | ||
2651 | sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; | ||
2652 | type = "gem"; | ||
2653 | }; | ||
2654 | version = "1.0.4"; | ||
2655 | }; | ||
2656 | sprockets = { | ||
2657 | dependencies = ["concurrent-ruby" "rack"]; | ||
2658 | platforms = []; | ||
2659 | source = { | ||
2660 | remotes = ["https://rubygems.org"]; | ||
2661 | sha256 = "182jw5a0fbqah5w9jancvfmjbk88h8bxdbwnl4d3q809rpxdg8ay"; | ||
2662 | type = "gem"; | ||
2663 | }; | ||
2664 | version = "3.7.2"; | ||
2665 | }; | ||
2666 | sprockets-rails = { | ||
2667 | dependencies = ["actionpack" "activesupport" "sprockets"]; | ||
2668 | platforms = []; | ||
2669 | source = { | ||
2670 | remotes = ["https://rubygems.org"]; | ||
2671 | sha256 = "0ab42pm8p5zxpv3sfraq45b9lj39cz9mrpdirm30vywzrwwkm5p1"; | ||
2672 | type = "gem"; | ||
2673 | }; | ||
2674 | version = "3.2.1"; | ||
2675 | }; | ||
2676 | state_machines = { | ||
2677 | platforms = []; | ||
2678 | source = { | ||
2679 | remotes = ["https://rubygems.org"]; | ||
2680 | sha256 = "00mi16hg3rhkxz4y58s173cbnjlba41y9bfcim90p4ja6yfj9ri3"; | ||
2681 | type = "gem"; | ||
2682 | }; | ||
2683 | version = "0.5.0"; | ||
2684 | }; | ||
2685 | string-direction = { | ||
2686 | platforms = []; | ||
2687 | source = { | ||
2688 | remotes = ["https://rubygems.org"]; | ||
2689 | sha256 = "0iyddwmkj425c6xbn5pmlr2yzwcq4snzlan7rky5b1yp2pvf70jj"; | ||
2690 | type = "gem"; | ||
2691 | }; | ||
2692 | version = "1.2.1"; | ||
2693 | }; | ||
2694 | swd = { | ||
2695 | dependencies = ["activesupport" "attr_required" "httpclient"]; | ||
2696 | platforms = []; | ||
2697 | source = { | ||
2698 | remotes = ["https://rubygems.org"]; | ||
2699 | sha256 = "1s2vjb6f13za7p1iycl2p73d3p202xa6xny9fjrp8ynwsqix7lyd"; | ||
2700 | type = "gem"; | ||
2701 | }; | ||
2702 | version = "1.1.2"; | ||
2703 | }; | ||
2704 | sysexits = { | ||
2705 | platforms = []; | ||
2706 | source = { | ||
2707 | remotes = ["https://rubygems.org"]; | ||
2708 | sha256 = "0qjng6pllznmprzx8vb0zg0c86hdrkyjs615q41s9fjpmv2430jr"; | ||
2709 | type = "gem"; | ||
2710 | }; | ||
2711 | version = "1.2.0"; | ||
2712 | }; | ||
2713 | systemu = { | ||
2714 | platforms = []; | ||
2715 | source = { | ||
2716 | remotes = ["https://rubygems.org"]; | ||
2717 | sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; | ||
2718 | type = "gem"; | ||
2719 | }; | ||
2720 | version = "2.6.5"; | ||
2721 | }; | ||
2722 | temple = { | ||
2723 | platforms = []; | ||
2724 | source = { | ||
2725 | remotes = ["https://rubygems.org"]; | ||
2726 | sha256 = "00nxf610nzi4n1i2lkby43nrnarvl89fcl6lg19406msr0k3ycmq"; | ||
2727 | type = "gem"; | ||
2728 | }; | ||
2729 | version = "0.8.0"; | ||
2730 | }; | ||
2731 | term-ansicolor = { | ||
2732 | dependencies = ["tins"]; | ||
2733 | platforms = []; | ||
2734 | source = { | ||
2735 | remotes = ["https://rubygems.org"]; | ||
2736 | sha256 = "079hbagd9mk0839rkajsdrbzkn992gj8ah2n45qd64v25ml27i6d"; | ||
2737 | type = "gem"; | ||
2738 | }; | ||
2739 | version = "1.7.0"; | ||
2740 | }; | ||
2741 | terminal-table = { | ||
2742 | dependencies = ["unicode-display_width"]; | ||
2743 | platforms = []; | ||
2744 | source = { | ||
2745 | remotes = ["https://rubygems.org"]; | ||
2746 | sha256 = "1512cngw35hsmhvw4c05rscihc59mnj09m249sm9p3pik831ydqk"; | ||
2747 | type = "gem"; | ||
2748 | }; | ||
2749 | version = "1.8.0"; | ||
2750 | }; | ||
2751 | thor = { | ||
2752 | platforms = []; | ||
2753 | source = { | ||
2754 | remotes = ["https://rubygems.org"]; | ||
2755 | sha256 = "01n5dv9kql60m6a00zc0r66jvaxx98qhdny3klyj0p3w34pad2ns"; | ||
2756 | type = "gem"; | ||
2757 | }; | ||
2758 | version = "0.19.4"; | ||
2759 | }; | ||
2760 | thread_safe = { | ||
2761 | platforms = []; | ||
2762 | source = { | ||
2763 | remotes = ["https://rubygems.org"]; | ||
2764 | sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy"; | ||
2765 | type = "gem"; | ||
2766 | }; | ||
2767 | version = "0.3.6"; | ||
2768 | }; | ||
2769 | tilt = { | ||
2770 | platforms = []; | ||
2771 | source = { | ||
2772 | remotes = ["https://rubygems.org"]; | ||
2773 | sha256 = "0020mrgdf11q23hm1ddd6fv691l51vi10af00f137ilcdb2ycfra"; | ||
2774 | type = "gem"; | ||
2775 | }; | ||
2776 | version = "2.0.8"; | ||
2777 | }; | ||
2778 | timecop = { | ||
2779 | platforms = []; | ||
2780 | source = { | ||
2781 | remotes = ["https://rubygems.org"]; | ||
2782 | sha256 = "0d7mm786180v4kzvn1f77rhfppsg5n0sq2bdx63x9nv114zm8jrp"; | ||
2783 | type = "gem"; | ||
2784 | }; | ||
2785 | version = "0.9.1"; | ||
2786 | }; | ||
2787 | timers = { | ||
2788 | platforms = []; | ||
2789 | source = { | ||
2790 | remotes = ["https://rubygems.org"]; | ||
2791 | sha256 = "04zbs9wyzajn7g9xfgg2zqz5kzf0qa7jgh4hgry4pfcxfmlnwdwx"; | ||
2792 | type = "gem"; | ||
2793 | }; | ||
2794 | version = "4.2.0"; | ||
2795 | }; | ||
2796 | tins = { | ||
2797 | platforms = []; | ||
2798 | source = { | ||
2799 | remotes = ["https://rubygems.org"]; | ||
2800 | sha256 = "1pqj45n216zrz7yckdbdknlmhh187iqzx8fp76y2h0jrgqjfkxmj"; | ||
2801 | type = "gem"; | ||
2802 | }; | ||
2803 | version = "1.20.2"; | ||
2804 | }; | ||
2805 | to_regexp = { | ||
2806 | platforms = []; | ||
2807 | source = { | ||
2808 | remotes = ["https://rubygems.org"]; | ||
2809 | sha256 = "1rgabfhnql6l4fx09mmj5d0vza924iczqf2blmn82l782b6qqi9v"; | ||
2810 | type = "gem"; | ||
2811 | }; | ||
2812 | version = "0.2.1"; | ||
2813 | }; | ||
2814 | turbo_dev_assets = { | ||
2815 | platforms = []; | ||
2816 | source = { | ||
2817 | remotes = ["https://rubygems.org"]; | ||
2818 | sha256 = "08yp7gpishjfj8b7d61hxs677288ycv6yg78a7hfzn631gxczipx"; | ||
2819 | type = "gem"; | ||
2820 | }; | ||
2821 | version = "0.0.2"; | ||
2822 | }; | ||
2823 | twitter = { | ||
2824 | dependencies = ["addressable" "buftok" "equalizer" "http" "http-form_data" "http_parser.rb" "memoizable" "multipart-post" "naught" "simple_oauth"]; | ||
2825 | platforms = []; | ||
2826 | source = { | ||
2827 | remotes = ["https://rubygems.org"]; | ||
2828 | sha256 = "0fjyz3viabz3xs5d9aad18zgdbhfwm51jsnzigc8kxk77p1x58n5"; | ||
2829 | type = "gem"; | ||
2830 | }; | ||
2831 | version = "6.2.0"; | ||
2832 | }; | ||
2833 | twitter-text = { | ||
2834 | dependencies = ["unf"]; | ||
2835 | platforms = []; | ||
2836 | source = { | ||
2837 | remotes = ["https://rubygems.org"]; | ||
2838 | sha256 = "1732h7hy1k152w8wfvjsx7b79alk45i5imwd37ia4qcx8hfm3gvg"; | ||
2839 | type = "gem"; | ||
2840 | }; | ||
2841 | version = "1.14.7"; | ||
2842 | }; | ||
2843 | typhoeus = { | ||
2844 | dependencies = ["ethon"]; | ||
2845 | platforms = []; | ||
2846 | source = { | ||
2847 | remotes = ["https://rubygems.org"]; | ||
2848 | sha256 = "0cni8b1idcp0dk8kybmxydadhfpaj3lbs99w5kjibv8bsmip2zi5"; | ||
2849 | type = "gem"; | ||
2850 | }; | ||
2851 | version = "1.3.1"; | ||
2852 | }; | ||
2853 | tzinfo = { | ||
2854 | dependencies = ["thread_safe"]; | ||
2855 | platforms = []; | ||
2856 | source = { | ||
2857 | remotes = ["https://rubygems.org"]; | ||
2858 | sha256 = "1fjx9j327xpkkdlxwmkl3a8wqj7i4l4jwlrv3z13mg95z9wl253z"; | ||
2859 | type = "gem"; | ||
2860 | }; | ||
2861 | version = "1.2.5"; | ||
2862 | }; | ||
2863 | uglifier = { | ||
2864 | dependencies = ["execjs"]; | ||
2865 | platforms = []; | ||
2866 | source = { | ||
2867 | remotes = ["https://rubygems.org"]; | ||
2868 | sha256 = "1g203kly5wp4qlkc7371skyvyin6iinc8i0p5wrpiqgblqxxgcf1"; | ||
2869 | type = "gem"; | ||
2870 | }; | ||
2871 | version = "4.1.19"; | ||
2872 | }; | ||
2873 | unf = { | ||
2874 | dependencies = ["unf_ext"]; | ||
2875 | platforms = []; | ||
2876 | source = { | ||
2877 | remotes = ["https://rubygems.org"]; | ||
2878 | sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; | ||
2879 | type = "gem"; | ||
2880 | }; | ||
2881 | version = "0.1.4"; | ||
2882 | }; | ||
2883 | unf_ext = { | ||
2884 | platforms = []; | ||
2885 | source = { | ||
2886 | remotes = ["https://rubygems.org"]; | ||
2887 | sha256 = "06p1i6qhy34bpb8q8ms88y6f2kz86azwm098yvcc0nyqk9y729j1"; | ||
2888 | type = "gem"; | ||
2889 | }; | ||
2890 | version = "0.0.7.5"; | ||
2891 | }; | ||
2892 | unicode-display_width = { | ||
2893 | platforms = []; | ||
2894 | source = { | ||
2895 | remotes = ["https://rubygems.org"]; | ||
2896 | sha256 = "0040bsdpcmvp8w31lqi2s9s4p4h031zv52401qidmh25cgyh4a57"; | ||
2897 | type = "gem"; | ||
2898 | }; | ||
2899 | version = "1.4.0"; | ||
2900 | }; | ||
2901 | unicorn = { | ||
2902 | dependencies = ["kgio" "raindrops"]; | ||
2903 | platforms = []; | ||
2904 | source = { | ||
2905 | remotes = ["https://rubygems.org"]; | ||
2906 | sha256 = "1qfhvzs4i6ja1s43j8p1kfbzm10n7a02ngki30a38y5m46a2qrak"; | ||
2907 | type = "gem"; | ||
2908 | }; | ||
2909 | version = "5.4.1"; | ||
2910 | }; | ||
2911 | unicorn-worker-killer = { | ||
2912 | dependencies = ["get_process_mem" "unicorn"]; | ||
2913 | platforms = []; | ||
2914 | source = { | ||
2915 | remotes = ["https://rubygems.org"]; | ||
2916 | sha256 = "0rrdxpwdsapx47axjin8ymxb4f685qlpx8a26bql4ay1559c3gva"; | ||
2917 | type = "gem"; | ||
2918 | }; | ||
2919 | version = "0.4.4"; | ||
2920 | }; | ||
2921 | uuid = { | ||
2922 | dependencies = ["macaddr"]; | ||
2923 | platforms = []; | ||
2924 | source = { | ||
2925 | remotes = ["https://rubygems.org"]; | ||
2926 | sha256 = "1mr405vg4ccnndkyf7pb49gp1fha8i6gj7iwq43nxkak41cwzh5f"; | ||
2927 | type = "gem"; | ||
2928 | }; | ||
2929 | version = "2.3.9"; | ||
2930 | }; | ||
2931 | valid = { | ||
2932 | platforms = []; | ||
2933 | source = { | ||
2934 | remotes = ["https://rubygems.org"]; | ||
2935 | sha256 = "0vxrgik9gxyh5j2w16nz5azjk0cbzmvv883hq9pvxm9anfbbj8d3"; | ||
2936 | type = "gem"; | ||
2937 | }; | ||
2938 | version = "1.2.0"; | ||
2939 | }; | ||
2940 | validate_email = { | ||
2941 | dependencies = ["activemodel" "mail"]; | ||
2942 | platforms = []; | ||
2943 | source = { | ||
2944 | remotes = ["https://rubygems.org"]; | ||
2945 | sha256 = "1r1fz29l699arka177c9xw7409d1a3ff95bf7a6pmc97slb91zlx"; | ||
2946 | type = "gem"; | ||
2947 | }; | ||
2948 | version = "0.1.6"; | ||
2949 | }; | ||
2950 | validate_url = { | ||
2951 | dependencies = ["activemodel" "addressable"]; | ||
2952 | platforms = []; | ||
2953 | source = { | ||
2954 | remotes = ["https://rubygems.org"]; | ||
2955 | sha256 = "1df4gch8dizimpbl185vfgw95yb8ffr6zwj6whzbxfil95c3f2qh"; | ||
2956 | type = "gem"; | ||
2957 | }; | ||
2958 | version = "1.0.2"; | ||
2959 | }; | ||
2960 | versionist = { | ||
2961 | dependencies = ["activesupport" "railties" "yard"]; | ||
2962 | platforms = []; | ||
2963 | source = { | ||
2964 | remotes = ["https://rubygems.org"]; | ||
2965 | sha256 = "1p8wizg6jml7gz1qiqk7d77hy0w5650g812jhgd0zzkwwdmzm38m"; | ||
2966 | type = "gem"; | ||
2967 | }; | ||
2968 | version = "1.7.0"; | ||
2969 | }; | ||
2970 | warden = { | ||
2971 | dependencies = ["rack"]; | ||
2972 | platforms = []; | ||
2973 | source = { | ||
2974 | remotes = ["https://rubygems.org"]; | ||
2975 | sha256 = "1fr9n9i9r82xb6i61fdw4xgc7zjv7fsdrr4k0njchy87iw9fl454"; | ||
2976 | type = "gem"; | ||
2977 | }; | ||
2978 | version = "1.2.8"; | ||
2979 | }; | ||
2980 | webfinger = { | ||
2981 | dependencies = ["activesupport" "httpclient"]; | ||
2982 | platforms = []; | ||
2983 | source = { | ||
2984 | remotes = ["https://rubygems.org"]; | ||
2985 | sha256 = "0m0jh8k7c0ifh2jhbn7ihqrmn5fi754wflva97zgy70hpdvxyjar"; | ||
2986 | type = "gem"; | ||
2987 | }; | ||
2988 | version = "1.1.0"; | ||
2989 | }; | ||
2990 | webmock = { | ||
2991 | dependencies = ["addressable" "crack" "hashdiff"]; | ||
2992 | platforms = []; | ||
2993 | source = { | ||
2994 | remotes = ["https://rubygems.org"]; | ||
2995 | sha256 = "03994dxs4xayvkxqp01dd1ivhg4xxx7z35f7cxw7y2mwj3xn24ib"; | ||
2996 | type = "gem"; | ||
2997 | }; | ||
2998 | version = "3.4.2"; | ||
2999 | }; | ||
3000 | websocket-driver = { | ||
3001 | dependencies = ["websocket-extensions"]; | ||
3002 | platforms = []; | ||
3003 | source = { | ||
3004 | remotes = ["https://rubygems.org"]; | ||
3005 | sha256 = "1943442yllhldh9dbp374x2q39cxa49xrm28nb78b7mfbv3y195l"; | ||
3006 | type = "gem"; | ||
3007 | }; | ||
3008 | version = "0.6.5"; | ||
3009 | }; | ||
3010 | websocket-extensions = { | ||
3011 | platforms = []; | ||
3012 | source = { | ||
3013 | remotes = ["https://rubygems.org"]; | ||
3014 | sha256 = "034sdr7fd34yag5l6y156rkbhiqgmy395m231dwhlpcswhs6d270"; | ||
3015 | type = "gem"; | ||
3016 | }; | ||
3017 | version = "0.1.3"; | ||
3018 | }; | ||
3019 | will_paginate = { | ||
3020 | platforms = []; | ||
3021 | source = { | ||
3022 | remotes = ["https://rubygems.org"]; | ||
3023 | sha256 = "0ihf15yaj8883ddhkxq7q60zrg3zfsvqaf5853gybhcg18zq8bn9"; | ||
3024 | type = "gem"; | ||
3025 | }; | ||
3026 | version = "3.1.6"; | ||
3027 | }; | ||
3028 | xpath = { | ||
3029 | dependencies = ["nokogiri"]; | ||
3030 | platforms = []; | ||
3031 | source = { | ||
3032 | remotes = ["https://rubygems.org"]; | ||
3033 | sha256 = "0bh8lk9hvlpn7vmi6h4hkcwjzvs2y0cmkk3yjjdr8fxvj6fsgzbd"; | ||
3034 | type = "gem"; | ||
3035 | }; | ||
3036 | version = "3.2.0"; | ||
3037 | }; | ||
3038 | yard = { | ||
3039 | platforms = []; | ||
3040 | source = { | ||
3041 | remotes = ["https://rubygems.org"]; | ||
3042 | sha256 = "0lmmr1839qgbb3zxfa7jf5mzy17yjl1yirwlgzdhws4452gqhn67"; | ||
3043 | type = "gem"; | ||
3044 | }; | ||
3045 | version = "0.9.16"; | ||
3046 | }; | ||
3047 | } | ||
diff --git a/pkgs/webapps/diaspora/gemset_ldap.nix b/pkgs/webapps/diaspora/gemset_ldap.nix deleted file mode 100644 index d7892f8..0000000 --- a/pkgs/webapps/diaspora/gemset_ldap.nix +++ /dev/null | |||
@@ -1,3056 +0,0 @@ | |||
1 | { | ||
2 | actioncable = { | ||
3 | dependencies = ["actionpack" "nio4r" "websocket-driver"]; | ||
4 | platforms = []; | ||
5 | source = { | ||
6 | remotes = ["https://rubygems.org"]; | ||
7 | sha256 = "07r6hnh05db84yr9419mbhyzp20hr8yy9m50jxc2w91ghm2qnrrf"; | ||
8 | type = "gem"; | ||
9 | }; | ||
10 | version = "5.1.6"; | ||
11 | }; | ||
12 | actionmailer = { | ||
13 | dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; | ||
14 | platforms = []; | ||
15 | source = { | ||
16 | remotes = ["https://rubygems.org"]; | ||
17 | sha256 = "1s9xcqfx97q4yva2zc4qzb567mwzhry6v3x3zc318aqhcrz31g7c"; | ||
18 | type = "gem"; | ||
19 | }; | ||
20 | version = "5.1.6"; | ||
21 | }; | ||
22 | actionpack = { | ||
23 | dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; | ||
24 | platforms = []; | ||
25 | source = { | ||
26 | remotes = ["https://rubygems.org"]; | ||
27 | sha256 = "0vz2ms80nqw21c304g3w2vkbs80gadzhi3mcwwym7smxccr37kcd"; | ||
28 | type = "gem"; | ||
29 | }; | ||
30 | version = "5.1.6"; | ||
31 | }; | ||
32 | actionview = { | ||
33 | dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; | ||
34 | platforms = []; | ||
35 | source = { | ||
36 | remotes = ["https://rubygems.org"]; | ||
37 | sha256 = "1kfxlz9v7b47pdyy1whb4zzhvaj8h4sp1ajhbih2ax1hkldyg081"; | ||
38 | type = "gem"; | ||
39 | }; | ||
40 | version = "5.1.6"; | ||
41 | }; | ||
42 | active_model_serializers = { | ||
43 | dependencies = ["activemodel" "concurrent-ruby"]; | ||
44 | platforms = []; | ||
45 | source = { | ||
46 | remotes = ["https://rubygems.org"]; | ||
47 | sha256 = "19zr5pp84q4ya7mfrcanakjv86lv4wfmbcbbd2xnd4bkyprw5w7z"; | ||
48 | type = "gem"; | ||
49 | }; | ||
50 | version = "0.9.7"; | ||
51 | }; | ||
52 | activejob = { | ||
53 | dependencies = ["activesupport" "globalid"]; | ||
54 | platforms = []; | ||
55 | source = { | ||
56 | remotes = ["https://rubygems.org"]; | ||
57 | sha256 = "02lssq8ps98mfg20dyhcpd16f9c0v4zzy7gfbb6ksbs06wrrd4d2"; | ||
58 | type = "gem"; | ||
59 | }; | ||
60 | version = "5.1.6"; | ||
61 | }; | ||
62 | activemodel = { | ||
63 | dependencies = ["activesupport"]; | ||
64 | platforms = []; | ||
65 | source = { | ||
66 | remotes = ["https://rubygems.org"]; | ||
67 | sha256 = "10f8cpv4sl1w3m1qj8hl6sd2f1n7x91h45qaf57qr894ll22jgby"; | ||
68 | type = "gem"; | ||
69 | }; | ||
70 | version = "5.1.6"; | ||
71 | }; | ||
72 | activerecord = { | ||
73 | dependencies = ["activemodel" "activesupport" "arel"]; | ||
74 | platforms = []; | ||
75 | source = { | ||
76 | remotes = ["https://rubygems.org"]; | ||
77 | sha256 = "1iqkvxzx5bfp8rmlccww0cj1xr6iaxmn3hhbj1dv5j9c8mnm980x"; | ||
78 | type = "gem"; | ||
79 | }; | ||
80 | version = "5.1.6"; | ||
81 | }; | ||
82 | activerecord-import = { | ||
83 | dependencies = ["activerecord"]; | ||
84 | platforms = []; | ||
85 | source = { | ||
86 | remotes = ["https://rubygems.org"]; | ||
87 | sha256 = "1bxpbrcwc9k6khizwdikvfbhw9pcvs4sp3h4grpcww5k7bgpliz6"; | ||
88 | type = "gem"; | ||
89 | }; | ||
90 | version = "0.27.0"; | ||
91 | }; | ||
92 | activesupport = { | ||
93 | dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; | ||
94 | platforms = []; | ||
95 | source = { | ||
96 | remotes = ["https://rubygems.org"]; | ||
97 | sha256 = "08dm0mgmj31ggk7ib66wfagj4bgbr2jfl500bqb22x0szslz5lll"; | ||
98 | type = "gem"; | ||
99 | }; | ||
100 | version = "5.1.6"; | ||
101 | }; | ||
102 | acts-as-taggable-on = { | ||
103 | dependencies = ["activerecord"]; | ||
104 | platforms = []; | ||
105 | source = { | ||
106 | remotes = ["https://rubygems.org"]; | ||
107 | sha256 = "0hl52pjgfzy3acdwnbxfqy08m808vlv9dmsyp03d5x7x0y499kvl"; | ||
108 | type = "gem"; | ||
109 | }; | ||
110 | version = "6.0.0"; | ||
111 | }; | ||
112 | acts_as_api = { | ||
113 | dependencies = ["activemodel" "activesupport" "rack"]; | ||
114 | platforms = []; | ||
115 | source = { | ||
116 | remotes = ["https://rubygems.org"]; | ||
117 | sha256 = "06miad13nnfr2gslc203ahsbvj499s9lngxxvfizwp964vglygsc"; | ||
118 | type = "gem"; | ||
119 | }; | ||
120 | version = "1.0.1"; | ||
121 | }; | ||
122 | addressable = { | ||
123 | dependencies = ["public_suffix"]; | ||
124 | platforms = []; | ||
125 | source = { | ||
126 | remotes = ["https://rubygems.org"]; | ||
127 | sha256 = "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk"; | ||
128 | type = "gem"; | ||
129 | }; | ||
130 | version = "2.5.2"; | ||
131 | }; | ||
132 | aes_key_wrap = { | ||
133 | platforms = []; | ||
134 | source = { | ||
135 | remotes = ["https://rubygems.org"]; | ||
136 | sha256 = "0li86k0g812jkzrppb2fvqngvzp09nygywjpn81nx90s01wxqw07"; | ||
137 | type = "gem"; | ||
138 | }; | ||
139 | version = "1.0.1"; | ||
140 | }; | ||
141 | arel = { | ||
142 | platforms = []; | ||
143 | source = { | ||
144 | remotes = ["https://rubygems.org"]; | ||
145 | sha256 = "0nw0qbc6ph625p6n3maqq9f527vz3nbl0hk72fbyka8jzsmplxzl"; | ||
146 | type = "gem"; | ||
147 | }; | ||
148 | version = "8.0.0"; | ||
149 | }; | ||
150 | asset_sync = { | ||
151 | dependencies = ["activemodel" "fog-core" "mime-types" "unf"]; | ||
152 | platforms = []; | ||
153 | source = { | ||
154 | remotes = ["https://rubygems.org"]; | ||
155 | sha256 = "0mfz51g8rzk5h5fpdhfkycnm7y4dpfhx46wm7fygna7nd4w9ixdx"; | ||
156 | type = "gem"; | ||
157 | }; | ||
158 | version = "2.5.0"; | ||
159 | }; | ||
160 | ast = { | ||
161 | platforms = []; | ||
162 | source = { | ||
163 | remotes = ["https://rubygems.org"]; | ||
164 | sha256 = "184ssy3w93nkajlz2c70ifm79jp3j737294kbc5fjw69v1w0n9x7"; | ||
165 | type = "gem"; | ||
166 | }; | ||
167 | version = "2.4.0"; | ||
168 | }; | ||
169 | attr_required = { | ||
170 | platforms = []; | ||
171 | source = { | ||
172 | remotes = ["https://rubygems.org"]; | ||
173 | sha256 = "1g22axmi2rhhy7w8c3x6gppsawxqavbrnxpnmphh22fk7cwi0kh2"; | ||
174 | type = "gem"; | ||
175 | }; | ||
176 | version = "1.0.1"; | ||
177 | }; | ||
178 | autoprefixer-rails = { | ||
179 | dependencies = ["execjs"]; | ||
180 | platforms = []; | ||
181 | source = { | ||
182 | remotes = ["https://rubygems.org"]; | ||
183 | sha256 = "08irrl1mz6skagr1lygq79l34lc0dghgva0v9q7nng76dpiglgj3"; | ||
184 | type = "gem"; | ||
185 | }; | ||
186 | version = "8.6.5"; | ||
187 | }; | ||
188 | backports = { | ||
189 | platforms = []; | ||
190 | source = { | ||
191 | remotes = ["https://rubygems.org"]; | ||
192 | sha256 = "1hshjxww2h7s0dk57njrygq4zpp0nlqrjfya7zwm27iq3rhc3y8g"; | ||
193 | type = "gem"; | ||
194 | }; | ||
195 | version = "3.11.4"; | ||
196 | }; | ||
197 | bcrypt = { | ||
198 | platforms = []; | ||
199 | source = { | ||
200 | remotes = ["https://rubygems.org"]; | ||
201 | sha256 = "0ysblqxkclmnhrd0kmb5mr8p38mbar633gdsb14b7dhkhgawgzfy"; | ||
202 | type = "gem"; | ||
203 | }; | ||
204 | version = "3.1.12"; | ||
205 | }; | ||
206 | bindata = { | ||
207 | platforms = []; | ||
208 | source = { | ||
209 | remotes = ["https://rubygems.org"]; | ||
210 | sha256 = "0kz42nvxnk1j9cj0i8lcnhprcgdqsqska92g6l19ziadydfk2gqy"; | ||
211 | type = "gem"; | ||
212 | }; | ||
213 | version = "2.4.4"; | ||
214 | }; | ||
215 | bootstrap-sass = { | ||
216 | dependencies = ["autoprefixer-rails" "sass"]; | ||
217 | platforms = []; | ||
218 | source = { | ||
219 | remotes = ["https://rubygems.org"]; | ||
220 | sha256 = "1bc9bf6caddqn1rv15b5x56yczmbjzaxzl9lk5zbwrg1bfph4bx9"; | ||
221 | type = "gem"; | ||
222 | }; | ||
223 | version = "3.3.7"; | ||
224 | }; | ||
225 | bootstrap-switch-rails = { | ||
226 | groups = ["default"]; | ||
227 | platforms = []; | ||
228 | source = { | ||
229 | remotes = ["https://rubygems.org"]; | ||
230 | sha256 = "1zkwc1hfmihnm0n9lkva5zk0cmqpfcpnrwnmaniyvgx7rac2r14l"; | ||
231 | type = "gem"; | ||
232 | }; | ||
233 | version = "3.3.3"; | ||
234 | }; | ||
235 | buftok = { | ||
236 | platforms = []; | ||
237 | source = { | ||
238 | remotes = ["https://rubygems.org"]; | ||
239 | sha256 = "1rzsy1vy50v55x9z0nivf23y0r9jkmq6i130xa75pq9i8qrn1mxs"; | ||
240 | type = "gem"; | ||
241 | }; | ||
242 | version = "0.2.0"; | ||
243 | }; | ||
244 | builder = { | ||
245 | platforms = []; | ||
246 | source = { | ||
247 | remotes = ["https://rubygems.org"]; | ||
248 | sha256 = "0qibi5s67lpdv1wgcj66wcymcr04q6j4mzws6a479n0mlrmh5wr1"; | ||
249 | type = "gem"; | ||
250 | }; | ||
251 | version = "3.2.3"; | ||
252 | }; | ||
253 | byebug = { | ||
254 | platforms = []; | ||
255 | source = { | ||
256 | remotes = ["https://rubygems.org"]; | ||
257 | sha256 = "10znc1hjv8n686hhpl08f3m2g6h08a4b83nxblqwy2kqamkxcqf8"; | ||
258 | type = "gem"; | ||
259 | }; | ||
260 | version = "10.0.2"; | ||
261 | }; | ||
262 | capybara = { | ||
263 | dependencies = ["addressable" "mini_mime" "nokogiri" "rack" "rack-test" "regexp_parser" "xpath"]; | ||
264 | platforms = []; | ||
265 | source = { | ||
266 | remotes = ["https://rubygems.org"]; | ||
267 | sha256 = "10zj8syak12xd1kqywr35bkr2hkdjq18kij54x1ys8c26h6j4d0m"; | ||
268 | type = "gem"; | ||
269 | }; | ||
270 | version = "3.11.1"; | ||
271 | }; | ||
272 | carrierwave = { | ||
273 | dependencies = ["activemodel" "activesupport" "mime-types"]; | ||
274 | platforms = []; | ||
275 | source = { | ||
276 | remotes = ["https://rubygems.org"]; | ||
277 | sha256 = "1k9kla5ncygm97vn33lsrs7ch5zy4qqhhvc8m3khm986yaqh75qs"; | ||
278 | type = "gem"; | ||
279 | }; | ||
280 | version = "1.2.3"; | ||
281 | }; | ||
282 | celluloid = { | ||
283 | dependencies = ["celluloid-essentials" "celluloid-extras" "celluloid-fsm" "celluloid-pool" "celluloid-supervision" "timers"]; | ||
284 | platforms = []; | ||
285 | source = { | ||
286 | remotes = ["https://rubygems.org"]; | ||
287 | sha256 = "10i29q7kkdlrhf5rg43xygdfm795a02vp28k2ca3nklmqna57qmg"; | ||
288 | type = "gem"; | ||
289 | }; | ||
290 | version = "0.17.3"; | ||
291 | }; | ||
292 | celluloid-essentials = { | ||
293 | dependencies = ["timers"]; | ||
294 | platforms = []; | ||
295 | source = { | ||
296 | remotes = ["https://rubygems.org"]; | ||
297 | sha256 = "1l4p3p73wjdj07ww124q0db5k1cyzggbndzmcb12xbsf2dnj121k"; | ||
298 | type = "gem"; | ||
299 | }; | ||
300 | version = "0.20.5"; | ||
301 | }; | ||
302 | celluloid-extras = { | ||
303 | dependencies = ["timers"]; | ||
304 | platforms = []; | ||
305 | source = { | ||
306 | remotes = ["https://rubygems.org"]; | ||
307 | sha256 = "078agvnsfp78jv343kn5g1cz50147dk0q46blwh5r8lk6whag7ng"; | ||
308 | type = "gem"; | ||
309 | }; | ||
310 | version = "0.20.5"; | ||
311 | }; | ||
312 | celluloid-fsm = { | ||
313 | dependencies = ["timers"]; | ||
314 | platforms = []; | ||
315 | source = { | ||
316 | remotes = ["https://rubygems.org"]; | ||
317 | sha256 = "1pmpi6h4abpkczp46rd6llk1mldpx19i9hll8mkxp3kxin9slivc"; | ||
318 | type = "gem"; | ||
319 | }; | ||
320 | version = "0.20.5"; | ||
321 | }; | ||
322 | celluloid-io = { | ||
323 | dependencies = ["celluloid" "nio4r" "timers"]; | ||
324 | platforms = []; | ||
325 | source = { | ||
326 | remotes = ["https://rubygems.org"]; | ||
327 | sha256 = "1frcpja7h9vcxsw7w7ff550x54rfx514fpv2n6kawbk1j4zrm314"; | ||
328 | type = "gem"; | ||
329 | }; | ||
330 | version = "0.17.3"; | ||
331 | }; | ||
332 | celluloid-pool = { | ||
333 | dependencies = ["timers"]; | ||
334 | platforms = []; | ||
335 | source = { | ||
336 | remotes = ["https://rubygems.org"]; | ||
337 | sha256 = "1bfr54ijl95bnhqlabhf5p4ff9n0y2sslc91f49jjn33n2zm755c"; | ||
338 | type = "gem"; | ||
339 | }; | ||
340 | version = "0.20.5"; | ||
341 | }; | ||
342 | celluloid-supervision = { | ||
343 | dependencies = ["timers"]; | ||
344 | platforms = []; | ||
345 | source = { | ||
346 | remotes = ["https://rubygems.org"]; | ||
347 | sha256 = "1b41gg1rsmms0m5mshy6h66y5rydl3nv6x9wf050ixfa1s2c8vzw"; | ||
348 | type = "gem"; | ||
349 | }; | ||
350 | version = "0.20.6"; | ||
351 | }; | ||
352 | chunky_png = { | ||
353 | platforms = []; | ||
354 | source = { | ||
355 | remotes = ["https://rubygems.org"]; | ||
356 | sha256 = "05g2xli9wbjylkmblln3bhvjalziwb92q452q8ibjagmb853424w"; | ||
357 | type = "gem"; | ||
358 | }; | ||
359 | version = "1.3.10"; | ||
360 | }; | ||
361 | cliver = { | ||
362 | platforms = []; | ||
363 | source = { | ||
364 | remotes = ["https://rubygems.org"]; | ||
365 | sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; | ||
366 | type = "gem"; | ||
367 | }; | ||
368 | version = "0.3.2"; | ||
369 | }; | ||
370 | coderay = { | ||
371 | platforms = []; | ||
372 | source = { | ||
373 | remotes = ["https://rubygems.org"]; | ||
374 | sha256 = "15vav4bhcc2x3jmi3izb11l4d9f3xv8hp2fszb7iqmpsccv1pz4y"; | ||
375 | type = "gem"; | ||
376 | }; | ||
377 | version = "1.1.2"; | ||
378 | }; | ||
379 | compass = { | ||
380 | dependencies = ["chunky_png" "compass-core" "compass-import-once" "rb-fsevent" "rb-inotify" "sass"]; | ||
381 | platforms = []; | ||
382 | source = { | ||
383 | remotes = ["https://rubygems.org"]; | ||
384 | sha256 = "0lfi83w8z75czr0pf0rmj9hda22082h3cmvczl8r1ma9agf88y2c"; | ||
385 | type = "gem"; | ||
386 | }; | ||
387 | version = "1.0.3"; | ||
388 | }; | ||
389 | compass-core = { | ||
390 | dependencies = ["multi_json" "sass"]; | ||
391 | platforms = []; | ||
392 | source = { | ||
393 | remotes = ["https://rubygems.org"]; | ||
394 | sha256 = "0yaspqwdmzwdcqviclbs3blq7an16pysrfzylz8q1gxmmd6bpj3a"; | ||
395 | type = "gem"; | ||
396 | }; | ||
397 | version = "1.0.3"; | ||
398 | }; | ||
399 | compass-import-once = { | ||
400 | dependencies = ["sass"]; | ||
401 | platforms = []; | ||
402 | source = { | ||
403 | remotes = ["https://rubygems.org"]; | ||
404 | sha256 = "0bn7gwbfz7jvvdd0qdfqlx67fcb83gyvxqc7dr9fhcnks3z8z5rq"; | ||
405 | type = "gem"; | ||
406 | }; | ||
407 | version = "1.0.5"; | ||
408 | }; | ||
409 | compass-rails = { | ||
410 | dependencies = ["compass" "sass-rails" "sprockets"]; | ||
411 | platforms = []; | ||
412 | source = { | ||
413 | remotes = ["https://rubygems.org"]; | ||
414 | sha256 = "02ydlbl1qb80myjv5xrpwzhmmj6qd80jf5izvpqhq2bikv84j9wr"; | ||
415 | type = "gem"; | ||
416 | }; | ||
417 | version = "3.1.0"; | ||
418 | }; | ||
419 | concurrent-ruby = { | ||
420 | platforms = []; | ||
421 | source = { | ||
422 | remotes = ["https://rubygems.org"]; | ||
423 | sha256 = "18q9skp5pfq4jwbxzmw8q2rn4cpw6mf4561i2hsjcl1nxdag2jvb"; | ||
424 | type = "gem"; | ||
425 | }; | ||
426 | version = "1.1.3"; | ||
427 | }; | ||
428 | configurate = { | ||
429 | platforms = []; | ||
430 | source = { | ||
431 | remotes = ["https://rubygems.org"]; | ||
432 | sha256 = "1m6cppb4jf7liwc3f5dvgn2v2nhp2jq8ixb9papaqz24f4s8dnd1"; | ||
433 | type = "gem"; | ||
434 | }; | ||
435 | version = "0.3.1"; | ||
436 | }; | ||
437 | connection_pool = { | ||
438 | platforms = []; | ||
439 | source = { | ||
440 | remotes = ["https://rubygems.org"]; | ||
441 | sha256 = "0lflx29mlznf1hn0nihkgllzbj8xp5qasn8j7h838465pi399k68"; | ||
442 | type = "gem"; | ||
443 | }; | ||
444 | version = "2.2.2"; | ||
445 | }; | ||
446 | coveralls = { | ||
447 | dependencies = ["json" "simplecov" "term-ansicolor" "thor" "tins"]; | ||
448 | platforms = []; | ||
449 | source = { | ||
450 | remotes = ["https://rubygems.org"]; | ||
451 | sha256 = "022kc16np6w4mv17hq3m9hhw9l8hjl78ld3fzqqx6337vwvwvwcg"; | ||
452 | type = "gem"; | ||
453 | }; | ||
454 | version = "0.8.22"; | ||
455 | }; | ||
456 | crack = { | ||
457 | dependencies = ["safe_yaml"]; | ||
458 | platforms = []; | ||
459 | source = { | ||
460 | remotes = ["https://rubygems.org"]; | ||
461 | sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k"; | ||
462 | type = "gem"; | ||
463 | }; | ||
464 | version = "0.4.3"; | ||
465 | }; | ||
466 | crass = { | ||
467 | platforms = []; | ||
468 | source = { | ||
469 | remotes = ["https://rubygems.org"]; | ||
470 | sha256 = "0bpxzy6gjw9ggjynlxschbfsgmx8lv3zw1azkjvnb8b9i895dqfi"; | ||
471 | type = "gem"; | ||
472 | }; | ||
473 | version = "1.0.4"; | ||
474 | }; | ||
475 | cucumber = { | ||
476 | dependencies = ["builder" "cucumber-core" "cucumber-expressions" "cucumber-wire" "diff-lcs" "gherkin" "multi_json" "multi_test"]; | ||
477 | platforms = []; | ||
478 | source = { | ||
479 | remotes = ["https://rubygems.org"]; | ||
480 | sha256 = "1s2brssrpal8hyhcgg974x3xyhpmvpwps5ypd9p8w2lg01l1pp3j"; | ||
481 | type = "gem"; | ||
482 | }; | ||
483 | version = "3.1.2"; | ||
484 | }; | ||
485 | cucumber-api-steps = { | ||
486 | dependencies = ["cucumber" "jsonpath"]; | ||
487 | platforms = []; | ||
488 | source = { | ||
489 | remotes = ["https://rubygems.org"]; | ||
490 | sha256 = "0fij6bgzshda68jp7kac0hs5n6xsmv49g8ynqhy6s3znc9d4qjbw"; | ||
491 | type = "gem"; | ||
492 | }; | ||
493 | version = "0.14.0"; | ||
494 | }; | ||
495 | cucumber-core = { | ||
496 | dependencies = ["backports" "cucumber-tag_expressions" "gherkin"]; | ||
497 | platforms = []; | ||
498 | source = { | ||
499 | remotes = ["https://rubygems.org"]; | ||
500 | sha256 = "1iavlh8hqj9lwljbpkw06259gdicbr1bdb6pbj5yy3n8szgr8k3c"; | ||
501 | type = "gem"; | ||
502 | }; | ||
503 | version = "3.2.1"; | ||
504 | }; | ||
505 | cucumber-expressions = { | ||
506 | platforms = []; | ||
507 | source = { | ||
508 | remotes = ["https://rubygems.org"]; | ||
509 | sha256 = "0zwmv6hznyz9vk81f5dhwcr9jhxx2vmbk8yyazayvllvhy0fkpdw"; | ||
510 | type = "gem"; | ||
511 | }; | ||
512 | version = "6.0.1"; | ||
513 | }; | ||
514 | cucumber-rails = { | ||
515 | dependencies = ["capybara" "cucumber" "mime-types" "nokogiri" "railties"]; | ||
516 | platforms = []; | ||
517 | source = { | ||
518 | remotes = ["https://rubygems.org"]; | ||
519 | sha256 = "0pmlza6r2601k1i7v3z8gj4apdcq6qa830bzwkj1pnfjzn4z12n7"; | ||
520 | type = "gem"; | ||
521 | }; | ||
522 | version = "1.6.0"; | ||
523 | }; | ||
524 | cucumber-tag_expressions = { | ||
525 | platforms = []; | ||
526 | source = { | ||
527 | remotes = ["https://rubygems.org"]; | ||
528 | sha256 = "0cvmbljybws0qzjs1l67fvr9gqr005l8jk1ni5gcsis9pfmqh3vc"; | ||
529 | type = "gem"; | ||
530 | }; | ||
531 | version = "1.1.1"; | ||
532 | }; | ||
533 | cucumber-wire = { | ||
534 | platforms = []; | ||
535 | source = { | ||
536 | remotes = ["https://rubygems.org"]; | ||
537 | sha256 = "09ymvqb0sbw2if1nxg8rcj33sf0va88ancq5nmp8g01dfwzwma2f"; | ||
538 | type = "gem"; | ||
539 | }; | ||
540 | version = "0.0.1"; | ||
541 | }; | ||
542 | database_cleaner = { | ||
543 | platforms = []; | ||
544 | source = { | ||
545 | remotes = ["https://rubygems.org"]; | ||
546 | sha256 = "05i0nf2aj70m61y3fspypdkc6d1qgibf5kav05a71b5gjz0k7y5x"; | ||
547 | type = "gem"; | ||
548 | }; | ||
549 | version = "1.7.0"; | ||
550 | }; | ||
551 | devise = { | ||
552 | dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "warden"]; | ||
553 | platforms = []; | ||
554 | source = { | ||
555 | remotes = ["https://rubygems.org"]; | ||
556 | sha256 = "1vs8nibl568ghm6a7hbw6xgcv8zbm4gykprcxpnzi7bz5d4gvcjx"; | ||
557 | type = "gem"; | ||
558 | }; | ||
559 | version = "4.5.0"; | ||
560 | }; | ||
561 | devise_lastseenable = { | ||
562 | dependencies = ["devise" "rails"]; | ||
563 | platforms = []; | ||
564 | source = { | ||
565 | remotes = ["https://rubygems.org"]; | ||
566 | sha256 = "1h83h73qjh8fc7lmr089shky8lc3wm4xn653rjdbb0cddflvrx8y"; | ||
567 | type = "gem"; | ||
568 | }; | ||
569 | version = "0.0.6"; | ||
570 | }; | ||
571 | diaspora-prosody-config = { | ||
572 | platforms = []; | ||
573 | source = { | ||
574 | remotes = ["https://rubygems.org"]; | ||
575 | sha256 = "1976ijqjf5jcq1jwr6vi0srjadhbqfa9y3nxyipzcv91pzskl2lp"; | ||
576 | type = "gem"; | ||
577 | }; | ||
578 | version = "0.0.7"; | ||
579 | }; | ||
580 | diaspora_federation = { | ||
581 | dependencies = ["faraday" "faraday_middleware" "nokogiri" "typhoeus" "valid"]; | ||
582 | platforms = []; | ||
583 | source = { | ||
584 | remotes = ["https://rubygems.org"]; | ||
585 | sha256 = "1xxy6ahlhgyr00qkfmmq0h3nqm6gjkr9i6hsqr0nkb3l6qg0m0yc"; | ||
586 | type = "gem"; | ||
587 | }; | ||
588 | version = "0.2.5"; | ||
589 | }; | ||
590 | diaspora_federation-json_schema = { | ||
591 | platforms = []; | ||
592 | source = { | ||
593 | remotes = ["https://rubygems.org"]; | ||
594 | sha256 = "0hfv4cq5wfdg86xmbp5y0h50b11326ymzks1yr9dvr4wa7di00hr"; | ||
595 | type = "gem"; | ||
596 | }; | ||
597 | version = "0.2.5"; | ||
598 | }; | ||
599 | diaspora_federation-rails = { | ||
600 | dependencies = ["actionpack" "diaspora_federation"]; | ||
601 | platforms = []; | ||
602 | source = { | ||
603 | remotes = ["https://rubygems.org"]; | ||
604 | sha256 = "1wrni7d9084v3pqd3sq8j532wx5ym6kmd959bw29bzwxc3zidd9h"; | ||
605 | type = "gem"; | ||
606 | }; | ||
607 | version = "0.2.5"; | ||
608 | }; | ||
609 | diaspora_federation-test = { | ||
610 | dependencies = ["diaspora_federation" "fabrication" "uuid"]; | ||
611 | platforms = []; | ||
612 | source = { | ||
613 | remotes = ["https://rubygems.org"]; | ||
614 | sha256 = "1b09y78pyl9kix8slbybnks2cbq0ac9wml31j2s6qwjixranjsm4"; | ||
615 | type = "gem"; | ||
616 | }; | ||
617 | version = "0.2.5"; | ||
618 | }; | ||
619 | diff-lcs = { | ||
620 | platforms = []; | ||
621 | source = { | ||
622 | remotes = ["https://rubygems.org"]; | ||
623 | sha256 = "18w22bjz424gzafv6nzv98h0aqkwz3d9xhm7cbr1wfbyas8zayza"; | ||
624 | type = "gem"; | ||
625 | }; | ||
626 | version = "1.3"; | ||
627 | }; | ||
628 | docile = { | ||
629 | platforms = []; | ||
630 | source = { | ||
631 | remotes = ["https://rubygems.org"]; | ||
632 | sha256 = "04d2izkna3ahfn6fwq4xrcafa715d3bbqczxm16fq40fqy87xn17"; | ||
633 | type = "gem"; | ||
634 | }; | ||
635 | version = "1.3.1"; | ||
636 | }; | ||
637 | domain_name = { | ||
638 | dependencies = ["unf"]; | ||
639 | platforms = []; | ||
640 | source = { | ||
641 | remotes = ["https://rubygems.org"]; | ||
642 | sha256 = "0abdlwb64ns7ssmiqhdwgl27ly40x2l27l8hs8hn0z4kb3zd2x3v"; | ||
643 | type = "gem"; | ||
644 | }; | ||
645 | version = "0.5.20180417"; | ||
646 | }; | ||
647 | entypo-rails = { | ||
648 | dependencies = ["railties"]; | ||
649 | platforms = []; | ||
650 | source = { | ||
651 | remotes = ["https://rubygems.org"]; | ||
652 | sha256 = "124x0jszg6n0k2lcacd627ndlp1fv7cbgnv4scwy5s3czp0qwip6"; | ||
653 | type = "gem"; | ||
654 | }; | ||
655 | version = "3.0.0"; | ||
656 | }; | ||
657 | equalizer = { | ||
658 | platforms = []; | ||
659 | source = { | ||
660 | remotes = ["https://rubygems.org"]; | ||
661 | sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; | ||
662 | type = "gem"; | ||
663 | }; | ||
664 | version = "0.0.11"; | ||
665 | }; | ||
666 | erubi = { | ||
667 | platforms = []; | ||
668 | source = { | ||
669 | remotes = ["https://rubygems.org"]; | ||
670 | sha256 = "0bws86na9k565raiz0kk61yy5pxxp0fmwyzpibdwjkq0xzx8q6q1"; | ||
671 | type = "gem"; | ||
672 | }; | ||
673 | version = "1.7.1"; | ||
674 | }; | ||
675 | eslintrb = { | ||
676 | dependencies = ["execjs" "multi_json" "rake"]; | ||
677 | platforms = []; | ||
678 | source = { | ||
679 | remotes = ["https://rubygems.org"]; | ||
680 | sha256 = "0kx9sbs7pnl436zyczylnqqb1858hffy66fwdqfmcn18q8xdqwkx"; | ||
681 | type = "gem"; | ||
682 | }; | ||
683 | version = "2.1.0"; | ||
684 | }; | ||
685 | et-orbi = { | ||
686 | dependencies = ["tzinfo"]; | ||
687 | platforms = []; | ||
688 | source = { | ||
689 | remotes = ["https://rubygems.org"]; | ||
690 | sha256 = "0wk7i0bmsy46la8gcvbmdns0ni8lmdqas838phj97bdwykxw8m4b"; | ||
691 | type = "gem"; | ||
692 | }; | ||
693 | version = "1.1.6"; | ||
694 | }; | ||
695 | ethon = { | ||
696 | dependencies = ["ffi"]; | ||
697 | platforms = []; | ||
698 | source = { | ||
699 | remotes = ["https://rubygems.org"]; | ||
700 | sha256 = "0y70szwm2p0b9qfvpqrzjrgm3jz0ig65vlbfr6ppc3z0m1h7kv48"; | ||
701 | type = "gem"; | ||
702 | }; | ||
703 | version = "0.11.0"; | ||
704 | }; | ||
705 | excon = { | ||
706 | platforms = []; | ||
707 | source = { | ||
708 | remotes = ["https://rubygems.org"]; | ||
709 | sha256 = "15l9w0938c19nxmrp09n75qpmm64k12xj69h47yvxzcxcpbgnkb2"; | ||
710 | type = "gem"; | ||
711 | }; | ||
712 | version = "0.62.0"; | ||
713 | }; | ||
714 | execjs = { | ||
715 | platforms = []; | ||
716 | source = { | ||
717 | remotes = ["https://rubygems.org"]; | ||
718 | sha256 = "1yz55sf2nd3l666ms6xr18sm2aggcvmb8qr3v53lr4rir32y1yp1"; | ||
719 | type = "gem"; | ||
720 | }; | ||
721 | version = "2.7.0"; | ||
722 | }; | ||
723 | eye = { | ||
724 | dependencies = ["celluloid" "celluloid-io" "kostya-sigar" "state_machines" "thor"]; | ||
725 | platforms = []; | ||
726 | source = { | ||
727 | remotes = ["https://rubygems.org"]; | ||
728 | sha256 = "0gqrrrisy492m6sczq775dyg9sxkl926r8lkr6z33kfb4cnimfzk"; | ||
729 | type = "gem"; | ||
730 | }; | ||
731 | version = "0.10.0"; | ||
732 | }; | ||
733 | fabrication = { | ||
734 | platforms = []; | ||
735 | source = { | ||
736 | remotes = ["https://rubygems.org"]; | ||
737 | sha256 = "0an28kjand4mjbkmnwd9fmgq3y5vf717zpmiijavar3sxqj52zri"; | ||
738 | type = "gem"; | ||
739 | }; | ||
740 | version = "2.20.1"; | ||
741 | }; | ||
742 | factory_girl = { | ||
743 | dependencies = ["activesupport"]; | ||
744 | platforms = []; | ||
745 | source = { | ||
746 | remotes = ["https://rubygems.org"]; | ||
747 | sha256 = "0cc60v28r7w1gp34p4amzdnq7cyip6qhffvxywsj3ypilyf8jqla"; | ||
748 | type = "gem"; | ||
749 | }; | ||
750 | version = "4.8.0"; | ||
751 | }; | ||
752 | factory_girl_rails = { | ||
753 | dependencies = ["factory_girl" "railties"]; | ||
754 | platforms = []; | ||
755 | source = { | ||
756 | remotes = ["https://rubygems.org"]; | ||
757 | sha256 = "0hw8qqp30vm4yf4a36r1r65wk78ihxmas7jg5fyl6fcf705z9fvv"; | ||
758 | type = "gem"; | ||
759 | }; | ||
760 | version = "4.8.0"; | ||
761 | }; | ||
762 | faraday = { | ||
763 | dependencies = ["multipart-post"]; | ||
764 | platforms = []; | ||
765 | source = { | ||
766 | remotes = ["https://rubygems.org"]; | ||
767 | sha256 = "16hwxc8v0z6gkanckjhx0ffgqmzpc4ywz4dfhxpjlz2mbz8d5m52"; | ||
768 | type = "gem"; | ||
769 | }; | ||
770 | version = "0.15.3"; | ||
771 | }; | ||
772 | faraday-cookie_jar = { | ||
773 | dependencies = ["faraday" "http-cookie"]; | ||
774 | platforms = []; | ||
775 | source = { | ||
776 | remotes = ["https://rubygems.org"]; | ||
777 | sha256 = "1di4gx6446a6zdkrpj679m5k515i53wvb4yxcsqvy8d8zacxiiv6"; | ||
778 | type = "gem"; | ||
779 | }; | ||
780 | version = "0.0.6"; | ||
781 | }; | ||
782 | faraday_middleware = { | ||
783 | dependencies = ["faraday"]; | ||
784 | platforms = []; | ||
785 | source = { | ||
786 | remotes = ["https://rubygems.org"]; | ||
787 | sha256 = "1p7icfl28nvl8qqdsngryz1snqic9l8x6bk0dxd7ygn230y0k41d"; | ||
788 | type = "gem"; | ||
789 | }; | ||
790 | version = "0.12.2"; | ||
791 | }; | ||
792 | ffi = { | ||
793 | platforms = []; | ||
794 | source = { | ||
795 | remotes = ["https://rubygems.org"]; | ||
796 | sha256 = "0jpm2dis1j7zvvy3lg7axz9jml316zrn7s0j59vyq3qr127z0m7q"; | ||
797 | type = "gem"; | ||
798 | }; | ||
799 | version = "1.9.25"; | ||
800 | }; | ||
801 | fixture_builder = { | ||
802 | dependencies = ["activerecord" "activesupport" "hashdiff"]; | ||
803 | platforms = []; | ||
804 | source = { | ||
805 | remotes = ["https://rubygems.org"]; | ||
806 | sha256 = "1qlq0nyfhjvz09hm0jankl9bgs9672k31b3lmsfq8p135x3xs627"; | ||
807 | type = "gem"; | ||
808 | }; | ||
809 | version = "0.5.2.rc3"; | ||
810 | }; | ||
811 | fog-aws = { | ||
812 | dependencies = ["fog-core" "fog-json" "fog-xml" "ipaddress"]; | ||
813 | platforms = []; | ||
814 | source = { | ||
815 | remotes = ["https://rubygems.org"]; | ||
816 | sha256 = "1zprxg0spvkkri1jf40zg3rfr5h2gq6009d7l36lifpvhjn658cs"; | ||
817 | type = "gem"; | ||
818 | }; | ||
819 | version = "3.3.0"; | ||
820 | }; | ||
821 | fog-core = { | ||
822 | dependencies = ["builder" "excon" "formatador" "mime-types"]; | ||
823 | platforms = []; | ||
824 | source = { | ||
825 | remotes = ["https://rubygems.org"]; | ||
826 | sha256 = "1fsama04wlxhv537bm4b7rr4zzn0mvisy87m3qzv6f0mhlrq3zp8"; | ||
827 | type = "gem"; | ||
828 | }; | ||
829 | version = "2.1.2"; | ||
830 | }; | ||
831 | fog-json = { | ||
832 | dependencies = ["fog-core" "multi_json"]; | ||
833 | platforms = []; | ||
834 | source = { | ||
835 | remotes = ["https://rubygems.org"]; | ||
836 | sha256 = "1zj8llzc119zafbmfa4ai3z5s7c4vp9akfs0f9l2piyvcarmlkyx"; | ||
837 | type = "gem"; | ||
838 | }; | ||
839 | version = "1.2.0"; | ||
840 | }; | ||
841 | fog-xml = { | ||
842 | dependencies = ["fog-core" "nokogiri"]; | ||
843 | platforms = []; | ||
844 | source = { | ||
845 | remotes = ["https://rubygems.org"]; | ||
846 | sha256 = "043lwdw2wsi6d55ifk0w3izi5l1d1h0alwyr3fixic7b94kc812n"; | ||
847 | type = "gem"; | ||
848 | }; | ||
849 | version = "0.1.3"; | ||
850 | }; | ||
851 | formatador = { | ||
852 | platforms = []; | ||
853 | source = { | ||
854 | remotes = ["https://rubygems.org"]; | ||
855 | sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; | ||
856 | type = "gem"; | ||
857 | }; | ||
858 | version = "0.2.5"; | ||
859 | }; | ||
860 | fugit = { | ||
861 | dependencies = ["et-orbi" "raabro"]; | ||
862 | platforms = []; | ||
863 | source = { | ||
864 | remotes = ["https://rubygems.org"]; | ||
865 | sha256 = "1szijawzdii668z5is9xi849399gy786951dx0l5r2z5mbfqvl9i"; | ||
866 | type = "gem"; | ||
867 | }; | ||
868 | version = "1.1.6"; | ||
869 | }; | ||
870 | fuubar = { | ||
871 | dependencies = ["rspec-core" "ruby-progressbar"]; | ||
872 | platforms = []; | ||
873 | source = { | ||
874 | remotes = ["https://rubygems.org"]; | ||
875 | sha256 = "1sqkr1nh49rlm86l3qyrgsdqavgqii4pnrjn7855z6dfavh3spxr"; | ||
876 | type = "gem"; | ||
877 | }; | ||
878 | version = "2.3.2"; | ||
879 | }; | ||
880 | get_process_mem = { | ||
881 | platforms = []; | ||
882 | source = { | ||
883 | remotes = ["https://rubygems.org"]; | ||
884 | sha256 = "1bvfjdign16r0zwm2rlfrq0sk1licvmlgbnlpnyckniv5r7i080g"; | ||
885 | type = "gem"; | ||
886 | }; | ||
887 | version = "0.2.3"; | ||
888 | }; | ||
889 | gherkin = { | ||
890 | platforms = []; | ||
891 | source = { | ||
892 | remotes = ["https://rubygems.org"]; | ||
893 | sha256 = "1cgcdchwwdm10rsk44frjwqd4ihprhxjbm799nscqy2q1raqfj5s"; | ||
894 | type = "gem"; | ||
895 | }; | ||
896 | version = "5.1.0"; | ||
897 | }; | ||
898 | gitlab = { | ||
899 | dependencies = ["httparty" "terminal-table"]; | ||
900 | platforms = []; | ||
901 | source = { | ||
902 | remotes = ["https://rubygems.org"]; | ||
903 | sha256 = "1nncjmk71ivjxmgkpv100yybry5c7ld6xjgi1b5zsfv4g3mz0v34"; | ||
904 | type = "gem"; | ||
905 | }; | ||
906 | version = "4.7.0"; | ||
907 | }; | ||
908 | globalid = { | ||
909 | dependencies = ["activesupport"]; | ||
910 | platforms = []; | ||
911 | source = { | ||
912 | remotes = ["https://rubygems.org"]; | ||
913 | sha256 = "02smrgdi11kziqi9zhnsy9i6yr2fnxrqlv3lllsvdjki3cd4is38"; | ||
914 | type = "gem"; | ||
915 | }; | ||
916 | version = "0.4.1"; | ||
917 | }; | ||
918 | gon = { | ||
919 | dependencies = ["actionpack" "multi_json" "request_store"]; | ||
920 | platforms = []; | ||
921 | source = { | ||
922 | remotes = ["https://rubygems.org"]; | ||
923 | sha256 = "07sm7fd94pfscrbs4lyprs0das8s1yn32cw521ch738jaqb388xl"; | ||
924 | type = "gem"; | ||
925 | }; | ||
926 | version = "6.2.1"; | ||
927 | }; | ||
928 | guard = { | ||
929 | dependencies = ["formatador" "listen" "lumberjack" "nenv" "notiffany" "pry" "shellany" "thor"]; | ||
930 | platforms = []; | ||
931 | source = { | ||
932 | remotes = ["https://rubygems.org"]; | ||
933 | sha256 = "0h84ja6qvii3hx86w9l4vjpbgl4m8ma8fbawwp7s8l791cgkdcmk"; | ||
934 | type = "gem"; | ||
935 | }; | ||
936 | version = "2.15.0"; | ||
937 | }; | ||
938 | guard-compat = { | ||
939 | platforms = []; | ||
940 | source = { | ||
941 | remotes = ["https://rubygems.org"]; | ||
942 | sha256 = "1zj6sr1k8w59mmi27rsii0v8xyy2rnsi09nqvwpgj1q10yq1mlis"; | ||
943 | type = "gem"; | ||
944 | }; | ||
945 | version = "1.2.1"; | ||
946 | }; | ||
947 | guard-rspec = { | ||
948 | dependencies = ["guard" "guard-compat" "rspec"]; | ||
949 | platforms = []; | ||
950 | source = { | ||
951 | remotes = ["https://rubygems.org"]; | ||
952 | sha256 = "1jkm5xp90gm4c5s51pmf92i9hc10gslwwic6mvk72g0yplya0yx4"; | ||
953 | type = "gem"; | ||
954 | }; | ||
955 | version = "4.7.3"; | ||
956 | }; | ||
957 | guard-rubocop = { | ||
958 | dependencies = ["guard" "rubocop"]; | ||
959 | platforms = []; | ||
960 | source = { | ||
961 | remotes = ["https://rubygems.org"]; | ||
962 | sha256 = "1p97zkzasghl1md13rh57n3s2rr2kqly8w4vfn6vaj89igjpagdp"; | ||
963 | type = "gem"; | ||
964 | }; | ||
965 | version = "1.3.0"; | ||
966 | }; | ||
967 | haml = { | ||
968 | dependencies = ["temple" "tilt"]; | ||
969 | platforms = []; | ||
970 | source = { | ||
971 | remotes = ["https://rubygems.org"]; | ||
972 | sha256 = "1q0a9fvqh8kn6wm97fcks6qzbjd400bv8bx748w8v87m7p4klhac"; | ||
973 | type = "gem"; | ||
974 | }; | ||
975 | version = "5.0.4"; | ||
976 | }; | ||
977 | haml_lint = { | ||
978 | dependencies = ["haml" "rainbow" "rake" "rubocop" "sysexits"]; | ||
979 | platforms = []; | ||
980 | source = { | ||
981 | remotes = ["https://rubygems.org"]; | ||
982 | sha256 = "125aj0j84nx5gqm42hfx5d8486higlra423ahgfpsdjwbp399rwv"; | ||
983 | type = "gem"; | ||
984 | }; | ||
985 | version = "0.28.0"; | ||
986 | }; | ||
987 | hamlit = { | ||
988 | dependencies = ["temple" "thor" "tilt"]; | ||
989 | platforms = []; | ||
990 | source = { | ||
991 | remotes = ["https://rubygems.org"]; | ||
992 | sha256 = "14fsc208qsf46cflk23vs2fdw435dk65fwv55zhziciwn96ld8sf"; | ||
993 | type = "gem"; | ||
994 | }; | ||
995 | version = "2.9.1"; | ||
996 | }; | ||
997 | handlebars_assets = { | ||
998 | dependencies = ["execjs" "sprockets" "tilt"]; | ||
999 | platforms = []; | ||
1000 | source = { | ||
1001 | remotes = ["https://rubygems.org"]; | ||
1002 | sha256 = "18pyksz4jb0n28acqxv14ahy8mkc9ldqbbn73gcj28m0l9wjzsca"; | ||
1003 | type = "gem"; | ||
1004 | }; | ||
1005 | version = "0.23.2"; | ||
1006 | }; | ||
1007 | hashdiff = { | ||
1008 | platforms = []; | ||
1009 | source = { | ||
1010 | remotes = ["https://rubygems.org"]; | ||
1011 | sha256 = "0yj5l2rw8i8jc725hbcpc4wks0qlaaimr3dpaqamfjkjkxl0hjp9"; | ||
1012 | type = "gem"; | ||
1013 | }; | ||
1014 | version = "0.3.7"; | ||
1015 | }; | ||
1016 | hashie = { | ||
1017 | platforms = []; | ||
1018 | source = { | ||
1019 | remotes = ["https://rubygems.org"]; | ||
1020 | sha256 = "1hh5lybf8hm7d7xs4xm8hxvm8xqrs2flc8fnwkrclaj746izw6xb"; | ||
1021 | type = "gem"; | ||
1022 | }; | ||
1023 | version = "3.5.7"; | ||
1024 | }; | ||
1025 | http = { | ||
1026 | dependencies = ["addressable" "http-cookie" "http-form_data" "http_parser.rb"]; | ||
1027 | platforms = []; | ||
1028 | source = { | ||
1029 | remotes = ["https://rubygems.org"]; | ||
1030 | sha256 = "1jlm5prw437wqpfxcigh88lfap3m7g8mnmj5as7qw6dzqnvrxwmc"; | ||
1031 | type = "gem"; | ||
1032 | }; | ||
1033 | version = "3.3.0"; | ||
1034 | }; | ||
1035 | http-cookie = { | ||
1036 | dependencies = ["domain_name"]; | ||
1037 | platforms = []; | ||
1038 | source = { | ||
1039 | remotes = ["https://rubygems.org"]; | ||
1040 | sha256 = "004cgs4xg5n6byjs7qld0xhsjq3n6ydfh897myr2mibvh6fjc49g"; | ||
1041 | type = "gem"; | ||
1042 | }; | ||
1043 | version = "1.0.3"; | ||
1044 | }; | ||
1045 | http-form_data = { | ||
1046 | platforms = []; | ||
1047 | source = { | ||
1048 | remotes = ["https://rubygems.org"]; | ||
1049 | sha256 = "15lpn604byf7cyxnw949xz4rvpcknqp7a48q73nm630gqxsa76f3"; | ||
1050 | type = "gem"; | ||
1051 | }; | ||
1052 | version = "2.1.1"; | ||
1053 | }; | ||
1054 | http_accept_language = { | ||
1055 | platforms = []; | ||
1056 | source = { | ||
1057 | remotes = ["https://rubygems.org"]; | ||
1058 | sha256 = "0d0nlfz9vm4jr1l6q0chx4rp2hrnrfbx3gadc1dz930lbbaz0hq0"; | ||
1059 | type = "gem"; | ||
1060 | }; | ||
1061 | version = "2.1.1"; | ||
1062 | }; | ||
1063 | "http_parser.rb" = { | ||
1064 | platforms = []; | ||
1065 | source = { | ||
1066 | remotes = ["https://rubygems.org"]; | ||
1067 | sha256 = "15nidriy0v5yqfjsgsra51wmknxci2n2grliz78sf9pga3n0l7gi"; | ||
1068 | type = "gem"; | ||
1069 | }; | ||
1070 | version = "0.6.0"; | ||
1071 | }; | ||
1072 | httparty = { | ||
1073 | dependencies = ["mime-types" "multi_xml"]; | ||
1074 | platforms = []; | ||
1075 | source = { | ||
1076 | remotes = ["https://rubygems.org"]; | ||
1077 | sha256 = "1xmm7pxmz3pblkdr76dg7qm5s60kpp3yvh46c2i0bn1dm0zgl730"; | ||
1078 | type = "gem"; | ||
1079 | }; | ||
1080 | version = "0.16.3"; | ||
1081 | }; | ||
1082 | httpclient = { | ||
1083 | platforms = []; | ||
1084 | source = { | ||
1085 | remotes = ["https://rubygems.org"]; | ||
1086 | sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99"; | ||
1087 | type = "gem"; | ||
1088 | }; | ||
1089 | version = "2.8.3"; | ||
1090 | }; | ||
1091 | i18n = { | ||
1092 | dependencies = ["concurrent-ruby"]; | ||
1093 | platforms = []; | ||
1094 | source = { | ||
1095 | remotes = ["https://rubygems.org"]; | ||
1096 | sha256 = "1gcp1m1p6dpasycfz2sj82ci9ggz7lsskz9c9q6gvfwxrl8y9dx7"; | ||
1097 | type = "gem"; | ||
1098 | }; | ||
1099 | version = "1.1.1"; | ||
1100 | }; | ||
1101 | i18n-inflector = { | ||
1102 | dependencies = ["i18n"]; | ||
1103 | platforms = []; | ||
1104 | source = { | ||
1105 | remotes = ["https://rubygems.org"]; | ||
1106 | sha256 = "081jr7z947aqjfmpbfs10w9jxi205jwgk4mgd8jds1b4m4i8mc7g"; | ||
1107 | type = "gem"; | ||
1108 | }; | ||
1109 | version = "2.6.7"; | ||
1110 | }; | ||
1111 | i18n-inflector-rails = { | ||
1112 | dependencies = ["actionpack" "i18n-inflector" "railties"]; | ||
1113 | platforms = []; | ||
1114 | source = { | ||
1115 | remotes = ["https://rubygems.org"]; | ||
1116 | sha256 = "0c04jm657akp5n14syhcwnn3hnsvx7harvg97768bvf3f9a37hyk"; | ||
1117 | type = "gem"; | ||
1118 | }; | ||
1119 | version = "1.0.7"; | ||
1120 | }; | ||
1121 | ipaddress = { | ||
1122 | platforms = []; | ||
1123 | source = { | ||
1124 | remotes = ["https://rubygems.org"]; | ||
1125 | sha256 = "1x86s0s11w202j6ka40jbmywkrx8fhq8xiy8mwvnkhllj57hqr45"; | ||
1126 | type = "gem"; | ||
1127 | }; | ||
1128 | version = "0.8.3"; | ||
1129 | }; | ||
1130 | jaro_winkler = { | ||
1131 | platforms = []; | ||
1132 | source = { | ||
1133 | remotes = ["https://rubygems.org"]; | ||
1134 | sha256 = "0rr797nqz081bfk30m2apj5h24bg5d1jr1c8p3xwx4hbwsrbclah"; | ||
1135 | type = "gem"; | ||
1136 | }; | ||
1137 | version = "1.5.1"; | ||
1138 | }; | ||
1139 | jasmine = { | ||
1140 | dependencies = ["jasmine-core" "phantomjs" "rack" "rake"]; | ||
1141 | platforms = []; | ||
1142 | source = { | ||
1143 | remotes = ["https://rubygems.org"]; | ||
1144 | sha256 = "1xfwf163wi5a9i0vlm564cqi6k30h15wnrwd15ph95jfa5516kv1"; | ||
1145 | type = "gem"; | ||
1146 | }; | ||
1147 | version = "3.3.0"; | ||
1148 | }; | ||
1149 | jasmine-core = { | ||
1150 | platforms = []; | ||
1151 | source = { | ||
1152 | remotes = ["https://rubygems.org"]; | ||
1153 | sha256 = "1b12bjfrxvb8mwjwlfyngykd80lz956glcpfz7rhhw7n75b2rdlv"; | ||
1154 | type = "gem"; | ||
1155 | }; | ||
1156 | version = "3.3.0"; | ||
1157 | }; | ||
1158 | jasmine-jquery-rails = { | ||
1159 | platforms = []; | ||
1160 | source = { | ||
1161 | remotes = ["https://rubygems.org"]; | ||
1162 | sha256 = "0cq5zd4ng5dlza45whd6sa7bzd60rlddk9760271mybdqyd96jlv"; | ||
1163 | type = "gem"; | ||
1164 | }; | ||
1165 | version = "2.0.3"; | ||
1166 | }; | ||
1167 | jquery-rails = { | ||
1168 | dependencies = ["rails-dom-testing" "railties" "thor"]; | ||
1169 | platforms = []; | ||
1170 | source = { | ||
1171 | remotes = ["https://rubygems.org"]; | ||
1172 | sha256 = "17201sb8ddwy4yprizmqabq1kfx3m9c53p0yqngn63m07jjcpnh8"; | ||
1173 | type = "gem"; | ||
1174 | }; | ||
1175 | version = "4.3.3"; | ||
1176 | }; | ||
1177 | js-routes = { | ||
1178 | dependencies = ["railties" "sprockets-rails"]; | ||
1179 | platforms = []; | ||
1180 | source = { | ||
1181 | remotes = ["https://rubygems.org"]; | ||
1182 | sha256 = "14yx3jrd4sgcwgj8yrrqdwl691mci1hcjqyyvp0v15jbzis1bclm"; | ||
1183 | type = "gem"; | ||
1184 | }; | ||
1185 | version = "1.4.4"; | ||
1186 | }; | ||
1187 | js_image_paths = { | ||
1188 | dependencies = ["rails" "sprockets"]; | ||
1189 | platforms = []; | ||
1190 | source = { | ||
1191 | remotes = ["https://rubygems.org"]; | ||
1192 | sha256 = "1d4kq8895i61a338ddk5f2k16l5lvmnkby9cdjwnmm2jddw4q7nf"; | ||
1193 | type = "gem"; | ||
1194 | }; | ||
1195 | version = "0.1.1"; | ||
1196 | }; | ||
1197 | json = { | ||
1198 | platforms = []; | ||
1199 | source = { | ||
1200 | remotes = ["https://rubygems.org"]; | ||
1201 | sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp"; | ||
1202 | type = "gem"; | ||
1203 | }; | ||
1204 | version = "2.1.0"; | ||
1205 | }; | ||
1206 | json-jwt = { | ||
1207 | dependencies = ["activesupport" "aes_key_wrap" "bindata"]; | ||
1208 | platforms = []; | ||
1209 | source = { | ||
1210 | remotes = ["https://rubygems.org"]; | ||
1211 | sha256 = "065k7vffdki73f4nz89lxi6wxmcw5dlf593831pgvlbralll6x3r"; | ||
1212 | type = "gem"; | ||
1213 | }; | ||
1214 | version = "1.9.4"; | ||
1215 | }; | ||
1216 | json-schema = { | ||
1217 | dependencies = ["addressable"]; | ||
1218 | platforms = []; | ||
1219 | source = { | ||
1220 | remotes = ["https://rubygems.org"]; | ||
1221 | sha256 = "1yv5lfmr2nzd14af498xqd5p89f3g080q8wk0klr3vxgypsikkb5"; | ||
1222 | type = "gem"; | ||
1223 | }; | ||
1224 | version = "2.8.1"; | ||
1225 | }; | ||
1226 | json-schema-rspec = { | ||
1227 | dependencies = ["json-schema" "rspec"]; | ||
1228 | platforms = []; | ||
1229 | source = { | ||
1230 | remotes = ["https://rubygems.org"]; | ||
1231 | sha256 = "1ip30yjzyigqqp9jwkrw9x9vrfpnmwi160zmk2vkrwlv9pby0wr9"; | ||
1232 | type = "gem"; | ||
1233 | }; | ||
1234 | version = "0.0.4"; | ||
1235 | }; | ||
1236 | jsonpath = { | ||
1237 | dependencies = ["multi_json" "to_regexp"]; | ||
1238 | platforms = []; | ||
1239 | source = { | ||
1240 | remotes = ["https://rubygems.org"]; | ||
1241 | sha256 = "06i41lwpj0dwvbxcpqrad5pjn2gmcv0srv0zw0ap7irwc21ifd7d"; | ||
1242 | type = "gem"; | ||
1243 | }; | ||
1244 | version = "0.9.6"; | ||
1245 | }; | ||
1246 | jwt = { | ||
1247 | platforms = []; | ||
1248 | source = { | ||
1249 | remotes = ["https://rubygems.org"]; | ||
1250 | sha256 = "1w0kaqrbl71cq9sbnixc20x5lqah3hs2i93xmhlfdg2y3by7yzky"; | ||
1251 | type = "gem"; | ||
1252 | }; | ||
1253 | version = "2.1.0"; | ||
1254 | }; | ||
1255 | kgio = { | ||
1256 | platforms = []; | ||
1257 | source = { | ||
1258 | remotes = ["https://rubygems.org"]; | ||
1259 | sha256 = "1528pyj1szzzp3pgj05fzjd36qjrxm9yj2x5radc9p1z7vl67y50"; | ||
1260 | type = "gem"; | ||
1261 | }; | ||
1262 | version = "2.11.2"; | ||
1263 | }; | ||
1264 | kostya-sigar = { | ||
1265 | platforms = []; | ||
1266 | source = { | ||
1267 | remotes = ["https://rubygems.org"]; | ||
1268 | sha256 = "0z0pcykhjyrb7kq76jfcyxc1qq23gj5zmgy3miy87v85ydrxiqwb"; | ||
1269 | type = "gem"; | ||
1270 | }; | ||
1271 | version = "2.0.4"; | ||
1272 | }; | ||
1273 | leaflet-rails = { | ||
1274 | dependencies = ["rails"]; | ||
1275 | platforms = []; | ||
1276 | source = { | ||
1277 | remotes = ["https://rubygems.org"]; | ||
1278 | sha256 = "0dy7vhsjj1fhbbqm2s7pw57vgysd31qqi4y0hm91325hmvq75grb"; | ||
1279 | type = "gem"; | ||
1280 | }; | ||
1281 | version = "1.3.1"; | ||
1282 | }; | ||
1283 | listen = { | ||
1284 | dependencies = ["rb-fsevent" "rb-inotify" "ruby_dep"]; | ||
1285 | platforms = []; | ||
1286 | source = { | ||
1287 | remotes = ["https://rubygems.org"]; | ||
1288 | sha256 = "01v5mrnfqm6sgm8xn2v5swxsn1wlmq7rzh2i48d4jzjsc7qvb6mx"; | ||
1289 | type = "gem"; | ||
1290 | }; | ||
1291 | version = "3.1.5"; | ||
1292 | }; | ||
1293 | little-plugger = { | ||
1294 | platforms = []; | ||
1295 | source = { | ||
1296 | remotes = ["https://rubygems.org"]; | ||
1297 | sha256 = "1frilv82dyxnlg8k1jhrvyd73l6k17mxc5vwxx080r4x1p04gwym"; | ||
1298 | type = "gem"; | ||
1299 | }; | ||
1300 | version = "1.1.4"; | ||
1301 | }; | ||
1302 | logging = { | ||
1303 | dependencies = ["little-plugger" "multi_json"]; | ||
1304 | platforms = []; | ||
1305 | source = { | ||
1306 | remotes = ["https://rubygems.org"]; | ||
1307 | sha256 = "06j6iaj89h9jhkx1x3hlswqrfnqds8br05xb1qra69dpvbdmjcwn"; | ||
1308 | type = "gem"; | ||
1309 | }; | ||
1310 | version = "2.2.2"; | ||
1311 | }; | ||
1312 | logging-rails = { | ||
1313 | dependencies = ["logging"]; | ||
1314 | platforms = []; | ||
1315 | source = { | ||
1316 | remotes = ["https://rubygems.org"]; | ||
1317 | sha256 = "022cnj9v177282kadd9ygzjpvlvbq9k5z0xhdbbmgypi05z4i239"; | ||
1318 | type = "gem"; | ||
1319 | }; | ||
1320 | version = "0.6.0"; | ||
1321 | }; | ||
1322 | loofah = { | ||
1323 | dependencies = ["crass" "nokogiri"]; | ||
1324 | platforms = []; | ||
1325 | source = { | ||
1326 | remotes = ["https://rubygems.org"]; | ||
1327 | sha256 = "1ccsid33xjajd0im2xv941aywi58z7ihwkvaf1w2bv89vn5bhsjg"; | ||
1328 | type = "gem"; | ||
1329 | }; | ||
1330 | version = "2.2.3"; | ||
1331 | }; | ||
1332 | lumberjack = { | ||
1333 | platforms = []; | ||
1334 | source = { | ||
1335 | remotes = ["https://rubygems.org"]; | ||
1336 | sha256 = "06im7gcg42x77yhz2w5da2ly9xz0n0c36y5ks7xs53v0l9g0vf5n"; | ||
1337 | type = "gem"; | ||
1338 | }; | ||
1339 | version = "1.0.13"; | ||
1340 | }; | ||
1341 | macaddr = { | ||
1342 | dependencies = ["systemu"]; | ||
1343 | platforms = []; | ||
1344 | source = { | ||
1345 | remotes = ["https://rubygems.org"]; | ||
1346 | sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; | ||
1347 | type = "gem"; | ||
1348 | }; | ||
1349 | version = "1.7.1"; | ||
1350 | }; | ||
1351 | mail = { | ||
1352 | dependencies = ["mini_mime"]; | ||
1353 | platforms = []; | ||
1354 | source = { | ||
1355 | remotes = ["https://rubygems.org"]; | ||
1356 | sha256 = "00wwz6ys0502dpk8xprwcqfwyf3hmnx6lgxaiq6vj43mkx43sapc"; | ||
1357 | type = "gem"; | ||
1358 | }; | ||
1359 | version = "2.7.1"; | ||
1360 | }; | ||
1361 | markdown-it-html5-embed = { | ||
1362 | platforms = []; | ||
1363 | source = { | ||
1364 | remotes = ["https://rubygems.org"]; | ||
1365 | sha256 = "10n2z6j0whc6makxvcf2jhpwb8xrj4s6vyywijsaaxs0cn490a5c"; | ||
1366 | type = "gem"; | ||
1367 | }; | ||
1368 | version = "1.0.0"; | ||
1369 | }; | ||
1370 | markerb = { | ||
1371 | platforms = []; | ||
1372 | source = { | ||
1373 | remotes = ["https://rubygems.org"]; | ||
1374 | sha256 = "08sm3kafc3086l0a9is2cysk7j2k71mxy6ba295pwwzyvy734y76"; | ||
1375 | type = "gem"; | ||
1376 | }; | ||
1377 | version = "1.1.0"; | ||
1378 | }; | ||
1379 | memoizable = { | ||
1380 | dependencies = ["thread_safe"]; | ||
1381 | platforms = []; | ||
1382 | source = { | ||
1383 | remotes = ["https://rubygems.org"]; | ||
1384 | sha256 = "0v42bvghsvfpzybfazl14qhkrjvx0xlmxz0wwqc960ga1wld5x5c"; | ||
1385 | type = "gem"; | ||
1386 | }; | ||
1387 | version = "0.4.2"; | ||
1388 | }; | ||
1389 | method_source = { | ||
1390 | platforms = []; | ||
1391 | source = { | ||
1392 | remotes = ["https://rubygems.org"]; | ||
1393 | sha256 = "1pviwzvdqd90gn6y7illcdd9adapw8fczml933p5vl739dkvl3lq"; | ||
1394 | type = "gem"; | ||
1395 | }; | ||
1396 | version = "0.9.2"; | ||
1397 | }; | ||
1398 | mime-types = { | ||
1399 | dependencies = ["mime-types-data"]; | ||
1400 | platforms = []; | ||
1401 | source = { | ||
1402 | remotes = ["https://rubygems.org"]; | ||
1403 | sha256 = "0fjxy1jm52ixpnv3vg9ld9pr9f35gy0jp66i1njhqjvmnvq0iwwk"; | ||
1404 | type = "gem"; | ||
1405 | }; | ||
1406 | version = "3.2.2"; | ||
1407 | }; | ||
1408 | mime-types-data = { | ||
1409 | platforms = []; | ||
1410 | source = { | ||
1411 | remotes = ["https://rubygems.org"]; | ||
1412 | sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; | ||
1413 | type = "gem"; | ||
1414 | }; | ||
1415 | version = "3.2018.0812"; | ||
1416 | }; | ||
1417 | mini_magick = { | ||
1418 | platforms = []; | ||
1419 | source = { | ||
1420 | remotes = ["https://rubygems.org"]; | ||
1421 | sha256 = "0sisx59mr5kydmxmx5vr8spmrxhrjkfqv35zhsqdlyzmp1z5px9p"; | ||
1422 | type = "gem"; | ||
1423 | }; | ||
1424 | version = "4.9.2"; | ||
1425 | }; | ||
1426 | mini_mime = { | ||
1427 | platforms = []; | ||
1428 | source = { | ||
1429 | remotes = ["https://rubygems.org"]; | ||
1430 | sha256 = "1q4pshq387lzv9m39jv32vwb8wrq3wc4jwgl4jk209r4l33v09d3"; | ||
1431 | type = "gem"; | ||
1432 | }; | ||
1433 | version = "1.0.1"; | ||
1434 | }; | ||
1435 | mini_portile2 = { | ||
1436 | platforms = []; | ||
1437 | source = { | ||
1438 | remotes = ["https://rubygems.org"]; | ||
1439 | sha256 = "13d32jjadpjj6d2wdhkfpsmy68zjx90p49bgf8f7nkpz86r1fr11"; | ||
1440 | type = "gem"; | ||
1441 | }; | ||
1442 | version = "2.3.0"; | ||
1443 | }; | ||
1444 | minitest = { | ||
1445 | platforms = []; | ||
1446 | source = { | ||
1447 | remotes = ["https://rubygems.org"]; | ||
1448 | sha256 = "0icglrhghgwdlnzzp4jf76b0mbc71s80njn5afyfjn4wqji8mqbq"; | ||
1449 | type = "gem"; | ||
1450 | }; | ||
1451 | version = "5.11.3"; | ||
1452 | }; | ||
1453 | mobile-fu = { | ||
1454 | dependencies = ["rack-mobile-detect" "rails"]; | ||
1455 | platforms = []; | ||
1456 | source = { | ||
1457 | remotes = ["https://rubygems.org"]; | ||
1458 | sha256 = "0lxfcsd7dwwcpa1j2jbl382anmv6kksf5q1wqj14gc6jxxjq9s4i"; | ||
1459 | type = "gem"; | ||
1460 | }; | ||
1461 | version = "1.4.0"; | ||
1462 | }; | ||
1463 | multi_json = { | ||
1464 | platforms = []; | ||
1465 | source = { | ||
1466 | remotes = ["https://rubygems.org"]; | ||
1467 | sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv"; | ||
1468 | type = "gem"; | ||
1469 | }; | ||
1470 | version = "1.13.1"; | ||
1471 | }; | ||
1472 | multi_test = { | ||
1473 | platforms = []; | ||
1474 | source = { | ||
1475 | remotes = ["https://rubygems.org"]; | ||
1476 | sha256 = "1sx356q81plr67hg16jfwz9hcqvnk03bd9n75pmdw8pfxjfy1yxd"; | ||
1477 | type = "gem"; | ||
1478 | }; | ||
1479 | version = "0.1.2"; | ||
1480 | }; | ||
1481 | multi_xml = { | ||
1482 | platforms = []; | ||
1483 | source = { | ||
1484 | remotes = ["https://rubygems.org"]; | ||
1485 | sha256 = "0lmd4f401mvravi1i1yq7b2qjjli0yq7dfc4p1nj5nwajp7r6hyj"; | ||
1486 | type = "gem"; | ||
1487 | }; | ||
1488 | version = "0.6.0"; | ||
1489 | }; | ||
1490 | multipart-post = { | ||
1491 | platforms = []; | ||
1492 | source = { | ||
1493 | remotes = ["https://rubygems.org"]; | ||
1494 | sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; | ||
1495 | type = "gem"; | ||
1496 | }; | ||
1497 | version = "2.0.0"; | ||
1498 | }; | ||
1499 | mysql2 = { | ||
1500 | groups = ["mysql"]; | ||
1501 | platforms = []; | ||
1502 | source = { | ||
1503 | remotes = ["https://rubygems.org"]; | ||
1504 | sha256 = "1a2kdjgzwh1p2rkcmxaawy6ibi32b04wbdd5d4wr8i342pq76di4"; | ||
1505 | type = "gem"; | ||
1506 | }; | ||
1507 | version = "0.5.2"; | ||
1508 | }; | ||
1509 | naught = { | ||
1510 | platforms = []; | ||
1511 | source = { | ||
1512 | remotes = ["https://rubygems.org"]; | ||
1513 | sha256 = "1wwjx35zgbc0nplp8a866iafk4zsrbhwwz4pav5gydr2wm26nksg"; | ||
1514 | type = "gem"; | ||
1515 | }; | ||
1516 | version = "1.1.0"; | ||
1517 | }; | ||
1518 | nenv = { | ||
1519 | platforms = []; | ||
1520 | source = { | ||
1521 | remotes = ["https://rubygems.org"]; | ||
1522 | sha256 = "0r97jzknll9bhd8yyg2bngnnkj8rjhal667n7d32h8h7ny7nvpnr"; | ||
1523 | type = "gem"; | ||
1524 | }; | ||
1525 | version = "0.3.0"; | ||
1526 | }; | ||
1527 | net-ldap = { | ||
1528 | platforms = []; | ||
1529 | source = { | ||
1530 | remotes = ["https://rubygems.org"]; | ||
1531 | sha256 = "016igqz81a8zcwqzp5bbhryqmb2skmyf57ij3nb5z8sxwhw22jgh"; | ||
1532 | type = "gem"; | ||
1533 | }; | ||
1534 | version = "0.16.1"; | ||
1535 | }; | ||
1536 | nio4r = { | ||
1537 | platforms = []; | ||
1538 | source = { | ||
1539 | remotes = ["https://rubygems.org"]; | ||
1540 | sha256 = "1a41ca1kpdmrypjp9xbgvckpy8g26zxphkja9vk7j5wl4n8yvlyr"; | ||
1541 | type = "gem"; | ||
1542 | }; | ||
1543 | version = "2.3.1"; | ||
1544 | }; | ||
1545 | nokogiri = { | ||
1546 | dependencies = ["mini_portile2"]; | ||
1547 | platforms = []; | ||
1548 | source = { | ||
1549 | remotes = ["https://rubygems.org"]; | ||
1550 | sha256 = "0byyxrazkfm29ypcx5q4syrv126nvjnf7z6bqi01sqkv4llsi4qz"; | ||
1551 | type = "gem"; | ||
1552 | }; | ||
1553 | version = "1.8.5"; | ||
1554 | }; | ||
1555 | notiffany = { | ||
1556 | dependencies = ["nenv" "shellany"]; | ||
1557 | platforms = []; | ||
1558 | source = { | ||
1559 | remotes = ["https://rubygems.org"]; | ||
1560 | sha256 = "0x838fa5il0dd9zbm3lxkpbfxcf5fxv9556mayc2mxsdl5ghv8nx"; | ||
1561 | type = "gem"; | ||
1562 | }; | ||
1563 | version = "0.1.1"; | ||
1564 | }; | ||
1565 | oauth = { | ||
1566 | platforms = []; | ||
1567 | source = { | ||
1568 | remotes = ["https://rubygems.org"]; | ||
1569 | sha256 = "1zszdg8q1b135z7l7crjj234k4j0m347hywp5kj6zsq7q78pw09y"; | ||
1570 | type = "gem"; | ||
1571 | }; | ||
1572 | version = "0.5.4"; | ||
1573 | }; | ||
1574 | oauth2 = { | ||
1575 | dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"]; | ||
1576 | platforms = []; | ||
1577 | source = { | ||
1578 | remotes = ["https://rubygems.org"]; | ||
1579 | sha256 = "0av6nlb5y2sm6m8fx669ywrqa9858yqaqfqzny75nqp3anag89qh"; | ||
1580 | type = "gem"; | ||
1581 | }; | ||
1582 | version = "1.4.1"; | ||
1583 | }; | ||
1584 | octokit = { | ||
1585 | dependencies = ["sawyer"]; | ||
1586 | platforms = []; | ||
1587 | source = { | ||
1588 | remotes = ["https://rubygems.org"]; | ||
1589 | sha256 = "1yh0yzzqg575ix3y2l2261b9ag82gv2v4f1wczdhcmfbxcz755x6"; | ||
1590 | type = "gem"; | ||
1591 | }; | ||
1592 | version = "4.13.0"; | ||
1593 | }; | ||
1594 | omniauth = { | ||
1595 | dependencies = ["hashie" "rack"]; | ||
1596 | platforms = []; | ||
1597 | source = { | ||
1598 | remotes = ["https://rubygems.org"]; | ||
1599 | sha256 = "1msqr4qq7mfdvl3rg89529isrv595hvjpj2gi0say4b8nwqfggmg"; | ||
1600 | type = "gem"; | ||
1601 | }; | ||
1602 | version = "1.8.1"; | ||
1603 | }; | ||
1604 | omniauth-oauth = { | ||
1605 | dependencies = ["oauth" "omniauth"]; | ||
1606 | platforms = []; | ||
1607 | source = { | ||
1608 | remotes = ["https://rubygems.org"]; | ||
1609 | sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; | ||
1610 | type = "gem"; | ||
1611 | }; | ||
1612 | version = "1.1.0"; | ||
1613 | }; | ||
1614 | omniauth-oauth2 = { | ||
1615 | dependencies = ["oauth2" "omniauth"]; | ||
1616 | platforms = []; | ||
1617 | source = { | ||
1618 | remotes = ["https://rubygems.org"]; | ||
1619 | sha256 = "0kscjf1y0lnggsl4z3w5bwllqshqjlsl5kmcya5haydajdnzvdjr"; | ||
1620 | type = "gem"; | ||
1621 | }; | ||
1622 | version = "1.5.0"; | ||
1623 | }; | ||
1624 | omniauth-tumblr = { | ||
1625 | dependencies = ["multi_json" "omniauth-oauth"]; | ||
1626 | platforms = []; | ||
1627 | source = { | ||
1628 | remotes = ["https://rubygems.org"]; | ||
1629 | sha256 = "10ncmfym4l6k6aqp402g7mqxahbggcj5xkpsjxgngs746s82y97w"; | ||
1630 | type = "gem"; | ||
1631 | }; | ||
1632 | version = "1.2"; | ||
1633 | }; | ||
1634 | omniauth-twitter = { | ||
1635 | dependencies = ["omniauth-oauth" "rack"]; | ||
1636 | platforms = []; | ||
1637 | source = { | ||
1638 | remotes = ["https://rubygems.org"]; | ||
1639 | sha256 = "0r5j65hkpgzhvvbs90id3nfsjgsad6ymzggbm7zlaxvnrmvnrk65"; | ||
1640 | type = "gem"; | ||
1641 | }; | ||
1642 | version = "1.4.0"; | ||
1643 | }; | ||
1644 | omniauth-wordpress = { | ||
1645 | dependencies = ["omniauth-oauth2"]; | ||
1646 | platforms = []; | ||
1647 | source = { | ||
1648 | remotes = ["https://rubygems.org"]; | ||
1649 | sha256 = "008zx4zwrbzyvlgv6hy68k1d05zskiwvcgwvxxbxhbl0mvlmh303"; | ||
1650 | type = "gem"; | ||
1651 | }; | ||
1652 | version = "0.2.2"; | ||
1653 | }; | ||
1654 | open_graph_reader = { | ||
1655 | dependencies = ["faraday" "nokogiri"]; | ||
1656 | platforms = []; | ||
1657 | source = { | ||
1658 | remotes = ["https://rubygems.org"]; | ||
1659 | sha256 = "0af4yldyb0d8zglw73s13pyn0g90gs4m5zf7bwy8r4kym9zbvc21"; | ||
1660 | type = "gem"; | ||
1661 | }; | ||
1662 | version = "0.6.2"; | ||
1663 | }; | ||
1664 | openid_connect = { | ||
1665 | dependencies = ["activemodel" "attr_required" "json-jwt" "rack-oauth2" "swd" "tzinfo" "validate_email" "validate_url" "webfinger"]; | ||
1666 | platforms = []; | ||
1667 | source = { | ||
1668 | remotes = ["https://rubygems.org"]; | ||
1669 | sha256 = "1r13bv18nyvw0g1nw3fzffvv2si99zj24w0k5zgawf4q6nn5f7vd"; | ||
1670 | type = "gem"; | ||
1671 | }; | ||
1672 | version = "1.1.6"; | ||
1673 | }; | ||
1674 | orm_adapter = { | ||
1675 | platforms = []; | ||
1676 | source = { | ||
1677 | remotes = ["https://rubygems.org"]; | ||
1678 | sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; | ||
1679 | type = "gem"; | ||
1680 | }; | ||
1681 | version = "0.5.0"; | ||
1682 | }; | ||
1683 | parallel = { | ||
1684 | platforms = []; | ||
1685 | source = { | ||
1686 | remotes = ["https://rubygems.org"]; | ||
1687 | sha256 = "01hj8v1qnyl5ndrs33g8ld8ibk0rbcqdpkpznr04gkbxd11pqn67"; | ||
1688 | type = "gem"; | ||
1689 | }; | ||
1690 | version = "1.12.1"; | ||
1691 | }; | ||
1692 | parser = { | ||
1693 | dependencies = ["ast"]; | ||
1694 | platforms = []; | ||
1695 | source = { | ||
1696 | remotes = ["https://rubygems.org"]; | ||
1697 | sha256 = "1zjk0w1kjj3xk8ymy1430aa4gg0k8ckphfj88br6il4pm83f0n1f"; | ||
1698 | type = "gem"; | ||
1699 | }; | ||
1700 | version = "2.5.3.0"; | ||
1701 | }; | ||
1702 | pg = { | ||
1703 | platforms = []; | ||
1704 | source = { | ||
1705 | remotes = ["https://rubygems.org"]; | ||
1706 | sha256 = "1pnjw3rspdfjssxyf42jnbsdlgri8ylysimp0s28wxb93k6ff2qb"; | ||
1707 | type = "gem"; | ||
1708 | }; | ||
1709 | version = "1.1.3"; | ||
1710 | }; | ||
1711 | phantomjs = { | ||
1712 | platforms = []; | ||
1713 | source = { | ||
1714 | remotes = ["https://rubygems.org"]; | ||
1715 | sha256 = "0y8pbbyq9dirxb7igkb2s5limz2895qmr41c09fjhx6k6fxcz4mk"; | ||
1716 | type = "gem"; | ||
1717 | }; | ||
1718 | version = "2.1.1.0"; | ||
1719 | }; | ||
1720 | poltergeist = { | ||
1721 | dependencies = ["capybara" "cliver" "websocket-driver"]; | ||
1722 | platforms = []; | ||
1723 | source = { | ||
1724 | remotes = ["https://rubygems.org"]; | ||
1725 | sha256 = "0il80p97psmhs6scl0grq031gv7kws4ylvvd6zyr8xv91qadga95"; | ||
1726 | type = "gem"; | ||
1727 | }; | ||
1728 | version = "1.18.1"; | ||
1729 | }; | ||
1730 | powerpack = { | ||
1731 | platforms = []; | ||
1732 | source = { | ||
1733 | remotes = ["https://rubygems.org"]; | ||
1734 | sha256 = "1r51d67wd467rpdfl6x43y84vwm8f5ql9l9m85ak1s2sp3nc5hyv"; | ||
1735 | type = "gem"; | ||
1736 | }; | ||
1737 | version = "0.1.2"; | ||
1738 | }; | ||
1739 | pronto = { | ||
1740 | dependencies = ["gitlab" "httparty" "octokit" "rainbow" "rugged" "thor"]; | ||
1741 | platforms = []; | ||
1742 | source = { | ||
1743 | remotes = ["https://rubygems.org"]; | ||
1744 | sha256 = "13xbg1pm3kz5zbzxad5qgqnkzkp3ddajj7wxx16aqbfr7rqggvhz"; | ||
1745 | type = "gem"; | ||
1746 | }; | ||
1747 | version = "0.9.5"; | ||
1748 | }; | ||
1749 | pronto-eslint = { | ||
1750 | dependencies = ["eslintrb" "pronto"]; | ||
1751 | platforms = []; | ||
1752 | source = { | ||
1753 | remotes = ["https://rubygems.org"]; | ||
1754 | sha256 = "1cxyx6mlcdgv4ykliaizkx9cps68xf7qvy8lzxmv7pcqzkxaq7xc"; | ||
1755 | type = "gem"; | ||
1756 | }; | ||
1757 | version = "0.9.1"; | ||
1758 | }; | ||
1759 | pronto-haml = { | ||
1760 | dependencies = ["haml_lint" "pronto"]; | ||
1761 | platforms = []; | ||
1762 | source = { | ||
1763 | remotes = ["https://rubygems.org"]; | ||
1764 | sha256 = "116iln1whwiqy55f86q33lnnic0awnqm415xvxwnhwlagcbwmnkg"; | ||
1765 | type = "gem"; | ||
1766 | }; | ||
1767 | version = "0.9.0"; | ||
1768 | }; | ||
1769 | pronto-rubocop = { | ||
1770 | dependencies = ["pronto" "rubocop"]; | ||
1771 | platforms = []; | ||
1772 | source = { | ||
1773 | remotes = ["https://rubygems.org"]; | ||
1774 | sha256 = "0bcm34qlpp02wf69why5lpi5p53h5r4fq36f4b1fwi621fwzlgsy"; | ||
1775 | type = "gem"; | ||
1776 | }; | ||
1777 | version = "0.9.1"; | ||
1778 | }; | ||
1779 | pronto-scss = { | ||
1780 | dependencies = ["pronto" "scss_lint"]; | ||
1781 | platforms = []; | ||
1782 | source = { | ||
1783 | remotes = ["https://rubygems.org"]; | ||
1784 | sha256 = "0kgaqd6l2w3brdsp5231fpfr6fwajciz2hdr925l1zhh6ni1y2za"; | ||
1785 | type = "gem"; | ||
1786 | }; | ||
1787 | version = "0.9.1"; | ||
1788 | }; | ||
1789 | pry = { | ||
1790 | dependencies = ["coderay" "method_source"]; | ||
1791 | platforms = []; | ||
1792 | source = { | ||
1793 | remotes = ["https://rubygems.org"]; | ||
1794 | sha256 = "00rm71x0r1jdycwbs83lf9l6p494m99asakbvqxh8rz7zwnlzg69"; | ||
1795 | type = "gem"; | ||
1796 | }; | ||
1797 | version = "0.12.2"; | ||
1798 | }; | ||
1799 | pry-byebug = { | ||
1800 | dependencies = ["byebug" "pry"]; | ||
1801 | platforms = []; | ||
1802 | source = { | ||
1803 | remotes = ["https://rubygems.org"]; | ||
1804 | sha256 = "0y2758593i2ij0nhmv0j1pbdfx2cgi52ns6wkij0frgnk2lf650g"; | ||
1805 | type = "gem"; | ||
1806 | }; | ||
1807 | version = "3.6.0"; | ||
1808 | }; | ||
1809 | public_suffix = { | ||
1810 | platforms = []; | ||
1811 | source = { | ||
1812 | remotes = ["https://rubygems.org"]; | ||
1813 | sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; | ||
1814 | type = "gem"; | ||
1815 | }; | ||
1816 | version = "3.0.3"; | ||
1817 | }; | ||
1818 | raabro = { | ||
1819 | platforms = []; | ||
1820 | source = { | ||
1821 | remotes = ["https://rubygems.org"]; | ||
1822 | sha256 = "0xzdmbn48753f6k0ckirp8ja5p0xn1a92wbwxfyggyhj0hza9ylq"; | ||
1823 | type = "gem"; | ||
1824 | }; | ||
1825 | version = "1.1.6"; | ||
1826 | }; | ||
1827 | rack = { | ||
1828 | platforms = []; | ||
1829 | source = { | ||
1830 | remotes = ["https://rubygems.org"]; | ||
1831 | sha256 = "1pcgv8dv4vkaczzlix8q3j68capwhk420cddzijwqgi2qb4lm1zm"; | ||
1832 | type = "gem"; | ||
1833 | }; | ||
1834 | version = "2.0.6"; | ||
1835 | }; | ||
1836 | rack-cors = { | ||
1837 | platforms = []; | ||
1838 | source = { | ||
1839 | remotes = ["https://rubygems.org"]; | ||
1840 | sha256 = "1j27vy1bmhbqcyzhxg8d07qassmax769xjalfwcwz6qfiq8cf013"; | ||
1841 | type = "gem"; | ||
1842 | }; | ||
1843 | version = "1.0.2"; | ||
1844 | }; | ||
1845 | rack-google-analytics = { | ||
1846 | dependencies = ["actionpack" "activesupport"]; | ||
1847 | platforms = []; | ||
1848 | source = { | ||
1849 | remotes = ["https://rubygems.org"]; | ||
1850 | sha256 = "09pv0z5dhjjrlhi9qj5qy48hi66f7iix337qrapg7mvwwz6czcvj"; | ||
1851 | type = "gem"; | ||
1852 | }; | ||
1853 | version = "1.2.0"; | ||
1854 | }; | ||
1855 | rack-mobile-detect = { | ||
1856 | dependencies = ["rack"]; | ||
1857 | platforms = []; | ||
1858 | source = { | ||
1859 | remotes = ["https://rubygems.org"]; | ||
1860 | sha256 = "0bagli6ldhkpd1yym775sxy7w5n4jds6gbcjm3gmcl37vggvm8a5"; | ||
1861 | type = "gem"; | ||
1862 | }; | ||
1863 | version = "0.4.0"; | ||
1864 | }; | ||
1865 | rack-oauth2 = { | ||
1866 | dependencies = ["activesupport" "attr_required" "httpclient" "json-jwt" "rack"]; | ||
1867 | platforms = []; | ||
1868 | source = { | ||
1869 | remotes = ["https://rubygems.org"]; | ||
1870 | sha256 = "0kmxj9hbjhhcs3yyb433s82hkpmzb536m0mwfadjiaisganx1cii"; | ||
1871 | type = "gem"; | ||
1872 | }; | ||
1873 | version = "1.9.3"; | ||
1874 | }; | ||
1875 | rack-piwik = { | ||
1876 | platforms = []; | ||
1877 | source = { | ||
1878 | remotes = ["https://rubygems.org"]; | ||
1879 | sha256 = "0raxrckapqh693lpid0cnx1j1v2i3mz5cyssg7grgrilgrn9318z"; | ||
1880 | type = "gem"; | ||
1881 | }; | ||
1882 | version = "0.3.0"; | ||
1883 | }; | ||
1884 | rack-protection = { | ||
1885 | dependencies = ["rack"]; | ||
1886 | platforms = []; | ||
1887 | source = { | ||
1888 | remotes = ["https://rubygems.org"]; | ||
1889 | sha256 = "0ylx74ravz7nvnyygq0nk3v86qdzrmqxpwpayhppyy50l72rcajq"; | ||
1890 | type = "gem"; | ||
1891 | }; | ||
1892 | version = "2.0.4"; | ||
1893 | }; | ||
1894 | rack-rewrite = { | ||
1895 | platforms = []; | ||
1896 | source = { | ||
1897 | remotes = ["https://rubygems.org"]; | ||
1898 | sha256 = "0milw71dv96wnc6i48vbzypws51dgf415kkp8c4air0mkdhpj838"; | ||
1899 | type = "gem"; | ||
1900 | }; | ||
1901 | version = "1.5.1"; | ||
1902 | }; | ||
1903 | rack-ssl = { | ||
1904 | dependencies = ["rack"]; | ||
1905 | platforms = []; | ||
1906 | source = { | ||
1907 | remotes = ["https://rubygems.org"]; | ||
1908 | sha256 = "0c21xqkjyl10fngq6dy8082vmn2png8cwkiyzv83ymixq5cx7ygp"; | ||
1909 | type = "gem"; | ||
1910 | }; | ||
1911 | version = "1.4.1"; | ||
1912 | }; | ||
1913 | rack-test = { | ||
1914 | dependencies = ["rack"]; | ||
1915 | platforms = []; | ||
1916 | source = { | ||
1917 | remotes = ["https://rubygems.org"]; | ||
1918 | sha256 = "0rh8h376mx71ci5yklnpqqn118z3bl67nnv5k801qaqn1zs62h8m"; | ||
1919 | type = "gem"; | ||
1920 | }; | ||
1921 | version = "1.1.0"; | ||
1922 | }; | ||
1923 | rails = { | ||
1924 | dependencies = ["actioncable" "actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; | ||
1925 | platforms = []; | ||
1926 | source = { | ||
1927 | remotes = ["https://rubygems.org"]; | ||
1928 | sha256 = "0lb07cbwgm371zyn9i6fyj9q8rmv89lacmyzrfvzxqqx2n3ilc5q"; | ||
1929 | type = "gem"; | ||
1930 | }; | ||
1931 | version = "5.1.6"; | ||
1932 | }; | ||
1933 | rails-assets-autosize = { | ||
1934 | platforms = []; | ||
1935 | source = { | ||
1936 | remotes = ["https://rails-assets.org"]; | ||
1937 | sha256 = "0hr72mfprb9678lf7dj9lh801lm7p98nzkrnrz764sy9lmbpzcib"; | ||
1938 | type = "gem"; | ||
1939 | }; | ||
1940 | version = "4.0.2"; | ||
1941 | }; | ||
1942 | rails-assets-backbone = { | ||
1943 | dependencies = ["rails-assets-underscore"]; | ||
1944 | platforms = []; | ||
1945 | source = { | ||
1946 | remotes = ["https://rails-assets.org"]; | ||
1947 | sha256 = "0zjgwhgfmg1jyyds7zfjp6g4bz8vw56qvhlrpj943wcqpdxm93id"; | ||
1948 | type = "gem"; | ||
1949 | }; | ||
1950 | version = "1.3.3"; | ||
1951 | }; | ||
1952 | rails-assets-blueimp-gallery = { | ||
1953 | platforms = []; | ||
1954 | source = { | ||
1955 | remotes = ["https://rails-assets.org"]; | ||
1956 | sha256 = "18b7xvvkdnd39xlbkyw46i86w3wzj349s8iv5wdiypa5qdcql8mq"; | ||
1957 | type = "gem"; | ||
1958 | }; | ||
1959 | version = "2.33.0"; | ||
1960 | }; | ||
1961 | rails-assets-bootstrap = { | ||
1962 | dependencies = ["rails-assets-jquery"]; | ||
1963 | platforms = []; | ||
1964 | source = { | ||
1965 | remotes = ["https://rails-assets.org"]; | ||
1966 | sha256 = "0x4i11132qcmghmqb061iq47yksrr7i0la5hzzdm38dxybh87x5v"; | ||
1967 | type = "gem"; | ||
1968 | }; | ||
1969 | version = "3.3.7"; | ||
1970 | }; | ||
1971 | rails-assets-bootstrap-markdown = { | ||
1972 | dependencies = ["rails-assets-bootstrap"]; | ||
1973 | platforms = []; | ||
1974 | source = { | ||
1975 | remotes = ["https://rails-assets.org"]; | ||
1976 | sha256 = "1nxirs9wx5jxrjmxjwvsqlf2rsypjn3ajg7fs28c4ib7wwpabwj3"; | ||
1977 | type = "gem"; | ||
1978 | }; | ||
1979 | version = "2.10.0"; | ||
1980 | }; | ||
1981 | rails-assets-corejs-typeahead = { | ||
1982 | dependencies = ["rails-assets-jquery"]; | ||
1983 | platforms = []; | ||
1984 | source = { | ||
1985 | remotes = ["https://rails-assets.org"]; | ||
1986 | sha256 = "1p5i6afd156rakrin99c2ryaz3zykx21ir6y10l34jnw03rikcfg"; | ||
1987 | type = "gem"; | ||
1988 | }; | ||
1989 | version = "1.2.1"; | ||
1990 | }; | ||
1991 | rails-assets-diaspora_jsxc = { | ||
1992 | dependencies = ["rails-assets-emojione" "rails-assets-favico.js" "rails-assets-jquery-colorbox" "rails-assets-jquery-fullscreen-plugin" "rails-assets-jquery.slimscroll" "rails-assets-jquery.ui"]; | ||
1993 | platforms = []; | ||
1994 | source = { | ||
1995 | remotes = ["https://rails-assets.org"]; | ||
1996 | sha256 = "07vqdj0l8fsj4fd2sschba2jgfbimyfad56009ldzlcvb6ml5nhi"; | ||
1997 | type = "gem"; | ||
1998 | }; | ||
1999 | version = "0.1.5.develop.7"; | ||
2000 | }; | ||
2001 | rails-assets-emojione = { | ||
2002 | platforms = []; | ||
2003 | source = { | ||
2004 | remotes = ["https://rails-assets.org"]; | ||
2005 | sha256 = "1j29vbsf6v9ikiqlmnfgzxys4xsa1glvmfky8id5xfyymnjx2c52"; | ||
2006 | type = "gem"; | ||
2007 | }; | ||
2008 | version = "2.0.1"; | ||
2009 | }; | ||
2010 | "rails-assets-favico.js" = { | ||
2011 | platforms = []; | ||
2012 | source = { | ||
2013 | remotes = ["https://rails-assets.org"]; | ||
2014 | sha256 = "19yndhljmqlvarf49h5v71zq0p0ngvspjr2v0m6lac0q9ni7r5bv"; | ||
2015 | type = "gem"; | ||
2016 | }; | ||
2017 | version = "0.3.10"; | ||
2018 | }; | ||
2019 | rails-assets-fine-uploader = { | ||
2020 | platforms = []; | ||
2021 | source = { | ||
2022 | remotes = ["https://rails-assets.org"]; | ||
2023 | sha256 = "1vxj78x2vvlchpapxpaawysc9wn8alzdd3gxhwfwy11xv8ka9mdv"; | ||
2024 | type = "gem"; | ||
2025 | }; | ||
2026 | version = "5.13.0"; | ||
2027 | }; | ||
2028 | rails-assets-highlightjs = { | ||
2029 | platforms = []; | ||
2030 | source = { | ||
2031 | remotes = ["https://rails-assets.org"]; | ||
2032 | sha256 = "0spmb0gkfs13fmljjv1n53r53q69fhb6r573ndbxnhgb3izqgnqp"; | ||
2033 | type = "gem"; | ||
2034 | }; | ||
2035 | version = "9.12.0"; | ||
2036 | }; | ||
2037 | rails-assets-jasmine = { | ||
2038 | platforms = []; | ||
2039 | source = { | ||
2040 | remotes = ["https://rails-assets.org"]; | ||
2041 | sha256 = "1n6yixrl9cgq5kckay75b44p878s1kqi69mhgyw99w8dsq8i2vy5"; | ||
2042 | type = "gem"; | ||
2043 | }; | ||
2044 | version = "3.3.0"; | ||
2045 | }; | ||
2046 | rails-assets-jasmine-ajax = { | ||
2047 | dependencies = ["rails-assets-jasmine"]; | ||
2048 | platforms = []; | ||
2049 | source = { | ||
2050 | remotes = ["https://rails-assets.org"]; | ||
2051 | sha256 = "0l8z0p75x1yzk1l1ryfvdlvq8yq4w2xngp4icz478axd5jcqx6kg"; | ||
2052 | type = "gem"; | ||
2053 | }; | ||
2054 | version = "3.4.0"; | ||
2055 | }; | ||
2056 | rails-assets-jquery = { | ||
2057 | platforms = []; | ||
2058 | source = { | ||
2059 | remotes = ["https://rails-assets.org"]; | ||
2060 | sha256 = "1wcaappk12w300733lrqb571cir9nw35d9q6d2i52wwdvhv2fx2y"; | ||
2061 | type = "gem"; | ||
2062 | }; | ||
2063 | version = "3.3.1"; | ||
2064 | }; | ||
2065 | rails-assets-jquery-colorbox = { | ||
2066 | dependencies = ["rails-assets-jquery"]; | ||
2067 | platforms = []; | ||
2068 | source = { | ||
2069 | remotes = ["https://rails-assets.org"]; | ||
2070 | sha256 = "19ws3r1zfviwnfr9s0jh6iqss50iwqkf4a78zhrk0p3bb4lvmmsp"; | ||
2071 | type = "gem"; | ||
2072 | }; | ||
2073 | version = "1.6.4"; | ||
2074 | }; | ||
2075 | rails-assets-jquery-fullscreen-plugin = { | ||
2076 | platforms = []; | ||
2077 | source = { | ||
2078 | remotes = ["https://rails-assets.org"]; | ||
2079 | sha256 = "0ldvq4s15lap9p6w7d1yw6dajn2gh6p75dbkp79p0d8ylzapsd58"; | ||
2080 | type = "gem"; | ||
2081 | }; | ||
2082 | version = "0.5.0"; | ||
2083 | }; | ||
2084 | rails-assets-jquery-placeholder = { | ||
2085 | dependencies = ["rails-assets-jquery"]; | ||
2086 | platforms = []; | ||
2087 | source = { | ||
2088 | remotes = ["https://rails-assets.org"]; | ||
2089 | sha256 = "0h17gjazc27pj4cm2ig232ww4d4ppq9bcginwzjss95pl63richi"; | ||
2090 | type = "gem"; | ||
2091 | }; | ||
2092 | version = "2.3.1"; | ||
2093 | }; | ||
2094 | rails-assets-jquery-textchange = { | ||
2095 | dependencies = ["rails-assets-jquery"]; | ||
2096 | platforms = []; | ||
2097 | source = { | ||
2098 | remotes = ["https://rails-assets.org"]; | ||
2099 | sha256 = "0rsw3cn9a5njv80zy53339kmrmv60b8fqcrr7bacapbagb2rd4dj"; | ||
2100 | type = "gem"; | ||
2101 | }; | ||
2102 | version = "0.2.3"; | ||
2103 | }; | ||
2104 | "rails-assets-jquery.are-you-sure" = { | ||
2105 | dependencies = ["rails-assets-jquery"]; | ||
2106 | platforms = []; | ||
2107 | source = { | ||
2108 | remotes = ["https://rails-assets.org"]; | ||
2109 | sha256 = "0nj04aqh9jpcg57xbjxpm2vn7mkd5clnpma907515a1nxy40bym0"; | ||
2110 | type = "gem"; | ||
2111 | }; | ||
2112 | version = "1.9.0"; | ||
2113 | }; | ||
2114 | "rails-assets-jquery.slimscroll" = { | ||
2115 | platforms = []; | ||
2116 | source = { | ||
2117 | remotes = ["https://rails-assets.org"]; | ||
2118 | sha256 = "1rymmd2rxy1vjjj70v88abmdlfs55276rs3rksj300dgirnnj998"; | ||
2119 | type = "gem"; | ||
2120 | }; | ||
2121 | version = "1.3.8"; | ||
2122 | }; | ||
2123 | "rails-assets-jquery.ui" = { | ||
2124 | dependencies = ["rails-assets-jquery"]; | ||
2125 | platforms = []; | ||
2126 | source = { | ||
2127 | remotes = ["https://rails-assets.org"]; | ||
2128 | sha256 = "0xc9kfb29hi441irj49b7aawxkddk1dxzy938rpqv9ylpsj7knaa"; | ||
2129 | type = "gem"; | ||
2130 | }; | ||
2131 | version = "1.11.4"; | ||
2132 | }; | ||
2133 | rails-assets-markdown-it = { | ||
2134 | platforms = []; | ||
2135 | source = { | ||
2136 | remotes = ["https://rails-assets.org"]; | ||
2137 | sha256 = "0fxx7ldszsdqr5ry21bnxmv33byz7abpk9lcp100q5cqsjx091r9"; | ||
2138 | type = "gem"; | ||
2139 | }; | ||
2140 | version = "8.4.2"; | ||
2141 | }; | ||
2142 | rails-assets-markdown-it--markdown-it-for-inline = { | ||
2143 | platforms = []; | ||
2144 | source = { | ||
2145 | remotes = ["https://rails-assets.org"]; | ||
2146 | sha256 = "0fznv2x7ndadr3wb4dzhh86bpcpwz8f4d8rfhz4sfbqlai40j3jl"; | ||
2147 | type = "gem"; | ||
2148 | }; | ||
2149 | version = "0.1.1"; | ||
2150 | }; | ||
2151 | rails-assets-markdown-it-diaspora-mention = { | ||
2152 | platforms = []; | ||
2153 | source = { | ||
2154 | remotes = ["https://rails-assets.org"]; | ||
2155 | sha256 = "0asggm7wgmdll8x94291p2w6icmp2izi914dlh3b7vb7dpjq3jig"; | ||
2156 | type = "gem"; | ||
2157 | }; | ||
2158 | version = "1.2.0"; | ||
2159 | }; | ||
2160 | rails-assets-markdown-it-hashtag = { | ||
2161 | platforms = []; | ||
2162 | source = { | ||
2163 | remotes = ["https://rails-assets.org"]; | ||
2164 | sha256 = "0dr8fwaxgkfqm7z4rl4jdym0i1ycqw1sgkxshkd9k0849ry12cdk"; | ||
2165 | type = "gem"; | ||
2166 | }; | ||
2167 | version = "0.4.0"; | ||
2168 | }; | ||
2169 | rails-assets-markdown-it-sanitizer = { | ||
2170 | platforms = []; | ||
2171 | source = { | ||
2172 | remotes = ["https://rails-assets.org"]; | ||
2173 | sha256 = "0fkpffh83fc257zkzaia93j4hw2baz90lg10s5yxsxww06q5dn36"; | ||
2174 | type = "gem"; | ||
2175 | }; | ||
2176 | version = "0.4.3"; | ||
2177 | }; | ||
2178 | rails-assets-markdown-it-sub = { | ||
2179 | platforms = []; | ||
2180 | source = { | ||
2181 | remotes = ["https://rails-assets.org"]; | ||
2182 | sha256 = "08hjij5fqvhvg7s27n4g8qqsks974g3kc5k7xl2qmh41k7f4hcrk"; | ||
2183 | type = "gem"; | ||
2184 | }; | ||
2185 | version = "1.0.0"; | ||
2186 | }; | ||
2187 | rails-assets-markdown-it-sup = { | ||
2188 | platforms = []; | ||
2189 | source = { | ||
2190 | remotes = ["https://rails-assets.org"]; | ||
2191 | sha256 = "17nnnvky7zy0yiwwl6dm8ibbkyvvf63xfp3snch4dzmras05lmig"; | ||
2192 | type = "gem"; | ||
2193 | }; | ||
2194 | version = "1.0.0"; | ||
2195 | }; | ||
2196 | rails-assets-underscore = { | ||
2197 | platforms = []; | ||
2198 | source = { | ||
2199 | remotes = ["https://rails-assets.org"]; | ||
2200 | sha256 = "1ccnzj7aqrvngcs915y290pijryqmjygimdwlrykpyj8vwzifdnc"; | ||
2201 | type = "gem"; | ||
2202 | }; | ||
2203 | version = "1.9.1"; | ||
2204 | }; | ||
2205 | rails-assets-utatti-perfect-scrollbar = { | ||
2206 | platforms = []; | ||
2207 | source = { | ||
2208 | remotes = ["https://rails-assets.org"]; | ||
2209 | sha256 = "0m8syfv8p5bnwm8nrba6mpjnhrd29ffwzi6awhiw537jqw42b12v"; | ||
2210 | type = "gem"; | ||
2211 | }; | ||
2212 | version = "1.4.0"; | ||
2213 | }; | ||
2214 | rails-controller-testing = { | ||
2215 | dependencies = ["actionpack" "actionview" "activesupport"]; | ||
2216 | platforms = []; | ||
2217 | source = { | ||
2218 | remotes = ["https://rubygems.org"]; | ||
2219 | sha256 = "16kdkk73mhhs73iz3i1i0ryjm84dadiyh817b3nh8acdi490jyhy"; | ||
2220 | type = "gem"; | ||
2221 | }; | ||
2222 | version = "1.0.2"; | ||
2223 | }; | ||
2224 | rails-dom-testing = { | ||
2225 | dependencies = ["activesupport" "nokogiri"]; | ||
2226 | platforms = []; | ||
2227 | source = { | ||
2228 | remotes = ["https://rubygems.org"]; | ||
2229 | sha256 = "1lfq2a7kp2x64dzzi5p4cjcbiv62vxh9lyqk2f0rqq3fkzrw8h5i"; | ||
2230 | type = "gem"; | ||
2231 | }; | ||
2232 | version = "2.0.3"; | ||
2233 | }; | ||
2234 | rails-html-sanitizer = { | ||
2235 | dependencies = ["loofah"]; | ||
2236 | platforms = []; | ||
2237 | source = { | ||
2238 | remotes = ["https://rubygems.org"]; | ||
2239 | sha256 = "1gv7vr5d9g2xmgpjfq4nxsqr70r9pr042r9ycqqnfvw5cz9c7jwr"; | ||
2240 | type = "gem"; | ||
2241 | }; | ||
2242 | version = "1.0.4"; | ||
2243 | }; | ||
2244 | rails-i18n = { | ||
2245 | dependencies = ["i18n" "railties"]; | ||
2246 | platforms = []; | ||
2247 | source = { | ||
2248 | remotes = ["https://rubygems.org"]; | ||
2249 | sha256 = "05lkhc737a9dw0hd5ljmja0yp4cw39r3200s1r0n4bs7z1g3ka7l"; | ||
2250 | type = "gem"; | ||
2251 | }; | ||
2252 | version = "5.1.2"; | ||
2253 | }; | ||
2254 | rails-timeago = { | ||
2255 | dependencies = ["actionpack" "activesupport"]; | ||
2256 | platforms = []; | ||
2257 | source = { | ||
2258 | remotes = ["https://rubygems.org"]; | ||
2259 | sha256 = "01x1vs9hni9wn8dc4fmyqzkrn651chzsi2mhmk0pxdrfx9md0lxv"; | ||
2260 | type = "gem"; | ||
2261 | }; | ||
2262 | version = "2.16.0"; | ||
2263 | }; | ||
2264 | railties = { | ||
2265 | dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor"]; | ||
2266 | platforms = []; | ||
2267 | source = { | ||
2268 | remotes = ["https://rubygems.org"]; | ||
2269 | sha256 = "0ycy2gdaj0px1vfaghskvl6qkczwaigrli2zxn54w7zn1z29faj8"; | ||
2270 | type = "gem"; | ||
2271 | }; | ||
2272 | version = "5.1.6"; | ||
2273 | }; | ||
2274 | rainbow = { | ||
2275 | dependencies = ["rake"]; | ||
2276 | platforms = []; | ||
2277 | source = { | ||
2278 | remotes = ["https://rubygems.org"]; | ||
2279 | sha256 = "08w2ghc5nv0kcq5b257h7dwjzjz1pqcavajfdx2xjyxqsvh2y34w"; | ||
2280 | type = "gem"; | ||
2281 | }; | ||
2282 | version = "2.2.2"; | ||
2283 | }; | ||
2284 | raindrops = { | ||
2285 | platforms = []; | ||
2286 | source = { | ||
2287 | remotes = ["https://rubygems.org"]; | ||
2288 | sha256 = "1qpbd9jif40c53fz2r0l8khfl016y8s8bkx37ibcaafclbl3xygp"; | ||
2289 | type = "gem"; | ||
2290 | }; | ||
2291 | version = "0.19.0"; | ||
2292 | }; | ||
2293 | rake = { | ||
2294 | platforms = []; | ||
2295 | source = { | ||
2296 | remotes = ["https://rubygems.org"]; | ||
2297 | sha256 = "1idi53jay34ba9j68c3mfr9wwkg3cd9qh0fn9cg42hv72c6q8dyg"; | ||
2298 | type = "gem"; | ||
2299 | }; | ||
2300 | version = "12.3.1"; | ||
2301 | }; | ||
2302 | rb-fsevent = { | ||
2303 | platforms = []; | ||
2304 | source = { | ||
2305 | remotes = ["https://rubygems.org"]; | ||
2306 | sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8"; | ||
2307 | type = "gem"; | ||
2308 | }; | ||
2309 | version = "0.10.3"; | ||
2310 | }; | ||
2311 | rb-inotify = { | ||
2312 | dependencies = ["ffi"]; | ||
2313 | platforms = []; | ||
2314 | source = { | ||
2315 | remotes = ["https://rubygems.org"]; | ||
2316 | sha256 = "0yfsgw5n7pkpyky6a9wkf1g9jafxb0ja7gz0qw0y14fd2jnzfh71"; | ||
2317 | type = "gem"; | ||
2318 | }; | ||
2319 | version = "0.9.10"; | ||
2320 | }; | ||
2321 | redcarpet = { | ||
2322 | platforms = []; | ||
2323 | source = { | ||
2324 | remotes = ["https://rubygems.org"]; | ||
2325 | sha256 = "0h9qz2hik4s9knpmbwrzb3jcp3vc5vygp9ya8lcpl7f1l9khmcd7"; | ||
2326 | type = "gem"; | ||
2327 | }; | ||
2328 | version = "3.4.0"; | ||
2329 | }; | ||
2330 | redis = { | ||
2331 | platforms = []; | ||
2332 | source = { | ||
2333 | remotes = ["https://rubygems.org"]; | ||
2334 | sha256 = "0i415x8gi0c5vsiy6ikvx5js6fhc4x80a5lqv8iidy2iymd20irv"; | ||
2335 | type = "gem"; | ||
2336 | }; | ||
2337 | version = "3.3.5"; | ||
2338 | }; | ||
2339 | regexp_parser = { | ||
2340 | platforms = []; | ||
2341 | source = { | ||
2342 | remotes = ["https://rubygems.org"]; | ||
2343 | sha256 = "18g5jyg3blsdrz3mc8d87bms6qqn6gcdh1nvdhvgbjdpk9pw21dq"; | ||
2344 | type = "gem"; | ||
2345 | }; | ||
2346 | version = "1.3.0"; | ||
2347 | }; | ||
2348 | request_store = { | ||
2349 | dependencies = ["rack"]; | ||
2350 | platforms = []; | ||
2351 | source = { | ||
2352 | remotes = ["https://rubygems.org"]; | ||
2353 | sha256 = "1963330z03fk382fi8y231ygcbnh86m91dqlp5rh1mwy9ihzzl6d"; | ||
2354 | type = "gem"; | ||
2355 | }; | ||
2356 | version = "1.4.1"; | ||
2357 | }; | ||
2358 | responders = { | ||
2359 | dependencies = ["actionpack" "railties"]; | ||
2360 | platforms = []; | ||
2361 | source = { | ||
2362 | remotes = ["https://rubygems.org"]; | ||
2363 | sha256 = "1rhdyyvvm26f2l3fgwdp6xasfl2y0whwgy766bhdwz697mf78zfn"; | ||
2364 | type = "gem"; | ||
2365 | }; | ||
2366 | version = "2.4.0"; | ||
2367 | }; | ||
2368 | rspec = { | ||
2369 | dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; | ||
2370 | platforms = []; | ||
2371 | source = { | ||
2372 | remotes = ["https://rubygems.org"]; | ||
2373 | sha256 = "15ppasvb9qrscwlyjz67ppw1lnxiqnkzx5vkx1bd8x5n3dhikxc3"; | ||
2374 | type = "gem"; | ||
2375 | }; | ||
2376 | version = "3.8.0"; | ||
2377 | }; | ||
2378 | rspec-core = { | ||
2379 | dependencies = ["rspec-support"]; | ||
2380 | platforms = []; | ||
2381 | source = { | ||
2382 | remotes = ["https://rubygems.org"]; | ||
2383 | sha256 = "1p1s5bnbqp3sxk67y0fh0x884jjym527r0vgmhbm81w7aq6b7l4p"; | ||
2384 | type = "gem"; | ||
2385 | }; | ||
2386 | version = "3.8.0"; | ||
2387 | }; | ||
2388 | rspec-expectations = { | ||
2389 | dependencies = ["diff-lcs" "rspec-support"]; | ||
2390 | platforms = []; | ||
2391 | source = { | ||
2392 | remotes = ["https://rubygems.org"]; | ||
2393 | sha256 = "18l21hy1zdc2pgc2yb17k3n2al1khpfr0z6pijlm852iz6vj0dkm"; | ||
2394 | type = "gem"; | ||
2395 | }; | ||
2396 | version = "3.8.2"; | ||
2397 | }; | ||
2398 | rspec-json_expectations = { | ||
2399 | platforms = []; | ||
2400 | source = { | ||
2401 | remotes = ["https://rubygems.org"]; | ||
2402 | sha256 = "0l3dhvkb95zwyg72wz33azxigc9cisqgg3z16ksns1sx0b93nnbn"; | ||
2403 | type = "gem"; | ||
2404 | }; | ||
2405 | version = "2.1.0"; | ||
2406 | }; | ||
2407 | rspec-mocks = { | ||
2408 | dependencies = ["diff-lcs" "rspec-support"]; | ||
2409 | platforms = []; | ||
2410 | source = { | ||
2411 | remotes = ["https://rubygems.org"]; | ||
2412 | sha256 = "06y508cjqycb4yfhxmb3nxn0v9xqf17qbd46l1dh4xhncinr4fyp"; | ||
2413 | type = "gem"; | ||
2414 | }; | ||
2415 | version = "3.8.0"; | ||
2416 | }; | ||
2417 | rspec-rails = { | ||
2418 | dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; | ||
2419 | platforms = []; | ||
2420 | source = { | ||
2421 | remotes = ["https://rubygems.org"]; | ||
2422 | sha256 = "0sqj5da2kc937j5jb18jcf0hrmmzwgj7pk62j0q3qndhc2kvx88p"; | ||
2423 | type = "gem"; | ||
2424 | }; | ||
2425 | version = "3.8.1"; | ||
2426 | }; | ||
2427 | rspec-support = { | ||
2428 | platforms = []; | ||
2429 | source = { | ||
2430 | remotes = ["https://rubygems.org"]; | ||
2431 | sha256 = "0p3m7drixrlhvj2zpc38b11x145bvm311x6f33jjcxmvcm0wq609"; | ||
2432 | type = "gem"; | ||
2433 | }; | ||
2434 | version = "3.8.0"; | ||
2435 | }; | ||
2436 | rubocop = { | ||
2437 | dependencies = ["jaro_winkler" "parallel" "parser" "powerpack" "rainbow" "ruby-progressbar" "unicode-display_width"]; | ||
2438 | platforms = []; | ||
2439 | source = { | ||
2440 | remotes = ["https://rubygems.org"]; | ||
2441 | sha256 = "1ivk049z3mp12nc6v1wn35bsq1g7nz1i2r4xwzqf0v25hm2v7n1i"; | ||
2442 | type = "gem"; | ||
2443 | }; | ||
2444 | version = "0.60.0"; | ||
2445 | }; | ||
2446 | ruby-oembed = { | ||
2447 | platforms = []; | ||
2448 | source = { | ||
2449 | remotes = ["https://rubygems.org"]; | ||
2450 | sha256 = "1kw4aplb3m13z3kchhb79wf87qb3prn1m99s6vl5cyp0xqwyymv0"; | ||
2451 | type = "gem"; | ||
2452 | }; | ||
2453 | version = "0.12.0"; | ||
2454 | }; | ||
2455 | ruby-progressbar = { | ||
2456 | platforms = []; | ||
2457 | source = { | ||
2458 | remotes = ["https://rubygems.org"]; | ||
2459 | sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"; | ||
2460 | type = "gem"; | ||
2461 | }; | ||
2462 | version = "1.10.0"; | ||
2463 | }; | ||
2464 | ruby_dep = { | ||
2465 | platforms = []; | ||
2466 | source = { | ||
2467 | remotes = ["https://rubygems.org"]; | ||
2468 | sha256 = "1c1bkl97i9mkcvkn1jks346ksnvnnp84cs22gwl0vd7radybrgy5"; | ||
2469 | type = "gem"; | ||
2470 | }; | ||
2471 | version = "1.5.0"; | ||
2472 | }; | ||
2473 | rubyzip = { | ||
2474 | platforms = []; | ||
2475 | source = { | ||
2476 | remotes = ["https://rubygems.org"]; | ||
2477 | sha256 = "1n1lb2sdwh9h27y244hxzg1lrxxg2m53pk1vq7p33bna003qkyrj"; | ||
2478 | type = "gem"; | ||
2479 | }; | ||
2480 | version = "1.2.2"; | ||
2481 | }; | ||
2482 | rugged = { | ||
2483 | platforms = []; | ||
2484 | source = { | ||
2485 | remotes = ["https://rubygems.org"]; | ||
2486 | sha256 = "1jv4nw9hvlxp8hhhlllrfcznki82i50fp1sj65zsjllfl2bvz8x6"; | ||
2487 | type = "gem"; | ||
2488 | }; | ||
2489 | version = "0.27.5"; | ||
2490 | }; | ||
2491 | safe_yaml = { | ||
2492 | platforms = []; | ||
2493 | source = { | ||
2494 | remotes = ["https://rubygems.org"]; | ||
2495 | sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; | ||
2496 | type = "gem"; | ||
2497 | }; | ||
2498 | version = "1.0.4"; | ||
2499 | }; | ||
2500 | sass = { | ||
2501 | platforms = []; | ||
2502 | source = { | ||
2503 | remotes = ["https://rubygems.org"]; | ||
2504 | sha256 = "0kfpcwh8dgw4lc81qglkvjl73689jy3g7196zkxm4fpskg1p5lkw"; | ||
2505 | type = "gem"; | ||
2506 | }; | ||
2507 | version = "3.4.25"; | ||
2508 | }; | ||
2509 | sass-rails = { | ||
2510 | dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"]; | ||
2511 | platforms = []; | ||
2512 | source = { | ||
2513 | remotes = ["https://rubygems.org"]; | ||
2514 | sha256 = "1wa63sbsimrsf7nfm8h0m1wbsllkfxvd7naph5d1j6pbc555ma7s"; | ||
2515 | type = "gem"; | ||
2516 | }; | ||
2517 | version = "5.0.7"; | ||
2518 | }; | ||
2519 | sawyer = { | ||
2520 | dependencies = ["addressable" "faraday"]; | ||
2521 | platforms = []; | ||
2522 | source = { | ||
2523 | remotes = ["https://rubygems.org"]; | ||
2524 | sha256 = "0sv1463r7bqzvx4drqdmd36m7rrv6sf1v3c6vswpnq3k6vdw2dvd"; | ||
2525 | type = "gem"; | ||
2526 | }; | ||
2527 | version = "0.8.1"; | ||
2528 | }; | ||
2529 | scss_lint = { | ||
2530 | dependencies = ["rake" "sass"]; | ||
2531 | platforms = []; | ||
2532 | source = { | ||
2533 | remotes = ["https://rubygems.org"]; | ||
2534 | sha256 = "11rl8kj32p34mqlkhxvlwfrwl8gdl0iha8q9xsrr3sjxjagzv8yp"; | ||
2535 | type = "gem"; | ||
2536 | }; | ||
2537 | version = "0.55.0"; | ||
2538 | }; | ||
2539 | secure_headers = { | ||
2540 | platforms = []; | ||
2541 | source = { | ||
2542 | remotes = ["https://rubygems.org"]; | ||
2543 | sha256 = "17cxci8jyvlgssix0cy7kbm5m2h7s8ym9caj8nilrbd21jis9pc5"; | ||
2544 | type = "gem"; | ||
2545 | }; | ||
2546 | version = "6.0.0"; | ||
2547 | }; | ||
2548 | shellany = { | ||
2549 | platforms = []; | ||
2550 | source = { | ||
2551 | remotes = ["https://rubygems.org"]; | ||
2552 | sha256 = "1ryyzrj1kxmnpdzhlv4ys3dnl2r5r3d2rs2jwzbnd1v96a8pl4hf"; | ||
2553 | type = "gem"; | ||
2554 | }; | ||
2555 | version = "0.0.1"; | ||
2556 | }; | ||
2557 | shoulda-matchers = { | ||
2558 | dependencies = ["activesupport"]; | ||
2559 | platforms = []; | ||
2560 | source = { | ||
2561 | remotes = ["https://rubygems.org"]; | ||
2562 | sha256 = "1zvv94pqk5b5my3w1shdz7h34xf2ldhg5k4qfdpbwi2iy0j9zw2a"; | ||
2563 | type = "gem"; | ||
2564 | }; | ||
2565 | version = "3.1.2"; | ||
2566 | }; | ||
2567 | sidekiq = { | ||
2568 | dependencies = ["connection_pool" "rack-protection" "redis"]; | ||
2569 | platforms = []; | ||
2570 | source = { | ||
2571 | remotes = ["https://rubygems.org"]; | ||
2572 | sha256 = "1zyf9y3rvzizbwh68i2g1lzd40lalrdc4iyjmaa74gnfwsf92i26"; | ||
2573 | type = "gem"; | ||
2574 | }; | ||
2575 | version = "5.2.3"; | ||
2576 | }; | ||
2577 | sidekiq-cron = { | ||
2578 | dependencies = ["fugit" "sidekiq"]; | ||
2579 | platforms = []; | ||
2580 | source = { | ||
2581 | remotes = ["https://rubygems.org"]; | ||
2582 | sha256 = "1aliswahmpxn1ib2brn4126gk97ac3zdnwr71mn8vzbr3vdd7fl0"; | ||
2583 | type = "gem"; | ||
2584 | }; | ||
2585 | version = "1.0.4"; | ||
2586 | }; | ||
2587 | simple_captcha2 = { | ||
2588 | dependencies = ["rails"]; | ||
2589 | platforms = []; | ||
2590 | source = { | ||
2591 | remotes = ["https://rubygems.org"]; | ||
2592 | sha256 = "0vdjydym8sjpa8c1q0n2hanj3n9vzi4ycdw2p6bbm6qqmm1f3fq3"; | ||
2593 | type = "gem"; | ||
2594 | }; | ||
2595 | version = "0.4.3"; | ||
2596 | }; | ||
2597 | simple_oauth = { | ||
2598 | platforms = []; | ||
2599 | source = { | ||
2600 | remotes = ["https://rubygems.org"]; | ||
2601 | sha256 = "0dw9ii6m7wckml100xhjc6vxpjcry174lbi9jz5v7ibjr3i94y8l"; | ||
2602 | type = "gem"; | ||
2603 | }; | ||
2604 | version = "0.3.1"; | ||
2605 | }; | ||
2606 | simplecov = { | ||
2607 | dependencies = ["docile" "json" "simplecov-html"]; | ||
2608 | platforms = []; | ||
2609 | source = { | ||
2610 | remotes = ["https://rubygems.org"]; | ||
2611 | sha256 = "1sfyfgf7zrp2n42v7rswkqgk3bbwk1bnsphm24y7laxv3f8z0947"; | ||
2612 | type = "gem"; | ||
2613 | }; | ||
2614 | version = "0.16.1"; | ||
2615 | }; | ||
2616 | simplecov-html = { | ||
2617 | platforms = []; | ||
2618 | source = { | ||
2619 | remotes = ["https://rubygems.org"]; | ||
2620 | sha256 = "1lihraa4rgxk8wbfl77fy9sf0ypk31iivly8vl3w04srd7i0clzn"; | ||
2621 | type = "gem"; | ||
2622 | }; | ||
2623 | version = "0.10.2"; | ||
2624 | }; | ||
2625 | sinon-rails = { | ||
2626 | dependencies = ["railties"]; | ||
2627 | platforms = []; | ||
2628 | source = { | ||
2629 | remotes = ["https://rubygems.org"]; | ||
2630 | sha256 = "1b7996hb8vfky29b0zcql90x8i6vhdg2zy9nfzmhh820gjv3kggb"; | ||
2631 | type = "gem"; | ||
2632 | }; | ||
2633 | version = "1.15.0"; | ||
2634 | }; | ||
2635 | spring = { | ||
2636 | dependencies = ["activesupport"]; | ||
2637 | platforms = []; | ||
2638 | source = { | ||
2639 | remotes = ["https://rubygems.org"]; | ||
2640 | sha256 = "168yz9c1fv21wc5i8q7n43b9nk33ivg3ws1fn6x0afgryz3ssx75"; | ||
2641 | type = "gem"; | ||
2642 | }; | ||
2643 | version = "2.0.2"; | ||
2644 | }; | ||
2645 | spring-commands-cucumber = { | ||
2646 | dependencies = ["spring"]; | ||
2647 | platforms = []; | ||
2648 | source = { | ||
2649 | remotes = ["https://rubygems.org"]; | ||
2650 | sha256 = "0mw81gvms2svn4k4pc6ly7smkmf0j9r2xbf0d38vygbyhiwd1c9a"; | ||
2651 | type = "gem"; | ||
2652 | }; | ||
2653 | version = "1.0.1"; | ||
2654 | }; | ||
2655 | spring-commands-rspec = { | ||
2656 | dependencies = ["spring"]; | ||
2657 | platforms = []; | ||
2658 | source = { | ||
2659 | remotes = ["https://rubygems.org"]; | ||
2660 | sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; | ||
2661 | type = "gem"; | ||
2662 | }; | ||
2663 | version = "1.0.4"; | ||
2664 | }; | ||
2665 | sprockets = { | ||
2666 | dependencies = ["concurrent-ruby" "rack"]; | ||
2667 | platforms = []; | ||
2668 | source = { | ||
2669 | remotes = ["https://rubygems.org"]; | ||
2670 | sha256 = "182jw5a0fbqah5w9jancvfmjbk88h8bxdbwnl4d3q809rpxdg8ay"; | ||
2671 | type = "gem"; | ||
2672 | }; | ||
2673 | version = "3.7.2"; | ||
2674 | }; | ||
2675 | sprockets-rails = { | ||
2676 | dependencies = ["actionpack" "activesupport" "sprockets"]; | ||
2677 | platforms = []; | ||
2678 | source = { | ||
2679 | remotes = ["https://rubygems.org"]; | ||
2680 | sha256 = "0ab42pm8p5zxpv3sfraq45b9lj39cz9mrpdirm30vywzrwwkm5p1"; | ||
2681 | type = "gem"; | ||
2682 | }; | ||
2683 | version = "3.2.1"; | ||
2684 | }; | ||
2685 | state_machines = { | ||
2686 | platforms = []; | ||
2687 | source = { | ||
2688 | remotes = ["https://rubygems.org"]; | ||
2689 | sha256 = "00mi16hg3rhkxz4y58s173cbnjlba41y9bfcim90p4ja6yfj9ri3"; | ||
2690 | type = "gem"; | ||
2691 | }; | ||
2692 | version = "0.5.0"; | ||
2693 | }; | ||
2694 | string-direction = { | ||
2695 | platforms = []; | ||
2696 | source = { | ||
2697 | remotes = ["https://rubygems.org"]; | ||
2698 | sha256 = "0iyddwmkj425c6xbn5pmlr2yzwcq4snzlan7rky5b1yp2pvf70jj"; | ||
2699 | type = "gem"; | ||
2700 | }; | ||
2701 | version = "1.2.1"; | ||
2702 | }; | ||
2703 | swd = { | ||
2704 | dependencies = ["activesupport" "attr_required" "httpclient"]; | ||
2705 | platforms = []; | ||
2706 | source = { | ||
2707 | remotes = ["https://rubygems.org"]; | ||
2708 | sha256 = "1s2vjb6f13za7p1iycl2p73d3p202xa6xny9fjrp8ynwsqix7lyd"; | ||
2709 | type = "gem"; | ||
2710 | }; | ||
2711 | version = "1.1.2"; | ||
2712 | }; | ||
2713 | sysexits = { | ||
2714 | platforms = []; | ||
2715 | source = { | ||
2716 | remotes = ["https://rubygems.org"]; | ||
2717 | sha256 = "0qjng6pllznmprzx8vb0zg0c86hdrkyjs615q41s9fjpmv2430jr"; | ||
2718 | type = "gem"; | ||
2719 | }; | ||
2720 | version = "1.2.0"; | ||
2721 | }; | ||
2722 | systemu = { | ||
2723 | platforms = []; | ||
2724 | source = { | ||
2725 | remotes = ["https://rubygems.org"]; | ||
2726 | sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; | ||
2727 | type = "gem"; | ||
2728 | }; | ||
2729 | version = "2.6.5"; | ||
2730 | }; | ||
2731 | temple = { | ||
2732 | platforms = []; | ||
2733 | source = { | ||
2734 | remotes = ["https://rubygems.org"]; | ||
2735 | sha256 = "00nxf610nzi4n1i2lkby43nrnarvl89fcl6lg19406msr0k3ycmq"; | ||
2736 | type = "gem"; | ||
2737 | }; | ||
2738 | version = "0.8.0"; | ||
2739 | }; | ||
2740 | term-ansicolor = { | ||
2741 | dependencies = ["tins"]; | ||
2742 | platforms = []; | ||
2743 | source = { | ||
2744 | remotes = ["https://rubygems.org"]; | ||
2745 | sha256 = "079hbagd9mk0839rkajsdrbzkn992gj8ah2n45qd64v25ml27i6d"; | ||
2746 | type = "gem"; | ||
2747 | }; | ||
2748 | version = "1.7.0"; | ||
2749 | }; | ||
2750 | terminal-table = { | ||
2751 | dependencies = ["unicode-display_width"]; | ||
2752 | platforms = []; | ||
2753 | source = { | ||
2754 | remotes = ["https://rubygems.org"]; | ||
2755 | sha256 = "1512cngw35hsmhvw4c05rscihc59mnj09m249sm9p3pik831ydqk"; | ||
2756 | type = "gem"; | ||
2757 | }; | ||
2758 | version = "1.8.0"; | ||
2759 | }; | ||
2760 | thor = { | ||
2761 | platforms = []; | ||
2762 | source = { | ||
2763 | remotes = ["https://rubygems.org"]; | ||
2764 | sha256 = "01n5dv9kql60m6a00zc0r66jvaxx98qhdny3klyj0p3w34pad2ns"; | ||
2765 | type = "gem"; | ||
2766 | }; | ||
2767 | version = "0.19.4"; | ||
2768 | }; | ||
2769 | thread_safe = { | ||
2770 | platforms = []; | ||
2771 | source = { | ||
2772 | remotes = ["https://rubygems.org"]; | ||
2773 | sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy"; | ||
2774 | type = "gem"; | ||
2775 | }; | ||
2776 | version = "0.3.6"; | ||
2777 | }; | ||
2778 | tilt = { | ||
2779 | platforms = []; | ||
2780 | source = { | ||
2781 | remotes = ["https://rubygems.org"]; | ||
2782 | sha256 = "0020mrgdf11q23hm1ddd6fv691l51vi10af00f137ilcdb2ycfra"; | ||
2783 | type = "gem"; | ||
2784 | }; | ||
2785 | version = "2.0.8"; | ||
2786 | }; | ||
2787 | timecop = { | ||
2788 | platforms = []; | ||
2789 | source = { | ||
2790 | remotes = ["https://rubygems.org"]; | ||
2791 | sha256 = "0d7mm786180v4kzvn1f77rhfppsg5n0sq2bdx63x9nv114zm8jrp"; | ||
2792 | type = "gem"; | ||
2793 | }; | ||
2794 | version = "0.9.1"; | ||
2795 | }; | ||
2796 | timers = { | ||
2797 | platforms = []; | ||
2798 | source = { | ||
2799 | remotes = ["https://rubygems.org"]; | ||
2800 | sha256 = "04zbs9wyzajn7g9xfgg2zqz5kzf0qa7jgh4hgry4pfcxfmlnwdwx"; | ||
2801 | type = "gem"; | ||
2802 | }; | ||
2803 | version = "4.2.0"; | ||
2804 | }; | ||
2805 | tins = { | ||
2806 | platforms = []; | ||
2807 | source = { | ||
2808 | remotes = ["https://rubygems.org"]; | ||
2809 | sha256 = "1pqj45n216zrz7yckdbdknlmhh187iqzx8fp76y2h0jrgqjfkxmj"; | ||
2810 | type = "gem"; | ||
2811 | }; | ||
2812 | version = "1.20.2"; | ||
2813 | }; | ||
2814 | to_regexp = { | ||
2815 | platforms = []; | ||
2816 | source = { | ||
2817 | remotes = ["https://rubygems.org"]; | ||
2818 | sha256 = "1rgabfhnql6l4fx09mmj5d0vza924iczqf2blmn82l782b6qqi9v"; | ||
2819 | type = "gem"; | ||
2820 | }; | ||
2821 | version = "0.2.1"; | ||
2822 | }; | ||
2823 | turbo_dev_assets = { | ||
2824 | platforms = []; | ||
2825 | source = { | ||
2826 | remotes = ["https://rubygems.org"]; | ||
2827 | sha256 = "08yp7gpishjfj8b7d61hxs677288ycv6yg78a7hfzn631gxczipx"; | ||
2828 | type = "gem"; | ||
2829 | }; | ||
2830 | version = "0.0.2"; | ||
2831 | }; | ||
2832 | twitter = { | ||
2833 | dependencies = ["addressable" "buftok" "equalizer" "http" "http-form_data" "http_parser.rb" "memoizable" "multipart-post" "naught" "simple_oauth"]; | ||
2834 | platforms = []; | ||
2835 | source = { | ||
2836 | remotes = ["https://rubygems.org"]; | ||
2837 | sha256 = "0fjyz3viabz3xs5d9aad18zgdbhfwm51jsnzigc8kxk77p1x58n5"; | ||
2838 | type = "gem"; | ||
2839 | }; | ||
2840 | version = "6.2.0"; | ||
2841 | }; | ||
2842 | twitter-text = { | ||
2843 | dependencies = ["unf"]; | ||
2844 | platforms = []; | ||
2845 | source = { | ||
2846 | remotes = ["https://rubygems.org"]; | ||
2847 | sha256 = "1732h7hy1k152w8wfvjsx7b79alk45i5imwd37ia4qcx8hfm3gvg"; | ||
2848 | type = "gem"; | ||
2849 | }; | ||
2850 | version = "1.14.7"; | ||
2851 | }; | ||
2852 | typhoeus = { | ||
2853 | dependencies = ["ethon"]; | ||
2854 | platforms = []; | ||
2855 | source = { | ||
2856 | remotes = ["https://rubygems.org"]; | ||
2857 | sha256 = "0cni8b1idcp0dk8kybmxydadhfpaj3lbs99w5kjibv8bsmip2zi5"; | ||
2858 | type = "gem"; | ||
2859 | }; | ||
2860 | version = "1.3.1"; | ||
2861 | }; | ||
2862 | tzinfo = { | ||
2863 | dependencies = ["thread_safe"]; | ||
2864 | platforms = []; | ||
2865 | source = { | ||
2866 | remotes = ["https://rubygems.org"]; | ||
2867 | sha256 = "1fjx9j327xpkkdlxwmkl3a8wqj7i4l4jwlrv3z13mg95z9wl253z"; | ||
2868 | type = "gem"; | ||
2869 | }; | ||
2870 | version = "1.2.5"; | ||
2871 | }; | ||
2872 | uglifier = { | ||
2873 | dependencies = ["execjs"]; | ||
2874 | platforms = []; | ||
2875 | source = { | ||
2876 | remotes = ["https://rubygems.org"]; | ||
2877 | sha256 = "1g203kly5wp4qlkc7371skyvyin6iinc8i0p5wrpiqgblqxxgcf1"; | ||
2878 | type = "gem"; | ||
2879 | }; | ||
2880 | version = "4.1.19"; | ||
2881 | }; | ||
2882 | unf = { | ||
2883 | dependencies = ["unf_ext"]; | ||
2884 | platforms = []; | ||
2885 | source = { | ||
2886 | remotes = ["https://rubygems.org"]; | ||
2887 | sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; | ||
2888 | type = "gem"; | ||
2889 | }; | ||
2890 | version = "0.1.4"; | ||
2891 | }; | ||
2892 | unf_ext = { | ||
2893 | platforms = []; | ||
2894 | source = { | ||
2895 | remotes = ["https://rubygems.org"]; | ||
2896 | sha256 = "06p1i6qhy34bpb8q8ms88y6f2kz86azwm098yvcc0nyqk9y729j1"; | ||
2897 | type = "gem"; | ||
2898 | }; | ||
2899 | version = "0.0.7.5"; | ||
2900 | }; | ||
2901 | unicode-display_width = { | ||
2902 | platforms = []; | ||
2903 | source = { | ||
2904 | remotes = ["https://rubygems.org"]; | ||
2905 | sha256 = "0040bsdpcmvp8w31lqi2s9s4p4h031zv52401qidmh25cgyh4a57"; | ||
2906 | type = "gem"; | ||
2907 | }; | ||
2908 | version = "1.4.0"; | ||
2909 | }; | ||
2910 | unicorn = { | ||
2911 | dependencies = ["kgio" "raindrops"]; | ||
2912 | platforms = []; | ||
2913 | source = { | ||
2914 | remotes = ["https://rubygems.org"]; | ||
2915 | sha256 = "1qfhvzs4i6ja1s43j8p1kfbzm10n7a02ngki30a38y5m46a2qrak"; | ||
2916 | type = "gem"; | ||
2917 | }; | ||
2918 | version = "5.4.1"; | ||
2919 | }; | ||
2920 | unicorn-worker-killer = { | ||
2921 | dependencies = ["get_process_mem" "unicorn"]; | ||
2922 | platforms = []; | ||
2923 | source = { | ||
2924 | remotes = ["https://rubygems.org"]; | ||
2925 | sha256 = "0rrdxpwdsapx47axjin8ymxb4f685qlpx8a26bql4ay1559c3gva"; | ||
2926 | type = "gem"; | ||
2927 | }; | ||
2928 | version = "0.4.4"; | ||
2929 | }; | ||
2930 | uuid = { | ||
2931 | dependencies = ["macaddr"]; | ||
2932 | platforms = []; | ||
2933 | source = { | ||
2934 | remotes = ["https://rubygems.org"]; | ||
2935 | sha256 = "1mr405vg4ccnndkyf7pb49gp1fha8i6gj7iwq43nxkak41cwzh5f"; | ||
2936 | type = "gem"; | ||
2937 | }; | ||
2938 | version = "2.3.9"; | ||
2939 | }; | ||
2940 | valid = { | ||
2941 | platforms = []; | ||
2942 | source = { | ||
2943 | remotes = ["https://rubygems.org"]; | ||
2944 | sha256 = "0vxrgik9gxyh5j2w16nz5azjk0cbzmvv883hq9pvxm9anfbbj8d3"; | ||
2945 | type = "gem"; | ||
2946 | }; | ||
2947 | version = "1.2.0"; | ||
2948 | }; | ||
2949 | validate_email = { | ||
2950 | dependencies = ["activemodel" "mail"]; | ||
2951 | platforms = []; | ||
2952 | source = { | ||
2953 | remotes = ["https://rubygems.org"]; | ||
2954 | sha256 = "1r1fz29l699arka177c9xw7409d1a3ff95bf7a6pmc97slb91zlx"; | ||
2955 | type = "gem"; | ||
2956 | }; | ||
2957 | version = "0.1.6"; | ||
2958 | }; | ||
2959 | validate_url = { | ||
2960 | dependencies = ["activemodel" "addressable"]; | ||
2961 | platforms = []; | ||
2962 | source = { | ||
2963 | remotes = ["https://rubygems.org"]; | ||
2964 | sha256 = "1df4gch8dizimpbl185vfgw95yb8ffr6zwj6whzbxfil95c3f2qh"; | ||
2965 | type = "gem"; | ||
2966 | }; | ||
2967 | version = "1.0.2"; | ||
2968 | }; | ||
2969 | versionist = { | ||
2970 | dependencies = ["activesupport" "railties" "yard"]; | ||
2971 | platforms = []; | ||
2972 | source = { | ||
2973 | remotes = ["https://rubygems.org"]; | ||
2974 | sha256 = "1p8wizg6jml7gz1qiqk7d77hy0w5650g812jhgd0zzkwwdmzm38m"; | ||
2975 | type = "gem"; | ||
2976 | }; | ||
2977 | version = "1.7.0"; | ||
2978 | }; | ||
2979 | warden = { | ||
2980 | dependencies = ["rack"]; | ||
2981 | platforms = []; | ||
2982 | source = { | ||
2983 | remotes = ["https://rubygems.org"]; | ||
2984 | sha256 = "1fr9n9i9r82xb6i61fdw4xgc7zjv7fsdrr4k0njchy87iw9fl454"; | ||
2985 | type = "gem"; | ||
2986 | }; | ||
2987 | version = "1.2.8"; | ||
2988 | }; | ||
2989 | webfinger = { | ||
2990 | dependencies = ["activesupport" "httpclient"]; | ||
2991 | platforms = []; | ||
2992 | source = { | ||
2993 | remotes = ["https://rubygems.org"]; | ||
2994 | sha256 = "0m0jh8k7c0ifh2jhbn7ihqrmn5fi754wflva97zgy70hpdvxyjar"; | ||
2995 | type = "gem"; | ||
2996 | }; | ||
2997 | version = "1.1.0"; | ||
2998 | }; | ||
2999 | webmock = { | ||
3000 | dependencies = ["addressable" "crack" "hashdiff"]; | ||
3001 | platforms = []; | ||
3002 | source = { | ||
3003 | remotes = ["https://rubygems.org"]; | ||
3004 | sha256 = "03994dxs4xayvkxqp01dd1ivhg4xxx7z35f7cxw7y2mwj3xn24ib"; | ||
3005 | type = "gem"; | ||
3006 | }; | ||
3007 | version = "3.4.2"; | ||
3008 | }; | ||
3009 | websocket-driver = { | ||
3010 | dependencies = ["websocket-extensions"]; | ||
3011 | platforms = []; | ||
3012 | source = { | ||
3013 | remotes = ["https://rubygems.org"]; | ||
3014 | sha256 = "1943442yllhldh9dbp374x2q39cxa49xrm28nb78b7mfbv3y195l"; | ||
3015 | type = "gem"; | ||
3016 | }; | ||
3017 | version = "0.6.5"; | ||
3018 | }; | ||
3019 | websocket-extensions = { | ||
3020 | platforms = []; | ||
3021 | source = { | ||
3022 | remotes = ["https://rubygems.org"]; | ||
3023 | sha256 = "034sdr7fd34yag5l6y156rkbhiqgmy395m231dwhlpcswhs6d270"; | ||
3024 | type = "gem"; | ||
3025 | }; | ||
3026 | version = "0.1.3"; | ||
3027 | }; | ||
3028 | will_paginate = { | ||
3029 | platforms = []; | ||
3030 | source = { | ||
3031 | remotes = ["https://rubygems.org"]; | ||
3032 | sha256 = "0ihf15yaj8883ddhkxq7q60zrg3zfsvqaf5853gybhcg18zq8bn9"; | ||
3033 | type = "gem"; | ||
3034 | }; | ||
3035 | version = "3.1.6"; | ||
3036 | }; | ||
3037 | xpath = { | ||
3038 | dependencies = ["nokogiri"]; | ||
3039 | platforms = []; | ||
3040 | source = { | ||
3041 | remotes = ["https://rubygems.org"]; | ||
3042 | sha256 = "0bh8lk9hvlpn7vmi6h4hkcwjzvs2y0cmkk3yjjdr8fxvj6fsgzbd"; | ||
3043 | type = "gem"; | ||
3044 | }; | ||
3045 | version = "3.2.0"; | ||
3046 | }; | ||
3047 | yard = { | ||
3048 | platforms = []; | ||
3049 | source = { | ||
3050 | remotes = ["https://rubygems.org"]; | ||
3051 | sha256 = "0lmmr1839qgbb3zxfa7jf5mzy17yjl1yirwlgzdhws4452gqhn67"; | ||
3052 | type = "gem"; | ||
3053 | }; | ||
3054 | version = "0.9.16"; | ||
3055 | }; | ||
3056 | } | ||
diff --git a/pkgs/webapps/diaspora/ldap.patch b/pkgs/webapps/diaspora/ldap.patch deleted file mode 100644 index 3d4f785..0000000 --- a/pkgs/webapps/diaspora/ldap.patch +++ /dev/null | |||
@@ -1,256 +0,0 @@ | |||
1 | commit 936a14e225037aca4cdeac11c843c7985e636c88 | ||
2 | Author: Ismaël Bouya <ismael.bouya@normalesup.org> | ||
3 | Date: Mon Jul 24 19:58:24 2017 +0200 | ||
4 | |||
5 | Add LDAP to diaspora | ||
6 | |||
7 | diff --git a/Gemfile b/Gemfile | ||
8 | index 414b0138d..2a934e9c9 100644 | ||
9 | --- a/Gemfile | ||
10 | +++ b/Gemfile | ||
11 | @@ -217,6 +217,9 @@ gem "thor", "0.19.1" | ||
12 | |||
13 | # gem "therubyracer", :platform => :ruby | ||
14 | |||
15 | +# LDAP | ||
16 | +gem 'net-ldap', '~> 0.16' | ||
17 | + | ||
18 | group :production do # we don"t install these on travis to speed up test runs | ||
19 | # Analytics | ||
20 | |||
21 | diff --git a/Gemfile.lock b/Gemfile.lock | ||
22 | index 84f8172e4..cdbf19fcd 100644 | ||
23 | --- a/Gemfile.lock 2019-01-13 19:55:52.538561762 +0100 | ||
24 | +++ b/Gemfile.lock 2019-01-13 19:58:11.087099067 +0100 | ||
25 | @@ -398,6 +398,7 @@ | ||
26 | mysql2 (0.5.2) | ||
27 | naught (1.1.0) | ||
28 | nenv (0.3.0) | ||
29 | + net-ldap (0.16.1) | ||
30 | nio4r (2.3.1) | ||
31 | nokogiri (1.8.5) | ||
32 | mini_portile2 (~> 2.3.0) | ||
33 | @@ -820,6 +821,7 @@ | ||
34 | minitest | ||
35 | mobile-fu (= 1.4.0) | ||
36 | mysql2 (= 0.5.2) | ||
37 | + net-ldap (~> 0.16) | ||
38 | nokogiri (= 1.8.5) | ||
39 | omniauth (= 1.8.1) | ||
40 | omniauth-tumblr (= 1.2) | ||
41 | diff --git a/app/models/user.rb b/app/models/user.rb | ||
42 | index 940a48f25..d1e2beeee 100644 | ||
43 | --- a/app/models/user.rb | ||
44 | +++ b/app/models/user.rb | ||
45 | @@ -337,6 +337,12 @@ class User < ActiveRecord::Base | ||
46 | end | ||
47 | |||
48 | def send_confirm_email | ||
49 | + if skip_email_confirmation? | ||
50 | + self.email = unconfirmed_email | ||
51 | + self.unconfirmed_email = nil | ||
52 | + save | ||
53 | + end | ||
54 | + | ||
55 | return if unconfirmed_email.blank? | ||
56 | Workers::Mail::ConfirmEmail.perform_async(id) | ||
57 | end | ||
58 | @@ -554,6 +560,14 @@ class User < ActiveRecord::Base | ||
59 | end | ||
60 | end | ||
61 | |||
62 | + def ldap_user? | ||
63 | + AppConfig.ldap.enable? && ldap_dn.present? | ||
64 | + end | ||
65 | + | ||
66 | + def skip_email_confirmation? | ||
67 | + ldap_user? && AppConfig.ldap.skip_email_confirmation? | ||
68 | + end | ||
69 | + | ||
70 | private | ||
71 | |||
72 | def clearable_fields | ||
73 | diff --git a/config/defaults.yml b/config/defaults.yml | ||
74 | index c046aff07..66e9afa13 100644 | ||
75 | --- a/config/defaults.yml | ||
76 | +++ b/config/defaults.yml | ||
77 | @@ -202,6 +202,20 @@ defaults: | ||
78 | scope: tags | ||
79 | include_user_tags: false | ||
80 | pod_tags: | ||
81 | + ldap: | ||
82 | + enable: false | ||
83 | + host: localhost | ||
84 | + port: 389 | ||
85 | + only_ldap: true | ||
86 | + mail_attribute: mail | ||
87 | + skip_email_confirmation: true | ||
88 | + use_bind_dn: true | ||
89 | + bind_dn: "cn=diaspora,dc=example,dc=com" | ||
90 | + bind_pw: "password" | ||
91 | + search_base: "dc=example,dc=com" | ||
92 | + search_filter: "uid=%{username}" | ||
93 | + bind_template: "uid=%{username},dc=example,dc=com" | ||
94 | + | ||
95 | |||
96 | development: | ||
97 | environment: | ||
98 | diff --git a/config/diaspora.yml.example b/config/diaspora.yml.example | ||
99 | index b2573625d..c357c8651 100644 | ||
100 | --- a/config/diaspora.yml.example | ||
101 | +++ b/config/diaspora.yml.example | ||
102 | @@ -710,6 +710,36 @@ configuration: ## Section | ||
103 | ## If scope is 'tags', a comma separated list of tags here can be set. | ||
104 | ## For example "linux,diaspora", to receive posts related to these tags | ||
105 | #pod_tags: | ||
106 | + ldap: | ||
107 | + # Uncomment next line if you want to use LDAP on your instance | ||
108 | + enable: true | ||
109 | + host: localhost | ||
110 | + port: 389 | ||
111 | + # Use only LDAP authentication (don't try other means) | ||
112 | + only_ldap: true | ||
113 | + # LDAP attribute to find the user's e-mail. Necessary to create accounts | ||
114 | + # for not existing users | ||
115 | + mail_attribute: mail | ||
116 | + # Skip e-mail confirmation when creating an account via LDAP. | ||
117 | + skip_email_confirmation: true | ||
118 | + # ----- Using bind_dn and bind_pw | ||
119 | + # bind_dn and bind_pw may be used if the diaspora instance | ||
120 | + # should be able to connect to LDAP to find and search for users. | ||
121 | + | ||
122 | + use_bind_dn: true | ||
123 | + bind_dn: "cn=diaspora,dc=example,dc=com" | ||
124 | + bind_pw: "password" | ||
125 | + search_base: "dc=example,dc=com" | ||
126 | + # This is the filter with which to search for the user. %{username} will | ||
127 | + # be replaced by the given login. | ||
128 | + search_filter: "uid=%{username}" | ||
129 | + # | ||
130 | + # ----- Using template | ||
131 | + # This setting doesn't require a diaspora LDAP user. Use a template, and | ||
132 | + # diaspora will try to login with the templated dn and password | ||
133 | + # | ||
134 | + # bind_template: "uid=%{username},dc=example,dc=com" | ||
135 | + | ||
136 | |||
137 | ## Here you can override settings defined above if you need | ||
138 | ## to have them different in different environments. | ||
139 | diff --git a/config/initializers/0_ldap_authenticatable.rb b/config/initializers/0_ldap_authenticatable.rb | ||
140 | new file mode 100644 | ||
141 | index 000000000..49846502f | ||
142 | --- /dev/null | ||
143 | +++ b/config/initializers/0_ldap_authenticatable.rb | ||
144 | @@ -0,0 +1,82 @@ | ||
145 | +require 'net/ldap' | ||
146 | +require 'devise/strategies/authenticatable' | ||
147 | + | ||
148 | +module Devise | ||
149 | + module Strategies | ||
150 | + class LdapAuthenticatable < Authenticatable | ||
151 | + def valid? | ||
152 | + AppConfig.ldap.enable? && params[:user].present? | ||
153 | + end | ||
154 | + | ||
155 | + def authenticate! | ||
156 | + ldap = Net::LDAP.new( | ||
157 | + host: AppConfig.ldap.host, | ||
158 | + port: AppConfig.ldap.port, | ||
159 | + encryption: :simple_tls, | ||
160 | + ) | ||
161 | + | ||
162 | + if AppConfig.ldap.use_bind_dn? | ||
163 | + ldap.auth AppConfig.ldap.bind_dn, AppConfig.ldap.bind_pw | ||
164 | + | ||
165 | + if !ldap.bind | ||
166 | + return fail(:ldap_configuration_error) | ||
167 | + end | ||
168 | + | ||
169 | + search_filter = AppConfig.ldap.search_filter % { username: params[:user][:username] } | ||
170 | + | ||
171 | + result = ldap.search(base: AppConfig.ldap.search_base, filter: search_filter, result_set: true) | ||
172 | + | ||
173 | + if result.count != 1 | ||
174 | + return login_fail | ||
175 | + end | ||
176 | + | ||
177 | + user_dn = result.first.dn | ||
178 | + user_email = result.first[AppConfig.ldap.mail_attribute].first | ||
179 | + else | ||
180 | + user_dn = AppConfig.ldap.bind_template % { username: params[:user][:username] } | ||
181 | + end | ||
182 | + | ||
183 | + ldap.auth user_dn, params[:user][:password] | ||
184 | + | ||
185 | + if ldap.bind | ||
186 | + user = User.find_by(ldap_dn: user_dn) | ||
187 | + | ||
188 | + # We don't want to trust too much the email attribute from | ||
189 | + # LDAP: if the user can edit it himself, he may login as | ||
190 | + # anyone | ||
191 | + if user.nil? | ||
192 | + if !AppConfig.ldap.use_bind_dn? | ||
193 | + result = ldap.search(base: user_dn, scope: Net::LDAP::SearchScope_BaseObject, filter: "(objectClass=*)", result_set: true) | ||
194 | + user_email = result.first[AppConfig.ldap.mail_attribute].first | ||
195 | + end | ||
196 | + | ||
197 | + if user_email.present? && User.find_by(email: user_email).nil? | ||
198 | + # Password is used for remember_me token | ||
199 | + user = User.build(email: user_email, ldap_dn: user_dn, password: SecureRandom.hex, username: params[:user][:username]) | ||
200 | + user.save | ||
201 | + user.seed_aspects | ||
202 | + elsif User.find_by(email: user_email).present? | ||
203 | + return fail(:ldap_existing_email) | ||
204 | + else | ||
205 | + return fail(:ldap_cannot_create_account_without_email) | ||
206 | + end | ||
207 | + end | ||
208 | + | ||
209 | + success!(user) | ||
210 | + else | ||
211 | + return login_fail | ||
212 | + end | ||
213 | + end | ||
214 | + | ||
215 | + def login_fail | ||
216 | + if AppConfig.ldap.only_ldap? | ||
217 | + return fail(:ldap_invalid_login) | ||
218 | + else | ||
219 | + return pass | ||
220 | + end | ||
221 | + end | ||
222 | + end | ||
223 | + end | ||
224 | +end | ||
225 | + | ||
226 | +Warden::Strategies.add(:ldap_authenticatable, Devise::Strategies::LdapAuthenticatable) | ||
227 | diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb | ||
228 | index 3698e2373..14e88063e 100644 | ||
229 | --- a/config/initializers/devise.rb | ||
230 | +++ b/config/initializers/devise.rb | ||
231 | @@ -250,10 +250,9 @@ Devise.setup do |config| | ||
232 | # If you want to use other strategies, that are not supported by Devise, or | ||
233 | # change the failure app, you can configure them inside the config.warden block. | ||
234 | # | ||
235 | - # config.warden do |manager| | ||
236 | - # manager.intercept_401 = false | ||
237 | - # manager.default_strategies(:scope => :user).unshift :some_external_strategy | ||
238 | - # end | ||
239 | + config.warden do |manager| | ||
240 | + manager.default_strategies(scope: :user).unshift :ldap_authenticatable | ||
241 | + end | ||
242 | |||
243 | # ==> Mountable engine configurations | ||
244 | # When using Devise inside an engine, let's call it `MyEngine`, and this engine | ||
245 | diff --git a/db/migrate/20170724182100_add_ldap_dn_to_users.rb b/db/migrate/20170724182100_add_ldap_dn_to_users.rb | ||
246 | new file mode 100644 | ||
247 | index 000000000..f5cc84d11 | ||
248 | --- /dev/null | ||
249 | +++ b/db/migrate/20170724182100_add_ldap_dn_to_users.rb | ||
250 | @@ -0,0 +1,6 @@ | ||
251 | +class AddLdapDnToUsers < ActiveRecord::Migration | ||
252 | + def change | ||
253 | + add_column :users, :ldap_dn, :text, null: true, default: nil | ||
254 | + add_index :users, ['ldap_dn'], :length => { "ldap_dn" => 191 } | ||
255 | + end | ||
256 | +end | ||
diff --git a/pkgs/webapps/dokuwiki/default.nix b/pkgs/webapps/dokuwiki/default.nix deleted file mode 100644 index 874f0d8..0000000 --- a/pkgs/webapps/dokuwiki/default.nix +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | { varDir ? "/var/lib/dokuwiki", preload ? "", lib, callPackage, stdenv, mylibs, writeText }: | ||
2 | let | ||
3 | preloadFile = plugins: let preloads = [preload] | ||
4 | ++ builtins.concatMap (p: lib.optional (lib.hasAttr "preload" p) (p.preload p)) plugins; | ||
5 | in writeText "preload.php" ('' | ||
6 | <?php | ||
7 | '' + builtins.concatStringsSep "\n" preloads | ||
8 | ); | ||
9 | pluginNames = [ "farmer" "todo" ]; | ||
10 | allPlugins = lib.attrsets.genAttrs pluginNames | ||
11 | (name: callPackage (./plugins + "/${name}.nix") {}); | ||
12 | toPassthru = pkg: plugins: { | ||
13 | inherit plugins varDir allPlugins; | ||
14 | withPlugins = withPlugins pkg; | ||
15 | }; | ||
16 | withPlugins = pkg: toPlugins: | ||
17 | let | ||
18 | plugins = toPlugins allPlugins; | ||
19 | toInstallPlugin = n: | ||
20 | "ln -sf ${n} $out/lib/plugins/${n.pluginName}"; | ||
21 | newDokuwiki = pkg.overrideAttrs(old: { | ||
22 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallPlugin plugins); | ||
23 | installPreloadPhase = '' | ||
24 | cp ${preloadFile (pkg.plugins ++ plugins)} $out/inc/preload.php | ||
25 | ''; | ||
26 | passthru = toPassthru newDokuwiki (pkg.plugins ++ plugins); | ||
27 | }); | ||
28 | in newDokuwiki; | ||
29 | package = stdenv.mkDerivation (mylibs.fetchedGithub ./dokuwiki.json // rec { | ||
30 | phases = "unpackPhase buildPhase installPhase installPreloadPhase fixupPhase"; | ||
31 | buildPhase = '' | ||
32 | mv conf conf.dist | ||
33 | mv data data.dist | ||
34 | ''; | ||
35 | installPhase = '' | ||
36 | cp -a . $out | ||
37 | ln -sf ${varDir}/{conf,data} $out/ | ||
38 | ln -sf ${varDir}/conf/.htaccess $out/ | ||
39 | ''; | ||
40 | installPreloadPhase = '' | ||
41 | cp ${preloadFile []} $out/inc/preload.php | ||
42 | ''; | ||
43 | passthru = toPassthru package []; | ||
44 | }); | ||
45 | in package | ||
diff --git a/pkgs/webapps/dokuwiki/dokuwiki.json b/pkgs/webapps/dokuwiki/dokuwiki.json deleted file mode 100644 index fc03252..0000000 --- a/pkgs/webapps/dokuwiki/dokuwiki.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "release_stable_2018-04-22b", | ||
3 | "meta": { | ||
4 | "name": "dokuwiki", | ||
5 | "url": "https://github.com/splitbrain/dokuwiki", | ||
6 | "branch": "refs/tags/release_stable_2018-04-22b" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "splitbrain", | ||
10 | "repo": "dokuwiki", | ||
11 | "rev": "871dae1320b40211626c7ec665f5e6d5290aca95", | ||
12 | "sha256": "1syvd5dvv3v75swf8ig7dxqs0g5xikb0f6vlcy7g4c4ghldkw7nz", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/dokuwiki/plugins/farmer.nix b/pkgs/webapps/dokuwiki/plugins/farmer.nix deleted file mode 100644 index b737b2d..0000000 --- a/pkgs/webapps/dokuwiki/plugins/farmer.nix +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | { stdenv, fetchFromGitHub }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "72b8577-master"; | ||
4 | name = "dokuwiki-plugin-farmer-${version}"; | ||
5 | src = fetchFromGitHub { | ||
6 | owner = "cosmocode"; | ||
7 | repo = "dokuwiki-plugin-farmer"; | ||
8 | rev = "72b857734fd164bf79cc6e17abe56491d55c1072"; | ||
9 | sha256 = "1c9vc1z7yvzjz4p054kshb9yd00a4bb52s43k9zav0lvwvjij9l0"; | ||
10 | }; | ||
11 | installPhase = '' | ||
12 | mkdir $out | ||
13 | cp -a * $out | ||
14 | ''; | ||
15 | passthru = { | ||
16 | pluginName = "farmer"; | ||
17 | preload = out: '' | ||
18 | # farm setup by farmer plugin | ||
19 | if (file_exists('${out}/DokuWikiFarmCore.php')) | ||
20 | { | ||
21 | include('${out}/DokuWikiFarmCore.php'); | ||
22 | } | ||
23 | ''; | ||
24 | }; | ||
25 | } | ||
diff --git a/pkgs/webapps/dokuwiki/plugins/todo.nix b/pkgs/webapps/dokuwiki/plugins/todo.nix deleted file mode 100644 index a3e03fb..0000000 --- a/pkgs/webapps/dokuwiki/plugins/todo.nix +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | { stdenv, fetchFromGitHub }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "49068ec-master"; | ||
4 | name = "dokuwiki-plugin-todo-${version}"; | ||
5 | src = fetchFromGitHub { | ||
6 | owner = "leibler"; | ||
7 | repo = "dokuwiki-plugin-todo"; | ||
8 | rev = "49068ecea455ea997d1e4a7adab171ccaf8228e8"; | ||
9 | sha256 = "1jaq623kp14fyhamsas5mk9ryqlk4q6x6znijrb5xhcdg3r83gmq"; | ||
10 | }; | ||
11 | installPhase = '' | ||
12 | mkdir $out | ||
13 | cp -a * $out | ||
14 | ''; | ||
15 | passthru = { | ||
16 | pluginName = "todo"; | ||
17 | }; | ||
18 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/default.nix b/pkgs/webapps/etherpad-lite/default.nix deleted file mode 100644 index 4327384..0000000 --- a/pkgs/webapps/etherpad-lite/default.nix +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | { varDir ? "/var/lib/etherpad-lite" # if you override this change the StateDirectory in service file too! | ||
2 | , stdenv, callPackage, mylibs, lib }: | ||
3 | let | ||
4 | nodeEnv = callPackage mylibs.nodeEnv {}; | ||
5 | moduleNames = [ | ||
6 | "ep_aa_file_menu_toolbar" "ep_adminpads" "ep_align" "ep_bookmark" | ||
7 | "ep_clear_formatting" "ep_colors" "ep_comments_page" | ||
8 | "ep_copy_paste_select_all" "ep_cursortrace" "ep_delete_empty_pads" | ||
9 | "ep_embedmedia" "ep_font_family" "ep_font_size" "ep_headings2" | ||
10 | "ep_immae_buttons" "ep_ldapauth" "ep_line_height" "ep_markdown" | ||
11 | "ep_mypads" "ep_page_view" "ep_previewimages" "ep_ruler" | ||
12 | "ep_scrollto" "ep_set_title_on_pad" "ep_subscript_and_superscript" | ||
13 | "ep_timesliderdiff" | ||
14 | ]; | ||
15 | # nix files are built using node2nix -i node-packages.json | ||
16 | allModules = lib.attrsets.genAttrs moduleNames | ||
17 | (name: (callPackage (./modules + "/${name}/node-packages.nix") { inherit nodeEnv; }).${name}); | ||
18 | toPassthru = pkg: { | ||
19 | inherit varDir allModules; | ||
20 | withModules = withModules pkg; | ||
21 | }; | ||
22 | withModules = pkg: toModules: | ||
23 | let | ||
24 | modules = toModules allModules; | ||
25 | toInstallModule = n: '' | ||
26 | cp -a ${n}/lib/node_modules/${n.packageName} $out/node_modules | ||
27 | if [ ! -f $out/node_modules/${n.packageName}/.ep_initialized ]; then | ||
28 | chmod u+w $out/node_modules/${n.packageName}/ | ||
29 | ln -s ${varDir}/ep_initialized/${n.packageName} $out/node_modules/${n.packageName}/.ep_initialized | ||
30 | fi | ||
31 | ''; | ||
32 | newEtherpad = pkg.overrideAttrs(old: { | ||
33 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallModule modules); | ||
34 | passthru = toPassthru newEtherpad; | ||
35 | }); | ||
36 | in newEtherpad; | ||
37 | # built using node2nix -l package-lock.json | ||
38 | # and changing "./." to "src" | ||
39 | node-environment = (callPackage ./node-packages.nix { | ||
40 | inherit nodeEnv; | ||
41 | src = stdenv.mkDerivation (mylibs.fetchedGithub ./etherpad-lite.json // rec { | ||
42 | patches = [ ./libreoffice_patch.diff ]; | ||
43 | buildPhase = '' | ||
44 | touch src/.ep_initialized | ||
45 | ''; | ||
46 | installPhase = '' | ||
47 | cp -a src/ $out | ||
48 | ''; | ||
49 | }); | ||
50 | }).package; | ||
51 | package = stdenv.mkDerivation rec { | ||
52 | name = (mylibs.fetchedGithub ./etherpad-lite.json).name; | ||
53 | src = node-environment; | ||
54 | installPhase = '' | ||
55 | mkdir -p $out | ||
56 | mkdir $out/node_modules | ||
57 | cp -a lib/node_modules/ep_etherpad-lite $out/src | ||
58 | chmod u+w $out/src/static/js/ | ||
59 | ln -s ../src $out/node_modules/ep_etherpad-lite | ||
60 | ''; | ||
61 | passthru = toPassthru package; | ||
62 | }; | ||
63 | in package | ||
diff --git a/pkgs/webapps/etherpad-lite/etherpad-lite.json b/pkgs/webapps/etherpad-lite/etherpad-lite.json deleted file mode 100644 index 0d68df1..0000000 --- a/pkgs/webapps/etherpad-lite/etherpad-lite.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "1.8.3", | ||
3 | "meta": { | ||
4 | "name": "etherpad-lite", | ||
5 | "url": "https://github.com/ether/etherpad-lite", | ||
6 | "branch": "refs/tags/1.8.3" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "ether", | ||
10 | "repo": "etherpad-lite", | ||
11 | "rev": "62101147a0c3495dc80daa87ab53a3366321a205", | ||
12 | "sha256": "1d726qldw3bil4x7j39aqk7m71kyjvxklai5238rrd5v82z28c1y", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/libreoffice_patch.diff b/pkgs/webapps/etherpad-lite/libreoffice_patch.diff deleted file mode 100644 index 86fac15..0000000 --- a/pkgs/webapps/etherpad-lite/libreoffice_patch.diff +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | diff --git a/src/node/utils/LibreOffice.js b/src/node/utils/LibreOffice.js | ||
2 | index 267f7a0c..10518577 100644 | ||
3 | --- a/src/node/utils/LibreOffice.js | ||
4 | +++ b/src/node/utils/LibreOffice.js | ||
5 | @@ -78,6 +78,7 @@ function doConvertTask(task, callback) { | ||
6 | '--invisible', | ||
7 | '--nologo', | ||
8 | '--nolockcheck', | ||
9 | + '-env:UserInstallation=file:///tmp/', | ||
10 | '--writer', | ||
11 | '--convert-to', task.type, | ||
12 | task.srcFile, | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_aa_file_menu_toolbar/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_aa_file_menu_toolbar/node-packages.json deleted file mode 100644 index 9b0f681..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_aa_file_menu_toolbar/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_aa_file_menu_toolbar" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_aa_file_menu_toolbar/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_aa_file_menu_toolbar/node-packages.nix deleted file mode 100644 index 8a2fb1b..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_aa_file_menu_toolbar/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_aa_file_menu_toolbar = nodeEnv.buildNodePackage { | ||
10 | name = "ep_aa_file_menu_toolbar"; | ||
11 | packageName = "ep_aa_file_menu_toolbar"; | ||
12 | version = "0.1.6"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_aa_file_menu_toolbar/-/ep_aa_file_menu_toolbar-0.1.6.tgz"; | ||
15 | sha1 = "aaa374d9429c9b2382311fab69e0ff819b53b7b0"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "File / Menu style toolbar"; | ||
20 | homepage = https://github.com/JohnMcLear/ep_file_menu_toolbar; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_adminpads/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_adminpads/node-packages.json deleted file mode 100644 index 7643607..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_adminpads/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_adminpads" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_adminpads/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_adminpads/node-packages.nix deleted file mode 100644 index 2f62257..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_adminpads/node-packages.nix +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_adminpads = nodeEnv.buildNodePackage { | ||
10 | name = "ep_adminpads"; | ||
11 | packageName = "ep_adminpads"; | ||
12 | version = "0.0.12"; | ||
13 | src = fetchurl { | ||
14 | url = "https://github.com/spcsser/ep_adminpads/archive/master.tar.gz"; | ||
15 | sha1 = "49ypihbwxmd97g813aq2rjwh7pq1y08a"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Gives the ability to list and administrate all pads on admin page"; | ||
20 | homepage = "https://github.com/spcsser/ep_adminpads#readme"; | ||
21 | license = "MIT"; | ||
22 | }; | ||
23 | production = true; | ||
24 | bypassCache = true; | ||
25 | reconstructLock = true; | ||
26 | }; | ||
27 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_align/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_align/node-packages.json deleted file mode 100644 index 9405dd2..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_align/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_align" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_align/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_align/node-packages.nix deleted file mode 100644 index 1a57a9c..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_align/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_align = nodeEnv.buildNodePackage { | ||
10 | name = "ep_align"; | ||
11 | packageName = "ep_align"; | ||
12 | version = "0.2.0"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_align/-/ep_align-0.2.0.tgz"; | ||
15 | sha512 = "bMrwsieCfz3LkxuIXiNu7UKkUQ7b+ceI09XRd1cCMskDwuJow3N3hB4/gecqfF+v4lS0qmDEa7bJvSTrhHiXBQ=="; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Add Left/Center/Right/Justify to lines of text in a pad"; | ||
20 | homepage = "https://github.com/johnmclear/ep_align#readme"; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_bookmark/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_bookmark/node-packages.json deleted file mode 100644 index 80745ca..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_bookmark/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_bookmark" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_bookmark/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_bookmark/node-packages.nix deleted file mode 100644 index 3975044..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_bookmark/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_bookmark = nodeEnv.buildNodePackage { | ||
10 | name = "ep_bookmark"; | ||
11 | packageName = "ep_bookmark"; | ||
12 | version = "1.2.0"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_bookmark/-/ep_bookmark-1.2.0.tgz"; | ||
15 | sha512 = "sHTXIKui1l+PxeBtzlwSvRg8TZ8w9PE5aaxTg5b/siwNmprXeoiL6ZUiOTGmp18yLXs1ltJ2BzSqJX57pjGVWg=="; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Etherpad plugin for users to save a list of bookmarks of their visited pads locally in the browser's local storage"; | ||
20 | homepage = "https://github.com/Gared/ep_bookmark#readme"; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_clear_formatting/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_clear_formatting/node-packages.json deleted file mode 100644 index 07c0662..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_clear_formatting/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_clear_formatting" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_clear_formatting/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_clear_formatting/node-packages.nix deleted file mode 100644 index adb22f1..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_clear_formatting/node-packages.nix +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_clear_formatting = nodeEnv.buildNodePackage { | ||
10 | name = "ep_clear_formatting"; | ||
11 | packageName = "ep_clear_formatting"; | ||
12 | version = "0.0.2"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_clear_formatting/-/ep_clear_formatting-0.0.2.tgz"; | ||
15 | sha1 = "b16970b9c6be01246d23cb5a81777aa220d06fc4"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Clear formatting on a selection, this plugin requires the file menu"; | ||
20 | }; | ||
21 | production = true; | ||
22 | bypassCache = true; | ||
23 | reconstructLock = true; | ||
24 | }; | ||
25 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_colors/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_colors/node-packages.json deleted file mode 100644 index b513f5c..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_colors/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_colors" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_colors/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_colors/node-packages.nix deleted file mode 100644 index f2f8201..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_colors/node-packages.nix +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_colors = nodeEnv.buildNodePackage { | ||
10 | name = "ep_colors"; | ||
11 | packageName = "ep_colors"; | ||
12 | version = "0.0.3"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_colors/-/ep_colors-0.0.3.tgz"; | ||
15 | sha1 = "aa95e1b12e009ed6b05d0ccb188ca4829e799780"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "add colors to the etherpad"; | ||
20 | }; | ||
21 | production = true; | ||
22 | bypassCache = true; | ||
23 | reconstructLock = true; | ||
24 | }; | ||
25 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_comments_page/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_comments_page/node-packages.json deleted file mode 100644 index ae32884..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_comments_page/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | ["ep_comments_page"] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_comments_page/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_comments_page/node-packages.nix deleted file mode 100644 index 8d7c85a..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_comments_page/node-packages.nix +++ /dev/null | |||
@@ -1,342 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = { | ||
7 | "after-0.8.2" = { | ||
8 | name = "after"; | ||
9 | packageName = "after"; | ||
10 | version = "0.8.2"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz"; | ||
13 | sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f"; | ||
14 | }; | ||
15 | }; | ||
16 | "arraybuffer.slice-0.0.7" = { | ||
17 | name = "arraybuffer.slice"; | ||
18 | packageName = "arraybuffer.slice"; | ||
19 | version = "0.0.7"; | ||
20 | src = fetchurl { | ||
21 | url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz"; | ||
22 | sha512 = "wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog=="; | ||
23 | }; | ||
24 | }; | ||
25 | "async-limiter-1.0.1" = { | ||
26 | name = "async-limiter"; | ||
27 | packageName = "async-limiter"; | ||
28 | version = "1.0.1"; | ||
29 | src = fetchurl { | ||
30 | url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"; | ||
31 | sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="; | ||
32 | }; | ||
33 | }; | ||
34 | "backo2-1.0.2" = { | ||
35 | name = "backo2"; | ||
36 | packageName = "backo2"; | ||
37 | version = "1.0.2"; | ||
38 | src = fetchurl { | ||
39 | url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz"; | ||
40 | sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947"; | ||
41 | }; | ||
42 | }; | ||
43 | "base64-arraybuffer-0.1.5" = { | ||
44 | name = "base64-arraybuffer"; | ||
45 | packageName = "base64-arraybuffer"; | ||
46 | version = "0.1.5"; | ||
47 | src = fetchurl { | ||
48 | url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"; | ||
49 | sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; | ||
50 | }; | ||
51 | }; | ||
52 | "better-assert-1.0.2" = { | ||
53 | name = "better-assert"; | ||
54 | packageName = "better-assert"; | ||
55 | version = "1.0.2"; | ||
56 | src = fetchurl { | ||
57 | url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"; | ||
58 | sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522"; | ||
59 | }; | ||
60 | }; | ||
61 | "blob-0.0.5" = { | ||
62 | name = "blob"; | ||
63 | packageName = "blob"; | ||
64 | version = "0.0.5"; | ||
65 | src = fetchurl { | ||
66 | url = "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz"; | ||
67 | sha512 = "gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig=="; | ||
68 | }; | ||
69 | }; | ||
70 | "callsite-1.0.0" = { | ||
71 | name = "callsite"; | ||
72 | packageName = "callsite"; | ||
73 | version = "1.0.0"; | ||
74 | src = fetchurl { | ||
75 | url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"; | ||
76 | sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; | ||
77 | }; | ||
78 | }; | ||
79 | "component-bind-1.0.0" = { | ||
80 | name = "component-bind"; | ||
81 | packageName = "component-bind"; | ||
82 | version = "1.0.0"; | ||
83 | src = fetchurl { | ||
84 | url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz"; | ||
85 | sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"; | ||
86 | }; | ||
87 | }; | ||
88 | "component-emitter-1.2.1" = { | ||
89 | name = "component-emitter"; | ||
90 | packageName = "component-emitter"; | ||
91 | version = "1.2.1"; | ||
92 | src = fetchurl { | ||
93 | url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"; | ||
94 | sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; | ||
95 | }; | ||
96 | }; | ||
97 | "component-inherit-0.0.3" = { | ||
98 | name = "component-inherit"; | ||
99 | packageName = "component-inherit"; | ||
100 | version = "0.0.3"; | ||
101 | src = fetchurl { | ||
102 | url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz"; | ||
103 | sha1 = "645fc4adf58b72b649d5cae65135619db26ff143"; | ||
104 | }; | ||
105 | }; | ||
106 | "debug-3.1.0" = { | ||
107 | name = "debug"; | ||
108 | packageName = "debug"; | ||
109 | version = "3.1.0"; | ||
110 | src = fetchurl { | ||
111 | url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"; | ||
112 | sha512 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="; | ||
113 | }; | ||
114 | }; | ||
115 | "debug-4.1.1" = { | ||
116 | name = "debug"; | ||
117 | packageName = "debug"; | ||
118 | version = "4.1.1"; | ||
119 | src = fetchurl { | ||
120 | url = "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"; | ||
121 | sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; | ||
122 | }; | ||
123 | }; | ||
124 | "engine.io-client-3.4.1" = { | ||
125 | name = "engine.io-client"; | ||
126 | packageName = "engine.io-client"; | ||
127 | version = "3.4.1"; | ||
128 | src = fetchurl { | ||
129 | url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.4.1.tgz"; | ||
130 | sha512 = "RJNmA+A9Js+8Aoq815xpGAsgWH1VoSYM//2VgIiu9lNOaHFfLpTjH4tOzktBpjIs5lvOfiNY1dwf+NuU6D38Mw=="; | ||
131 | }; | ||
132 | }; | ||
133 | "engine.io-parser-2.2.0" = { | ||
134 | name = "engine.io-parser"; | ||
135 | packageName = "engine.io-parser"; | ||
136 | version = "2.2.0"; | ||
137 | src = fetchurl { | ||
138 | url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.2.0.tgz"; | ||
139 | sha512 = "6I3qD9iUxotsC5HEMuuGsKA0cXerGz+4uGcXQEkfBidgKf0amsjrrtwcbwK/nzpZBxclXlV7gGl9dgWvu4LF6w=="; | ||
140 | }; | ||
141 | }; | ||
142 | "formidable-1.2.2" = { | ||
143 | name = "formidable"; | ||
144 | packageName = "formidable"; | ||
145 | version = "1.2.2"; | ||
146 | src = fetchurl { | ||
147 | url = "https://registry.npmjs.org/formidable/-/formidable-1.2.2.tgz"; | ||
148 | sha512 = "V8gLm+41I/8kguQ4/o1D3RIHRmhYFG4pnNyonvua+40rqcEmT4+V71yaZ3B457xbbgCsCfjSPi65u/W6vK1U5Q=="; | ||
149 | }; | ||
150 | }; | ||
151 | "has-binary2-1.0.3" = { | ||
152 | name = "has-binary2"; | ||
153 | packageName = "has-binary2"; | ||
154 | version = "1.0.3"; | ||
155 | src = fetchurl { | ||
156 | url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz"; | ||
157 | sha512 = "G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw=="; | ||
158 | }; | ||
159 | }; | ||
160 | "has-cors-1.1.0" = { | ||
161 | name = "has-cors"; | ||
162 | packageName = "has-cors"; | ||
163 | version = "1.1.0"; | ||
164 | src = fetchurl { | ||
165 | url = "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz"; | ||
166 | sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; | ||
167 | }; | ||
168 | }; | ||
169 | "indexof-0.0.1" = { | ||
170 | name = "indexof"; | ||
171 | packageName = "indexof"; | ||
172 | version = "0.0.1"; | ||
173 | src = fetchurl { | ||
174 | url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"; | ||
175 | sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; | ||
176 | }; | ||
177 | }; | ||
178 | "isarray-2.0.1" = { | ||
179 | name = "isarray"; | ||
180 | packageName = "isarray"; | ||
181 | version = "2.0.1"; | ||
182 | src = fetchurl { | ||
183 | url = "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz"; | ||
184 | sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e"; | ||
185 | }; | ||
186 | }; | ||
187 | "ms-2.0.0" = { | ||
188 | name = "ms"; | ||
189 | packageName = "ms"; | ||
190 | version = "2.0.0"; | ||
191 | src = fetchurl { | ||
192 | url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; | ||
193 | sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; | ||
194 | }; | ||
195 | }; | ||
196 | "ms-2.1.2" = { | ||
197 | name = "ms"; | ||
198 | packageName = "ms"; | ||
199 | version = "2.1.2"; | ||
200 | src = fetchurl { | ||
201 | url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; | ||
202 | sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; | ||
203 | }; | ||
204 | }; | ||
205 | "object-component-0.0.3" = { | ||
206 | name = "object-component"; | ||
207 | packageName = "object-component"; | ||
208 | version = "0.0.3"; | ||
209 | src = fetchurl { | ||
210 | url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"; | ||
211 | sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291"; | ||
212 | }; | ||
213 | }; | ||
214 | "parseqs-0.0.5" = { | ||
215 | name = "parseqs"; | ||
216 | packageName = "parseqs"; | ||
217 | version = "0.0.5"; | ||
218 | src = fetchurl { | ||
219 | url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz"; | ||
220 | sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d"; | ||
221 | }; | ||
222 | }; | ||
223 | "parseuri-0.0.5" = { | ||
224 | name = "parseuri"; | ||
225 | packageName = "parseuri"; | ||
226 | version = "0.0.5"; | ||
227 | src = fetchurl { | ||
228 | url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz"; | ||
229 | sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a"; | ||
230 | }; | ||
231 | }; | ||
232 | "socket.io-client-2.3.0" = { | ||
233 | name = "socket.io-client"; | ||
234 | packageName = "socket.io-client"; | ||
235 | version = "2.3.0"; | ||
236 | src = fetchurl { | ||
237 | url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.3.0.tgz"; | ||
238 | sha512 = "cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA=="; | ||
239 | }; | ||
240 | }; | ||
241 | "socket.io-parser-3.3.0" = { | ||
242 | name = "socket.io-parser"; | ||
243 | packageName = "socket.io-parser"; | ||
244 | version = "3.3.0"; | ||
245 | src = fetchurl { | ||
246 | url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.0.tgz"; | ||
247 | sha512 = "hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng=="; | ||
248 | }; | ||
249 | }; | ||
250 | "to-array-0.1.4" = { | ||
251 | name = "to-array"; | ||
252 | packageName = "to-array"; | ||
253 | version = "0.1.4"; | ||
254 | src = fetchurl { | ||
255 | url = "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz"; | ||
256 | sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"; | ||
257 | }; | ||
258 | }; | ||
259 | "ws-6.1.4" = { | ||
260 | name = "ws"; | ||
261 | packageName = "ws"; | ||
262 | version = "6.1.4"; | ||
263 | src = fetchurl { | ||
264 | url = "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz"; | ||
265 | sha512 = "eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA=="; | ||
266 | }; | ||
267 | }; | ||
268 | "xmlhttprequest-ssl-1.5.5" = { | ||
269 | name = "xmlhttprequest-ssl"; | ||
270 | packageName = "xmlhttprequest-ssl"; | ||
271 | version = "1.5.5"; | ||
272 | src = fetchurl { | ||
273 | url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; | ||
274 | sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e"; | ||
275 | }; | ||
276 | }; | ||
277 | "yeast-0.1.2" = { | ||
278 | name = "yeast"; | ||
279 | packageName = "yeast"; | ||
280 | version = "0.1.2"; | ||
281 | src = fetchurl { | ||
282 | url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz"; | ||
283 | sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; | ||
284 | }; | ||
285 | }; | ||
286 | }; | ||
287 | in | ||
288 | { | ||
289 | ep_comments_page = nodeEnv.buildNodePackage { | ||
290 | name = "ep_comments_page"; | ||
291 | packageName = "ep_comments_page"; | ||
292 | version = "0.1.0"; | ||
293 | src = fetchurl { | ||
294 | url = "https://registry.npmjs.org/ep_comments_page/-/ep_comments_page-0.1.0.tgz"; | ||
295 | sha512 = "aHUfyR3HZ677wgL1hJEeaa1yIabW3PjaFXHhWnlEXdIDXL3WmgkGQ4Y1ccHp057EmquCwNb595HADQO+QUK/lw=="; | ||
296 | }; | ||
297 | dependencies = [ | ||
298 | sources."after-0.8.2" | ||
299 | sources."arraybuffer.slice-0.0.7" | ||
300 | sources."async-limiter-1.0.1" | ||
301 | sources."backo2-1.0.2" | ||
302 | sources."base64-arraybuffer-0.1.5" | ||
303 | sources."better-assert-1.0.2" | ||
304 | sources."blob-0.0.5" | ||
305 | sources."callsite-1.0.0" | ||
306 | sources."component-bind-1.0.0" | ||
307 | sources."component-emitter-1.2.1" | ||
308 | sources."component-inherit-0.0.3" | ||
309 | sources."debug-4.1.1" | ||
310 | sources."engine.io-client-3.4.1" | ||
311 | sources."engine.io-parser-2.2.0" | ||
312 | sources."formidable-1.2.2" | ||
313 | sources."has-binary2-1.0.3" | ||
314 | sources."has-cors-1.1.0" | ||
315 | sources."indexof-0.0.1" | ||
316 | sources."isarray-2.0.1" | ||
317 | sources."ms-2.1.2" | ||
318 | sources."object-component-0.0.3" | ||
319 | sources."parseqs-0.0.5" | ||
320 | sources."parseuri-0.0.5" | ||
321 | sources."socket.io-client-2.3.0" | ||
322 | (sources."socket.io-parser-3.3.0" // { | ||
323 | dependencies = [ | ||
324 | sources."debug-3.1.0" | ||
325 | sources."ms-2.0.0" | ||
326 | ]; | ||
327 | }) | ||
328 | sources."to-array-0.1.4" | ||
329 | sources."ws-6.1.4" | ||
330 | sources."xmlhttprequest-ssl-1.5.5" | ||
331 | sources."yeast-0.1.2" | ||
332 | ]; | ||
333 | buildInputs = globalBuildInputs; | ||
334 | meta = { | ||
335 | description = "Adds comments on sidebar and link it to the text. Support for Page View, requires ep_page_view"; | ||
336 | homepage = "https://github.com/ether/ep_comments#readme"; | ||
337 | }; | ||
338 | production = true; | ||
339 | bypassCache = true; | ||
340 | reconstructLock = true; | ||
341 | }; | ||
342 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_copy_paste_select_all/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_copy_paste_select_all/node-packages.json deleted file mode 100644 index f6da8df..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_copy_paste_select_all/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_copy_paste_select_all" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_copy_paste_select_all/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_copy_paste_select_all/node-packages.nix deleted file mode 100644 index 504bee2..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_copy_paste_select_all/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_copy_paste_select_all = nodeEnv.buildNodePackage { | ||
10 | name = "ep_copy_paste_select_all"; | ||
11 | packageName = "ep_copy_paste_select_all"; | ||
12 | version = "0.0.4"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_copy_paste_select_all/-/ep_copy_paste_select_all-0.0.4.tgz"; | ||
15 | sha1 = "41b89ece9da8e549a7ca4b11cdfa0a27344f21c8"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Add support to do Copy, Paste, Select All and Find and Replace, this plugin requires the file menu"; | ||
20 | homepage = https://github.com/ether/ep_copy_paste_select_all; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_cursortrace/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_cursortrace/node-packages.json deleted file mode 100644 index b409581..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_cursortrace/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_cursortrace" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_cursortrace/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_cursortrace/node-packages.nix deleted file mode 100644 index d8c1480..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_cursortrace/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_cursortrace = nodeEnv.buildNodePackage { | ||
10 | name = "ep_cursortrace"; | ||
11 | packageName = "ep_cursortrace"; | ||
12 | version = "2.0.15"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_cursortrace/-/ep_cursortrace-2.0.15.tgz"; | ||
15 | sha1 = "fa374f2d4be2708af998fbb407633c55d9031326"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Show cursor/caret movements of other users in real time"; | ||
20 | homepage = https://github.com/redhog/ep_cursortrace; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_delete_empty_pads/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_delete_empty_pads/node-packages.json deleted file mode 100644 index 8688afc..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_delete_empty_pads/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_delete_empty_pads" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_delete_empty_pads/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_delete_empty_pads/node-packages.nix deleted file mode 100644 index 8f3e9c0..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_delete_empty_pads/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_delete_empty_pads = nodeEnv.buildNodePackage { | ||
10 | name = "ep_delete_empty_pads"; | ||
11 | packageName = "ep_delete_empty_pads"; | ||
12 | version = "0.0.6"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_delete_empty_pads/-/ep_delete_empty_pads-0.0.6.tgz"; | ||
15 | sha512 = "ZpVKhWYUBAz5jWXT4Ldjraa5oAmOmOiSaNUSVOdVEG7DLeoNaTrjSQx0KZl4EjF1Qp/oUQwX69ryjY0assmdrw=="; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Delete pads which were never edited"; | ||
20 | license = "Apache-2.0"; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/fix.patch b/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/fix.patch deleted file mode 100644 index 162f1b0..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/fix.patch +++ /dev/null | |||
@@ -1,85 +0,0 @@ | |||
1 | diff --git a/ep.json b/ep.json | ||
2 | index 083d484..6803475 100644 | ||
3 | --- a/ep.json | ||
4 | +++ b/ep.json | ||
5 | @@ -5,6 +5,7 @@ | ||
6 | "hooks": { | ||
7 | "eejsBlock_editbarMenuLeft": "ep_embedmedia/hooks:eejsBlock_editbarMenuLeft", | ||
8 | "eejsBlock_scripts": "ep_embedmedia/hooks:eejsBlock_scripts", | ||
9 | + "eejsBlock_timesliderBody": "ep_embedmedia/hooks:eejsBlock_scripts", | ||
10 | "eejsBlock_styles": "ep_embedmedia/hooks:eejsBlock_styles", | ||
11 | "eejsBlock_body": "ep_embedmedia/hooks:eejsBlock_body" | ||
12 | }, | ||
13 | diff --git a/static/css/main.css b/static/css/main.css | ||
14 | index 72a460f..3b66d8e 100644 | ||
15 | --- a/static/css/main.css | ||
16 | +++ b/static/css/main.css | ||
17 | @@ -6,10 +6,18 @@ | ||
18 | z-index:999999; | ||
19 | } | ||
20 | |||
21 | +#embedMediaSrc { | ||
22 | + max-width: 100%; | ||
23 | +} | ||
24 | + | ||
25 | .embedMediaButton { | ||
26 | padding:10px; | ||
27 | } | ||
28 | |||
29 | +#doEmbedMedia{ | ||
30 | + color:blue; | ||
31 | +} | ||
32 | + | ||
33 | #cancelEmbedMedia{ | ||
34 | color:red; | ||
35 | } | ||
36 | @@ -19,6 +27,6 @@ | ||
37 | } | ||
38 | |||
39 | .buttonicon-embed-media:before{ | ||
40 | - content:"\e80b"; | ||
41 | + content:"\e83b"; | ||
42 | top: 2px !important; | ||
43 | } | ||
44 | diff --git a/static/js/main.js b/static/js/main.js | ||
45 | index 8c94767..19415d5 100644 | ||
46 | --- a/static/js/main.js | ||
47 | +++ b/static/js/main.js | ||
48 | @@ -10,22 +10,25 @@ $(document).ready(function () { | ||
49 | } else { | ||
50 | module.slideDown("fast"); | ||
51 | } | ||
52 | + module.toggleClass("popup-show"); | ||
53 | }); | ||
54 | |||
55 | $("#doEmbedMedia").click(function () { | ||
56 | var padeditor = require('ep_etherpad-lite/static/js/pad_editor').padeditor; | ||
57 | |||
58 | $("#embedMediaModal").slideUp("fast"); | ||
59 | + $("#embedMediaModal").removeClass("popup-show"); | ||
60 | |||
61 | return padeditor.ace.callWithAce(function (ace) { | ||
62 | - rep = ace.ace_getRep(); | ||
63 | + var rep = ace.ace_getRep(); | ||
64 | ace.ace_replaceRange(rep.selStart, rep.selEnd, "E"); | ||
65 | ace.ace_performSelectionChange([rep.selStart[0],rep.selStart[1]-1], rep.selStart, false); | ||
66 | - ace.ace_performDocumentApplyAttributesToRange(rep.selStart, rep.selEnd, [["embedMedia", escape($("#embedMediaSrc")[0].value)]]); | ||
67 | + ace.ace_performDocumentApplyAttributesToRange(rep.selStart, rep.selEnd, [["embedMedia", escape($("#embedMediaSrc")[0].value)]]); | ||
68 | }, "embedMedia"); | ||
69 | }); | ||
70 | |||
71 | $("#cancelEmbedMedia").click(function () { | ||
72 | $("#embedMediaModal").slideUp("fast"); | ||
73 | + $("#embedMediaModal").removeClass("popup-show"); | ||
74 | }); | ||
75 | }); | ||
76 | diff --git a/templates/modals.ejs b/templates/modals.ejs | ||
77 | index 9340698..8915a3b 100644 | ||
78 | --- a/templates/modals.ejs | ||
79 | +++ b/templates/modals.ejs | ||
80 | @@ -1,4 +1,4 @@ | ||
81 | -<div id="embedMediaModal" class="popup"> | ||
82 | +<div id="embedMediaModal" class="popup popup-content"> | ||
83 | <% e.begin_block("embedMediaPopup"); %> | ||
84 | <h1>Embed media into this pad</h1> | ||
85 | <p>Paste a link or "embed code" here:</p> | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/node-packages.json deleted file mode 100644 index e4961d3..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_embedmedia" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/node-packages.nix deleted file mode 100644 index 80ba484..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_embedmedia/node-packages.nix +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_embedmedia = nodeEnv.buildNodePackage { | ||
10 | name = "ep_embedmedia"; | ||
11 | packageName = "ep_embedmedia"; | ||
12 | version = "0.0.4"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_embedmedia/-/ep_embedmedia-0.0.4.tgz"; | ||
15 | sha1 = "b24bf0fe9702d21aa73079890e93183efc6a0975"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | preRebuild = '' | ||
19 | patch -p1 < ${./fix.patch} | ||
20 | ''; | ||
21 | meta = { | ||
22 | description = "Embed media (youtube, vimeo etc)"; | ||
23 | homepage = https://github.com/JohnMcLear/ep_embedmedia; | ||
24 | }; | ||
25 | production = true; | ||
26 | bypassCache = true; | ||
27 | reconstructLock = true; | ||
28 | }; | ||
29 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_font_family/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_font_family/node-packages.json deleted file mode 100644 index a719a45..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_font_family/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_font_family" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_font_family/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_font_family/node-packages.nix deleted file mode 100644 index c64f0cb..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_font_family/node-packages.nix +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_font_family = nodeEnv.buildNodePackage { | ||
10 | name = "ep_font_family"; | ||
11 | packageName = "ep_font_family"; | ||
12 | version = "0.2.7"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_font_family/-/ep_font_family-0.2.7.tgz"; | ||
15 | sha1 = "a31c06b1684c7fd65c1d5bf96bcf99b6faa79893"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Add support for different Fonts"; | ||
20 | homepage = https://github.com/JohnMcLear/ep_font_family; | ||
21 | license = "Apache-2.0"; | ||
22 | }; | ||
23 | production = true; | ||
24 | bypassCache = true; | ||
25 | reconstructLock = true; | ||
26 | }; | ||
27 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_font_size/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_font_size/node-packages.json deleted file mode 100644 index 472df3b..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_font_size/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_font_size" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_font_size/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_font_size/node-packages.nix deleted file mode 100644 index 06b69f9..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_font_size/node-packages.nix +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_font_size = nodeEnv.buildNodePackage { | ||
10 | name = "ep_font_size"; | ||
11 | packageName = "ep_font_size"; | ||
12 | version = "0.2.0"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_font_size/-/ep_font_size-0.2.0.tgz"; | ||
15 | sha512 = "63D+PoWgXY/DpqS3NGunFanIzCTF5js7rKD8R979b1daPRc/vI6To8HD69iknb5F3APC/G64g9BiRJIYNnIYmA=="; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Add support for Font Sizes"; | ||
20 | homepage = "https://github.com/JohnMcLear/ep_font_size#readme"; | ||
21 | license = "Apache-2.0"; | ||
22 | }; | ||
23 | production = true; | ||
24 | bypassCache = true; | ||
25 | reconstructLock = true; | ||
26 | }; | ||
27 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_headings2/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_headings2/node-packages.json deleted file mode 100644 index adbc268..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_headings2/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_headings2" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_headings2/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_headings2/node-packages.nix deleted file mode 100644 index ba6392c..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_headings2/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_headings2 = nodeEnv.buildNodePackage { | ||
10 | name = "ep_headings2"; | ||
11 | packageName = "ep_headings2"; | ||
12 | version = "0.1.1"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_headings2/-/ep_headings2-0.1.1.tgz"; | ||
15 | sha512 = "DcHRUMzTsTFbTNH4wY43HI7LJ1Xk85J4Lv54fI5pVTXjqkfOC3p5CHoTWwmrCP288i4aMOcDP9Xru5qv/41vqQ=="; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Adds heading support to Etherpad Lite. Includes improved suppot for export, i18n etc."; | ||
20 | homepage = https://github.com/johnmclear/ep_headings2; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/ep.json b/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/ep.json deleted file mode 100644 index 10db4ef..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/ep.json +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | { | ||
2 | "parts": [ | ||
3 | { | ||
4 | "name": "immae_buttons", | ||
5 | "hooks": { | ||
6 | "eejsBlock_editbarMenuLeft": "ep_immae_buttons/hooks:eejsBlock_editbarMenuLeft" | ||
7 | }, | ||
8 | "client_hooks": { | ||
9 | "postAceInit": "ep_immae_buttons/static/js/main:postAceInit" | ||
10 | } | ||
11 | } | ||
12 | ] | ||
13 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/hooks.js b/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/hooks.js deleted file mode 100644 index dcf7782..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/hooks.js +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | var eejs = require('ep_etherpad-lite/node/eejs/'); | ||
2 | |||
3 | exports.eejsBlock_editbarMenuLeft = function (hook_name, args, cb) { | ||
4 | args.content = args.content + eejs.require("ep_immae_buttons/templates/editbarButtons.ejs"); | ||
5 | return cb(); | ||
6 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/node-packages.nix deleted file mode 100644 index d7045df..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/node-packages.nix +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_immae_buttons = nodeEnv.buildNodePackage { | ||
10 | name = "ep_immae_buttons"; | ||
11 | packageName = "ep_immae_buttons"; | ||
12 | version = "0.1.0"; | ||
13 | src = ./.; | ||
14 | buildInputs = globalBuildInputs; | ||
15 | meta = { | ||
16 | description = "Additional buttons (replacing clear_formatting and copy_paste_select_all)"; | ||
17 | }; | ||
18 | production = true; | ||
19 | bypassCache = true; | ||
20 | reconstructLock = true; | ||
21 | }; | ||
22 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/package.json b/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/package.json deleted file mode 100644 index 39bb0a8..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/package.json +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | { | ||
2 | "name": "ep_immae_buttons", | ||
3 | "description": "Additional buttons (replacing clear_formatting and copy_paste_select_all)", | ||
4 | "version": "0.1.0", | ||
5 | "author": "Immae", | ||
6 | "contributors": [], | ||
7 | "dependencies": { }, | ||
8 | "repository" : { "type" : "git", "url" : "" }, | ||
9 | "engines": { "node": "*" } | ||
10 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/static/js/main.js b/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/static/js/main.js deleted file mode 100644 index 07f7b9c..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/static/js/main.js +++ /dev/null | |||
@@ -1,67 +0,0 @@ | |||
1 | exports.postAceInit = function(hook, context){ | ||
2 | $(document).ready(function () { | ||
3 | $('.clearFormatting').click(function(){ | ||
4 | context.ace.callWithAce(function(ace){ | ||
5 | |||
6 | var rep = ace.ace_getRep(); // get the current user selection | ||
7 | var isSelection = (rep.selStart[0] !== rep.selEnd[0] || rep.selStart[1] !== rep.selEnd[1]); | ||
8 | if(!isSelection) return false; // No point proceeding if no selection.. | ||
9 | |||
10 | var attrs = rep.apool.attribToNum; // get the attributes on this document | ||
11 | $.each(attrs, function(k, v){ // for each attribute | ||
12 | var attr = k.split(",")[0]; // get the name of the attribute | ||
13 | if(attr !== "author"){ // if its not an author attribute | ||
14 | ace.ace_setAttributeOnSelection(attr, false); // set the attribute to false | ||
15 | } | ||
16 | }); | ||
17 | },'clearFormatting' , true); | ||
18 | }); | ||
19 | |||
20 | $('.findAndReplace').click(function(){ | ||
21 | var from = prompt("Search for..."); | ||
22 | var to = prompt("Replace with..."); | ||
23 | var HTMLLines = $('iframe[name="ace_outer"]').contents().find('iframe').contents().find("#innerdocbody").children("div"); | ||
24 | $(HTMLLines).each(function(){ // For each line | ||
25 | findAndReplace(from, to, this); | ||
26 | }); | ||
27 | }); | ||
28 | |||
29 | }); | ||
30 | } | ||
31 | |||
32 | function findAndReplace(searchText, replacement, searchNode) { | ||
33 | if (!searchText || typeof replacement === 'undefined') { | ||
34 | // Throw error here if you want... | ||
35 | return; | ||
36 | } | ||
37 | var regex = typeof searchText === 'string' ? | ||
38 | new RegExp(searchText, 'gi') : searchText, | ||
39 | childNodes = (searchNode || document.body).childNodes, | ||
40 | cnLength = childNodes.length, | ||
41 | excludes = ["html","head","style","title","meta","script","object","iframe","link"]; | ||
42 | |||
43 | while (cnLength--) { | ||
44 | var currentNode = childNodes[cnLength]; | ||
45 | if (currentNode.nodeType === 1){ | ||
46 | if(excludes.indexOf(currentNode.nodeName.toLowerCase() === -1)){ | ||
47 | arguments.callee(searchText, replacement, currentNode); | ||
48 | } | ||
49 | } | ||
50 | if (currentNode.nodeType !== 3 || !regex.test(currentNode.data) ) { | ||
51 | continue; | ||
52 | } | ||
53 | var parent = currentNode.parentNode, | ||
54 | frag = (function(){ | ||
55 | var html = currentNode.data.replace(regex, replacement), | ||
56 | wrap = document.createElement('div'), | ||
57 | frag = document.createDocumentFragment(); | ||
58 | wrap.innerHTML = html; | ||
59 | while (wrap.firstChild) { | ||
60 | frag.appendChild(wrap.firstChild); | ||
61 | } | ||
62 | return frag; | ||
63 | })(); | ||
64 | parent.insertBefore(frag, currentNode); | ||
65 | parent.removeChild(currentNode); | ||
66 | } | ||
67 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/templates/editbarButtons.ejs b/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/templates/editbarButtons.ejs deleted file mode 100644 index 339ae3d..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_immae_buttons/templates/editbarButtons.ejs +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <li class="separator"></li> | ||
2 | <li class="clearFormatting"> | ||
3 | <a title="Clear Formatting"> | ||
4 | <span class="buttonicon buttonicon-clear-formatting">Clear</span> | ||
5 | </a> | ||
6 | </li> | ||
7 | <li class="separator"></li> | ||
8 | <li class="findAndReplace"> | ||
9 | <a title="Find and replace"> | ||
10 | <span class="buttonicon buttonicon-find-replace">Find</span> | ||
11 | </a> | ||
12 | </li> | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_ldapauth/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_ldapauth/node-packages.json deleted file mode 100644 index cacc12a..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_ldapauth/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_ldapauth" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_ldapauth/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_ldapauth/node-packages.nix deleted file mode 100644 index 8140187..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_ldapauth/node-packages.nix +++ /dev/null | |||
@@ -1,392 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = { | ||
7 | "asn1-0.2.3" = { | ||
8 | name = "asn1"; | ||
9 | packageName = "asn1"; | ||
10 | version = "0.2.3"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; | ||
13 | sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; | ||
14 | }; | ||
15 | }; | ||
16 | "assert-plus-0.1.5" = { | ||
17 | name = "assert-plus"; | ||
18 | packageName = "assert-plus"; | ||
19 | version = "0.1.5"; | ||
20 | src = fetchurl { | ||
21 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; | ||
22 | sha1 = "ee74009413002d84cec7219c6ac811812e723160"; | ||
23 | }; | ||
24 | }; | ||
25 | "assert-plus-1.0.0" = { | ||
26 | name = "assert-plus"; | ||
27 | packageName = "assert-plus"; | ||
28 | version = "1.0.0"; | ||
29 | src = fetchurl { | ||
30 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; | ||
31 | sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; | ||
32 | }; | ||
33 | }; | ||
34 | "async-stacktrace-0.0.2" = { | ||
35 | name = "async-stacktrace"; | ||
36 | packageName = "async-stacktrace"; | ||
37 | version = "0.0.2"; | ||
38 | src = fetchurl { | ||
39 | url = "https://registry.npmjs.org/async-stacktrace/-/async-stacktrace-0.0.2.tgz"; | ||
40 | sha1 = "8bbb9787e3b38c836c729a7e9d7c08630db5d1ef"; | ||
41 | }; | ||
42 | }; | ||
43 | "backoff-2.5.0" = { | ||
44 | name = "backoff"; | ||
45 | packageName = "backoff"; | ||
46 | version = "2.5.0"; | ||
47 | src = fetchurl { | ||
48 | url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz"; | ||
49 | sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; | ||
50 | }; | ||
51 | }; | ||
52 | "balanced-match-1.0.0" = { | ||
53 | name = "balanced-match"; | ||
54 | packageName = "balanced-match"; | ||
55 | version = "1.0.0"; | ||
56 | src = fetchurl { | ||
57 | url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; | ||
58 | sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; | ||
59 | }; | ||
60 | }; | ||
61 | "brace-expansion-1.1.11" = { | ||
62 | name = "brace-expansion"; | ||
63 | packageName = "brace-expansion"; | ||
64 | version = "1.1.11"; | ||
65 | src = fetchurl { | ||
66 | url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; | ||
67 | sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; | ||
68 | }; | ||
69 | }; | ||
70 | "bunyan-1.8.12" = { | ||
71 | name = "bunyan"; | ||
72 | packageName = "bunyan"; | ||
73 | version = "1.8.12"; | ||
74 | src = fetchurl { | ||
75 | url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz"; | ||
76 | sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797"; | ||
77 | }; | ||
78 | }; | ||
79 | "concat-map-0.0.1" = { | ||
80 | name = "concat-map"; | ||
81 | packageName = "concat-map"; | ||
82 | version = "0.0.1"; | ||
83 | src = fetchurl { | ||
84 | url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; | ||
85 | sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; | ||
86 | }; | ||
87 | }; | ||
88 | "core-util-is-1.0.2" = { | ||
89 | name = "core-util-is"; | ||
90 | packageName = "core-util-is"; | ||
91 | version = "1.0.2"; | ||
92 | src = fetchurl { | ||
93 | url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; | ||
94 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; | ||
95 | }; | ||
96 | }; | ||
97 | "dashdash-1.14.1" = { | ||
98 | name = "dashdash"; | ||
99 | packageName = "dashdash"; | ||
100 | version = "1.14.1"; | ||
101 | src = fetchurl { | ||
102 | url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; | ||
103 | sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; | ||
104 | }; | ||
105 | }; | ||
106 | "dtrace-provider-0.7.1" = { | ||
107 | name = "dtrace-provider"; | ||
108 | packageName = "dtrace-provider"; | ||
109 | version = "0.7.1"; | ||
110 | src = fetchurl { | ||
111 | url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.7.1.tgz"; | ||
112 | sha1 = "c06b308f2f10d5d5838aec9c571e5d588dc71d04"; | ||
113 | }; | ||
114 | }; | ||
115 | "dtrace-provider-0.8.8" = { | ||
116 | name = "dtrace-provider"; | ||
117 | packageName = "dtrace-provider"; | ||
118 | version = "0.8.8"; | ||
119 | src = fetchurl { | ||
120 | url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz"; | ||
121 | sha512 = "b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg=="; | ||
122 | }; | ||
123 | }; | ||
124 | "extsprintf-1.2.0" = { | ||
125 | name = "extsprintf"; | ||
126 | packageName = "extsprintf"; | ||
127 | version = "1.2.0"; | ||
128 | src = fetchurl { | ||
129 | url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz"; | ||
130 | sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; | ||
131 | }; | ||
132 | }; | ||
133 | "glob-6.0.4" = { | ||
134 | name = "glob"; | ||
135 | packageName = "glob"; | ||
136 | version = "6.0.4"; | ||
137 | src = fetchurl { | ||
138 | url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; | ||
139 | sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; | ||
140 | }; | ||
141 | }; | ||
142 | "inflight-1.0.6" = { | ||
143 | name = "inflight"; | ||
144 | packageName = "inflight"; | ||
145 | version = "1.0.6"; | ||
146 | src = fetchurl { | ||
147 | url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; | ||
148 | sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; | ||
149 | }; | ||
150 | }; | ||
151 | "inherits-2.0.4" = { | ||
152 | name = "inherits"; | ||
153 | packageName = "inherits"; | ||
154 | version = "2.0.4"; | ||
155 | src = fetchurl { | ||
156 | url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; | ||
157 | sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; | ||
158 | }; | ||
159 | }; | ||
160 | "ldap-filter-0.2.2" = { | ||
161 | name = "ldap-filter"; | ||
162 | packageName = "ldap-filter"; | ||
163 | version = "0.2.2"; | ||
164 | src = fetchurl { | ||
165 | url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.2.2.tgz"; | ||
166 | sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; | ||
167 | }; | ||
168 | }; | ||
169 | "ldapjs-1.0.1" = { | ||
170 | name = "ldapjs"; | ||
171 | packageName = "ldapjs"; | ||
172 | version = "1.0.1"; | ||
173 | src = fetchurl { | ||
174 | url = "https://registry.npmjs.org/ldapjs/-/ldapjs-1.0.1.tgz"; | ||
175 | sha1 = "352b812ae74b0a8e96549a4b896060eee1b9a546"; | ||
176 | }; | ||
177 | }; | ||
178 | "minimatch-3.0.4" = { | ||
179 | name = "minimatch"; | ||
180 | packageName = "minimatch"; | ||
181 | version = "3.0.4"; | ||
182 | src = fetchurl { | ||
183 | url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; | ||
184 | sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; | ||
185 | }; | ||
186 | }; | ||
187 | "minimist-1.2.5" = { | ||
188 | name = "minimist"; | ||
189 | packageName = "minimist"; | ||
190 | version = "1.2.5"; | ||
191 | src = fetchurl { | ||
192 | url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; | ||
193 | sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; | ||
194 | }; | ||
195 | }; | ||
196 | "mkdirp-0.5.5" = { | ||
197 | name = "mkdirp"; | ||
198 | packageName = "mkdirp"; | ||
199 | version = "0.5.5"; | ||
200 | src = fetchurl { | ||
201 | url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; | ||
202 | sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; | ||
203 | }; | ||
204 | }; | ||
205 | "moment-2.24.0" = { | ||
206 | name = "moment"; | ||
207 | packageName = "moment"; | ||
208 | version = "2.24.0"; | ||
209 | src = fetchurl { | ||
210 | url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz"; | ||
211 | sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; | ||
212 | }; | ||
213 | }; | ||
214 | "mv-2.1.1" = { | ||
215 | name = "mv"; | ||
216 | packageName = "mv"; | ||
217 | version = "2.1.1"; | ||
218 | src = fetchurl { | ||
219 | url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"; | ||
220 | sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; | ||
221 | }; | ||
222 | }; | ||
223 | "nan-2.14.1" = { | ||
224 | name = "nan"; | ||
225 | packageName = "nan"; | ||
226 | version = "2.14.1"; | ||
227 | src = fetchurl { | ||
228 | url = "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz"; | ||
229 | sha512 = "isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw=="; | ||
230 | }; | ||
231 | }; | ||
232 | "ncp-2.0.0" = { | ||
233 | name = "ncp"; | ||
234 | packageName = "ncp"; | ||
235 | version = "2.0.0"; | ||
236 | src = fetchurl { | ||
237 | url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; | ||
238 | sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; | ||
239 | }; | ||
240 | }; | ||
241 | "once-1.4.0" = { | ||
242 | name = "once"; | ||
243 | packageName = "once"; | ||
244 | version = "1.4.0"; | ||
245 | src = fetchurl { | ||
246 | url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; | ||
247 | sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; | ||
248 | }; | ||
249 | }; | ||
250 | "path-is-absolute-1.0.1" = { | ||
251 | name = "path-is-absolute"; | ||
252 | packageName = "path-is-absolute"; | ||
253 | version = "1.0.1"; | ||
254 | src = fetchurl { | ||
255 | url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; | ||
256 | sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; | ||
257 | }; | ||
258 | }; | ||
259 | "precond-0.2.3" = { | ||
260 | name = "precond"; | ||
261 | packageName = "precond"; | ||
262 | version = "0.2.3"; | ||
263 | src = fetchurl { | ||
264 | url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz"; | ||
265 | sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; | ||
266 | }; | ||
267 | }; | ||
268 | "rimraf-2.4.5" = { | ||
269 | name = "rimraf"; | ||
270 | packageName = "rimraf"; | ||
271 | version = "2.4.5"; | ||
272 | src = fetchurl { | ||
273 | url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; | ||
274 | sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; | ||
275 | }; | ||
276 | }; | ||
277 | "safe-json-stringify-1.2.0" = { | ||
278 | name = "safe-json-stringify"; | ||
279 | packageName = "safe-json-stringify"; | ||
280 | version = "1.2.0"; | ||
281 | src = fetchurl { | ||
282 | url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; | ||
283 | sha512 = "gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg=="; | ||
284 | }; | ||
285 | }; | ||
286 | "vasync-1.6.4" = { | ||
287 | name = "vasync"; | ||
288 | packageName = "vasync"; | ||
289 | version = "1.6.4"; | ||
290 | src = fetchurl { | ||
291 | url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; | ||
292 | sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; | ||
293 | }; | ||
294 | }; | ||
295 | "verror-1.10.0" = { | ||
296 | name = "verror"; | ||
297 | packageName = "verror"; | ||
298 | version = "1.10.0"; | ||
299 | src = fetchurl { | ||
300 | url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; | ||
301 | sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; | ||
302 | }; | ||
303 | }; | ||
304 | "verror-1.6.0" = { | ||
305 | name = "verror"; | ||
306 | packageName = "verror"; | ||
307 | version = "1.6.0"; | ||
308 | src = fetchurl { | ||
309 | url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; | ||
310 | sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; | ||
311 | }; | ||
312 | }; | ||
313 | "wrappy-1.0.2" = { | ||
314 | name = "wrappy"; | ||
315 | packageName = "wrappy"; | ||
316 | version = "1.0.2"; | ||
317 | src = fetchurl { | ||
318 | url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; | ||
319 | sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; | ||
320 | }; | ||
321 | }; | ||
322 | }; | ||
323 | in | ||
324 | { | ||
325 | ep_ldapauth = nodeEnv.buildNodePackage { | ||
326 | name = "ep_ldapauth"; | ||
327 | packageName = "ep_ldapauth"; | ||
328 | version = "0.3.0"; | ||
329 | src = fetchurl { | ||
330 | url = "https://registry.npmjs.org/ep_ldapauth/-/ep_ldapauth-0.3.0.tgz"; | ||
331 | sha1 = "8b34ea34b20ae97d53d753cc7d1f6f191800e3b0"; | ||
332 | }; | ||
333 | preRebuild = '' | ||
334 | sed -i -e 's/context.message.data.type == "USERINFO_UPDATE"/context.message.data.type == "USERINFO_UPDATE" \&\& context.req \&\& context.req.session \&\& typeof(context.req.session.user) !== "undefined"/g' ep_ldapauth.js | ||
335 | ''; | ||
336 | dependencies = [ | ||
337 | sources."asn1-0.2.3" | ||
338 | sources."assert-plus-1.0.0" | ||
339 | sources."async-stacktrace-0.0.2" | ||
340 | sources."backoff-2.5.0" | ||
341 | sources."balanced-match-1.0.0" | ||
342 | sources."brace-expansion-1.1.11" | ||
343 | (sources."bunyan-1.8.12" // { | ||
344 | dependencies = [ | ||
345 | sources."dtrace-provider-0.8.8" | ||
346 | ]; | ||
347 | }) | ||
348 | sources."concat-map-0.0.1" | ||
349 | sources."core-util-is-1.0.2" | ||
350 | sources."dashdash-1.14.1" | ||
351 | sources."dtrace-provider-0.7.1" | ||
352 | sources."extsprintf-1.2.0" | ||
353 | sources."glob-6.0.4" | ||
354 | sources."inflight-1.0.6" | ||
355 | sources."inherits-2.0.4" | ||
356 | (sources."ldap-filter-0.2.2" // { | ||
357 | dependencies = [ | ||
358 | sources."assert-plus-0.1.5" | ||
359 | ]; | ||
360 | }) | ||
361 | sources."ldapjs-1.0.1" | ||
362 | sources."minimatch-3.0.4" | ||
363 | sources."minimist-1.2.5" | ||
364 | sources."mkdirp-0.5.5" | ||
365 | sources."moment-2.24.0" | ||
366 | sources."mv-2.1.1" | ||
367 | sources."nan-2.14.1" | ||
368 | sources."ncp-2.0.0" | ||
369 | sources."once-1.4.0" | ||
370 | sources."path-is-absolute-1.0.1" | ||
371 | sources."precond-0.2.3" | ||
372 | sources."rimraf-2.4.5" | ||
373 | sources."safe-json-stringify-1.2.0" | ||
374 | (sources."vasync-1.6.4" // { | ||
375 | dependencies = [ | ||
376 | sources."verror-1.6.0" | ||
377 | ]; | ||
378 | }) | ||
379 | sources."verror-1.10.0" | ||
380 | sources."wrappy-1.0.2" | ||
381 | ]; | ||
382 | buildInputs = globalBuildInputs; | ||
383 | meta = { | ||
384 | description = "Hooks into etherpad lite auth to provide LDAP authentication."; | ||
385 | homepage = "https://github.com/tykeal/ep_ldapauth#readme"; | ||
386 | license = "GPL-2.0"; | ||
387 | }; | ||
388 | production = true; | ||
389 | bypassCache = true; | ||
390 | reconstructLock = true; | ||
391 | }; | ||
392 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_line_height/fix.patch b/pkgs/webapps/etherpad-lite/modules/ep_line_height/fix.patch deleted file mode 100644 index ffd65f1..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_line_height/fix.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | diff --git a/static/js/index.js b/static/js/index.js | ||
2 | index 1884571..c0490bf 100644 | ||
3 | --- a/static/js/index.js | ||
4 | +++ b/static/js/index.js | ||
5 | @@ -23,9 +23,6 @@ var postAceInit = function(hook, context){ | ||
6 | $('.line-height-menu').hover(function(){ | ||
7 | $('.submenu > .height-selection').attr('size', 4); | ||
8 | }); | ||
9 | - $('.line-height').click(function(){ | ||
10 | - $('.line-height-select').toggle(); | ||
11 | - }); | ||
12 | }; | ||
13 | |||
14 | exports.aceGetFilterStack = function(name, context){ | ||
15 | diff --git a/templates/editbarButtons.ejs b/templates/editbarButtons.ejs | ||
16 | index 89a8aaa..8af258b 100644 | ||
17 | --- a/templates/editbarButtons.ejs | ||
18 | +++ b/templates/editbarButtons.ejs | ||
19 | @@ -1,10 +1,5 @@ | ||
20 | <li class="separator acl-write"></li> | ||
21 | -<li class="acl-write line-height"> | ||
22 | - <a title="line height"> | ||
23 | - <span class="buttonicon" style="background-image:url('../static/plugins/ep_line_height/static/img/icon.png');"></span> | ||
24 | - </a> | ||
25 | -</li> | ||
26 | -<li class="line-height-select" class="acl-write" style="display:none;"> | ||
27 | +<li class="line-height-select" class="acl-write"> | ||
28 | <select class="height-selection"> | ||
29 | <option value="dummy" selected data-l10n-id="ep_line_height.height">Line Height</option> | ||
30 | <option value="1">1x</option> | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_line_height/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_line_height/node-packages.json deleted file mode 100644 index 307c2e7..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_line_height/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_line_height" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_line_height/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_line_height/node-packages.nix deleted file mode 100644 index d5d5c21..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_line_height/node-packages.nix +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_line_height = nodeEnv.buildNodePackage { | ||
10 | name = "ep_line_height"; | ||
11 | packageName = "ep_line_height"; | ||
12 | version = "0.0.4"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_line_height/-/ep_line_height-0.0.4.tgz"; | ||
15 | sha1 = "8afbb441e6d65db97d2335887f9352b10b5d22d2"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | preRebuild = '' | ||
19 | patch -p1 < ${./fix.patch} | ||
20 | ''; | ||
21 | meta = { | ||
22 | description = "Change the line height"; | ||
23 | }; | ||
24 | production = true; | ||
25 | bypassCache = true; | ||
26 | reconstructLock = true; | ||
27 | }; | ||
28 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_markdown/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_markdown/node-packages.json deleted file mode 100644 index 1c5526c..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_markdown/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_markdown" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_markdown/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_markdown/node-packages.nix deleted file mode 100644 index eb7a43e..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_markdown/node-packages.nix +++ /dev/null | |||
@@ -1,300 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = { | ||
7 | "ansi-regex-4.1.0" = { | ||
8 | name = "ansi-regex"; | ||
9 | packageName = "ansi-regex"; | ||
10 | version = "4.1.0"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; | ||
13 | sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; | ||
14 | }; | ||
15 | }; | ||
16 | "ansi-styles-3.2.1" = { | ||
17 | name = "ansi-styles"; | ||
18 | packageName = "ansi-styles"; | ||
19 | version = "3.2.1"; | ||
20 | src = fetchurl { | ||
21 | url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; | ||
22 | sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; | ||
23 | }; | ||
24 | }; | ||
25 | "camelcase-5.3.1" = { | ||
26 | name = "camelcase"; | ||
27 | packageName = "camelcase"; | ||
28 | version = "5.3.1"; | ||
29 | src = fetchurl { | ||
30 | url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; | ||
31 | sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; | ||
32 | }; | ||
33 | }; | ||
34 | "cliui-5.0.0" = { | ||
35 | name = "cliui"; | ||
36 | packageName = "cliui"; | ||
37 | version = "5.0.0"; | ||
38 | src = fetchurl { | ||
39 | url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"; | ||
40 | sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="; | ||
41 | }; | ||
42 | }; | ||
43 | "color-convert-1.9.3" = { | ||
44 | name = "color-convert"; | ||
45 | packageName = "color-convert"; | ||
46 | version = "1.9.3"; | ||
47 | src = fetchurl { | ||
48 | url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; | ||
49 | sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; | ||
50 | }; | ||
51 | }; | ||
52 | "color-name-1.1.3" = { | ||
53 | name = "color-name"; | ||
54 | packageName = "color-name"; | ||
55 | version = "1.1.3"; | ||
56 | src = fetchurl { | ||
57 | url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; | ||
58 | sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; | ||
59 | }; | ||
60 | }; | ||
61 | "decamelize-1.2.0" = { | ||
62 | name = "decamelize"; | ||
63 | packageName = "decamelize"; | ||
64 | version = "1.2.0"; | ||
65 | src = fetchurl { | ||
66 | url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; | ||
67 | sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; | ||
68 | }; | ||
69 | }; | ||
70 | "emoji-regex-7.0.3" = { | ||
71 | name = "emoji-regex"; | ||
72 | packageName = "emoji-regex"; | ||
73 | version = "7.0.3"; | ||
74 | src = fetchurl { | ||
75 | url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; | ||
76 | sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; | ||
77 | }; | ||
78 | }; | ||
79 | "find-up-3.0.0" = { | ||
80 | name = "find-up"; | ||
81 | packageName = "find-up"; | ||
82 | version = "3.0.0"; | ||
83 | src = fetchurl { | ||
84 | url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"; | ||
85 | sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; | ||
86 | }; | ||
87 | }; | ||
88 | "get-caller-file-2.0.5" = { | ||
89 | name = "get-caller-file"; | ||
90 | packageName = "get-caller-file"; | ||
91 | version = "2.0.5"; | ||
92 | src = fetchurl { | ||
93 | url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; | ||
94 | sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; | ||
95 | }; | ||
96 | }; | ||
97 | "is-fullwidth-code-point-2.0.0" = { | ||
98 | name = "is-fullwidth-code-point"; | ||
99 | packageName = "is-fullwidth-code-point"; | ||
100 | version = "2.0.0"; | ||
101 | src = fetchurl { | ||
102 | url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; | ||
103 | sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; | ||
104 | }; | ||
105 | }; | ||
106 | "locate-path-3.0.0" = { | ||
107 | name = "locate-path"; | ||
108 | packageName = "locate-path"; | ||
109 | version = "3.0.0"; | ||
110 | src = fetchurl { | ||
111 | url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"; | ||
112 | sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; | ||
113 | }; | ||
114 | }; | ||
115 | "p-limit-2.3.0" = { | ||
116 | name = "p-limit"; | ||
117 | packageName = "p-limit"; | ||
118 | version = "2.3.0"; | ||
119 | src = fetchurl { | ||
120 | url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"; | ||
121 | sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; | ||
122 | }; | ||
123 | }; | ||
124 | "p-locate-3.0.0" = { | ||
125 | name = "p-locate"; | ||
126 | packageName = "p-locate"; | ||
127 | version = "3.0.0"; | ||
128 | src = fetchurl { | ||
129 | url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"; | ||
130 | sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; | ||
131 | }; | ||
132 | }; | ||
133 | "p-try-2.2.0" = { | ||
134 | name = "p-try"; | ||
135 | packageName = "p-try"; | ||
136 | version = "2.2.0"; | ||
137 | src = fetchurl { | ||
138 | url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; | ||
139 | sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; | ||
140 | }; | ||
141 | }; | ||
142 | "path-exists-3.0.0" = { | ||
143 | name = "path-exists"; | ||
144 | packageName = "path-exists"; | ||
145 | version = "3.0.0"; | ||
146 | src = fetchurl { | ||
147 | url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; | ||
148 | sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; | ||
149 | }; | ||
150 | }; | ||
151 | "require-directory-2.1.1" = { | ||
152 | name = "require-directory"; | ||
153 | packageName = "require-directory"; | ||
154 | version = "2.1.1"; | ||
155 | src = fetchurl { | ||
156 | url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; | ||
157 | sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; | ||
158 | }; | ||
159 | }; | ||
160 | "require-main-filename-2.0.0" = { | ||
161 | name = "require-main-filename"; | ||
162 | packageName = "require-main-filename"; | ||
163 | version = "2.0.0"; | ||
164 | src = fetchurl { | ||
165 | url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"; | ||
166 | sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; | ||
167 | }; | ||
168 | }; | ||
169 | "set-blocking-2.0.0" = { | ||
170 | name = "set-blocking"; | ||
171 | packageName = "set-blocking"; | ||
172 | version = "2.0.0"; | ||
173 | src = fetchurl { | ||
174 | url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; | ||
175 | sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; | ||
176 | }; | ||
177 | }; | ||
178 | "showdown-1.9.1" = { | ||
179 | name = "showdown"; | ||
180 | packageName = "showdown"; | ||
181 | version = "1.9.1"; | ||
182 | src = fetchurl { | ||
183 | url = "https://registry.npmjs.org/showdown/-/showdown-1.9.1.tgz"; | ||
184 | sha512 = "9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA=="; | ||
185 | }; | ||
186 | }; | ||
187 | "string-width-3.1.0" = { | ||
188 | name = "string-width"; | ||
189 | packageName = "string-width"; | ||
190 | version = "3.1.0"; | ||
191 | src = fetchurl { | ||
192 | url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; | ||
193 | sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; | ||
194 | }; | ||
195 | }; | ||
196 | "strip-ansi-5.2.0" = { | ||
197 | name = "strip-ansi"; | ||
198 | packageName = "strip-ansi"; | ||
199 | version = "5.2.0"; | ||
200 | src = fetchurl { | ||
201 | url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; | ||
202 | sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; | ||
203 | }; | ||
204 | }; | ||
205 | "which-module-2.0.0" = { | ||
206 | name = "which-module"; | ||
207 | packageName = "which-module"; | ||
208 | version = "2.0.0"; | ||
209 | src = fetchurl { | ||
210 | url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; | ||
211 | sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; | ||
212 | }; | ||
213 | }; | ||
214 | "wrap-ansi-5.1.0" = { | ||
215 | name = "wrap-ansi"; | ||
216 | packageName = "wrap-ansi"; | ||
217 | version = "5.1.0"; | ||
218 | src = fetchurl { | ||
219 | url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz"; | ||
220 | sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q=="; | ||
221 | }; | ||
222 | }; | ||
223 | "y18n-4.0.0" = { | ||
224 | name = "y18n"; | ||
225 | packageName = "y18n"; | ||
226 | version = "4.0.0"; | ||
227 | src = fetchurl { | ||
228 | url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"; | ||
229 | sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="; | ||
230 | }; | ||
231 | }; | ||
232 | "yargs-14.2.3" = { | ||
233 | name = "yargs"; | ||
234 | packageName = "yargs"; | ||
235 | version = "14.2.3"; | ||
236 | src = fetchurl { | ||
237 | url = "https://registry.npmjs.org/yargs/-/yargs-14.2.3.tgz"; | ||
238 | sha512 = "ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg=="; | ||
239 | }; | ||
240 | }; | ||
241 | "yargs-parser-15.0.1" = { | ||
242 | name = "yargs-parser"; | ||
243 | packageName = "yargs-parser"; | ||
244 | version = "15.0.1"; | ||
245 | src = fetchurl { | ||
246 | url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.1.tgz"; | ||
247 | sha512 = "0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw=="; | ||
248 | }; | ||
249 | }; | ||
250 | }; | ||
251 | in | ||
252 | { | ||
253 | ep_markdown = nodeEnv.buildNodePackage { | ||
254 | name = "ep_markdown"; | ||
255 | packageName = "ep_markdown"; | ||
256 | version = "0.1.7"; | ||
257 | src = fetchurl { | ||
258 | url = "https://registry.npmjs.org/ep_markdown/-/ep_markdown-0.1.7.tgz"; | ||
259 | sha512 = "PQMFqP9P1jUEMFpwwysWaHdYzzcQIQjT/JlDRmOgfh4mloJm8honOJHnofxbqx1mxApKAW3rnEQA2t0zH8wi2w=="; | ||
260 | }; | ||
261 | dependencies = [ | ||
262 | sources."ansi-regex-4.1.0" | ||
263 | sources."ansi-styles-3.2.1" | ||
264 | sources."camelcase-5.3.1" | ||
265 | sources."cliui-5.0.0" | ||
266 | sources."color-convert-1.9.3" | ||
267 | sources."color-name-1.1.3" | ||
268 | sources."decamelize-1.2.0" | ||
269 | sources."emoji-regex-7.0.3" | ||
270 | sources."find-up-3.0.0" | ||
271 | sources."get-caller-file-2.0.5" | ||
272 | sources."is-fullwidth-code-point-2.0.0" | ||
273 | sources."locate-path-3.0.0" | ||
274 | sources."p-limit-2.3.0" | ||
275 | sources."p-locate-3.0.0" | ||
276 | sources."p-try-2.2.0" | ||
277 | sources."path-exists-3.0.0" | ||
278 | sources."require-directory-2.1.1" | ||
279 | sources."require-main-filename-2.0.0" | ||
280 | sources."set-blocking-2.0.0" | ||
281 | sources."showdown-1.9.1" | ||
282 | sources."string-width-3.1.0" | ||
283 | sources."strip-ansi-5.2.0" | ||
284 | sources."which-module-2.0.0" | ||
285 | sources."wrap-ansi-5.1.0" | ||
286 | sources."y18n-4.0.0" | ||
287 | sources."yargs-14.2.3" | ||
288 | sources."yargs-parser-15.0.1" | ||
289 | ]; | ||
290 | buildInputs = globalBuildInputs; | ||
291 | meta = { | ||
292 | description = "Edit and Export as Markdown in Etherpad"; | ||
293 | homepage = "https://github.com/johnmclear/ep_markdown#readme"; | ||
294 | license = "Apache-2.0"; | ||
295 | }; | ||
296 | production = true; | ||
297 | bypassCache = true; | ||
298 | reconstructLock = true; | ||
299 | }; | ||
300 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_mypads/fix_ldap.patch b/pkgs/webapps/etherpad-lite/modules/ep_mypads/fix_ldap.patch deleted file mode 100644 index 6ade6cb..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_mypads/fix_ldap.patch +++ /dev/null | |||
@@ -1,59 +0,0 @@ | |||
1 | diff --git a/auth.js b/auth.js | ||
2 | index ce77ee4..235d8e6 100644 | ||
3 | --- a/auth.js | ||
4 | +++ b/auth.js | ||
5 | @@ -91,6 +91,7 @@ var cuid = require('cuid'); | ||
6 | var common = require('./model/common.js'); | ||
7 | var user = require('./model/user.js'); | ||
8 | var conf = require('./configuration.js'); | ||
9 | +var utils = require('./utils.js'); | ||
10 | |||
11 | var NOT_INTERNAL_AUTH_PWD = 'soooooo_useless'; | ||
12 | |||
13 | @@ -232,21 +233,21 @@ module.exports = (function () { | ||
14 | // We have to create the user in mypads database | ||
15 | ldapConf = conf.get('authLdapSettings'); | ||
16 | user.set({ | ||
17 | - login: ldapuser[props.login], | ||
18 | + login: utils.getSingleton(ldapuser[props.login]), | ||
19 | password: NOT_INTERNAL_AUTH_PWD, | ||
20 | - firstname: ldapuser[props.firstname], | ||
21 | - lastname: ldapuser[props.lastname], | ||
22 | + firstname: utils.getSingleton(ldapuser[props.firstname]), | ||
23 | + lastname: utils.getSingleton(ldapuser[props.lastname]), | ||
24 | email: mail, | ||
25 | lang: ldapConf.defaultLang || 'en' | ||
26 | }, callback); | ||
27 | } else if (u.email !== mail || | ||
28 | - u.firstname !== ldapuser[props.firstname] || | ||
29 | - u.lastname !== ldapuser[props.lastname]) { | ||
30 | + u.firstname !== utils.getSingleton(ldapuser[props.firstname]) || | ||
31 | + u.lastname !== utils.getSingleton(ldapuser[props.lastname])) { | ||
32 | // Update database and cache informations if needed | ||
33 | // (i.e. update from LDAP) | ||
34 | u.email = mail; | ||
35 | - u.firstname = ldapuser[props.firstname]; | ||
36 | - u.lastname = ldapuser[props.lastname]; | ||
37 | + u.firstname = utils.getSingleton(ldapuser[props.firstname]); | ||
38 | + u.lastname = utils.getSingleton(ldapuser[props.lastname]); | ||
39 | u.password = NOT_INTERNAL_AUTH_PWD; | ||
40 | user.set(u, callback); | ||
41 | } else { | ||
42 | diff --git a/utils.js b/utils.js | ||
43 | index 32c2727..d381d06 100644 | ||
44 | --- a/utils.js | ||
45 | +++ b/utils.js | ||
46 | @@ -14,3 +14,13 @@ exports.callbackify2 = function (fun) { | ||
47 | return wrapPromise(fun(arg1, arg2), cb); | ||
48 | }; | ||
49 | }; | ||
50 | + | ||
51 | +exports.getSingleton = function (stringOrArray) { | ||
52 | + if (Array.isArray(stringOrArray)) { | ||
53 | + if (stringOrArray.length > 0) { | ||
54 | + return stringOrArray[0]; | ||
55 | + } | ||
56 | + } else if (stringOrArray) { | ||
57 | + return stringOrArray; | ||
58 | + } | ||
59 | +} | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_mypads/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_mypads/node-packages.json deleted file mode 100644 index 36b70bd..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_mypads/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | ["ep_mypads"] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_mypads/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_mypads/node-packages.nix deleted file mode 100644 index 13b302c..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_mypads/node-packages.nix +++ /dev/null | |||
@@ -1,2156 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = { | ||
7 | "@types/ldapjs-1.0.7" = { | ||
8 | name = "_at_types_slash_ldapjs"; | ||
9 | packageName = "@types/ldapjs"; | ||
10 | version = "1.0.7"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/@types/ldapjs/-/ldapjs-1.0.7.tgz"; | ||
13 | sha512 = "Cacc0pQ6fw8+J5Qwebbj2+YpYANOl09WEDjJsNyPHpNSza318mUIuAhgXDfC8kXDViymlEQIvgbvuPKovRIVEQ=="; | ||
14 | }; | ||
15 | }; | ||
16 | "@types/node-13.13.4" = { | ||
17 | name = "_at_types_slash_node"; | ||
18 | packageName = "@types/node"; | ||
19 | version = "13.13.4"; | ||
20 | src = fetchurl { | ||
21 | url = "https://registry.npmjs.org/@types/node/-/node-13.13.4.tgz"; | ||
22 | sha512 = "x26ur3dSXgv5AwKS0lNfbjpCakGIduWU1DU91Zz58ONRWrIKGunmZBNv4P7N+e27sJkiGDsw/3fT4AtsqQBrBA=="; | ||
23 | }; | ||
24 | }; | ||
25 | "abstract-logging-1.0.0" = { | ||
26 | name = "abstract-logging"; | ||
27 | packageName = "abstract-logging"; | ||
28 | version = "1.0.0"; | ||
29 | src = fetchurl { | ||
30 | url = "https://registry.npmjs.org/abstract-logging/-/abstract-logging-1.0.0.tgz"; | ||
31 | sha1 = "8b7deafd310559bc28f77724dd1bb30177278c1b"; | ||
32 | }; | ||
33 | }; | ||
34 | "addressparser-0.2.1" = { | ||
35 | name = "addressparser"; | ||
36 | packageName = "addressparser"; | ||
37 | version = "0.2.1"; | ||
38 | src = fetchurl { | ||
39 | url = "https://registry.npmjs.org/addressparser/-/addressparser-0.2.1.tgz"; | ||
40 | sha1 = "d11a5b2eeda04cfefebdf3196c10ae13db6cd607"; | ||
41 | }; | ||
42 | }; | ||
43 | "addressparser-0.3.2" = { | ||
44 | name = "addressparser"; | ||
45 | packageName = "addressparser"; | ||
46 | version = "0.3.2"; | ||
47 | src = fetchurl { | ||
48 | url = "https://registry.npmjs.org/addressparser/-/addressparser-0.3.2.tgz"; | ||
49 | sha1 = "59873f35e8fcf6c7361c10239261d76e15348bb2"; | ||
50 | }; | ||
51 | }; | ||
52 | "ajv-6.12.2" = { | ||
53 | name = "ajv"; | ||
54 | packageName = "ajv"; | ||
55 | version = "6.12.2"; | ||
56 | src = fetchurl { | ||
57 | url = "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz"; | ||
58 | sha512 = "k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ=="; | ||
59 | }; | ||
60 | }; | ||
61 | "ansi-regex-2.1.1" = { | ||
62 | name = "ansi-regex"; | ||
63 | packageName = "ansi-regex"; | ||
64 | version = "2.1.1"; | ||
65 | src = fetchurl { | ||
66 | url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; | ||
67 | sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; | ||
68 | }; | ||
69 | }; | ||
70 | "ansi-regex-3.0.0" = { | ||
71 | name = "ansi-regex"; | ||
72 | packageName = "ansi-regex"; | ||
73 | version = "3.0.0"; | ||
74 | src = fetchurl { | ||
75 | url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; | ||
76 | sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; | ||
77 | }; | ||
78 | }; | ||
79 | "ansi-styles-2.2.1" = { | ||
80 | name = "ansi-styles"; | ||
81 | packageName = "ansi-styles"; | ||
82 | version = "2.2.1"; | ||
83 | src = fetchurl { | ||
84 | url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; | ||
85 | sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; | ||
86 | }; | ||
87 | }; | ||
88 | "asap-2.0.6" = { | ||
89 | name = "asap"; | ||
90 | packageName = "asap"; | ||
91 | version = "2.0.6"; | ||
92 | src = fetchurl { | ||
93 | url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"; | ||
94 | sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; | ||
95 | }; | ||
96 | }; | ||
97 | "asn1-0.2.3" = { | ||
98 | name = "asn1"; | ||
99 | packageName = "asn1"; | ||
100 | version = "0.2.3"; | ||
101 | src = fetchurl { | ||
102 | url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; | ||
103 | sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; | ||
104 | }; | ||
105 | }; | ||
106 | "assert-plus-0.1.5" = { | ||
107 | name = "assert-plus"; | ||
108 | packageName = "assert-plus"; | ||
109 | version = "0.1.5"; | ||
110 | src = fetchurl { | ||
111 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; | ||
112 | sha1 = "ee74009413002d84cec7219c6ac811812e723160"; | ||
113 | }; | ||
114 | }; | ||
115 | "assert-plus-1.0.0" = { | ||
116 | name = "assert-plus"; | ||
117 | packageName = "assert-plus"; | ||
118 | version = "1.0.0"; | ||
119 | src = fetchurl { | ||
120 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; | ||
121 | sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; | ||
122 | }; | ||
123 | }; | ||
124 | "async-0.1.15" = { | ||
125 | name = "async"; | ||
126 | packageName = "async"; | ||
127 | version = "0.1.15"; | ||
128 | src = fetchurl { | ||
129 | url = "https://registry.npmjs.org/async/-/async-0.1.15.tgz"; | ||
130 | sha1 = "2180eaca2cf2a6ca5280d41c0585bec9b3e49bd3"; | ||
131 | }; | ||
132 | }; | ||
133 | "async-0.9.2" = { | ||
134 | name = "async"; | ||
135 | packageName = "async"; | ||
136 | version = "0.9.2"; | ||
137 | src = fetchurl { | ||
138 | url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz"; | ||
139 | sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; | ||
140 | }; | ||
141 | }; | ||
142 | "async-2.6.3" = { | ||
143 | name = "async"; | ||
144 | packageName = "async"; | ||
145 | version = "2.6.3"; | ||
146 | src = fetchurl { | ||
147 | url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; | ||
148 | sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; | ||
149 | }; | ||
150 | }; | ||
151 | "asynckit-0.4.0" = { | ||
152 | name = "asynckit"; | ||
153 | packageName = "asynckit"; | ||
154 | version = "0.4.0"; | ||
155 | src = fetchurl { | ||
156 | url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; | ||
157 | sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; | ||
158 | }; | ||
159 | }; | ||
160 | "aws-sign2-0.7.0" = { | ||
161 | name = "aws-sign2"; | ||
162 | packageName = "aws-sign2"; | ||
163 | version = "0.7.0"; | ||
164 | src = fetchurl { | ||
165 | url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; | ||
166 | sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; | ||
167 | }; | ||
168 | }; | ||
169 | "aws4-1.9.1" = { | ||
170 | name = "aws4"; | ||
171 | packageName = "aws4"; | ||
172 | version = "1.9.1"; | ||
173 | src = fetchurl { | ||
174 | url = "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz"; | ||
175 | sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="; | ||
176 | }; | ||
177 | }; | ||
178 | "backoff-2.5.0" = { | ||
179 | name = "backoff"; | ||
180 | packageName = "backoff"; | ||
181 | version = "2.5.0"; | ||
182 | src = fetchurl { | ||
183 | url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz"; | ||
184 | sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; | ||
185 | }; | ||
186 | }; | ||
187 | "balanced-match-1.0.0" = { | ||
188 | name = "balanced-match"; | ||
189 | packageName = "balanced-match"; | ||
190 | version = "1.0.0"; | ||
191 | src = fetchurl { | ||
192 | url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; | ||
193 | sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; | ||
194 | }; | ||
195 | }; | ||
196 | "bcrypt-pbkdf-1.0.2" = { | ||
197 | name = "bcrypt-pbkdf"; | ||
198 | packageName = "bcrypt-pbkdf"; | ||
199 | version = "1.0.2"; | ||
200 | src = fetchurl { | ||
201 | url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; | ||
202 | sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; | ||
203 | }; | ||
204 | }; | ||
205 | "bcryptjs-2.4.3" = { | ||
206 | name = "bcryptjs"; | ||
207 | packageName = "bcryptjs"; | ||
208 | version = "2.4.3"; | ||
209 | src = fetchurl { | ||
210 | url = "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz"; | ||
211 | sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb"; | ||
212 | }; | ||
213 | }; | ||
214 | "bignumber.js-2.0.5" = { | ||
215 | name = "bignumber.js"; | ||
216 | packageName = "bignumber.js"; | ||
217 | version = "2.0.5"; | ||
218 | src = fetchurl { | ||
219 | url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.0.5.tgz"; | ||
220 | sha1 = "e1d16f495454d4229a7a483ce8d3d774ddc50659"; | ||
221 | }; | ||
222 | }; | ||
223 | "bluebird-2.11.0" = { | ||
224 | name = "bluebird"; | ||
225 | packageName = "bluebird"; | ||
226 | version = "2.11.0"; | ||
227 | src = fetchurl { | ||
228 | url = "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz"; | ||
229 | sha1 = "534b9033c022c9579c56ba3b3e5a5caafbb650e1"; | ||
230 | }; | ||
231 | }; | ||
232 | "body-parser-1.12.4" = { | ||
233 | name = "body-parser"; | ||
234 | packageName = "body-parser"; | ||
235 | version = "1.12.4"; | ||
236 | src = fetchurl { | ||
237 | url = "https://registry.npmjs.org/body-parser/-/body-parser-1.12.4.tgz"; | ||
238 | sha1 = "090700c4ba28862a8520ef378395fdee5f61c229"; | ||
239 | }; | ||
240 | }; | ||
241 | "brace-expansion-1.1.11" = { | ||
242 | name = "brace-expansion"; | ||
243 | packageName = "brace-expansion"; | ||
244 | version = "1.1.11"; | ||
245 | src = fetchurl { | ||
246 | url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; | ||
247 | sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; | ||
248 | }; | ||
249 | }; | ||
250 | "browser-fingerprint-0.0.1" = { | ||
251 | name = "browser-fingerprint"; | ||
252 | packageName = "browser-fingerprint"; | ||
253 | version = "0.0.1"; | ||
254 | src = fetchurl { | ||
255 | url = "https://registry.npmjs.org/browser-fingerprint/-/browser-fingerprint-0.0.1.tgz"; | ||
256 | sha1 = "8df3cdca25bf7d5b3542d61545d730053fce604a"; | ||
257 | }; | ||
258 | }; | ||
259 | "browser-request-0.3.3" = { | ||
260 | name = "browser-request"; | ||
261 | packageName = "browser-request"; | ||
262 | version = "0.3.3"; | ||
263 | src = fetchurl { | ||
264 | url = "https://registry.npmjs.org/browser-request/-/browser-request-0.3.3.tgz"; | ||
265 | sha1 = "9ece5b5aca89a29932242e18bf933def9876cc17"; | ||
266 | }; | ||
267 | }; | ||
268 | "buffer-equal-constant-time-1.0.1" = { | ||
269 | name = "buffer-equal-constant-time"; | ||
270 | packageName = "buffer-equal-constant-time"; | ||
271 | version = "1.0.1"; | ||
272 | src = fetchurl { | ||
273 | url = "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz"; | ||
274 | sha1 = "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"; | ||
275 | }; | ||
276 | }; | ||
277 | "buffer-writer-1.0.1" = { | ||
278 | name = "buffer-writer"; | ||
279 | packageName = "buffer-writer"; | ||
280 | version = "1.0.1"; | ||
281 | src = fetchurl { | ||
282 | url = "https://registry.npmjs.org/buffer-writer/-/buffer-writer-1.0.1.tgz"; | ||
283 | sha1 = "22a936901e3029afcd7547eb4487ceb697a3bf08"; | ||
284 | }; | ||
285 | }; | ||
286 | "bufferjs-1.1.0" = { | ||
287 | name = "bufferjs"; | ||
288 | packageName = "bufferjs"; | ||
289 | version = "1.1.0"; | ||
290 | src = fetchurl { | ||
291 | url = "https://registry.npmjs.org/bufferjs/-/bufferjs-1.1.0.tgz"; | ||
292 | sha1 = "095ffa39c5e6b40a2178a1169c9effc584a73201"; | ||
293 | }; | ||
294 | }; | ||
295 | "bunyan-1.8.12" = { | ||
296 | name = "bunyan"; | ||
297 | packageName = "bunyan"; | ||
298 | version = "1.8.12"; | ||
299 | src = fetchurl { | ||
300 | url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz"; | ||
301 | sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797"; | ||
302 | }; | ||
303 | }; | ||
304 | "bytes-1.0.0" = { | ||
305 | name = "bytes"; | ||
306 | packageName = "bytes"; | ||
307 | version = "1.0.0"; | ||
308 | src = fetchurl { | ||
309 | url = "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz"; | ||
310 | sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8"; | ||
311 | }; | ||
312 | }; | ||
313 | "bytes-2.1.0" = { | ||
314 | name = "bytes"; | ||
315 | packageName = "bytes"; | ||
316 | version = "2.1.0"; | ||
317 | src = fetchurl { | ||
318 | url = "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz"; | ||
319 | sha1 = "ac93c410e2ffc9cc7cf4b464b38289067f5e47b4"; | ||
320 | }; | ||
321 | }; | ||
322 | "caseless-0.12.0" = { | ||
323 | name = "caseless"; | ||
324 | packageName = "caseless"; | ||
325 | version = "0.12.0"; | ||
326 | src = fetchurl { | ||
327 | url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; | ||
328 | sha1 = "1b681c21ff84033c826543090689420d187151dc"; | ||
329 | }; | ||
330 | }; | ||
331 | "cassandra-driver-2.0.1" = { | ||
332 | name = "cassandra-driver"; | ||
333 | packageName = "cassandra-driver"; | ||
334 | version = "2.0.1"; | ||
335 | src = fetchurl { | ||
336 | url = "https://registry.npmjs.org/cassandra-driver/-/cassandra-driver-2.0.1.tgz"; | ||
337 | sha1 = "072759ab837628dcbcb5bc678283dcc922c767e2"; | ||
338 | }; | ||
339 | }; | ||
340 | "chalk-1.1.3" = { | ||
341 | name = "chalk"; | ||
342 | packageName = "chalk"; | ||
343 | version = "1.1.3"; | ||
344 | src = fetchurl { | ||
345 | url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; | ||
346 | sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; | ||
347 | }; | ||
348 | }; | ||
349 | "channels-0.0.4" = { | ||
350 | name = "channels"; | ||
351 | packageName = "channels"; | ||
352 | version = "0.0.4"; | ||
353 | src = fetchurl { | ||
354 | url = "https://registry.npmjs.org/channels/-/channels-0.0.4.tgz"; | ||
355 | sha1 = "1bee323edea152bb9ef04f41bc6e6b0f5948a941"; | ||
356 | }; | ||
357 | }; | ||
358 | "cli-progress-2.1.1" = { | ||
359 | name = "cli-progress"; | ||
360 | packageName = "cli-progress"; | ||
361 | version = "2.1.1"; | ||
362 | src = fetchurl { | ||
363 | url = "https://registry.npmjs.org/cli-progress/-/cli-progress-2.1.1.tgz"; | ||
364 | sha512 = "TSJw3LY9ZRSis7yYzQ7flIdtQMbacd9oYoiFphJhI4SzgmqF0zErO+uNv0lbUjk1L4AGfHQJ4OVYYzW+JV66KA=="; | ||
365 | }; | ||
366 | }; | ||
367 | "cloudant-follow-0.17.0" = { | ||
368 | name = "cloudant-follow"; | ||
369 | packageName = "cloudant-follow"; | ||
370 | version = "0.17.0"; | ||
371 | src = fetchurl { | ||
372 | url = "https://registry.npmjs.org/cloudant-follow/-/cloudant-follow-0.17.0.tgz"; | ||
373 | sha512 = "JQ1xvKAHh8rsnSVBjATLCjz/vQw1sWBGadxr2H69yFMwD7hShUGDwwEefdypaxroUJ/w6t1cSwilp/hRUxEW8w=="; | ||
374 | }; | ||
375 | }; | ||
376 | "colors-1.4.0" = { | ||
377 | name = "colors"; | ||
378 | packageName = "colors"; | ||
379 | version = "1.4.0"; | ||
380 | src = fetchurl { | ||
381 | url = "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz"; | ||
382 | sha512 = "a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="; | ||
383 | }; | ||
384 | }; | ||
385 | "combined-stream-1.0.8" = { | ||
386 | name = "combined-stream"; | ||
387 | packageName = "combined-stream"; | ||
388 | version = "1.0.8"; | ||
389 | src = fetchurl { | ||
390 | url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; | ||
391 | sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; | ||
392 | }; | ||
393 | }; | ||
394 | "commander-2.20.3" = { | ||
395 | name = "commander"; | ||
396 | packageName = "commander"; | ||
397 | version = "2.20.3"; | ||
398 | src = fetchurl { | ||
399 | url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; | ||
400 | sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; | ||
401 | }; | ||
402 | }; | ||
403 | "concat-map-0.0.1" = { | ||
404 | name = "concat-map"; | ||
405 | packageName = "concat-map"; | ||
406 | version = "0.0.1"; | ||
407 | src = fetchurl { | ||
408 | url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; | ||
409 | sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; | ||
410 | }; | ||
411 | }; | ||
412 | "content-type-1.0.4" = { | ||
413 | name = "content-type"; | ||
414 | packageName = "content-type"; | ||
415 | version = "1.0.4"; | ||
416 | src = fetchurl { | ||
417 | url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; | ||
418 | sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; | ||
419 | }; | ||
420 | }; | ||
421 | "cookie-0.1.2" = { | ||
422 | name = "cookie"; | ||
423 | packageName = "cookie"; | ||
424 | version = "0.1.2"; | ||
425 | src = fetchurl { | ||
426 | url = "https://registry.npmjs.org/cookie/-/cookie-0.1.2.tgz"; | ||
427 | sha1 = "72fec3d24e48a3432073d90c12642005061004b1"; | ||
428 | }; | ||
429 | }; | ||
430 | "cookie-parser-1.3.4" = { | ||
431 | name = "cookie-parser"; | ||
432 | packageName = "cookie-parser"; | ||
433 | version = "1.3.4"; | ||
434 | src = fetchurl { | ||
435 | url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.4.tgz"; | ||
436 | sha1 = "193035a5be97117a21709b3aa737f6132717bda6"; | ||
437 | }; | ||
438 | }; | ||
439 | "cookie-signature-1.0.6" = { | ||
440 | name = "cookie-signature"; | ||
441 | packageName = "cookie-signature"; | ||
442 | version = "1.0.6"; | ||
443 | src = fetchurl { | ||
444 | url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; | ||
445 | sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; | ||
446 | }; | ||
447 | }; | ||
448 | "core-js-1.2.7" = { | ||
449 | name = "core-js"; | ||
450 | packageName = "core-js"; | ||
451 | version = "1.2.7"; | ||
452 | src = fetchurl { | ||
453 | url = "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz"; | ||
454 | sha1 = "652294c14651db28fa93bd2d5ff2983a4f08c636"; | ||
455 | }; | ||
456 | }; | ||
457 | "core-util-is-1.0.2" = { | ||
458 | name = "core-util-is"; | ||
459 | packageName = "core-util-is"; | ||
460 | version = "1.0.2"; | ||
461 | src = fetchurl { | ||
462 | url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; | ||
463 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; | ||
464 | }; | ||
465 | }; | ||
466 | "cuid-1.3.8" = { | ||
467 | name = "cuid"; | ||
468 | packageName = "cuid"; | ||
469 | version = "1.3.8"; | ||
470 | src = fetchurl { | ||
471 | url = "https://registry.npmjs.org/cuid/-/cuid-1.3.8.tgz"; | ||
472 | sha1 = "4b875e0969bad764f7ec0706cf44f5fb0831f6b7"; | ||
473 | }; | ||
474 | }; | ||
475 | "dashdash-1.14.1" = { | ||
476 | name = "dashdash"; | ||
477 | packageName = "dashdash"; | ||
478 | version = "1.14.1"; | ||
479 | src = fetchurl { | ||
480 | url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; | ||
481 | sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; | ||
482 | }; | ||
483 | }; | ||
484 | "debug-2.2.0" = { | ||
485 | name = "debug"; | ||
486 | packageName = "debug"; | ||
487 | version = "2.2.0"; | ||
488 | src = fetchurl { | ||
489 | url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; | ||
490 | sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da"; | ||
491 | }; | ||
492 | }; | ||
493 | "debug-3.2.6" = { | ||
494 | name = "debug"; | ||
495 | packageName = "debug"; | ||
496 | version = "3.2.6"; | ||
497 | src = fetchurl { | ||
498 | url = "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz"; | ||
499 | sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ=="; | ||
500 | }; | ||
501 | }; | ||
502 | "delayed-stream-1.0.0" = { | ||
503 | name = "delayed-stream"; | ||
504 | packageName = "delayed-stream"; | ||
505 | version = "1.0.0"; | ||
506 | src = fetchurl { | ||
507 | url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; | ||
508 | sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; | ||
509 | }; | ||
510 | }; | ||
511 | "denque-1.4.1" = { | ||
512 | name = "denque"; | ||
513 | packageName = "denque"; | ||
514 | version = "1.4.1"; | ||
515 | src = fetchurl { | ||
516 | url = "https://registry.npmjs.org/denque/-/denque-1.4.1.tgz"; | ||
517 | sha512 = "OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ=="; | ||
518 | }; | ||
519 | }; | ||
520 | "depd-1.0.1" = { | ||
521 | name = "depd"; | ||
522 | packageName = "depd"; | ||
523 | version = "1.0.1"; | ||
524 | src = fetchurl { | ||
525 | url = "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz"; | ||
526 | sha1 = "80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa"; | ||
527 | }; | ||
528 | }; | ||
529 | "dirty-0.9.9" = { | ||
530 | name = "dirty"; | ||
531 | packageName = "dirty"; | ||
532 | version = "0.9.9"; | ||
533 | src = fetchurl { | ||
534 | url = "https://registry.npmjs.org/dirty/-/dirty-0.9.9.tgz"; | ||
535 | sha1 = "f785804c4cf7907220cb10fa576b22329feda545"; | ||
536 | }; | ||
537 | }; | ||
538 | "dtrace-provider-0.8.8" = { | ||
539 | name = "dtrace-provider"; | ||
540 | packageName = "dtrace-provider"; | ||
541 | version = "0.8.8"; | ||
542 | src = fetchurl { | ||
543 | url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz"; | ||
544 | sha512 = "b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg=="; | ||
545 | }; | ||
546 | }; | ||
547 | "ecc-jsbn-0.1.2" = { | ||
548 | name = "ecc-jsbn"; | ||
549 | packageName = "ecc-jsbn"; | ||
550 | version = "0.1.2"; | ||
551 | src = fetchurl { | ||
552 | url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; | ||
553 | sha1 = "3a83a904e54353287874c564b7549386849a98c9"; | ||
554 | }; | ||
555 | }; | ||
556 | "ecdsa-sig-formatter-1.0.11" = { | ||
557 | name = "ecdsa-sig-formatter"; | ||
558 | packageName = "ecdsa-sig-formatter"; | ||
559 | version = "1.0.11"; | ||
560 | src = fetchurl { | ||
561 | url = "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz"; | ||
562 | sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; | ||
563 | }; | ||
564 | }; | ||
565 | "ee-first-1.1.0" = { | ||
566 | name = "ee-first"; | ||
567 | packageName = "ee-first"; | ||
568 | version = "1.1.0"; | ||
569 | src = fetchurl { | ||
570 | url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.0.tgz"; | ||
571 | sha1 = "6a0d7c6221e490feefd92ec3f441c9ce8cd097f4"; | ||
572 | }; | ||
573 | }; | ||
574 | "elasticsearch-11.0.1" = { | ||
575 | name = "elasticsearch"; | ||
576 | packageName = "elasticsearch"; | ||
577 | version = "11.0.1"; | ||
578 | src = fetchurl { | ||
579 | url = "https://registry.npmjs.org/elasticsearch/-/elasticsearch-11.0.1.tgz"; | ||
580 | sha1 = "d180684c6bde7ecfa0fa24e62fa1c872eeae08e7"; | ||
581 | }; | ||
582 | }; | ||
583 | "emailjs-0.3.16" = { | ||
584 | name = "emailjs"; | ||
585 | packageName = "emailjs"; | ||
586 | version = "0.3.16"; | ||
587 | src = fetchurl { | ||
588 | url = "https://registry.npmjs.org/emailjs/-/emailjs-0.3.16.tgz"; | ||
589 | sha1 = "f162735352ce7b6615a5d811714051f90f23331d"; | ||
590 | }; | ||
591 | }; | ||
592 | "encoding-0.1.12" = { | ||
593 | name = "encoding"; | ||
594 | packageName = "encoding"; | ||
595 | version = "0.1.12"; | ||
596 | src = fetchurl { | ||
597 | url = "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz"; | ||
598 | sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb"; | ||
599 | }; | ||
600 | }; | ||
601 | "errs-0.3.2" = { | ||
602 | name = "errs"; | ||
603 | packageName = "errs"; | ||
604 | version = "0.3.2"; | ||
605 | src = fetchurl { | ||
606 | url = "https://registry.npmjs.org/errs/-/errs-0.3.2.tgz"; | ||
607 | sha1 = "798099b2dbd37ca2bc749e538a7c1307d0b50499"; | ||
608 | }; | ||
609 | }; | ||
610 | "escape-string-regexp-1.0.5" = { | ||
611 | name = "escape-string-regexp"; | ||
612 | packageName = "escape-string-regexp"; | ||
613 | version = "1.0.5"; | ||
614 | src = fetchurl { | ||
615 | url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; | ||
616 | sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; | ||
617 | }; | ||
618 | }; | ||
619 | "extend-3.0.2" = { | ||
620 | name = "extend"; | ||
621 | packageName = "extend"; | ||
622 | version = "3.0.2"; | ||
623 | src = fetchurl { | ||
624 | url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; | ||
625 | sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; | ||
626 | }; | ||
627 | }; | ||
628 | "extsprintf-1.2.0" = { | ||
629 | name = "extsprintf"; | ||
630 | packageName = "extsprintf"; | ||
631 | version = "1.2.0"; | ||
632 | src = fetchurl { | ||
633 | url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz"; | ||
634 | sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; | ||
635 | }; | ||
636 | }; | ||
637 | "extsprintf-1.3.0" = { | ||
638 | name = "extsprintf"; | ||
639 | packageName = "extsprintf"; | ||
640 | version = "1.3.0"; | ||
641 | src = fetchurl { | ||
642 | url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; | ||
643 | sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; | ||
644 | }; | ||
645 | }; | ||
646 | "fast-deep-equal-3.1.1" = { | ||
647 | name = "fast-deep-equal"; | ||
648 | packageName = "fast-deep-equal"; | ||
649 | version = "3.1.1"; | ||
650 | src = fetchurl { | ||
651 | url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; | ||
652 | sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA=="; | ||
653 | }; | ||
654 | }; | ||
655 | "fast-json-stable-stringify-2.1.0" = { | ||
656 | name = "fast-json-stable-stringify"; | ||
657 | packageName = "fast-json-stable-stringify"; | ||
658 | version = "2.1.0"; | ||
659 | src = fetchurl { | ||
660 | url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; | ||
661 | sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; | ||
662 | }; | ||
663 | }; | ||
664 | "forever-agent-0.6.1" = { | ||
665 | name = "forever-agent"; | ||
666 | packageName = "forever-agent"; | ||
667 | version = "0.6.1"; | ||
668 | src = fetchurl { | ||
669 | url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; | ||
670 | sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; | ||
671 | }; | ||
672 | }; | ||
673 | "form-data-2.3.3" = { | ||
674 | name = "form-data"; | ||
675 | packageName = "form-data"; | ||
676 | version = "2.3.3"; | ||
677 | src = fetchurl { | ||
678 | url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; | ||
679 | sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; | ||
680 | }; | ||
681 | }; | ||
682 | "generic-pool-2.4.3" = { | ||
683 | name = "generic-pool"; | ||
684 | packageName = "generic-pool"; | ||
685 | version = "2.4.3"; | ||
686 | src = fetchurl { | ||
687 | url = "https://registry.npmjs.org/generic-pool/-/generic-pool-2.4.3.tgz"; | ||
688 | sha1 = "780c36f69dfad05a5a045dd37be7adca11a4f6ff"; | ||
689 | }; | ||
690 | }; | ||
691 | "getpass-0.1.7" = { | ||
692 | name = "getpass"; | ||
693 | packageName = "getpass"; | ||
694 | version = "0.1.7"; | ||
695 | src = fetchurl { | ||
696 | url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; | ||
697 | sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; | ||
698 | }; | ||
699 | }; | ||
700 | "glob-6.0.4" = { | ||
701 | name = "glob"; | ||
702 | packageName = "glob"; | ||
703 | version = "6.0.4"; | ||
704 | src = fetchurl { | ||
705 | url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; | ||
706 | sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; | ||
707 | }; | ||
708 | }; | ||
709 | "har-schema-2.0.0" = { | ||
710 | name = "har-schema"; | ||
711 | packageName = "har-schema"; | ||
712 | version = "2.0.0"; | ||
713 | src = fetchurl { | ||
714 | url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; | ||
715 | sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; | ||
716 | }; | ||
717 | }; | ||
718 | "har-validator-5.1.3" = { | ||
719 | name = "har-validator"; | ||
720 | packageName = "har-validator"; | ||
721 | version = "5.1.3"; | ||
722 | src = fetchurl { | ||
723 | url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; | ||
724 | sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; | ||
725 | }; | ||
726 | }; | ||
727 | "has-ansi-2.0.0" = { | ||
728 | name = "has-ansi"; | ||
729 | packageName = "has-ansi"; | ||
730 | version = "2.0.0"; | ||
731 | src = fetchurl { | ||
732 | url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; | ||
733 | sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; | ||
734 | }; | ||
735 | }; | ||
736 | "hoek-2.16.3" = { | ||
737 | name = "hoek"; | ||
738 | packageName = "hoek"; | ||
739 | version = "2.16.3"; | ||
740 | src = fetchurl { | ||
741 | url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; | ||
742 | sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; | ||
743 | }; | ||
744 | }; | ||
745 | "hoek-4.2.1" = { | ||
746 | name = "hoek"; | ||
747 | packageName = "hoek"; | ||
748 | version = "4.2.1"; | ||
749 | src = fetchurl { | ||
750 | url = "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz"; | ||
751 | sha512 = "QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA=="; | ||
752 | }; | ||
753 | }; | ||
754 | "http-signature-1.2.0" = { | ||
755 | name = "http-signature"; | ||
756 | packageName = "http-signature"; | ||
757 | version = "1.2.0"; | ||
758 | src = fetchurl { | ||
759 | url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; | ||
760 | sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; | ||
761 | }; | ||
762 | }; | ||
763 | "iconv-lite-0.4.24" = { | ||
764 | name = "iconv-lite"; | ||
765 | packageName = "iconv-lite"; | ||
766 | version = "0.4.24"; | ||
767 | src = fetchurl { | ||
768 | url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; | ||
769 | sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; | ||
770 | }; | ||
771 | }; | ||
772 | "iconv-lite-0.4.8" = { | ||
773 | name = "iconv-lite"; | ||
774 | packageName = "iconv-lite"; | ||
775 | version = "0.4.8"; | ||
776 | src = fetchurl { | ||
777 | url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz"; | ||
778 | sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20"; | ||
779 | }; | ||
780 | }; | ||
781 | "inflight-1.0.6" = { | ||
782 | name = "inflight"; | ||
783 | packageName = "inflight"; | ||
784 | version = "1.0.6"; | ||
785 | src = fetchurl { | ||
786 | url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; | ||
787 | sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; | ||
788 | }; | ||
789 | }; | ||
790 | "inherits-2.0.4" = { | ||
791 | name = "inherits"; | ||
792 | packageName = "inherits"; | ||
793 | version = "2.0.4"; | ||
794 | src = fetchurl { | ||
795 | url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; | ||
796 | sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; | ||
797 | }; | ||
798 | }; | ||
799 | "is-fullwidth-code-point-2.0.0" = { | ||
800 | name = "is-fullwidth-code-point"; | ||
801 | packageName = "is-fullwidth-code-point"; | ||
802 | version = "2.0.0"; | ||
803 | src = fetchurl { | ||
804 | url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; | ||
805 | sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; | ||
806 | }; | ||
807 | }; | ||
808 | "is-typedarray-1.0.0" = { | ||
809 | name = "is-typedarray"; | ||
810 | packageName = "is-typedarray"; | ||
811 | version = "1.0.0"; | ||
812 | src = fetchurl { | ||
813 | url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; | ||
814 | sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; | ||
815 | }; | ||
816 | }; | ||
817 | "isarray-0.0.1" = { | ||
818 | name = "isarray"; | ||
819 | packageName = "isarray"; | ||
820 | version = "0.0.1"; | ||
821 | src = fetchurl { | ||
822 | url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; | ||
823 | sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; | ||
824 | }; | ||
825 | }; | ||
826 | "isemail-1.2.0" = { | ||
827 | name = "isemail"; | ||
828 | packageName = "isemail"; | ||
829 | version = "1.2.0"; | ||
830 | src = fetchurl { | ||
831 | url = "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz"; | ||
832 | sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a"; | ||
833 | }; | ||
834 | }; | ||
835 | "isemail-2.2.1" = { | ||
836 | name = "isemail"; | ||
837 | packageName = "isemail"; | ||
838 | version = "2.2.1"; | ||
839 | src = fetchurl { | ||
840 | url = "https://registry.npmjs.org/isemail/-/isemail-2.2.1.tgz"; | ||
841 | sha1 = "0353d3d9a62951080c262c2aa0a42b8ea8e9e2a6"; | ||
842 | }; | ||
843 | }; | ||
844 | "isstream-0.1.2" = { | ||
845 | name = "isstream"; | ||
846 | packageName = "isstream"; | ||
847 | version = "0.1.2"; | ||
848 | src = fetchurl { | ||
849 | url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; | ||
850 | sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; | ||
851 | }; | ||
852 | }; | ||
853 | "items-2.1.2" = { | ||
854 | name = "items"; | ||
855 | packageName = "items"; | ||
856 | version = "2.1.2"; | ||
857 | src = fetchurl { | ||
858 | url = "https://registry.npmjs.org/items/-/items-2.1.2.tgz"; | ||
859 | sha512 = "kezcEqgB97BGeZZYtX/MA8AG410ptURstvnz5RAgyFZ8wQFPMxHY8GpTq+/ZHKT3frSlIthUq7EvLt9xn3TvXg=="; | ||
860 | }; | ||
861 | }; | ||
862 | "joi-10.6.0" = { | ||
863 | name = "joi"; | ||
864 | packageName = "joi"; | ||
865 | version = "10.6.0"; | ||
866 | src = fetchurl { | ||
867 | url = "https://registry.npmjs.org/joi/-/joi-10.6.0.tgz"; | ||
868 | sha512 = "hBF3LcqyAid+9X/pwg+eXjD2QBZI5eXnBFJYaAkH4SK3mp9QSRiiQnDYlmlz5pccMvnLcJRS4whhDOTCkmsAdQ=="; | ||
869 | }; | ||
870 | }; | ||
871 | "joi-6.10.1" = { | ||
872 | name = "joi"; | ||
873 | packageName = "joi"; | ||
874 | version = "6.10.1"; | ||
875 | src = fetchurl { | ||
876 | url = "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz"; | ||
877 | sha1 = "4d50c318079122000fe5f16af1ff8e1917b77e06"; | ||
878 | }; | ||
879 | }; | ||
880 | "js-base64-2.1.9" = { | ||
881 | name = "js-base64"; | ||
882 | packageName = "js-base64"; | ||
883 | version = "2.1.9"; | ||
884 | src = fetchurl { | ||
885 | url = "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz"; | ||
886 | sha1 = "f0e80ae039a4bd654b5f281fc93f04a914a7fcce"; | ||
887 | }; | ||
888 | }; | ||
889 | "js-cookie-2.2.1" = { | ||
890 | name = "js-cookie"; | ||
891 | packageName = "js-cookie"; | ||
892 | version = "2.2.1"; | ||
893 | src = fetchurl { | ||
894 | url = "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz"; | ||
895 | sha512 = "HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ=="; | ||
896 | }; | ||
897 | }; | ||
898 | "jsbn-0.1.1" = { | ||
899 | name = "jsbn"; | ||
900 | packageName = "jsbn"; | ||
901 | version = "0.1.1"; | ||
902 | src = fetchurl { | ||
903 | url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; | ||
904 | sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; | ||
905 | }; | ||
906 | }; | ||
907 | "json-beautify-1.1.1" = { | ||
908 | name = "json-beautify"; | ||
909 | packageName = "json-beautify"; | ||
910 | version = "1.1.1"; | ||
911 | src = fetchurl { | ||
912 | url = "https://registry.npmjs.org/json-beautify/-/json-beautify-1.1.1.tgz"; | ||
913 | sha512 = "17j+Hk2lado0xqKtUcyAjK0AtoHnPSIgktWRsEXgdFQFG9UnaGw6CHa0J7xsvulxRpFl6CrkDFHght1p5ZJc4A=="; | ||
914 | }; | ||
915 | }; | ||
916 | "json-schema-0.2.3" = { | ||
917 | name = "json-schema"; | ||
918 | packageName = "json-schema"; | ||
919 | version = "0.2.3"; | ||
920 | src = fetchurl { | ||
921 | url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; | ||
922 | sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; | ||
923 | }; | ||
924 | }; | ||
925 | "json-schema-traverse-0.4.1" = { | ||
926 | name = "json-schema-traverse"; | ||
927 | packageName = "json-schema-traverse"; | ||
928 | version = "0.4.1"; | ||
929 | src = fetchurl { | ||
930 | url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; | ||
931 | sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; | ||
932 | }; | ||
933 | }; | ||
934 | "json-stringify-safe-5.0.1" = { | ||
935 | name = "json-stringify-safe"; | ||
936 | packageName = "json-stringify-safe"; | ||
937 | version = "5.0.1"; | ||
938 | src = fetchurl { | ||
939 | url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; | ||
940 | sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; | ||
941 | }; | ||
942 | }; | ||
943 | "jsonminify-0.4.1" = { | ||
944 | name = "jsonminify"; | ||
945 | packageName = "jsonminify"; | ||
946 | version = "0.4.1"; | ||
947 | src = fetchurl { | ||
948 | url = "https://registry.npmjs.org/jsonminify/-/jsonminify-0.4.1.tgz"; | ||
949 | sha1 = "805dafbb39395188cee9ab582c81ef959d7e710c"; | ||
950 | }; | ||
951 | }; | ||
952 | "jsonwebtoken-5.0.5" = { | ||
953 | name = "jsonwebtoken"; | ||
954 | packageName = "jsonwebtoken"; | ||
955 | version = "5.0.5"; | ||
956 | src = fetchurl { | ||
957 | url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-5.0.5.tgz"; | ||
958 | sha1 = "6592cc05ee03dd5ad9e03a910911a4da79afe0f8"; | ||
959 | }; | ||
960 | }; | ||
961 | "jsonwebtoken-7.4.3" = { | ||
962 | name = "jsonwebtoken"; | ||
963 | packageName = "jsonwebtoken"; | ||
964 | version = "7.4.3"; | ||
965 | src = fetchurl { | ||
966 | url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-7.4.3.tgz"; | ||
967 | sha1 = "77f5021de058b605a1783fa1283e99812e645638"; | ||
968 | }; | ||
969 | }; | ||
970 | "jsprim-1.4.1" = { | ||
971 | name = "jsprim"; | ||
972 | packageName = "jsprim"; | ||
973 | version = "1.4.1"; | ||
974 | src = fetchurl { | ||
975 | url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; | ||
976 | sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; | ||
977 | }; | ||
978 | }; | ||
979 | "jwa-1.4.1" = { | ||
980 | name = "jwa"; | ||
981 | packageName = "jwa"; | ||
982 | version = "1.4.1"; | ||
983 | src = fetchurl { | ||
984 | url = "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz"; | ||
985 | sha512 = "qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA=="; | ||
986 | }; | ||
987 | }; | ||
988 | "jws-3.2.2" = { | ||
989 | name = "jws"; | ||
990 | packageName = "jws"; | ||
991 | version = "3.2.2"; | ||
992 | src = fetchurl { | ||
993 | url = "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz"; | ||
994 | sha512 = "YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA=="; | ||
995 | }; | ||
996 | }; | ||
997 | "ldap-filter-0.2.2" = { | ||
998 | name = "ldap-filter"; | ||
999 | packageName = "ldap-filter"; | ||
1000 | version = "0.2.2"; | ||
1001 | src = fetchurl { | ||
1002 | url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.2.2.tgz"; | ||
1003 | sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; | ||
1004 | }; | ||
1005 | }; | ||
1006 | "ldapauth-fork-4.3.3" = { | ||
1007 | name = "ldapauth-fork"; | ||
1008 | packageName = "ldapauth-fork"; | ||
1009 | version = "4.3.3"; | ||
1010 | src = fetchurl { | ||
1011 | url = "https://registry.npmjs.org/ldapauth-fork/-/ldapauth-fork-4.3.3.tgz"; | ||
1012 | sha512 = "x76VpQ5ZqkwAJmqwcD6KIwDiNEbgIGIPGwC/eA17e1dxWhlTx36w0DlLOFwjTuZ2iuaLTsZsUprlVqvSlwc/1Q=="; | ||
1013 | }; | ||
1014 | }; | ||
1015 | "ldapjs-1.0.2" = { | ||
1016 | name = "ldapjs"; | ||
1017 | packageName = "ldapjs"; | ||
1018 | version = "1.0.2"; | ||
1019 | src = fetchurl { | ||
1020 | url = "https://registry.npmjs.org/ldapjs/-/ldapjs-1.0.2.tgz"; | ||
1021 | sha1 = "544ff7032b7b83c68f0701328d9297aa694340f9"; | ||
1022 | }; | ||
1023 | }; | ||
1024 | "lodash-3.10.1" = { | ||
1025 | name = "lodash"; | ||
1026 | packageName = "lodash"; | ||
1027 | version = "3.10.1"; | ||
1028 | src = fetchurl { | ||
1029 | url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; | ||
1030 | sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; | ||
1031 | }; | ||
1032 | }; | ||
1033 | "lodash-4.17.15" = { | ||
1034 | name = "lodash"; | ||
1035 | packageName = "lodash"; | ||
1036 | version = "4.17.15"; | ||
1037 | src = fetchurl { | ||
1038 | url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; | ||
1039 | sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; | ||
1040 | }; | ||
1041 | }; | ||
1042 | "lodash-compat-3.10.2" = { | ||
1043 | name = "lodash-compat"; | ||
1044 | packageName = "lodash-compat"; | ||
1045 | version = "3.10.2"; | ||
1046 | src = fetchurl { | ||
1047 | url = "https://registry.npmjs.org/lodash-compat/-/lodash-compat-3.10.2.tgz"; | ||
1048 | sha1 = "c6940128a9d30f8e902cd2cf99fd0cba4ecfc183"; | ||
1049 | }; | ||
1050 | }; | ||
1051 | "lodash.isempty-4.4.0" = { | ||
1052 | name = "lodash.isempty"; | ||
1053 | packageName = "lodash.isempty"; | ||
1054 | version = "4.4.0"; | ||
1055 | src = fetchurl { | ||
1056 | url = "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz"; | ||
1057 | sha1 = "6f86cbedd8be4ec987be9aaf33c9684db1b31e7e"; | ||
1058 | }; | ||
1059 | }; | ||
1060 | "lodash.once-4.1.1" = { | ||
1061 | name = "lodash.once"; | ||
1062 | packageName = "lodash.once"; | ||
1063 | version = "4.1.1"; | ||
1064 | src = fetchurl { | ||
1065 | url = "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz"; | ||
1066 | sha1 = "0dd3971213c7c56df880977d504c88fb471a97ac"; | ||
1067 | }; | ||
1068 | }; | ||
1069 | "long-2.4.0" = { | ||
1070 | name = "long"; | ||
1071 | packageName = "long"; | ||
1072 | version = "2.4.0"; | ||
1073 | src = fetchurl { | ||
1074 | url = "https://registry.npmjs.org/long/-/long-2.4.0.tgz"; | ||
1075 | sha1 = "9fa180bb1d9500cdc29c4156766a1995e1f4524f"; | ||
1076 | }; | ||
1077 | }; | ||
1078 | "lru-cache-5.1.1" = { | ||
1079 | name = "lru-cache"; | ||
1080 | packageName = "lru-cache"; | ||
1081 | version = "5.1.1"; | ||
1082 | src = fetchurl { | ||
1083 | url = "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"; | ||
1084 | sha512 = "KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="; | ||
1085 | }; | ||
1086 | }; | ||
1087 | "media-typer-0.3.0" = { | ||
1088 | name = "media-typer"; | ||
1089 | packageName = "media-typer"; | ||
1090 | version = "0.3.0"; | ||
1091 | src = fetchurl { | ||
1092 | url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; | ||
1093 | sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; | ||
1094 | }; | ||
1095 | }; | ||
1096 | "mime-db-1.44.0" = { | ||
1097 | name = "mime-db"; | ||
1098 | packageName = "mime-db"; | ||
1099 | version = "1.44.0"; | ||
1100 | src = fetchurl { | ||
1101 | url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"; | ||
1102 | sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; | ||
1103 | }; | ||
1104 | }; | ||
1105 | "mime-types-2.1.27" = { | ||
1106 | name = "mime-types"; | ||
1107 | packageName = "mime-types"; | ||
1108 | version = "2.1.27"; | ||
1109 | src = fetchurl { | ||
1110 | url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"; | ||
1111 | sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; | ||
1112 | }; | ||
1113 | }; | ||
1114 | "mimelib-0.2.14" = { | ||
1115 | name = "mimelib"; | ||
1116 | packageName = "mimelib"; | ||
1117 | version = "0.2.14"; | ||
1118 | src = fetchurl { | ||
1119 | url = "https://registry.npmjs.org/mimelib/-/mimelib-0.2.14.tgz"; | ||
1120 | sha1 = "2a1aa724bd190b85bd526e6317ab6106edfd6831"; | ||
1121 | }; | ||
1122 | }; | ||
1123 | "minimatch-3.0.4" = { | ||
1124 | name = "minimatch"; | ||
1125 | packageName = "minimatch"; | ||
1126 | version = "3.0.4"; | ||
1127 | src = fetchurl { | ||
1128 | url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; | ||
1129 | sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; | ||
1130 | }; | ||
1131 | }; | ||
1132 | "minimist-1.2.5" = { | ||
1133 | name = "minimist"; | ||
1134 | packageName = "minimist"; | ||
1135 | version = "1.2.5"; | ||
1136 | src = fetchurl { | ||
1137 | url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; | ||
1138 | sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; | ||
1139 | }; | ||
1140 | }; | ||
1141 | "mkdirp-0.5.5" = { | ||
1142 | name = "mkdirp"; | ||
1143 | packageName = "mkdirp"; | ||
1144 | version = "0.5.5"; | ||
1145 | src = fetchurl { | ||
1146 | url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; | ||
1147 | sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; | ||
1148 | }; | ||
1149 | }; | ||
1150 | "moment-1.7.0" = { | ||
1151 | name = "moment"; | ||
1152 | packageName = "moment"; | ||
1153 | version = "1.7.0"; | ||
1154 | src = fetchurl { | ||
1155 | url = "https://registry.npmjs.org/moment/-/moment-1.7.0.tgz"; | ||
1156 | sha1 = "6f3d73a446c6bd6af1b993801d0b8071efad5e28"; | ||
1157 | }; | ||
1158 | }; | ||
1159 | "moment-2.24.0" = { | ||
1160 | name = "moment"; | ||
1161 | packageName = "moment"; | ||
1162 | version = "2.24.0"; | ||
1163 | src = fetchurl { | ||
1164 | url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz"; | ||
1165 | sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; | ||
1166 | }; | ||
1167 | }; | ||
1168 | "ms-0.7.1" = { | ||
1169 | name = "ms"; | ||
1170 | packageName = "ms"; | ||
1171 | version = "0.7.1"; | ||
1172 | src = fetchurl { | ||
1173 | url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; | ||
1174 | sha1 = "9cd13c03adbff25b65effde7ce864ee952017098"; | ||
1175 | }; | ||
1176 | }; | ||
1177 | "ms-2.1.2" = { | ||
1178 | name = "ms"; | ||
1179 | packageName = "ms"; | ||
1180 | version = "2.1.2"; | ||
1181 | src = fetchurl { | ||
1182 | url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; | ||
1183 | sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; | ||
1184 | }; | ||
1185 | }; | ||
1186 | "mv-2.1.1" = { | ||
1187 | name = "mv"; | ||
1188 | packageName = "mv"; | ||
1189 | version = "2.1.1"; | ||
1190 | src = fetchurl { | ||
1191 | url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"; | ||
1192 | sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; | ||
1193 | }; | ||
1194 | }; | ||
1195 | "mysql-2.6.1" = { | ||
1196 | name = "mysql"; | ||
1197 | packageName = "mysql"; | ||
1198 | version = "2.6.1"; | ||
1199 | src = fetchurl { | ||
1200 | url = "https://registry.npmjs.org/mysql/-/mysql-2.6.1.tgz"; | ||
1201 | sha1 = "71bf1fb20550cf2940b831664df33f3637b5504d"; | ||
1202 | }; | ||
1203 | }; | ||
1204 | "nan-2.14.1" = { | ||
1205 | name = "nan"; | ||
1206 | packageName = "nan"; | ||
1207 | version = "2.14.1"; | ||
1208 | src = fetchurl { | ||
1209 | url = "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz"; | ||
1210 | sha512 = "isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw=="; | ||
1211 | }; | ||
1212 | }; | ||
1213 | "nano-6.4.4" = { | ||
1214 | name = "nano"; | ||
1215 | packageName = "nano"; | ||
1216 | version = "6.4.4"; | ||
1217 | src = fetchurl { | ||
1218 | url = "https://registry.npmjs.org/nano/-/nano-6.4.4.tgz"; | ||
1219 | sha512 = "7sldMrZI1ZH8QE29PnzohxLfR67WNVzMKLa7EMl3x9Hr+0G+YpOUCq50qZ9G66APrjcb0Of2BTOZLNBCutZGag=="; | ||
1220 | }; | ||
1221 | }; | ||
1222 | "ncp-2.0.0" = { | ||
1223 | name = "ncp"; | ||
1224 | packageName = "ncp"; | ||
1225 | version = "2.0.0"; | ||
1226 | src = fetchurl { | ||
1227 | url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; | ||
1228 | sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; | ||
1229 | }; | ||
1230 | }; | ||
1231 | "node-fingerprint-0.0.2" = { | ||
1232 | name = "node-fingerprint"; | ||
1233 | packageName = "node-fingerprint"; | ||
1234 | version = "0.0.2"; | ||
1235 | src = fetchurl { | ||
1236 | url = "https://registry.npmjs.org/node-fingerprint/-/node-fingerprint-0.0.2.tgz"; | ||
1237 | sha1 = "31cbabeb71a67ae7dd5a7dc042e51c3c75868501"; | ||
1238 | }; | ||
1239 | }; | ||
1240 | "oauth-sign-0.9.0" = { | ||
1241 | name = "oauth-sign"; | ||
1242 | packageName = "oauth-sign"; | ||
1243 | version = "0.9.0"; | ||
1244 | src = fetchurl { | ||
1245 | url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; | ||
1246 | sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; | ||
1247 | }; | ||
1248 | }; | ||
1249 | "object-assign-4.1.0" = { | ||
1250 | name = "object-assign"; | ||
1251 | packageName = "object-assign"; | ||
1252 | version = "4.1.0"; | ||
1253 | src = fetchurl { | ||
1254 | url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz"; | ||
1255 | sha1 = "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"; | ||
1256 | }; | ||
1257 | }; | ||
1258 | "on-finished-2.2.1" = { | ||
1259 | name = "on-finished"; | ||
1260 | packageName = "on-finished"; | ||
1261 | version = "2.2.1"; | ||
1262 | src = fetchurl { | ||
1263 | url = "https://registry.npmjs.org/on-finished/-/on-finished-2.2.1.tgz"; | ||
1264 | sha1 = "5c85c1cc36299f78029653f667f27b6b99ebc029"; | ||
1265 | }; | ||
1266 | }; | ||
1267 | "once-1.4.0" = { | ||
1268 | name = "once"; | ||
1269 | packageName = "once"; | ||
1270 | version = "1.4.0"; | ||
1271 | src = fetchurl { | ||
1272 | url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; | ||
1273 | sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; | ||
1274 | }; | ||
1275 | }; | ||
1276 | "packet-reader-0.2.0" = { | ||
1277 | name = "packet-reader"; | ||
1278 | packageName = "packet-reader"; | ||
1279 | version = "0.2.0"; | ||
1280 | src = fetchurl { | ||
1281 | url = "https://registry.npmjs.org/packet-reader/-/packet-reader-0.2.0.tgz"; | ||
1282 | sha1 = "819df4d010b82d5ea5671f8a1a3acf039bcd7700"; | ||
1283 | }; | ||
1284 | }; | ||
1285 | "passport-0.2.2" = { | ||
1286 | name = "passport"; | ||
1287 | packageName = "passport"; | ||
1288 | version = "0.2.2"; | ||
1289 | src = fetchurl { | ||
1290 | url = "https://registry.npmjs.org/passport/-/passport-0.2.2.tgz"; | ||
1291 | sha1 = "9c38f17beb929f3d81af7b8838e8430db8703f2b"; | ||
1292 | }; | ||
1293 | }; | ||
1294 | "passport-jwt-3.0.1" = { | ||
1295 | name = "passport-jwt"; | ||
1296 | packageName = "passport-jwt"; | ||
1297 | version = "3.0.1"; | ||
1298 | src = fetchurl { | ||
1299 | url = "https://registry.npmjs.org/passport-jwt/-/passport-jwt-3.0.1.tgz"; | ||
1300 | sha1 = "e4f7276dad8bd251d43c6fc38883130b963272f6"; | ||
1301 | }; | ||
1302 | }; | ||
1303 | "passport-strategy-1.0.0" = { | ||
1304 | name = "passport-strategy"; | ||
1305 | packageName = "passport-strategy"; | ||
1306 | version = "1.0.0"; | ||
1307 | src = fetchurl { | ||
1308 | url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz"; | ||
1309 | sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4"; | ||
1310 | }; | ||
1311 | }; | ||
1312 | "path-is-absolute-1.0.1" = { | ||
1313 | name = "path-is-absolute"; | ||
1314 | packageName = "path-is-absolute"; | ||
1315 | version = "1.0.1"; | ||
1316 | src = fetchurl { | ||
1317 | url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; | ||
1318 | sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; | ||
1319 | }; | ||
1320 | }; | ||
1321 | "pause-0.0.1" = { | ||
1322 | name = "pause"; | ||
1323 | packageName = "pause"; | ||
1324 | version = "0.0.1"; | ||
1325 | src = fetchurl { | ||
1326 | url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz"; | ||
1327 | sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"; | ||
1328 | }; | ||
1329 | }; | ||
1330 | "performance-now-2.1.0" = { | ||
1331 | name = "performance-now"; | ||
1332 | packageName = "performance-now"; | ||
1333 | version = "2.1.0"; | ||
1334 | src = fetchurl { | ||
1335 | url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; | ||
1336 | sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; | ||
1337 | }; | ||
1338 | }; | ||
1339 | "pg-6.1.3" = { | ||
1340 | name = "pg"; | ||
1341 | packageName = "pg"; | ||
1342 | version = "6.1.3"; | ||
1343 | src = fetchurl { | ||
1344 | url = "https://registry.npmjs.org/pg/-/pg-6.1.3.tgz"; | ||
1345 | sha1 = "8e5e497329c2b81dbfd563f1541c5803c7269de4"; | ||
1346 | }; | ||
1347 | }; | ||
1348 | "pg-connection-string-0.1.3" = { | ||
1349 | name = "pg-connection-string"; | ||
1350 | packageName = "pg-connection-string"; | ||
1351 | version = "0.1.3"; | ||
1352 | src = fetchurl { | ||
1353 | url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-0.1.3.tgz"; | ||
1354 | sha1 = "da1847b20940e42ee1492beaf65d49d91b245df7"; | ||
1355 | }; | ||
1356 | }; | ||
1357 | "pg-int8-1.0.1" = { | ||
1358 | name = "pg-int8"; | ||
1359 | packageName = "pg-int8"; | ||
1360 | version = "1.0.1"; | ||
1361 | src = fetchurl { | ||
1362 | url = "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz"; | ||
1363 | sha512 = "WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="; | ||
1364 | }; | ||
1365 | }; | ||
1366 | "pg-pool-1.8.0" = { | ||
1367 | name = "pg-pool"; | ||
1368 | packageName = "pg-pool"; | ||
1369 | version = "1.8.0"; | ||
1370 | src = fetchurl { | ||
1371 | url = "https://registry.npmjs.org/pg-pool/-/pg-pool-1.8.0.tgz"; | ||
1372 | sha1 = "f7ec73824c37a03f076f51bfdf70e340147c4f37"; | ||
1373 | }; | ||
1374 | }; | ||
1375 | "pg-types-1.13.0" = { | ||
1376 | name = "pg-types"; | ||
1377 | packageName = "pg-types"; | ||
1378 | version = "1.13.0"; | ||
1379 | src = fetchurl { | ||
1380 | url = "https://registry.npmjs.org/pg-types/-/pg-types-1.13.0.tgz"; | ||
1381 | sha512 = "lfKli0Gkl/+za/+b6lzENajczwZHc7D5kiUCZfgm914jipD2kIOIvEkAhZ8GrW3/TUoP9w8FHjwpPObBye5KQQ=="; | ||
1382 | }; | ||
1383 | }; | ||
1384 | "pgpass-1.0.2" = { | ||
1385 | name = "pgpass"; | ||
1386 | packageName = "pgpass"; | ||
1387 | version = "1.0.2"; | ||
1388 | src = fetchurl { | ||
1389 | url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.2.tgz"; | ||
1390 | sha1 = "2a7bb41b6065b67907e91da1b07c1847c877b306"; | ||
1391 | }; | ||
1392 | }; | ||
1393 | "postgres-array-1.0.3" = { | ||
1394 | name = "postgres-array"; | ||
1395 | packageName = "postgres-array"; | ||
1396 | version = "1.0.3"; | ||
1397 | src = fetchurl { | ||
1398 | url = "https://registry.npmjs.org/postgres-array/-/postgres-array-1.0.3.tgz"; | ||
1399 | sha512 = "5wClXrAP0+78mcsNX3/ithQ5exKvCyK5lr5NEEEeGwwM6NJdQgzIJBVxLvRW+huFpX92F2QnZ5CcokH0VhK2qQ=="; | ||
1400 | }; | ||
1401 | }; | ||
1402 | "postgres-bytea-1.0.0" = { | ||
1403 | name = "postgres-bytea"; | ||
1404 | packageName = "postgres-bytea"; | ||
1405 | version = "1.0.0"; | ||
1406 | src = fetchurl { | ||
1407 | url = "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz"; | ||
1408 | sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35"; | ||
1409 | }; | ||
1410 | }; | ||
1411 | "postgres-date-1.0.5" = { | ||
1412 | name = "postgres-date"; | ||
1413 | packageName = "postgres-date"; | ||
1414 | version = "1.0.5"; | ||
1415 | src = fetchurl { | ||
1416 | url = "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.5.tgz"; | ||
1417 | sha512 = "pdau6GRPERdAYUQwkBnGKxEfPyhVZXG/JiS44iZWiNdSOWE09N2lUgN6yshuq6fVSon4Pm0VMXd1srUUkLe9iA=="; | ||
1418 | }; | ||
1419 | }; | ||
1420 | "postgres-interval-1.2.0" = { | ||
1421 | name = "postgres-interval"; | ||
1422 | packageName = "postgres-interval"; | ||
1423 | version = "1.2.0"; | ||
1424 | src = fetchurl { | ||
1425 | url = "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz"; | ||
1426 | sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="; | ||
1427 | }; | ||
1428 | }; | ||
1429 | "precond-0.2.3" = { | ||
1430 | name = "precond"; | ||
1431 | packageName = "precond"; | ||
1432 | version = "0.2.3"; | ||
1433 | src = fetchurl { | ||
1434 | url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz"; | ||
1435 | sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; | ||
1436 | }; | ||
1437 | }; | ||
1438 | "promise-7.3.1" = { | ||
1439 | name = "promise"; | ||
1440 | packageName = "promise"; | ||
1441 | version = "7.3.1"; | ||
1442 | src = fetchurl { | ||
1443 | url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"; | ||
1444 | sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg=="; | ||
1445 | }; | ||
1446 | }; | ||
1447 | "psl-1.8.0" = { | ||
1448 | name = "psl"; | ||
1449 | packageName = "psl"; | ||
1450 | version = "1.8.0"; | ||
1451 | src = fetchurl { | ||
1452 | url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; | ||
1453 | sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; | ||
1454 | }; | ||
1455 | }; | ||
1456 | "punycode-2.1.1" = { | ||
1457 | name = "punycode"; | ||
1458 | packageName = "punycode"; | ||
1459 | version = "2.1.1"; | ||
1460 | src = fetchurl { | ||
1461 | url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; | ||
1462 | sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; | ||
1463 | }; | ||
1464 | }; | ||
1465 | "qs-2.4.2" = { | ||
1466 | name = "qs"; | ||
1467 | packageName = "qs"; | ||
1468 | version = "2.4.2"; | ||
1469 | src = fetchurl { | ||
1470 | url = "https://registry.npmjs.org/qs/-/qs-2.4.2.tgz"; | ||
1471 | sha1 = "f7ce788e5777df0b5010da7f7c4e73ba32470f5a"; | ||
1472 | }; | ||
1473 | }; | ||
1474 | "qs-6.5.2" = { | ||
1475 | name = "qs"; | ||
1476 | packageName = "qs"; | ||
1477 | version = "6.5.2"; | ||
1478 | src = fetchurl { | ||
1479 | url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; | ||
1480 | sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; | ||
1481 | }; | ||
1482 | }; | ||
1483 | "raw-body-2.0.2" = { | ||
1484 | name = "raw-body"; | ||
1485 | packageName = "raw-body"; | ||
1486 | version = "2.0.2"; | ||
1487 | src = fetchurl { | ||
1488 | url = "https://registry.npmjs.org/raw-body/-/raw-body-2.0.2.tgz"; | ||
1489 | sha1 = "a2c2f98c8531cee99c63d8d238b7de97bb659fca"; | ||
1490 | }; | ||
1491 | }; | ||
1492 | "readable-stream-1.1.14" = { | ||
1493 | name = "readable-stream"; | ||
1494 | packageName = "readable-stream"; | ||
1495 | version = "1.1.14"; | ||
1496 | src = fetchurl { | ||
1497 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; | ||
1498 | sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; | ||
1499 | }; | ||
1500 | }; | ||
1501 | "redis-3.0.2" = { | ||
1502 | name = "redis"; | ||
1503 | packageName = "redis"; | ||
1504 | version = "3.0.2"; | ||
1505 | src = fetchurl { | ||
1506 | url = "https://registry.npmjs.org/redis/-/redis-3.0.2.tgz"; | ||
1507 | sha512 = "PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ=="; | ||
1508 | }; | ||
1509 | }; | ||
1510 | "redis-commands-1.5.0" = { | ||
1511 | name = "redis-commands"; | ||
1512 | packageName = "redis-commands"; | ||
1513 | version = "1.5.0"; | ||
1514 | src = fetchurl { | ||
1515 | url = "https://registry.npmjs.org/redis-commands/-/redis-commands-1.5.0.tgz"; | ||
1516 | sha512 = "6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg=="; | ||
1517 | }; | ||
1518 | }; | ||
1519 | "redis-errors-1.2.0" = { | ||
1520 | name = "redis-errors"; | ||
1521 | packageName = "redis-errors"; | ||
1522 | version = "1.2.0"; | ||
1523 | src = fetchurl { | ||
1524 | url = "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz"; | ||
1525 | sha1 = "eb62d2adb15e4eaf4610c04afe1529384250abad"; | ||
1526 | }; | ||
1527 | }; | ||
1528 | "redis-parser-3.0.0" = { | ||
1529 | name = "redis-parser"; | ||
1530 | packageName = "redis-parser"; | ||
1531 | version = "3.0.0"; | ||
1532 | src = fetchurl { | ||
1533 | url = "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz"; | ||
1534 | sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4"; | ||
1535 | }; | ||
1536 | }; | ||
1537 | "request-2.88.2" = { | ||
1538 | name = "request"; | ||
1539 | packageName = "request"; | ||
1540 | version = "2.88.2"; | ||
1541 | src = fetchurl { | ||
1542 | url = "https://registry.npmjs.org/request/-/request-2.88.2.tgz"; | ||
1543 | sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; | ||
1544 | }; | ||
1545 | }; | ||
1546 | "require-all-1.0.0" = { | ||
1547 | name = "require-all"; | ||
1548 | packageName = "require-all"; | ||
1549 | version = "1.0.0"; | ||
1550 | src = fetchurl { | ||
1551 | url = "https://registry.npmjs.org/require-all/-/require-all-1.0.0.tgz"; | ||
1552 | sha1 = "8483708e7ce4c6dfad988b5080f97829b92d2227"; | ||
1553 | }; | ||
1554 | }; | ||
1555 | "rethinkdb-2.4.2" = { | ||
1556 | name = "rethinkdb"; | ||
1557 | packageName = "rethinkdb"; | ||
1558 | version = "2.4.2"; | ||
1559 | src = fetchurl { | ||
1560 | url = "https://registry.npmjs.org/rethinkdb/-/rethinkdb-2.4.2.tgz"; | ||
1561 | sha512 = "6DzwqEpFc8cqesAdo07a845oBRxLiHvWzopTKBo/uY2ypGWIsJQFJk3wjRDtSEhczxJqLS0jnf37rwgzYAw8NQ=="; | ||
1562 | }; | ||
1563 | }; | ||
1564 | "rimraf-2.4.5" = { | ||
1565 | name = "rimraf"; | ||
1566 | packageName = "rimraf"; | ||
1567 | version = "2.4.5"; | ||
1568 | src = fetchurl { | ||
1569 | url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; | ||
1570 | sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; | ||
1571 | }; | ||
1572 | }; | ||
1573 | "safe-buffer-5.2.0" = { | ||
1574 | name = "safe-buffer"; | ||
1575 | packageName = "safe-buffer"; | ||
1576 | version = "5.2.0"; | ||
1577 | src = fetchurl { | ||
1578 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; | ||
1579 | sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; | ||
1580 | }; | ||
1581 | }; | ||
1582 | "safe-json-stringify-1.2.0" = { | ||
1583 | name = "safe-json-stringify"; | ||
1584 | packageName = "safe-json-stringify"; | ||
1585 | version = "1.2.0"; | ||
1586 | src = fetchurl { | ||
1587 | url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; | ||
1588 | sha512 = "gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg=="; | ||
1589 | }; | ||
1590 | }; | ||
1591 | "safer-buffer-2.1.2" = { | ||
1592 | name = "safer-buffer"; | ||
1593 | packageName = "safer-buffer"; | ||
1594 | version = "2.1.2"; | ||
1595 | src = fetchurl { | ||
1596 | url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; | ||
1597 | sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; | ||
1598 | }; | ||
1599 | }; | ||
1600 | "sax-1.2.4" = { | ||
1601 | name = "sax"; | ||
1602 | packageName = "sax"; | ||
1603 | version = "1.2.4"; | ||
1604 | src = fetchurl { | ||
1605 | url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; | ||
1606 | sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; | ||
1607 | }; | ||
1608 | }; | ||
1609 | "semver-4.3.2" = { | ||
1610 | name = "semver"; | ||
1611 | packageName = "semver"; | ||
1612 | version = "4.3.2"; | ||
1613 | src = fetchurl { | ||
1614 | url = "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz"; | ||
1615 | sha1 = "c7a07158a80bedd052355b770d82d6640f803be7"; | ||
1616 | }; | ||
1617 | }; | ||
1618 | "simple-cas-interface-1.0.2" = { | ||
1619 | name = "simple-cas-interface"; | ||
1620 | packageName = "simple-cas-interface"; | ||
1621 | version = "1.0.2"; | ||
1622 | src = fetchurl { | ||
1623 | url = "https://registry.npmjs.org/simple-cas-interface/-/simple-cas-interface-1.0.2.tgz"; | ||
1624 | sha1 = "e347b0a7955b5254dae9727984368dd534cde8ec"; | ||
1625 | }; | ||
1626 | }; | ||
1627 | "slugg-0.1.2" = { | ||
1628 | name = "slugg"; | ||
1629 | packageName = "slugg"; | ||
1630 | version = "0.1.2"; | ||
1631 | src = fetchurl { | ||
1632 | url = "https://registry.npmjs.org/slugg/-/slugg-0.1.2.tgz"; | ||
1633 | sha1 = "3a2a65baaf24c0f62eaac8acf243740a379072b5"; | ||
1634 | }; | ||
1635 | }; | ||
1636 | "split-1.0.1" = { | ||
1637 | name = "split"; | ||
1638 | packageName = "split"; | ||
1639 | version = "1.0.1"; | ||
1640 | src = fetchurl { | ||
1641 | url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; | ||
1642 | sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; | ||
1643 | }; | ||
1644 | }; | ||
1645 | "sshpk-1.16.1" = { | ||
1646 | name = "sshpk"; | ||
1647 | packageName = "sshpk"; | ||
1648 | version = "1.16.1"; | ||
1649 | src = fetchurl { | ||
1650 | url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; | ||
1651 | sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; | ||
1652 | }; | ||
1653 | }; | ||
1654 | "starttls-0.2.1" = { | ||
1655 | name = "starttls"; | ||
1656 | packageName = "starttls"; | ||
1657 | version = "0.2.1"; | ||
1658 | src = fetchurl { | ||
1659 | url = "https://registry.npmjs.org/starttls/-/starttls-0.2.1.tgz"; | ||
1660 | sha1 = "b98d3e5e778d46f199c843a64f889f0347c6d19a"; | ||
1661 | }; | ||
1662 | }; | ||
1663 | "string-width-2.1.1" = { | ||
1664 | name = "string-width"; | ||
1665 | packageName = "string-width"; | ||
1666 | version = "2.1.1"; | ||
1667 | src = fetchurl { | ||
1668 | url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; | ||
1669 | sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; | ||
1670 | }; | ||
1671 | }; | ||
1672 | "string_decoder-0.10.31" = { | ||
1673 | name = "string_decoder"; | ||
1674 | packageName = "string_decoder"; | ||
1675 | version = "0.10.31"; | ||
1676 | src = fetchurl { | ||
1677 | url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; | ||
1678 | sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; | ||
1679 | }; | ||
1680 | }; | ||
1681 | "strip-ansi-3.0.1" = { | ||
1682 | name = "strip-ansi"; | ||
1683 | packageName = "strip-ansi"; | ||
1684 | version = "3.0.1"; | ||
1685 | src = fetchurl { | ||
1686 | url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; | ||
1687 | sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; | ||
1688 | }; | ||
1689 | }; | ||
1690 | "strip-ansi-4.0.0" = { | ||
1691 | name = "strip-ansi"; | ||
1692 | packageName = "strip-ansi"; | ||
1693 | version = "4.0.0"; | ||
1694 | src = fetchurl { | ||
1695 | url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; | ||
1696 | sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; | ||
1697 | }; | ||
1698 | }; | ||
1699 | "supports-color-2.0.0" = { | ||
1700 | name = "supports-color"; | ||
1701 | packageName = "supports-color"; | ||
1702 | version = "2.0.0"; | ||
1703 | src = fetchurl { | ||
1704 | url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; | ||
1705 | sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; | ||
1706 | }; | ||
1707 | }; | ||
1708 | "through-2.3.8" = { | ||
1709 | name = "through"; | ||
1710 | packageName = "through"; | ||
1711 | version = "2.3.8"; | ||
1712 | src = fetchurl { | ||
1713 | url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; | ||
1714 | sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; | ||
1715 | }; | ||
1716 | }; | ||
1717 | "topo-1.1.0" = { | ||
1718 | name = "topo"; | ||
1719 | packageName = "topo"; | ||
1720 | version = "1.1.0"; | ||
1721 | src = fetchurl { | ||
1722 | url = "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz"; | ||
1723 | sha1 = "e9d751615d1bb87dc865db182fa1ca0a5ef536d5"; | ||
1724 | }; | ||
1725 | }; | ||
1726 | "topo-2.0.2" = { | ||
1727 | name = "topo"; | ||
1728 | packageName = "topo"; | ||
1729 | version = "2.0.2"; | ||
1730 | src = fetchurl { | ||
1731 | url = "https://registry.npmjs.org/topo/-/topo-2.0.2.tgz"; | ||
1732 | sha1 = "cd5615752539057c0dc0491a621c3bc6fbe1d182"; | ||
1733 | }; | ||
1734 | }; | ||
1735 | "tough-cookie-2.5.0" = { | ||
1736 | name = "tough-cookie"; | ||
1737 | packageName = "tough-cookie"; | ||
1738 | version = "2.5.0"; | ||
1739 | src = fetchurl { | ||
1740 | url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"; | ||
1741 | sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; | ||
1742 | }; | ||
1743 | }; | ||
1744 | "tunnel-agent-0.6.0" = { | ||
1745 | name = "tunnel-agent"; | ||
1746 | packageName = "tunnel-agent"; | ||
1747 | version = "0.6.0"; | ||
1748 | src = fetchurl { | ||
1749 | url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; | ||
1750 | sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; | ||
1751 | }; | ||
1752 | }; | ||
1753 | "tweetnacl-0.14.5" = { | ||
1754 | name = "tweetnacl"; | ||
1755 | packageName = "tweetnacl"; | ||
1756 | version = "0.14.5"; | ||
1757 | src = fetchurl { | ||
1758 | url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; | ||
1759 | sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; | ||
1760 | }; | ||
1761 | }; | ||
1762 | "type-is-1.6.18" = { | ||
1763 | name = "type-is"; | ||
1764 | packageName = "type-is"; | ||
1765 | version = "1.6.18"; | ||
1766 | src = fetchurl { | ||
1767 | url = "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"; | ||
1768 | sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; | ||
1769 | }; | ||
1770 | }; | ||
1771 | "ueberdb2-0.3.8" = { | ||
1772 | name = "ueberdb2"; | ||
1773 | packageName = "ueberdb2"; | ||
1774 | version = "0.3.8"; | ||
1775 | src = fetchurl { | ||
1776 | url = "https://registry.npmjs.org/ueberdb2/-/ueberdb2-0.3.8.tgz"; | ||
1777 | sha512 = "eBjKyjQ3Ehk8phoC0ijnZD5RzJSE2wKg627hoEGowQrW+QcHwL5u2K/6pT+1wv6/PkC/VDth+b68ukG/VxrCTg=="; | ||
1778 | }; | ||
1779 | }; | ||
1780 | "uri-js-4.2.2" = { | ||
1781 | name = "uri-js"; | ||
1782 | packageName = "uri-js"; | ||
1783 | version = "4.2.2"; | ||
1784 | src = fetchurl { | ||
1785 | url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; | ||
1786 | sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; | ||
1787 | }; | ||
1788 | }; | ||
1789 | "uuid-3.4.0" = { | ||
1790 | name = "uuid"; | ||
1791 | packageName = "uuid"; | ||
1792 | version = "3.4.0"; | ||
1793 | src = fetchurl { | ||
1794 | url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"; | ||
1795 | sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; | ||
1796 | }; | ||
1797 | }; | ||
1798 | "vasync-1.6.4" = { | ||
1799 | name = "vasync"; | ||
1800 | packageName = "vasync"; | ||
1801 | version = "1.6.4"; | ||
1802 | src = fetchurl { | ||
1803 | url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; | ||
1804 | sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; | ||
1805 | }; | ||
1806 | }; | ||
1807 | "verror-1.10.0" = { | ||
1808 | name = "verror"; | ||
1809 | packageName = "verror"; | ||
1810 | version = "1.10.0"; | ||
1811 | src = fetchurl { | ||
1812 | url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; | ||
1813 | sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; | ||
1814 | }; | ||
1815 | }; | ||
1816 | "verror-1.6.0" = { | ||
1817 | name = "verror"; | ||
1818 | packageName = "verror"; | ||
1819 | version = "1.6.0"; | ||
1820 | src = fetchurl { | ||
1821 | url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; | ||
1822 | sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; | ||
1823 | }; | ||
1824 | }; | ||
1825 | "wrappy-1.0.2" = { | ||
1826 | name = "wrappy"; | ||
1827 | packageName = "wrappy"; | ||
1828 | version = "1.0.2"; | ||
1829 | src = fetchurl { | ||
1830 | url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; | ||
1831 | sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; | ||
1832 | }; | ||
1833 | }; | ||
1834 | "xml2js-0.4.23" = { | ||
1835 | name = "xml2js"; | ||
1836 | packageName = "xml2js"; | ||
1837 | version = "0.4.23"; | ||
1838 | src = fetchurl { | ||
1839 | url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz"; | ||
1840 | sha512 = "ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug=="; | ||
1841 | }; | ||
1842 | }; | ||
1843 | "xmlbuilder-11.0.1" = { | ||
1844 | name = "xmlbuilder"; | ||
1845 | packageName = "xmlbuilder"; | ||
1846 | version = "11.0.1"; | ||
1847 | src = fetchurl { | ||
1848 | url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz"; | ||
1849 | sha512 = "fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA=="; | ||
1850 | }; | ||
1851 | }; | ||
1852 | "xtend-4.0.2" = { | ||
1853 | name = "xtend"; | ||
1854 | packageName = "xtend"; | ||
1855 | version = "4.0.2"; | ||
1856 | src = fetchurl { | ||
1857 | url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; | ||
1858 | sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; | ||
1859 | }; | ||
1860 | }; | ||
1861 | "yallist-3.1.1" = { | ||
1862 | name = "yallist"; | ||
1863 | packageName = "yallist"; | ||
1864 | version = "3.1.1"; | ||
1865 | src = fetchurl { | ||
1866 | url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"; | ||
1867 | sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="; | ||
1868 | }; | ||
1869 | }; | ||
1870 | }; | ||
1871 | in | ||
1872 | { | ||
1873 | ep_mypads = nodeEnv.buildNodePackage { | ||
1874 | name = "ep_mypads"; | ||
1875 | packageName = "ep_mypads"; | ||
1876 | version = "1.7.16"; | ||
1877 | preRebuild = '' | ||
1878 | patch -p1 < ${./fix_ldap.patch} | ||
1879 | ''; | ||
1880 | src = fetchurl { | ||
1881 | url = "https://registry.npmjs.org/ep_mypads/-/ep_mypads-1.7.16.tgz"; | ||
1882 | sha512 = "9byCSgC6Jc/0c1t/Wd+3rwtMEhXKLSWui9hI3ZacZzIf5oSwr2hcr+6W7l6xJIzdPN6jQDnA5WGi1fnX9fSjsQ=="; | ||
1883 | }; | ||
1884 | dependencies = [ | ||
1885 | sources."@types/ldapjs-1.0.7" | ||
1886 | sources."@types/node-13.13.4" | ||
1887 | sources."abstract-logging-1.0.0" | ||
1888 | sources."addressparser-0.3.2" | ||
1889 | sources."ajv-6.12.2" | ||
1890 | sources."ansi-regex-3.0.0" | ||
1891 | sources."ansi-styles-2.2.1" | ||
1892 | sources."asap-2.0.6" | ||
1893 | sources."asn1-0.2.3" | ||
1894 | sources."assert-plus-1.0.0" | ||
1895 | (sources."async-2.6.3" // { | ||
1896 | dependencies = [ | ||
1897 | sources."lodash-4.17.15" | ||
1898 | ]; | ||
1899 | }) | ||
1900 | sources."asynckit-0.4.0" | ||
1901 | sources."aws-sign2-0.7.0" | ||
1902 | sources."aws4-1.9.1" | ||
1903 | sources."backoff-2.5.0" | ||
1904 | sources."balanced-match-1.0.0" | ||
1905 | sources."bcrypt-pbkdf-1.0.2" | ||
1906 | sources."bcryptjs-2.4.3" | ||
1907 | sources."bignumber.js-2.0.5" | ||
1908 | sources."bluebird-2.11.0" | ||
1909 | sources."body-parser-1.12.4" | ||
1910 | sources."brace-expansion-1.1.11" | ||
1911 | sources."browser-fingerprint-0.0.1" | ||
1912 | sources."browser-request-0.3.3" | ||
1913 | sources."buffer-equal-constant-time-1.0.1" | ||
1914 | sources."buffer-writer-1.0.1" | ||
1915 | sources."bufferjs-1.1.0" | ||
1916 | (sources."bunyan-1.8.12" // { | ||
1917 | dependencies = [ | ||
1918 | sources."moment-2.24.0" | ||
1919 | ]; | ||
1920 | }) | ||
1921 | sources."bytes-1.0.0" | ||
1922 | sources."caseless-0.12.0" | ||
1923 | (sources."cassandra-driver-2.0.1" // { | ||
1924 | dependencies = [ | ||
1925 | sources."async-0.9.2" | ||
1926 | ]; | ||
1927 | }) | ||
1928 | (sources."chalk-1.1.3" // { | ||
1929 | dependencies = [ | ||
1930 | sources."ansi-regex-2.1.1" | ||
1931 | sources."strip-ansi-3.0.1" | ||
1932 | ]; | ||
1933 | }) | ||
1934 | sources."channels-0.0.4" | ||
1935 | sources."cli-progress-2.1.1" | ||
1936 | (sources."cloudant-follow-0.17.0" // { | ||
1937 | dependencies = [ | ||
1938 | sources."debug-3.2.6" | ||
1939 | sources."ms-2.1.2" | ||
1940 | ]; | ||
1941 | }) | ||
1942 | sources."colors-1.4.0" | ||
1943 | sources."combined-stream-1.0.8" | ||
1944 | sources."commander-2.20.3" | ||
1945 | sources."concat-map-0.0.1" | ||
1946 | sources."content-type-1.0.4" | ||
1947 | sources."cookie-0.1.2" | ||
1948 | sources."cookie-parser-1.3.4" | ||
1949 | sources."cookie-signature-1.0.6" | ||
1950 | sources."core-js-1.2.7" | ||
1951 | sources."core-util-is-1.0.2" | ||
1952 | sources."cuid-1.3.8" | ||
1953 | sources."dashdash-1.14.1" | ||
1954 | sources."debug-2.2.0" | ||
1955 | sources."delayed-stream-1.0.0" | ||
1956 | sources."denque-1.4.1" | ||
1957 | sources."depd-1.0.1" | ||
1958 | sources."dirty-0.9.9" | ||
1959 | sources."dtrace-provider-0.8.8" | ||
1960 | sources."ecc-jsbn-0.1.2" | ||
1961 | sources."ecdsa-sig-formatter-1.0.11" | ||
1962 | sources."ee-first-1.1.0" | ||
1963 | sources."elasticsearch-11.0.1" | ||
1964 | sources."emailjs-0.3.16" | ||
1965 | (sources."encoding-0.1.12" // { | ||
1966 | dependencies = [ | ||
1967 | sources."iconv-lite-0.4.24" | ||
1968 | ]; | ||
1969 | }) | ||
1970 | sources."errs-0.3.2" | ||
1971 | sources."escape-string-regexp-1.0.5" | ||
1972 | sources."extend-3.0.2" | ||
1973 | sources."extsprintf-1.2.0" | ||
1974 | sources."fast-deep-equal-3.1.1" | ||
1975 | sources."fast-json-stable-stringify-2.1.0" | ||
1976 | sources."forever-agent-0.6.1" | ||
1977 | sources."form-data-2.3.3" | ||
1978 | sources."generic-pool-2.4.3" | ||
1979 | sources."getpass-0.1.7" | ||
1980 | sources."glob-6.0.4" | ||
1981 | sources."har-schema-2.0.0" | ||
1982 | sources."har-validator-5.1.3" | ||
1983 | (sources."has-ansi-2.0.0" // { | ||
1984 | dependencies = [ | ||
1985 | sources."ansi-regex-2.1.1" | ||
1986 | ]; | ||
1987 | }) | ||
1988 | sources."hoek-2.16.3" | ||
1989 | sources."http-signature-1.2.0" | ||
1990 | sources."iconv-lite-0.4.8" | ||
1991 | sources."inflight-1.0.6" | ||
1992 | sources."inherits-2.0.4" | ||
1993 | sources."is-fullwidth-code-point-2.0.0" | ||
1994 | sources."is-typedarray-1.0.0" | ||
1995 | sources."isarray-0.0.1" | ||
1996 | sources."isemail-1.2.0" | ||
1997 | sources."isstream-0.1.2" | ||
1998 | sources."items-2.1.2" | ||
1999 | (sources."joi-6.10.1" // { | ||
2000 | dependencies = [ | ||
2001 | sources."moment-2.24.0" | ||
2002 | ]; | ||
2003 | }) | ||
2004 | sources."js-base64-2.1.9" | ||
2005 | sources."js-cookie-2.2.1" | ||
2006 | sources."jsbn-0.1.1" | ||
2007 | sources."json-beautify-1.1.1" | ||
2008 | sources."json-schema-0.2.3" | ||
2009 | sources."json-schema-traverse-0.4.1" | ||
2010 | sources."json-stringify-safe-5.0.1" | ||
2011 | sources."jsonminify-0.4.1" | ||
2012 | sources."jsonwebtoken-5.0.5" | ||
2013 | (sources."jsprim-1.4.1" // { | ||
2014 | dependencies = [ | ||
2015 | sources."extsprintf-1.3.0" | ||
2016 | ]; | ||
2017 | }) | ||
2018 | sources."jwa-1.4.1" | ||
2019 | sources."jws-3.2.2" | ||
2020 | (sources."ldap-filter-0.2.2" // { | ||
2021 | dependencies = [ | ||
2022 | sources."assert-plus-0.1.5" | ||
2023 | ]; | ||
2024 | }) | ||
2025 | sources."ldapauth-fork-4.3.3" | ||
2026 | sources."ldapjs-1.0.2" | ||
2027 | sources."lodash-3.10.1" | ||
2028 | sources."lodash-compat-3.10.2" | ||
2029 | sources."lodash.isempty-4.4.0" | ||
2030 | sources."lodash.once-4.1.1" | ||
2031 | sources."long-2.4.0" | ||
2032 | sources."lru-cache-5.1.1" | ||
2033 | sources."media-typer-0.3.0" | ||
2034 | sources."mime-db-1.44.0" | ||
2035 | sources."mime-types-2.1.27" | ||
2036 | (sources."mimelib-0.2.14" // { | ||
2037 | dependencies = [ | ||
2038 | sources."addressparser-0.2.1" | ||
2039 | ]; | ||
2040 | }) | ||
2041 | sources."minimatch-3.0.4" | ||
2042 | sources."minimist-1.2.5" | ||
2043 | sources."mkdirp-0.5.5" | ||
2044 | sources."moment-1.7.0" | ||
2045 | sources."ms-0.7.1" | ||
2046 | sources."mv-2.1.1" | ||
2047 | sources."mysql-2.6.1" | ||
2048 | sources."nan-2.14.1" | ||
2049 | sources."nano-6.4.4" | ||
2050 | sources."ncp-2.0.0" | ||
2051 | sources."node-fingerprint-0.0.2" | ||
2052 | sources."oauth-sign-0.9.0" | ||
2053 | sources."object-assign-4.1.0" | ||
2054 | sources."on-finished-2.2.1" | ||
2055 | sources."once-1.4.0" | ||
2056 | sources."packet-reader-0.2.0" | ||
2057 | sources."passport-0.2.2" | ||
2058 | (sources."passport-jwt-3.0.1" // { | ||
2059 | dependencies = [ | ||
2060 | sources."jsonwebtoken-7.4.3" | ||
2061 | sources."ms-2.1.2" | ||
2062 | ]; | ||
2063 | }) | ||
2064 | sources."passport-strategy-1.0.0" | ||
2065 | sources."path-is-absolute-1.0.1" | ||
2066 | sources."pause-0.0.1" | ||
2067 | sources."performance-now-2.1.0" | ||
2068 | sources."pg-6.1.3" | ||
2069 | sources."pg-connection-string-0.1.3" | ||
2070 | sources."pg-int8-1.0.1" | ||
2071 | sources."pg-pool-1.8.0" | ||
2072 | sources."pg-types-1.13.0" | ||
2073 | sources."pgpass-1.0.2" | ||
2074 | sources."postgres-array-1.0.3" | ||
2075 | sources."postgres-bytea-1.0.0" | ||
2076 | sources."postgres-date-1.0.5" | ||
2077 | sources."postgres-interval-1.2.0" | ||
2078 | sources."precond-0.2.3" | ||
2079 | sources."promise-7.3.1" | ||
2080 | sources."psl-1.8.0" | ||
2081 | sources."punycode-2.1.1" | ||
2082 | sources."qs-2.4.2" | ||
2083 | (sources."raw-body-2.0.2" // { | ||
2084 | dependencies = [ | ||
2085 | sources."bytes-2.1.0" | ||
2086 | ]; | ||
2087 | }) | ||
2088 | sources."readable-stream-1.1.14" | ||
2089 | sources."redis-3.0.2" | ||
2090 | sources."redis-commands-1.5.0" | ||
2091 | sources."redis-errors-1.2.0" | ||
2092 | sources."redis-parser-3.0.0" | ||
2093 | (sources."request-2.88.2" // { | ||
2094 | dependencies = [ | ||
2095 | sources."qs-6.5.2" | ||
2096 | ]; | ||
2097 | }) | ||
2098 | sources."require-all-1.0.0" | ||
2099 | sources."rethinkdb-2.4.2" | ||
2100 | sources."rimraf-2.4.5" | ||
2101 | sources."safe-buffer-5.2.0" | ||
2102 | sources."safe-json-stringify-1.2.0" | ||
2103 | sources."safer-buffer-2.1.2" | ||
2104 | sources."sax-1.2.4" | ||
2105 | sources."semver-4.3.2" | ||
2106 | (sources."simple-cas-interface-1.0.2" // { | ||
2107 | dependencies = [ | ||
2108 | sources."hoek-4.2.1" | ||
2109 | sources."isemail-2.2.1" | ||
2110 | sources."joi-10.6.0" | ||
2111 | sources."topo-2.0.2" | ||
2112 | ]; | ||
2113 | }) | ||
2114 | sources."slugg-0.1.2" | ||
2115 | sources."split-1.0.1" | ||
2116 | sources."sshpk-1.16.1" | ||
2117 | sources."starttls-0.2.1" | ||
2118 | sources."string-width-2.1.1" | ||
2119 | sources."string_decoder-0.10.31" | ||
2120 | sources."strip-ansi-4.0.0" | ||
2121 | sources."supports-color-2.0.0" | ||
2122 | sources."through-2.3.8" | ||
2123 | sources."topo-1.1.0" | ||
2124 | sources."tough-cookie-2.5.0" | ||
2125 | sources."tunnel-agent-0.6.0" | ||
2126 | sources."tweetnacl-0.14.5" | ||
2127 | sources."type-is-1.6.18" | ||
2128 | (sources."ueberdb2-0.3.8" // { | ||
2129 | dependencies = [ | ||
2130 | sources."async-0.1.15" | ||
2131 | ]; | ||
2132 | }) | ||
2133 | sources."uri-js-4.2.2" | ||
2134 | sources."uuid-3.4.0" | ||
2135 | (sources."vasync-1.6.4" // { | ||
2136 | dependencies = [ | ||
2137 | sources."verror-1.6.0" | ||
2138 | ]; | ||
2139 | }) | ||
2140 | sources."verror-1.10.0" | ||
2141 | sources."wrappy-1.0.2" | ||
2142 | sources."xml2js-0.4.23" | ||
2143 | sources."xmlbuilder-11.0.1" | ||
2144 | sources."xtend-4.0.2" | ||
2145 | sources."yallist-3.1.1" | ||
2146 | ]; | ||
2147 | buildInputs = globalBuildInputs; | ||
2148 | meta = { | ||
2149 | description = "Groups and private pads for etherpad"; | ||
2150 | license = "Apache-2.0"; | ||
2151 | }; | ||
2152 | production = true; | ||
2153 | bypassCache = true; | ||
2154 | reconstructLock = true; | ||
2155 | }; | ||
2156 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_page_view/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_page_view/node-packages.json deleted file mode 100644 index c5f4a7b..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_page_view/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | ["ep_page_view"] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_page_view/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_page_view/node-packages.nix deleted file mode 100644 index e6c6b65..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_page_view/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_page_view = nodeEnv.buildNodePackage { | ||
10 | name = "ep_page_view"; | ||
11 | packageName = "ep_page_view"; | ||
12 | version = "0.5.24"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_page_view/-/ep_page_view-0.5.24.tgz"; | ||
15 | sha1 = "26437c23169678f5bd53545b621b492b5b6f2ce4"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Add support to do 'page view', with a toggle on/off option in Settings, also Page Breaks with Control Enter"; | ||
20 | homepage = "https://github.com/ether/ep_page_view#readme"; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_previewimages/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_previewimages/node-packages.json deleted file mode 100644 index cc14ec4..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_previewimages/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_previewimages" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_previewimages/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_previewimages/node-packages.nix deleted file mode 100644 index cd0972b..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_previewimages/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_previewimages = nodeEnv.buildNodePackage { | ||
10 | name = "ep_previewimages"; | ||
11 | packageName = "ep_previewimages"; | ||
12 | version = "0.0.9"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_previewimages/-/ep_previewimages-0.0.9.tgz"; | ||
15 | sha1 = "417d96249c50f8a59a1ef6c640e4ac98c26a106b"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Image previewer, paste the URL of an image or upload an image using ep_fileupload"; | ||
20 | homepage = https://github.com/JohnMcLear/ep_previewimages; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_private_pad/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_private_pad/node-packages.json deleted file mode 100644 index c25d8c9..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_private_pad/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | ["ep_private_pad"] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_private_pad/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_private_pad/node-packages.nix deleted file mode 100644 index 1744f52..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_private_pad/node-packages.nix +++ /dev/null | |||
@@ -1,2056 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = { | ||
7 | "abbrev-1.1.1" = { | ||
8 | name = "abbrev"; | ||
9 | packageName = "abbrev"; | ||
10 | version = "1.1.1"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; | ||
13 | sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; | ||
14 | }; | ||
15 | }; | ||
16 | "accepts-1.3.7" = { | ||
17 | name = "accepts"; | ||
18 | packageName = "accepts"; | ||
19 | version = "1.3.7"; | ||
20 | src = fetchurl { | ||
21 | url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"; | ||
22 | sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; | ||
23 | }; | ||
24 | }; | ||
25 | "ajv-6.12.2" = { | ||
26 | name = "ajv"; | ||
27 | packageName = "ajv"; | ||
28 | version = "6.12.2"; | ||
29 | src = fetchurl { | ||
30 | url = "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz"; | ||
31 | sha512 = "k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ=="; | ||
32 | }; | ||
33 | }; | ||
34 | "align-text-0.1.4" = { | ||
35 | name = "align-text"; | ||
36 | packageName = "align-text"; | ||
37 | version = "0.1.4"; | ||
38 | src = fetchurl { | ||
39 | url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; | ||
40 | sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; | ||
41 | }; | ||
42 | }; | ||
43 | "ansi-regex-2.1.1" = { | ||
44 | name = "ansi-regex"; | ||
45 | packageName = "ansi-regex"; | ||
46 | version = "2.1.1"; | ||
47 | src = fetchurl { | ||
48 | url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; | ||
49 | sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; | ||
50 | }; | ||
51 | }; | ||
52 | "any-1.0.0" = { | ||
53 | name = "any"; | ||
54 | packageName = "any"; | ||
55 | version = "1.0.0"; | ||
56 | src = fetchurl { | ||
57 | url = "https://registry.npmjs.org/any/-/any-1.0.0.tgz"; | ||
58 | sha1 = "0a7b348c589faf6ba708d4a2241069ea51628b5e"; | ||
59 | }; | ||
60 | }; | ||
61 | "aproba-1.2.0" = { | ||
62 | name = "aproba"; | ||
63 | packageName = "aproba"; | ||
64 | version = "1.2.0"; | ||
65 | src = fetchurl { | ||
66 | url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; | ||
67 | sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="; | ||
68 | }; | ||
69 | }; | ||
70 | "are-we-there-yet-1.1.5" = { | ||
71 | name = "are-we-there-yet"; | ||
72 | packageName = "are-we-there-yet"; | ||
73 | version = "1.1.5"; | ||
74 | src = fetchurl { | ||
75 | url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; | ||
76 | sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="; | ||
77 | }; | ||
78 | }; | ||
79 | "arr-diff-1.1.0" = { | ||
80 | name = "arr-diff"; | ||
81 | packageName = "arr-diff"; | ||
82 | version = "1.1.0"; | ||
83 | src = fetchurl { | ||
84 | url = "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz"; | ||
85 | sha1 = "687c32758163588fef7de7b36fabe495eb1a399a"; | ||
86 | }; | ||
87 | }; | ||
88 | "arr-flatten-1.1.0" = { | ||
89 | name = "arr-flatten"; | ||
90 | packageName = "arr-flatten"; | ||
91 | version = "1.1.0"; | ||
92 | src = fetchurl { | ||
93 | url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"; | ||
94 | sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; | ||
95 | }; | ||
96 | }; | ||
97 | "arr-map-2.0.2" = { | ||
98 | name = "arr-map"; | ||
99 | packageName = "arr-map"; | ||
100 | version = "2.0.2"; | ||
101 | src = fetchurl { | ||
102 | url = "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz"; | ||
103 | sha1 = "3a77345ffc1cf35e2a91825601f9e58f2e24cac4"; | ||
104 | }; | ||
105 | }; | ||
106 | "arr-union-3.1.0" = { | ||
107 | name = "arr-union"; | ||
108 | packageName = "arr-union"; | ||
109 | version = "3.1.0"; | ||
110 | src = fetchurl { | ||
111 | url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; | ||
112 | sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; | ||
113 | }; | ||
114 | }; | ||
115 | "array-each-0.1.1" = { | ||
116 | name = "array-each"; | ||
117 | packageName = "array-each"; | ||
118 | version = "0.1.1"; | ||
119 | src = fetchurl { | ||
120 | url = "https://registry.npmjs.org/array-each/-/array-each-0.1.1.tgz"; | ||
121 | sha1 = "c5d52ba8225f36d728178ba7aec413acfaddd0f9"; | ||
122 | }; | ||
123 | }; | ||
124 | "array-flatten-1.1.1" = { | ||
125 | name = "array-flatten"; | ||
126 | packageName = "array-flatten"; | ||
127 | version = "1.1.1"; | ||
128 | src = fetchurl { | ||
129 | url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; | ||
130 | sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; | ||
131 | }; | ||
132 | }; | ||
133 | "array-slice-0.2.3" = { | ||
134 | name = "array-slice"; | ||
135 | packageName = "array-slice"; | ||
136 | version = "0.2.3"; | ||
137 | src = fetchurl { | ||
138 | url = "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz"; | ||
139 | sha1 = "dd3cfb80ed7973a75117cdac69b0b99ec86186f5"; | ||
140 | }; | ||
141 | }; | ||
142 | "array-unique-0.2.1" = { | ||
143 | name = "array-unique"; | ||
144 | packageName = "array-unique"; | ||
145 | version = "0.2.1"; | ||
146 | src = fetchurl { | ||
147 | url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"; | ||
148 | sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; | ||
149 | }; | ||
150 | }; | ||
151 | "asn1-0.2.4" = { | ||
152 | name = "asn1"; | ||
153 | packageName = "asn1"; | ||
154 | version = "0.2.4"; | ||
155 | src = fetchurl { | ||
156 | url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; | ||
157 | sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; | ||
158 | }; | ||
159 | }; | ||
160 | "assert-plus-1.0.0" = { | ||
161 | name = "assert-plus"; | ||
162 | packageName = "assert-plus"; | ||
163 | version = "1.0.0"; | ||
164 | src = fetchurl { | ||
165 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; | ||
166 | sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; | ||
167 | }; | ||
168 | }; | ||
169 | "asynckit-0.4.0" = { | ||
170 | name = "asynckit"; | ||
171 | packageName = "asynckit"; | ||
172 | version = "0.4.0"; | ||
173 | src = fetchurl { | ||
174 | url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; | ||
175 | sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; | ||
176 | }; | ||
177 | }; | ||
178 | "aws-sign2-0.7.0" = { | ||
179 | name = "aws-sign2"; | ||
180 | packageName = "aws-sign2"; | ||
181 | version = "0.7.0"; | ||
182 | src = fetchurl { | ||
183 | url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; | ||
184 | sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; | ||
185 | }; | ||
186 | }; | ||
187 | "aws4-1.9.1" = { | ||
188 | name = "aws4"; | ||
189 | packageName = "aws4"; | ||
190 | version = "1.9.1"; | ||
191 | src = fetchurl { | ||
192 | url = "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz"; | ||
193 | sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="; | ||
194 | }; | ||
195 | }; | ||
196 | "balanced-match-1.0.0" = { | ||
197 | name = "balanced-match"; | ||
198 | packageName = "balanced-match"; | ||
199 | version = "1.0.0"; | ||
200 | src = fetchurl { | ||
201 | url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; | ||
202 | sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; | ||
203 | }; | ||
204 | }; | ||
205 | "bcrypt-pbkdf-1.0.2" = { | ||
206 | name = "bcrypt-pbkdf"; | ||
207 | packageName = "bcrypt-pbkdf"; | ||
208 | version = "1.0.2"; | ||
209 | src = fetchurl { | ||
210 | url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; | ||
211 | sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; | ||
212 | }; | ||
213 | }; | ||
214 | "bignumber.js-9.0.0" = { | ||
215 | name = "bignumber.js"; | ||
216 | packageName = "bignumber.js"; | ||
217 | version = "9.0.0"; | ||
218 | src = fetchurl { | ||
219 | url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz"; | ||
220 | sha512 = "t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A=="; | ||
221 | }; | ||
222 | }; | ||
223 | "block-stream-0.0.9" = { | ||
224 | name = "block-stream"; | ||
225 | packageName = "block-stream"; | ||
226 | version = "0.0.9"; | ||
227 | src = fetchurl { | ||
228 | url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz"; | ||
229 | sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a"; | ||
230 | }; | ||
231 | }; | ||
232 | "body-parser-1.19.0" = { | ||
233 | name = "body-parser"; | ||
234 | packageName = "body-parser"; | ||
235 | version = "1.19.0"; | ||
236 | src = fetchurl { | ||
237 | url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"; | ||
238 | sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; | ||
239 | }; | ||
240 | }; | ||
241 | "brace-expansion-1.1.11" = { | ||
242 | name = "brace-expansion"; | ||
243 | packageName = "brace-expansion"; | ||
244 | version = "1.1.11"; | ||
245 | src = fetchurl { | ||
246 | url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; | ||
247 | sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; | ||
248 | }; | ||
249 | }; | ||
250 | "bytes-3.1.0" = { | ||
251 | name = "bytes"; | ||
252 | packageName = "bytes"; | ||
253 | version = "3.1.0"; | ||
254 | src = fetchurl { | ||
255 | url = "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"; | ||
256 | sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; | ||
257 | }; | ||
258 | }; | ||
259 | "caseless-0.12.0" = { | ||
260 | name = "caseless"; | ||
261 | packageName = "caseless"; | ||
262 | version = "0.12.0"; | ||
263 | src = fetchurl { | ||
264 | url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; | ||
265 | sha1 = "1b681c21ff84033c826543090689420d187151dc"; | ||
266 | }; | ||
267 | }; | ||
268 | "center-align-0.1.3" = { | ||
269 | name = "center-align"; | ||
270 | packageName = "center-align"; | ||
271 | version = "0.1.3"; | ||
272 | src = fetchurl { | ||
273 | url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; | ||
274 | sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; | ||
275 | }; | ||
276 | }; | ||
277 | "client-sessions-0.8.0" = { | ||
278 | name = "client-sessions"; | ||
279 | packageName = "client-sessions"; | ||
280 | version = "0.8.0"; | ||
281 | src = fetchurl { | ||
282 | url = "https://registry.npmjs.org/client-sessions/-/client-sessions-0.8.0.tgz"; | ||
283 | sha1 = "a7d8c5558ad5d56f2a199f3533eb654b5df893fd"; | ||
284 | }; | ||
285 | }; | ||
286 | "code-point-at-1.1.0" = { | ||
287 | name = "code-point-at"; | ||
288 | packageName = "code-point-at"; | ||
289 | version = "1.1.0"; | ||
290 | src = fetchurl { | ||
291 | url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; | ||
292 | sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; | ||
293 | }; | ||
294 | }; | ||
295 | "combined-stream-1.0.8" = { | ||
296 | name = "combined-stream"; | ||
297 | packageName = "combined-stream"; | ||
298 | version = "1.0.8"; | ||
299 | src = fetchurl { | ||
300 | url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; | ||
301 | sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; | ||
302 | }; | ||
303 | }; | ||
304 | "concat-map-0.0.1" = { | ||
305 | name = "concat-map"; | ||
306 | packageName = "concat-map"; | ||
307 | version = "0.0.1"; | ||
308 | src = fetchurl { | ||
309 | url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; | ||
310 | sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; | ||
311 | }; | ||
312 | }; | ||
313 | "console-control-strings-1.1.0" = { | ||
314 | name = "console-control-strings"; | ||
315 | packageName = "console-control-strings"; | ||
316 | version = "1.1.0"; | ||
317 | src = fetchurl { | ||
318 | url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"; | ||
319 | sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; | ||
320 | }; | ||
321 | }; | ||
322 | "content-disposition-0.5.3" = { | ||
323 | name = "content-disposition"; | ||
324 | packageName = "content-disposition"; | ||
325 | version = "0.5.3"; | ||
326 | src = fetchurl { | ||
327 | url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz"; | ||
328 | sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; | ||
329 | }; | ||
330 | }; | ||
331 | "content-type-1.0.4" = { | ||
332 | name = "content-type"; | ||
333 | packageName = "content-type"; | ||
334 | version = "1.0.4"; | ||
335 | src = fetchurl { | ||
336 | url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; | ||
337 | sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; | ||
338 | }; | ||
339 | }; | ||
340 | "cookie-0.4.0" = { | ||
341 | name = "cookie"; | ||
342 | packageName = "cookie"; | ||
343 | version = "0.4.0"; | ||
344 | src = fetchurl { | ||
345 | url = "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz"; | ||
346 | sha512 = "+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="; | ||
347 | }; | ||
348 | }; | ||
349 | "cookie-parser-1.4.5" = { | ||
350 | name = "cookie-parser"; | ||
351 | packageName = "cookie-parser"; | ||
352 | version = "1.4.5"; | ||
353 | src = fetchurl { | ||
354 | url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.5.tgz"; | ||
355 | sha512 = "f13bPUj/gG/5mDr+xLmSxxDsB9DQiTIfhJS/sqjrmfAWiAN+x2O4i/XguTL9yDZ+/IFDanJ+5x7hC4CXT9Tdzw=="; | ||
356 | }; | ||
357 | }; | ||
358 | "cookie-signature-1.0.6" = { | ||
359 | name = "cookie-signature"; | ||
360 | packageName = "cookie-signature"; | ||
361 | version = "1.0.6"; | ||
362 | src = fetchurl { | ||
363 | url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; | ||
364 | sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; | ||
365 | }; | ||
366 | }; | ||
367 | "cookies-0.7.3" = { | ||
368 | name = "cookies"; | ||
369 | packageName = "cookies"; | ||
370 | version = "0.7.3"; | ||
371 | src = fetchurl { | ||
372 | url = "https://registry.npmjs.org/cookies/-/cookies-0.7.3.tgz"; | ||
373 | sha512 = "+gixgxYSgQLTaTIilDHAdlNPZDENDQernEMiIcZpYYP14zgHsCt4Ce1FEjFtcp6GefhozebB6orvhAAWx/IS0A=="; | ||
374 | }; | ||
375 | }; | ||
376 | "core-util-is-1.0.2" = { | ||
377 | name = "core-util-is"; | ||
378 | packageName = "core-util-is"; | ||
379 | version = "1.0.2"; | ||
380 | src = fetchurl { | ||
381 | url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; | ||
382 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; | ||
383 | }; | ||
384 | }; | ||
385 | "dashdash-1.14.1" = { | ||
386 | name = "dashdash"; | ||
387 | packageName = "dashdash"; | ||
388 | version = "1.14.1"; | ||
389 | src = fetchurl { | ||
390 | url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; | ||
391 | sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; | ||
392 | }; | ||
393 | }; | ||
394 | "debug-2.6.9" = { | ||
395 | name = "debug"; | ||
396 | packageName = "debug"; | ||
397 | version = "2.6.9"; | ||
398 | src = fetchurl { | ||
399 | url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; | ||
400 | sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; | ||
401 | }; | ||
402 | }; | ||
403 | "delayed-stream-1.0.0" = { | ||
404 | name = "delayed-stream"; | ||
405 | packageName = "delayed-stream"; | ||
406 | version = "1.0.0"; | ||
407 | src = fetchurl { | ||
408 | url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; | ||
409 | sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; | ||
410 | }; | ||
411 | }; | ||
412 | "delegates-1.0.0" = { | ||
413 | name = "delegates"; | ||
414 | packageName = "delegates"; | ||
415 | version = "1.0.0"; | ||
416 | src = fetchurl { | ||
417 | url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"; | ||
418 | sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; | ||
419 | }; | ||
420 | }; | ||
421 | "depd-1.1.2" = { | ||
422 | name = "depd"; | ||
423 | packageName = "depd"; | ||
424 | version = "1.1.2"; | ||
425 | src = fetchurl { | ||
426 | url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; | ||
427 | sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; | ||
428 | }; | ||
429 | }; | ||
430 | "depd-2.0.0" = { | ||
431 | name = "depd"; | ||
432 | packageName = "depd"; | ||
433 | version = "2.0.0"; | ||
434 | src = fetchurl { | ||
435 | url = "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"; | ||
436 | sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; | ||
437 | }; | ||
438 | }; | ||
439 | "destroy-1.0.4" = { | ||
440 | name = "destroy"; | ||
441 | packageName = "destroy"; | ||
442 | version = "1.0.4"; | ||
443 | src = fetchurl { | ||
444 | url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; | ||
445 | sha1 = "978857442c44749e4206613e37946205826abd80"; | ||
446 | }; | ||
447 | }; | ||
448 | "ecc-jsbn-0.1.2" = { | ||
449 | name = "ecc-jsbn"; | ||
450 | packageName = "ecc-jsbn"; | ||
451 | version = "0.1.2"; | ||
452 | src = fetchurl { | ||
453 | url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; | ||
454 | sha1 = "3a83a904e54353287874c564b7549386849a98c9"; | ||
455 | }; | ||
456 | }; | ||
457 | "ee-first-1.1.1" = { | ||
458 | name = "ee-first"; | ||
459 | packageName = "ee-first"; | ||
460 | version = "1.1.1"; | ||
461 | src = fetchurl { | ||
462 | url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; | ||
463 | sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; | ||
464 | }; | ||
465 | }; | ||
466 | "eejs-1.0.0" = { | ||
467 | name = "eejs"; | ||
468 | packageName = "eejs"; | ||
469 | version = "1.0.0"; | ||
470 | src = fetchurl { | ||
471 | url = "https://registry.npmjs.org/eejs/-/eejs-1.0.0.tgz"; | ||
472 | sha1 = "9173f565da10c5d0a7943df7f76bed8381f5bb6b"; | ||
473 | }; | ||
474 | }; | ||
475 | "ejs-1.0.0" = { | ||
476 | name = "ejs"; | ||
477 | packageName = "ejs"; | ||
478 | version = "1.0.0"; | ||
479 | src = fetchurl { | ||
480 | url = "https://registry.npmjs.org/ejs/-/ejs-1.0.0.tgz"; | ||
481 | sha1 = "c9c60a48a46ee452fb32a71c317b95e5aa1fcb3d"; | ||
482 | }; | ||
483 | }; | ||
484 | "encodeurl-1.0.2" = { | ||
485 | name = "encodeurl"; | ||
486 | packageName = "encodeurl"; | ||
487 | version = "1.0.2"; | ||
488 | src = fetchurl { | ||
489 | url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; | ||
490 | sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; | ||
491 | }; | ||
492 | }; | ||
493 | "escape-html-1.0.3" = { | ||
494 | name = "escape-html"; | ||
495 | packageName = "escape-html"; | ||
496 | version = "1.0.3"; | ||
497 | src = fetchurl { | ||
498 | url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; | ||
499 | sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; | ||
500 | }; | ||
501 | }; | ||
502 | "etag-1.8.1" = { | ||
503 | name = "etag"; | ||
504 | packageName = "etag"; | ||
505 | version = "1.8.1"; | ||
506 | src = fetchurl { | ||
507 | url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; | ||
508 | sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; | ||
509 | }; | ||
510 | }; | ||
511 | "etherpad-lite-client-0.8.0" = { | ||
512 | name = "etherpad-lite-client"; | ||
513 | packageName = "etherpad-lite-client"; | ||
514 | version = "0.8.0"; | ||
515 | src = fetchurl { | ||
516 | url = "https://registry.npmjs.org/etherpad-lite-client/-/etherpad-lite-client-0.8.0.tgz"; | ||
517 | sha1 = "c7db6240f5ca1b09d039b40eaecf3ca2f00a0979"; | ||
518 | }; | ||
519 | }; | ||
520 | "export-dirs-0.2.4" = { | ||
521 | name = "export-dirs"; | ||
522 | packageName = "export-dirs"; | ||
523 | version = "0.2.4"; | ||
524 | src = fetchurl { | ||
525 | url = "https://registry.npmjs.org/export-dirs/-/export-dirs-0.2.4.tgz"; | ||
526 | sha1 = "2e16b9b46ebc2c07acb657ccdfbe3845393fe742"; | ||
527 | }; | ||
528 | }; | ||
529 | "export-files-2.1.1" = { | ||
530 | name = "export-files"; | ||
531 | packageName = "export-files"; | ||
532 | version = "2.1.1"; | ||
533 | src = fetchurl { | ||
534 | url = "https://registry.npmjs.org/export-files/-/export-files-2.1.1.tgz"; | ||
535 | sha1 = "bbf64574053a09e4eb98e5f43501d572b2c3ce7f"; | ||
536 | }; | ||
537 | }; | ||
538 | "express-4.17.1" = { | ||
539 | name = "express"; | ||
540 | packageName = "express"; | ||
541 | version = "4.17.1"; | ||
542 | src = fetchurl { | ||
543 | url = "https://registry.npmjs.org/express/-/express-4.17.1.tgz"; | ||
544 | sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; | ||
545 | }; | ||
546 | }; | ||
547 | "express-session-1.17.1" = { | ||
548 | name = "express-session"; | ||
549 | packageName = "express-session"; | ||
550 | version = "1.17.1"; | ||
551 | src = fetchurl { | ||
552 | url = "https://registry.npmjs.org/express-session/-/express-session-1.17.1.tgz"; | ||
553 | sha512 = "UbHwgqjxQZJiWRTMyhvWGvjBQduGCSBDhhZXYenziMFjxst5rMV+aJZ6hKPHZnPyHGsrqRICxtX8jtEbm/z36Q=="; | ||
554 | }; | ||
555 | }; | ||
556 | "extend-3.0.2" = { | ||
557 | name = "extend"; | ||
558 | packageName = "extend"; | ||
559 | version = "3.0.2"; | ||
560 | src = fetchurl { | ||
561 | url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; | ||
562 | sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; | ||
563 | }; | ||
564 | }; | ||
565 | "extsprintf-1.3.0" = { | ||
566 | name = "extsprintf"; | ||
567 | packageName = "extsprintf"; | ||
568 | version = "1.3.0"; | ||
569 | src = fetchurl { | ||
570 | url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; | ||
571 | sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; | ||
572 | }; | ||
573 | }; | ||
574 | "fast-deep-equal-3.1.1" = { | ||
575 | name = "fast-deep-equal"; | ||
576 | packageName = "fast-deep-equal"; | ||
577 | version = "3.1.1"; | ||
578 | src = fetchurl { | ||
579 | url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; | ||
580 | sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA=="; | ||
581 | }; | ||
582 | }; | ||
583 | "fast-json-stable-stringify-2.1.0" = { | ||
584 | name = "fast-json-stable-stringify"; | ||
585 | packageName = "fast-json-stable-stringify"; | ||
586 | version = "2.1.0"; | ||
587 | src = fetchurl { | ||
588 | url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; | ||
589 | sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; | ||
590 | }; | ||
591 | }; | ||
592 | "finalhandler-1.1.2" = { | ||
593 | name = "finalhandler"; | ||
594 | packageName = "finalhandler"; | ||
595 | version = "1.1.2"; | ||
596 | src = fetchurl { | ||
597 | url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"; | ||
598 | sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; | ||
599 | }; | ||
600 | }; | ||
601 | "for-in-0.1.8" = { | ||
602 | name = "for-in"; | ||
603 | packageName = "for-in"; | ||
604 | version = "0.1.8"; | ||
605 | src = fetchurl { | ||
606 | url = "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz"; | ||
607 | sha1 = "d8773908e31256109952b1fdb9b3fa867d2775e1"; | ||
608 | }; | ||
609 | }; | ||
610 | "for-in-1.0.2" = { | ||
611 | name = "for-in"; | ||
612 | packageName = "for-in"; | ||
613 | version = "1.0.2"; | ||
614 | src = fetchurl { | ||
615 | url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"; | ||
616 | sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; | ||
617 | }; | ||
618 | }; | ||
619 | "for-own-0.1.5" = { | ||
620 | name = "for-own"; | ||
621 | packageName = "for-own"; | ||
622 | version = "0.1.5"; | ||
623 | src = fetchurl { | ||
624 | url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz"; | ||
625 | sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce"; | ||
626 | }; | ||
627 | }; | ||
628 | "forever-agent-0.6.1" = { | ||
629 | name = "forever-agent"; | ||
630 | packageName = "forever-agent"; | ||
631 | version = "0.6.1"; | ||
632 | src = fetchurl { | ||
633 | url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; | ||
634 | sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; | ||
635 | }; | ||
636 | }; | ||
637 | "form-data-2.3.3" = { | ||
638 | name = "form-data"; | ||
639 | packageName = "form-data"; | ||
640 | version = "2.3.3"; | ||
641 | src = fetchurl { | ||
642 | url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; | ||
643 | sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; | ||
644 | }; | ||
645 | }; | ||
646 | "forwarded-0.1.2" = { | ||
647 | name = "forwarded"; | ||
648 | packageName = "forwarded"; | ||
649 | version = "0.1.2"; | ||
650 | src = fetchurl { | ||
651 | url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; | ||
652 | sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; | ||
653 | }; | ||
654 | }; | ||
655 | "fresh-0.5.2" = { | ||
656 | name = "fresh"; | ||
657 | packageName = "fresh"; | ||
658 | version = "0.5.2"; | ||
659 | src = fetchurl { | ||
660 | url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; | ||
661 | sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; | ||
662 | }; | ||
663 | }; | ||
664 | "fs.realpath-1.0.0" = { | ||
665 | name = "fs.realpath"; | ||
666 | packageName = "fs.realpath"; | ||
667 | version = "1.0.0"; | ||
668 | src = fetchurl { | ||
669 | url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; | ||
670 | sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; | ||
671 | }; | ||
672 | }; | ||
673 | "fstream-1.0.12" = { | ||
674 | name = "fstream"; | ||
675 | packageName = "fstream"; | ||
676 | version = "1.0.12"; | ||
677 | src = fetchurl { | ||
678 | url = "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz"; | ||
679 | sha512 = "WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg=="; | ||
680 | }; | ||
681 | }; | ||
682 | "gauge-2.7.4" = { | ||
683 | name = "gauge"; | ||
684 | packageName = "gauge"; | ||
685 | version = "2.7.4"; | ||
686 | src = fetchurl { | ||
687 | url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"; | ||
688 | sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; | ||
689 | }; | ||
690 | }; | ||
691 | "getpass-0.1.7" = { | ||
692 | name = "getpass"; | ||
693 | packageName = "getpass"; | ||
694 | version = "0.1.7"; | ||
695 | src = fetchurl { | ||
696 | url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; | ||
697 | sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; | ||
698 | }; | ||
699 | }; | ||
700 | "glob-7.1.6" = { | ||
701 | name = "glob"; | ||
702 | packageName = "glob"; | ||
703 | version = "7.1.6"; | ||
704 | src = fetchurl { | ||
705 | url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; | ||
706 | sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; | ||
707 | }; | ||
708 | }; | ||
709 | "graceful-fs-4.2.4" = { | ||
710 | name = "graceful-fs"; | ||
711 | packageName = "graceful-fs"; | ||
712 | version = "4.2.4"; | ||
713 | src = fetchurl { | ||
714 | url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"; | ||
715 | sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; | ||
716 | }; | ||
717 | }; | ||
718 | "har-schema-2.0.0" = { | ||
719 | name = "har-schema"; | ||
720 | packageName = "har-schema"; | ||
721 | version = "2.0.0"; | ||
722 | src = fetchurl { | ||
723 | url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; | ||
724 | sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; | ||
725 | }; | ||
726 | }; | ||
727 | "har-validator-5.1.3" = { | ||
728 | name = "har-validator"; | ||
729 | packageName = "har-validator"; | ||
730 | version = "5.1.3"; | ||
731 | src = fetchurl { | ||
732 | url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; | ||
733 | sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; | ||
734 | }; | ||
735 | }; | ||
736 | "has-unicode-2.0.1" = { | ||
737 | name = "has-unicode"; | ||
738 | packageName = "has-unicode"; | ||
739 | version = "2.0.1"; | ||
740 | src = fetchurl { | ||
741 | url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"; | ||
742 | sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9"; | ||
743 | }; | ||
744 | }; | ||
745 | "has-values-0.1.4" = { | ||
746 | name = "has-values"; | ||
747 | packageName = "has-values"; | ||
748 | version = "0.1.4"; | ||
749 | src = fetchurl { | ||
750 | url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"; | ||
751 | sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; | ||
752 | }; | ||
753 | }; | ||
754 | "http-errors-1.7.2" = { | ||
755 | name = "http-errors"; | ||
756 | packageName = "http-errors"; | ||
757 | version = "1.7.2"; | ||
758 | src = fetchurl { | ||
759 | url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz"; | ||
760 | sha512 = "uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="; | ||
761 | }; | ||
762 | }; | ||
763 | "http-signature-1.2.0" = { | ||
764 | name = "http-signature"; | ||
765 | packageName = "http-signature"; | ||
766 | version = "1.2.0"; | ||
767 | src = fetchurl { | ||
768 | url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; | ||
769 | sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; | ||
770 | }; | ||
771 | }; | ||
772 | "iconv-lite-0.4.24" = { | ||
773 | name = "iconv-lite"; | ||
774 | packageName = "iconv-lite"; | ||
775 | version = "0.4.24"; | ||
776 | src = fetchurl { | ||
777 | url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; | ||
778 | sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; | ||
779 | }; | ||
780 | }; | ||
781 | "inflight-1.0.6" = { | ||
782 | name = "inflight"; | ||
783 | packageName = "inflight"; | ||
784 | version = "1.0.6"; | ||
785 | src = fetchurl { | ||
786 | url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; | ||
787 | sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; | ||
788 | }; | ||
789 | }; | ||
790 | "inherits-2.0.3" = { | ||
791 | name = "inherits"; | ||
792 | packageName = "inherits"; | ||
793 | version = "2.0.3"; | ||
794 | src = fetchurl { | ||
795 | url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; | ||
796 | sha1 = "633c2c83e3da42a502f52466022480f4208261de"; | ||
797 | }; | ||
798 | }; | ||
799 | "ipaddr.js-1.9.1" = { | ||
800 | name = "ipaddr.js"; | ||
801 | packageName = "ipaddr.js"; | ||
802 | version = "1.9.1"; | ||
803 | src = fetchurl { | ||
804 | url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; | ||
805 | sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; | ||
806 | }; | ||
807 | }; | ||
808 | "is-buffer-1.1.6" = { | ||
809 | name = "is-buffer"; | ||
810 | packageName = "is-buffer"; | ||
811 | version = "1.1.6"; | ||
812 | src = fetchurl { | ||
813 | url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; | ||
814 | sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; | ||
815 | }; | ||
816 | }; | ||
817 | "is-extendable-0.1.1" = { | ||
818 | name = "is-extendable"; | ||
819 | packageName = "is-extendable"; | ||
820 | version = "0.1.1"; | ||
821 | src = fetchurl { | ||
822 | url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"; | ||
823 | sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; | ||
824 | }; | ||
825 | }; | ||
826 | "is-fullwidth-code-point-1.0.0" = { | ||
827 | name = "is-fullwidth-code-point"; | ||
828 | packageName = "is-fullwidth-code-point"; | ||
829 | version = "1.0.0"; | ||
830 | src = fetchurl { | ||
831 | url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; | ||
832 | sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; | ||
833 | }; | ||
834 | }; | ||
835 | "is-number-2.1.0" = { | ||
836 | name = "is-number"; | ||
837 | packageName = "is-number"; | ||
838 | version = "2.1.0"; | ||
839 | src = fetchurl { | ||
840 | url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz"; | ||
841 | sha1 = "01fcbbb393463a548f2f466cce16dece49db908f"; | ||
842 | }; | ||
843 | }; | ||
844 | "is-plain-object-2.0.4" = { | ||
845 | name = "is-plain-object"; | ||
846 | packageName = "is-plain-object"; | ||
847 | version = "2.0.4"; | ||
848 | src = fetchurl { | ||
849 | url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; | ||
850 | sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; | ||
851 | }; | ||
852 | }; | ||
853 | "is-typedarray-1.0.0" = { | ||
854 | name = "is-typedarray"; | ||
855 | packageName = "is-typedarray"; | ||
856 | version = "1.0.0"; | ||
857 | src = fetchurl { | ||
858 | url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; | ||
859 | sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; | ||
860 | }; | ||
861 | }; | ||
862 | "isarray-1.0.0" = { | ||
863 | name = "isarray"; | ||
864 | packageName = "isarray"; | ||
865 | version = "1.0.0"; | ||
866 | src = fetchurl { | ||
867 | url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; | ||
868 | sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; | ||
869 | }; | ||
870 | }; | ||
871 | "isexe-2.0.0" = { | ||
872 | name = "isexe"; | ||
873 | packageName = "isexe"; | ||
874 | version = "2.0.0"; | ||
875 | src = fetchurl { | ||
876 | url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; | ||
877 | sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; | ||
878 | }; | ||
879 | }; | ||
880 | "isobject-1.0.2" = { | ||
881 | name = "isobject"; | ||
882 | packageName = "isobject"; | ||
883 | version = "1.0.2"; | ||
884 | src = fetchurl { | ||
885 | url = "https://registry.npmjs.org/isobject/-/isobject-1.0.2.tgz"; | ||
886 | sha1 = "f0f9b8ce92dd540fa0740882e3835a2e022ec78a"; | ||
887 | }; | ||
888 | }; | ||
889 | "isobject-3.0.1" = { | ||
890 | name = "isobject"; | ||
891 | packageName = "isobject"; | ||
892 | version = "3.0.1"; | ||
893 | src = fetchurl { | ||
894 | url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; | ||
895 | sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; | ||
896 | }; | ||
897 | }; | ||
898 | "isstream-0.1.2" = { | ||
899 | name = "isstream"; | ||
900 | packageName = "isstream"; | ||
901 | version = "0.1.2"; | ||
902 | src = fetchurl { | ||
903 | url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; | ||
904 | sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; | ||
905 | }; | ||
906 | }; | ||
907 | "jsbn-0.1.1" = { | ||
908 | name = "jsbn"; | ||
909 | packageName = "jsbn"; | ||
910 | version = "0.1.1"; | ||
911 | src = fetchurl { | ||
912 | url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; | ||
913 | sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; | ||
914 | }; | ||
915 | }; | ||
916 | "json-schema-0.2.3" = { | ||
917 | name = "json-schema"; | ||
918 | packageName = "json-schema"; | ||
919 | version = "0.2.3"; | ||
920 | src = fetchurl { | ||
921 | url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; | ||
922 | sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; | ||
923 | }; | ||
924 | }; | ||
925 | "json-schema-traverse-0.4.1" = { | ||
926 | name = "json-schema-traverse"; | ||
927 | packageName = "json-schema-traverse"; | ||
928 | version = "0.4.1"; | ||
929 | src = fetchurl { | ||
930 | url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; | ||
931 | sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; | ||
932 | }; | ||
933 | }; | ||
934 | "json-stringify-safe-5.0.1" = { | ||
935 | name = "json-stringify-safe"; | ||
936 | packageName = "json-stringify-safe"; | ||
937 | version = "5.0.1"; | ||
938 | src = fetchurl { | ||
939 | url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; | ||
940 | sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; | ||
941 | }; | ||
942 | }; | ||
943 | "jsprim-1.4.1" = { | ||
944 | name = "jsprim"; | ||
945 | packageName = "jsprim"; | ||
946 | version = "1.4.1"; | ||
947 | src = fetchurl { | ||
948 | url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; | ||
949 | sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; | ||
950 | }; | ||
951 | }; | ||
952 | "keygrip-1.0.3" = { | ||
953 | name = "keygrip"; | ||
954 | packageName = "keygrip"; | ||
955 | version = "1.0.3"; | ||
956 | src = fetchurl { | ||
957 | url = "https://registry.npmjs.org/keygrip/-/keygrip-1.0.3.tgz"; | ||
958 | sha512 = "/PpesirAIfaklxUzp4Yb7xBper9MwP6hNRA6BGGUFCgbJ+BM5CKBtsoxinNXkLHAr+GXS1/lSlF2rP7cv5Fl+g=="; | ||
959 | }; | ||
960 | }; | ||
961 | "kind-of-2.0.1" = { | ||
962 | name = "kind-of"; | ||
963 | packageName = "kind-of"; | ||
964 | version = "2.0.1"; | ||
965 | src = fetchurl { | ||
966 | url = "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz"; | ||
967 | sha1 = "018ec7a4ce7e3a86cb9141be519d24c8faa981b5"; | ||
968 | }; | ||
969 | }; | ||
970 | "kind-of-3.2.2" = { | ||
971 | name = "kind-of"; | ||
972 | packageName = "kind-of"; | ||
973 | version = "3.2.2"; | ||
974 | src = fetchurl { | ||
975 | url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; | ||
976 | sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; | ||
977 | }; | ||
978 | }; | ||
979 | "kind-of-6.0.3" = { | ||
980 | name = "kind-of"; | ||
981 | packageName = "kind-of"; | ||
982 | version = "6.0.3"; | ||
983 | src = fetchurl { | ||
984 | url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"; | ||
985 | sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="; | ||
986 | }; | ||
987 | }; | ||
988 | "lazy-cache-1.0.4" = { | ||
989 | name = "lazy-cache"; | ||
990 | packageName = "lazy-cache"; | ||
991 | version = "1.0.4"; | ||
992 | src = fetchurl { | ||
993 | url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz"; | ||
994 | sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; | ||
995 | }; | ||
996 | }; | ||
997 | "longest-1.0.1" = { | ||
998 | name = "longest"; | ||
999 | packageName = "longest"; | ||
1000 | version = "1.0.1"; | ||
1001 | src = fetchurl { | ||
1002 | url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; | ||
1003 | sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; | ||
1004 | }; | ||
1005 | }; | ||
1006 | "make-iterator-0.1.1" = { | ||
1007 | name = "make-iterator"; | ||
1008 | packageName = "make-iterator"; | ||
1009 | version = "0.1.1"; | ||
1010 | src = fetchurl { | ||
1011 | url = "https://registry.npmjs.org/make-iterator/-/make-iterator-0.1.1.tgz"; | ||
1012 | sha1 = "873d27b8198a465a81483b6f5d16da4e863ecf5b"; | ||
1013 | }; | ||
1014 | }; | ||
1015 | "make-iterator-0.2.1" = { | ||
1016 | name = "make-iterator"; | ||
1017 | packageName = "make-iterator"; | ||
1018 | version = "0.2.1"; | ||
1019 | src = fetchurl { | ||
1020 | url = "https://registry.npmjs.org/make-iterator/-/make-iterator-0.2.1.tgz"; | ||
1021 | sha1 = "a19c660132b54ae6d64f881ec14056c746dbe972"; | ||
1022 | }; | ||
1023 | }; | ||
1024 | "make-iterator-1.0.1" = { | ||
1025 | name = "make-iterator"; | ||
1026 | packageName = "make-iterator"; | ||
1027 | version = "1.0.1"; | ||
1028 | src = fetchurl { | ||
1029 | url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz"; | ||
1030 | sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; | ||
1031 | }; | ||
1032 | }; | ||
1033 | "media-typer-0.3.0" = { | ||
1034 | name = "media-typer"; | ||
1035 | packageName = "media-typer"; | ||
1036 | version = "0.3.0"; | ||
1037 | src = fetchurl { | ||
1038 | url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; | ||
1039 | sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; | ||
1040 | }; | ||
1041 | }; | ||
1042 | "merge-descriptors-1.0.1" = { | ||
1043 | name = "merge-descriptors"; | ||
1044 | packageName = "merge-descriptors"; | ||
1045 | version = "1.0.1"; | ||
1046 | src = fetchurl { | ||
1047 | url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; | ||
1048 | sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; | ||
1049 | }; | ||
1050 | }; | ||
1051 | "methods-1.1.2" = { | ||
1052 | name = "methods"; | ||
1053 | packageName = "methods"; | ||
1054 | version = "1.1.2"; | ||
1055 | src = fetchurl { | ||
1056 | url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; | ||
1057 | sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; | ||
1058 | }; | ||
1059 | }; | ||
1060 | "mime-1.6.0" = { | ||
1061 | name = "mime"; | ||
1062 | packageName = "mime"; | ||
1063 | version = "1.6.0"; | ||
1064 | src = fetchurl { | ||
1065 | url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"; | ||
1066 | sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; | ||
1067 | }; | ||
1068 | }; | ||
1069 | "mime-db-1.44.0" = { | ||
1070 | name = "mime-db"; | ||
1071 | packageName = "mime-db"; | ||
1072 | version = "1.44.0"; | ||
1073 | src = fetchurl { | ||
1074 | url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"; | ||
1075 | sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; | ||
1076 | }; | ||
1077 | }; | ||
1078 | "mime-types-2.1.27" = { | ||
1079 | name = "mime-types"; | ||
1080 | packageName = "mime-types"; | ||
1081 | version = "2.1.27"; | ||
1082 | src = fetchurl { | ||
1083 | url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"; | ||
1084 | sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; | ||
1085 | }; | ||
1086 | }; | ||
1087 | "minimatch-3.0.4" = { | ||
1088 | name = "minimatch"; | ||
1089 | packageName = "minimatch"; | ||
1090 | version = "3.0.4"; | ||
1091 | src = fetchurl { | ||
1092 | url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; | ||
1093 | sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; | ||
1094 | }; | ||
1095 | }; | ||
1096 | "minimist-1.2.5" = { | ||
1097 | name = "minimist"; | ||
1098 | packageName = "minimist"; | ||
1099 | version = "1.2.5"; | ||
1100 | src = fetchurl { | ||
1101 | url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; | ||
1102 | sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; | ||
1103 | }; | ||
1104 | }; | ||
1105 | "mkdirp-0.5.5" = { | ||
1106 | name = "mkdirp"; | ||
1107 | packageName = "mkdirp"; | ||
1108 | version = "0.5.5"; | ||
1109 | src = fetchurl { | ||
1110 | url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; | ||
1111 | sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; | ||
1112 | }; | ||
1113 | }; | ||
1114 | "ms-2.0.0" = { | ||
1115 | name = "ms"; | ||
1116 | packageName = "ms"; | ||
1117 | version = "2.0.0"; | ||
1118 | src = fetchurl { | ||
1119 | url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; | ||
1120 | sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; | ||
1121 | }; | ||
1122 | }; | ||
1123 | "ms-2.1.1" = { | ||
1124 | name = "ms"; | ||
1125 | packageName = "ms"; | ||
1126 | version = "2.1.1"; | ||
1127 | src = fetchurl { | ||
1128 | url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; | ||
1129 | sha512 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="; | ||
1130 | }; | ||
1131 | }; | ||
1132 | "mysql-2.18.1" = { | ||
1133 | name = "mysql"; | ||
1134 | packageName = "mysql"; | ||
1135 | version = "2.18.1"; | ||
1136 | src = fetchurl { | ||
1137 | url = "https://registry.npmjs.org/mysql/-/mysql-2.18.1.tgz"; | ||
1138 | sha512 = "Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig=="; | ||
1139 | }; | ||
1140 | }; | ||
1141 | "negotiator-0.6.2" = { | ||
1142 | name = "negotiator"; | ||
1143 | packageName = "negotiator"; | ||
1144 | version = "0.6.2"; | ||
1145 | src = fetchurl { | ||
1146 | url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"; | ||
1147 | sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; | ||
1148 | }; | ||
1149 | }; | ||
1150 | "node-gyp-3.8.0" = { | ||
1151 | name = "node-gyp"; | ||
1152 | packageName = "node-gyp"; | ||
1153 | version = "3.8.0"; | ||
1154 | src = fetchurl { | ||
1155 | url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz"; | ||
1156 | sha512 = "3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA=="; | ||
1157 | }; | ||
1158 | }; | ||
1159 | "nopt-3.0.6" = { | ||
1160 | name = "nopt"; | ||
1161 | packageName = "nopt"; | ||
1162 | version = "3.0.6"; | ||
1163 | src = fetchurl { | ||
1164 | url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"; | ||
1165 | sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; | ||
1166 | }; | ||
1167 | }; | ||
1168 | "npmlog-4.1.2" = { | ||
1169 | name = "npmlog"; | ||
1170 | packageName = "npmlog"; | ||
1171 | version = "4.1.2"; | ||
1172 | src = fetchurl { | ||
1173 | url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"; | ||
1174 | sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; | ||
1175 | }; | ||
1176 | }; | ||
1177 | "number-is-nan-1.0.1" = { | ||
1178 | name = "number-is-nan"; | ||
1179 | packageName = "number-is-nan"; | ||
1180 | version = "1.0.1"; | ||
1181 | src = fetchurl { | ||
1182 | url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; | ||
1183 | sha1 = "097b602b53422a522c1afb8790318336941a011d"; | ||
1184 | }; | ||
1185 | }; | ||
1186 | "oauth-sign-0.9.0" = { | ||
1187 | name = "oauth-sign"; | ||
1188 | packageName = "oauth-sign"; | ||
1189 | version = "0.9.0"; | ||
1190 | src = fetchurl { | ||
1191 | url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; | ||
1192 | sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; | ||
1193 | }; | ||
1194 | }; | ||
1195 | "object-assign-4.1.1" = { | ||
1196 | name = "object-assign"; | ||
1197 | packageName = "object-assign"; | ||
1198 | version = "4.1.1"; | ||
1199 | src = fetchurl { | ||
1200 | url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; | ||
1201 | sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; | ||
1202 | }; | ||
1203 | }; | ||
1204 | "object.defaults-0.3.0" = { | ||
1205 | name = "object.defaults"; | ||
1206 | packageName = "object.defaults"; | ||
1207 | version = "0.3.0"; | ||
1208 | src = fetchurl { | ||
1209 | url = "https://registry.npmjs.org/object.defaults/-/object.defaults-0.3.0.tgz"; | ||
1210 | sha1 = "b1eb9cbc78c4c7bd56cac6cae3dead5a7113882a"; | ||
1211 | }; | ||
1212 | }; | ||
1213 | "object.filter-0.3.0" = { | ||
1214 | name = "object.filter"; | ||
1215 | packageName = "object.filter"; | ||
1216 | version = "0.3.0"; | ||
1217 | src = fetchurl { | ||
1218 | url = "https://registry.npmjs.org/object.filter/-/object.filter-0.3.0.tgz"; | ||
1219 | sha1 = "1091c69394b44f96d9d6356dd08785028ad6bff9"; | ||
1220 | }; | ||
1221 | }; | ||
1222 | "object.omit-2.0.1" = { | ||
1223 | name = "object.omit"; | ||
1224 | packageName = "object.omit"; | ||
1225 | version = "2.0.1"; | ||
1226 | src = fetchurl { | ||
1227 | url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz"; | ||
1228 | sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"; | ||
1229 | }; | ||
1230 | }; | ||
1231 | "object.pick-1.3.0" = { | ||
1232 | name = "object.pick"; | ||
1233 | packageName = "object.pick"; | ||
1234 | version = "1.3.0"; | ||
1235 | src = fetchurl { | ||
1236 | url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"; | ||
1237 | sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; | ||
1238 | }; | ||
1239 | }; | ||
1240 | "object.reduce-0.1.7" = { | ||
1241 | name = "object.reduce"; | ||
1242 | packageName = "object.reduce"; | ||
1243 | version = "0.1.7"; | ||
1244 | src = fetchurl { | ||
1245 | url = "https://registry.npmjs.org/object.reduce/-/object.reduce-0.1.7.tgz"; | ||
1246 | sha1 = "d180e84f72d218348af45352b55165246b95046d"; | ||
1247 | }; | ||
1248 | }; | ||
1249 | "on-finished-2.3.0" = { | ||
1250 | name = "on-finished"; | ||
1251 | packageName = "on-finished"; | ||
1252 | version = "2.3.0"; | ||
1253 | src = fetchurl { | ||
1254 | url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; | ||
1255 | sha1 = "20f1336481b083cd75337992a16971aa2d906947"; | ||
1256 | }; | ||
1257 | }; | ||
1258 | "on-headers-1.0.2" = { | ||
1259 | name = "on-headers"; | ||
1260 | packageName = "on-headers"; | ||
1261 | version = "1.0.2"; | ||
1262 | src = fetchurl { | ||
1263 | url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"; | ||
1264 | sha512 = "pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="; | ||
1265 | }; | ||
1266 | }; | ||
1267 | "once-1.4.0" = { | ||
1268 | name = "once"; | ||
1269 | packageName = "once"; | ||
1270 | version = "1.4.0"; | ||
1271 | src = fetchurl { | ||
1272 | url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; | ||
1273 | sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; | ||
1274 | }; | ||
1275 | }; | ||
1276 | "os-homedir-1.0.2" = { | ||
1277 | name = "os-homedir"; | ||
1278 | packageName = "os-homedir"; | ||
1279 | version = "1.0.2"; | ||
1280 | src = fetchurl { | ||
1281 | url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; | ||
1282 | sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; | ||
1283 | }; | ||
1284 | }; | ||
1285 | "os-tmpdir-1.0.2" = { | ||
1286 | name = "os-tmpdir"; | ||
1287 | packageName = "os-tmpdir"; | ||
1288 | version = "1.0.2"; | ||
1289 | src = fetchurl { | ||
1290 | url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; | ||
1291 | sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; | ||
1292 | }; | ||
1293 | }; | ||
1294 | "osenv-0.1.5" = { | ||
1295 | name = "osenv"; | ||
1296 | packageName = "osenv"; | ||
1297 | version = "0.1.5"; | ||
1298 | src = fetchurl { | ||
1299 | url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz"; | ||
1300 | sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; | ||
1301 | }; | ||
1302 | }; | ||
1303 | "parseurl-1.3.3" = { | ||
1304 | name = "parseurl"; | ||
1305 | packageName = "parseurl"; | ||
1306 | version = "1.3.3"; | ||
1307 | src = fetchurl { | ||
1308 | url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; | ||
1309 | sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; | ||
1310 | }; | ||
1311 | }; | ||
1312 | "password-hash-1.2.2" = { | ||
1313 | name = "password-hash"; | ||
1314 | packageName = "password-hash"; | ||
1315 | version = "1.2.2"; | ||
1316 | src = fetchurl { | ||
1317 | url = "https://registry.npmjs.org/password-hash/-/password-hash-1.2.2.tgz"; | ||
1318 | sha1 = "3b451f014de4b2e1ebfa0e5493b9517b1063af1d"; | ||
1319 | }; | ||
1320 | }; | ||
1321 | "path-is-absolute-1.0.1" = { | ||
1322 | name = "path-is-absolute"; | ||
1323 | packageName = "path-is-absolute"; | ||
1324 | version = "1.0.1"; | ||
1325 | src = fetchurl { | ||
1326 | url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; | ||
1327 | sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; | ||
1328 | }; | ||
1329 | }; | ||
1330 | "path-to-regexp-0.1.7" = { | ||
1331 | name = "path-to-regexp"; | ||
1332 | packageName = "path-to-regexp"; | ||
1333 | version = "0.1.7"; | ||
1334 | src = fetchurl { | ||
1335 | url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; | ||
1336 | sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; | ||
1337 | }; | ||
1338 | }; | ||
1339 | "performance-now-2.1.0" = { | ||
1340 | name = "performance-now"; | ||
1341 | packageName = "performance-now"; | ||
1342 | version = "2.1.0"; | ||
1343 | src = fetchurl { | ||
1344 | url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; | ||
1345 | sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; | ||
1346 | }; | ||
1347 | }; | ||
1348 | "process-nextick-args-2.0.1" = { | ||
1349 | name = "process-nextick-args"; | ||
1350 | packageName = "process-nextick-args"; | ||
1351 | version = "2.0.1"; | ||
1352 | src = fetchurl { | ||
1353 | url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; | ||
1354 | sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; | ||
1355 | }; | ||
1356 | }; | ||
1357 | "proxy-addr-2.0.6" = { | ||
1358 | name = "proxy-addr"; | ||
1359 | packageName = "proxy-addr"; | ||
1360 | version = "2.0.6"; | ||
1361 | src = fetchurl { | ||
1362 | url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz"; | ||
1363 | sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw=="; | ||
1364 | }; | ||
1365 | }; | ||
1366 | "psl-1.8.0" = { | ||
1367 | name = "psl"; | ||
1368 | packageName = "psl"; | ||
1369 | version = "1.8.0"; | ||
1370 | src = fetchurl { | ||
1371 | url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; | ||
1372 | sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; | ||
1373 | }; | ||
1374 | }; | ||
1375 | "punycode-2.1.1" = { | ||
1376 | name = "punycode"; | ||
1377 | packageName = "punycode"; | ||
1378 | version = "2.1.1"; | ||
1379 | src = fetchurl { | ||
1380 | url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; | ||
1381 | sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; | ||
1382 | }; | ||
1383 | }; | ||
1384 | "qs-6.5.2" = { | ||
1385 | name = "qs"; | ||
1386 | packageName = "qs"; | ||
1387 | version = "6.5.2"; | ||
1388 | src = fetchurl { | ||
1389 | url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; | ||
1390 | sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; | ||
1391 | }; | ||
1392 | }; | ||
1393 | "qs-6.7.0" = { | ||
1394 | name = "qs"; | ||
1395 | packageName = "qs"; | ||
1396 | version = "6.7.0"; | ||
1397 | src = fetchurl { | ||
1398 | url = "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"; | ||
1399 | sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; | ||
1400 | }; | ||
1401 | }; | ||
1402 | "random-bytes-1.0.0" = { | ||
1403 | name = "random-bytes"; | ||
1404 | packageName = "random-bytes"; | ||
1405 | version = "1.0.0"; | ||
1406 | src = fetchurl { | ||
1407 | url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz"; | ||
1408 | sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b"; | ||
1409 | }; | ||
1410 | }; | ||
1411 | "range-parser-1.2.1" = { | ||
1412 | name = "range-parser"; | ||
1413 | packageName = "range-parser"; | ||
1414 | version = "1.2.1"; | ||
1415 | src = fetchurl { | ||
1416 | url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"; | ||
1417 | sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; | ||
1418 | }; | ||
1419 | }; | ||
1420 | "raw-body-2.4.0" = { | ||
1421 | name = "raw-body"; | ||
1422 | packageName = "raw-body"; | ||
1423 | version = "2.4.0"; | ||
1424 | src = fetchurl { | ||
1425 | url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz"; | ||
1426 | sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; | ||
1427 | }; | ||
1428 | }; | ||
1429 | "readable-stream-2.3.7" = { | ||
1430 | name = "readable-stream"; | ||
1431 | packageName = "readable-stream"; | ||
1432 | version = "2.3.7"; | ||
1433 | src = fetchurl { | ||
1434 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; | ||
1435 | sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; | ||
1436 | }; | ||
1437 | }; | ||
1438 | "repeat-string-1.6.1" = { | ||
1439 | name = "repeat-string"; | ||
1440 | packageName = "repeat-string"; | ||
1441 | version = "1.6.1"; | ||
1442 | src = fetchurl { | ||
1443 | url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; | ||
1444 | sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; | ||
1445 | }; | ||
1446 | }; | ||
1447 | "request-2.88.2" = { | ||
1448 | name = "request"; | ||
1449 | packageName = "request"; | ||
1450 | version = "2.88.2"; | ||
1451 | src = fetchurl { | ||
1452 | url = "https://registry.npmjs.org/request/-/request-2.88.2.tgz"; | ||
1453 | sha512 = "MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="; | ||
1454 | }; | ||
1455 | }; | ||
1456 | "right-align-0.1.3" = { | ||
1457 | name = "right-align"; | ||
1458 | packageName = "right-align"; | ||
1459 | version = "0.1.3"; | ||
1460 | src = fetchurl { | ||
1461 | url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; | ||
1462 | sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; | ||
1463 | }; | ||
1464 | }; | ||
1465 | "rimraf-2.7.1" = { | ||
1466 | name = "rimraf"; | ||
1467 | packageName = "rimraf"; | ||
1468 | version = "2.7.1"; | ||
1469 | src = fetchurl { | ||
1470 | url = "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"; | ||
1471 | sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w=="; | ||
1472 | }; | ||
1473 | }; | ||
1474 | "safe-buffer-5.1.2" = { | ||
1475 | name = "safe-buffer"; | ||
1476 | packageName = "safe-buffer"; | ||
1477 | version = "5.1.2"; | ||
1478 | src = fetchurl { | ||
1479 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; | ||
1480 | sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; | ||
1481 | }; | ||
1482 | }; | ||
1483 | "safe-buffer-5.2.0" = { | ||
1484 | name = "safe-buffer"; | ||
1485 | packageName = "safe-buffer"; | ||
1486 | version = "5.2.0"; | ||
1487 | src = fetchurl { | ||
1488 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; | ||
1489 | sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; | ||
1490 | }; | ||
1491 | }; | ||
1492 | "safer-buffer-2.1.2" = { | ||
1493 | name = "safer-buffer"; | ||
1494 | packageName = "safer-buffer"; | ||
1495 | version = "2.1.2"; | ||
1496 | src = fetchurl { | ||
1497 | url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; | ||
1498 | sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; | ||
1499 | }; | ||
1500 | }; | ||
1501 | "semver-5.3.0" = { | ||
1502 | name = "semver"; | ||
1503 | packageName = "semver"; | ||
1504 | version = "5.3.0"; | ||
1505 | src = fetchurl { | ||
1506 | url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; | ||
1507 | sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; | ||
1508 | }; | ||
1509 | }; | ||
1510 | "send-0.17.1" = { | ||
1511 | name = "send"; | ||
1512 | packageName = "send"; | ||
1513 | version = "0.17.1"; | ||
1514 | src = fetchurl { | ||
1515 | url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; | ||
1516 | sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; | ||
1517 | }; | ||
1518 | }; | ||
1519 | "serve-static-1.14.1" = { | ||
1520 | name = "serve-static"; | ||
1521 | packageName = "serve-static"; | ||
1522 | version = "1.14.1"; | ||
1523 | src = fetchurl { | ||
1524 | url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"; | ||
1525 | sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; | ||
1526 | }; | ||
1527 | }; | ||
1528 | "set-blocking-2.0.0" = { | ||
1529 | name = "set-blocking"; | ||
1530 | packageName = "set-blocking"; | ||
1531 | version = "2.0.0"; | ||
1532 | src = fetchurl { | ||
1533 | url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; | ||
1534 | sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; | ||
1535 | }; | ||
1536 | }; | ||
1537 | "setprototypeof-1.1.1" = { | ||
1538 | name = "setprototypeof"; | ||
1539 | packageName = "setprototypeof"; | ||
1540 | version = "1.1.1"; | ||
1541 | src = fetchurl { | ||
1542 | url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"; | ||
1543 | sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; | ||
1544 | }; | ||
1545 | }; | ||
1546 | "signal-exit-3.0.3" = { | ||
1547 | name = "signal-exit"; | ||
1548 | packageName = "signal-exit"; | ||
1549 | version = "3.0.3"; | ||
1550 | src = fetchurl { | ||
1551 | url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz"; | ||
1552 | sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="; | ||
1553 | }; | ||
1554 | }; | ||
1555 | "sqlstring-2.3.1" = { | ||
1556 | name = "sqlstring"; | ||
1557 | packageName = "sqlstring"; | ||
1558 | version = "2.3.1"; | ||
1559 | src = fetchurl { | ||
1560 | url = "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz"; | ||
1561 | sha1 = "475393ff9e91479aea62dcaf0ca3d14983a7fb40"; | ||
1562 | }; | ||
1563 | }; | ||
1564 | "sshpk-1.16.1" = { | ||
1565 | name = "sshpk"; | ||
1566 | packageName = "sshpk"; | ||
1567 | version = "1.16.1"; | ||
1568 | src = fetchurl { | ||
1569 | url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; | ||
1570 | sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; | ||
1571 | }; | ||
1572 | }; | ||
1573 | "statuses-1.5.0" = { | ||
1574 | name = "statuses"; | ||
1575 | packageName = "statuses"; | ||
1576 | version = "1.5.0"; | ||
1577 | src = fetchurl { | ||
1578 | url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; | ||
1579 | sha1 = "161c7dac177659fd9811f43771fa99381478628c"; | ||
1580 | }; | ||
1581 | }; | ||
1582 | "string-width-1.0.2" = { | ||
1583 | name = "string-width"; | ||
1584 | packageName = "string-width"; | ||
1585 | version = "1.0.2"; | ||
1586 | src = fetchurl { | ||
1587 | url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"; | ||
1588 | sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; | ||
1589 | }; | ||
1590 | }; | ||
1591 | "string_decoder-1.1.1" = { | ||
1592 | name = "string_decoder"; | ||
1593 | packageName = "string_decoder"; | ||
1594 | version = "1.1.1"; | ||
1595 | src = fetchurl { | ||
1596 | url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; | ||
1597 | sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; | ||
1598 | }; | ||
1599 | }; | ||
1600 | "strip-ansi-3.0.1" = { | ||
1601 | name = "strip-ansi"; | ||
1602 | packageName = "strip-ansi"; | ||
1603 | version = "3.0.1"; | ||
1604 | src = fetchurl { | ||
1605 | url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; | ||
1606 | sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; | ||
1607 | }; | ||
1608 | }; | ||
1609 | "striptags-2.2.1" = { | ||
1610 | name = "striptags"; | ||
1611 | packageName = "striptags"; | ||
1612 | version = "2.2.1"; | ||
1613 | src = fetchurl { | ||
1614 | url = "https://registry.npmjs.org/striptags/-/striptags-2.2.1.tgz"; | ||
1615 | sha1 = "4c450b708d41b8bf39cf24c49ff234fc6aabfd32"; | ||
1616 | }; | ||
1617 | }; | ||
1618 | "tar-2.2.2" = { | ||
1619 | name = "tar"; | ||
1620 | packageName = "tar"; | ||
1621 | version = "2.2.2"; | ||
1622 | src = fetchurl { | ||
1623 | url = "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz"; | ||
1624 | sha512 = "FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA=="; | ||
1625 | }; | ||
1626 | }; | ||
1627 | "toidentifier-1.0.0" = { | ||
1628 | name = "toidentifier"; | ||
1629 | packageName = "toidentifier"; | ||
1630 | version = "1.0.0"; | ||
1631 | src = fetchurl { | ||
1632 | url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; | ||
1633 | sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; | ||
1634 | }; | ||
1635 | }; | ||
1636 | "tough-cookie-2.5.0" = { | ||
1637 | name = "tough-cookie"; | ||
1638 | packageName = "tough-cookie"; | ||
1639 | version = "2.5.0"; | ||
1640 | src = fetchurl { | ||
1641 | url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"; | ||
1642 | sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; | ||
1643 | }; | ||
1644 | }; | ||
1645 | "tunnel-agent-0.6.0" = { | ||
1646 | name = "tunnel-agent"; | ||
1647 | packageName = "tunnel-agent"; | ||
1648 | version = "0.6.0"; | ||
1649 | src = fetchurl { | ||
1650 | url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; | ||
1651 | sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; | ||
1652 | }; | ||
1653 | }; | ||
1654 | "tweetnacl-0.14.5" = { | ||
1655 | name = "tweetnacl"; | ||
1656 | packageName = "tweetnacl"; | ||
1657 | version = "0.14.5"; | ||
1658 | src = fetchurl { | ||
1659 | url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; | ||
1660 | sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; | ||
1661 | }; | ||
1662 | }; | ||
1663 | "type-is-1.6.18" = { | ||
1664 | name = "type-is"; | ||
1665 | packageName = "type-is"; | ||
1666 | version = "1.6.18"; | ||
1667 | src = fetchurl { | ||
1668 | url = "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"; | ||
1669 | sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; | ||
1670 | }; | ||
1671 | }; | ||
1672 | "uid-safe-2.1.5" = { | ||
1673 | name = "uid-safe"; | ||
1674 | packageName = "uid-safe"; | ||
1675 | version = "2.1.5"; | ||
1676 | src = fetchurl { | ||
1677 | url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz"; | ||
1678 | sha512 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA=="; | ||
1679 | }; | ||
1680 | }; | ||
1681 | "underscore-1.3.3" = { | ||
1682 | name = "underscore"; | ||
1683 | packageName = "underscore"; | ||
1684 | version = "1.3.3"; | ||
1685 | src = fetchurl { | ||
1686 | url = "https://registry.npmjs.org/underscore/-/underscore-1.3.3.tgz"; | ||
1687 | sha1 = "47ac53683daf832bfa952e1774417da47817ae42"; | ||
1688 | }; | ||
1689 | }; | ||
1690 | "unpipe-1.0.0" = { | ||
1691 | name = "unpipe"; | ||
1692 | packageName = "unpipe"; | ||
1693 | version = "1.0.0"; | ||
1694 | src = fetchurl { | ||
1695 | url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; | ||
1696 | sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; | ||
1697 | }; | ||
1698 | }; | ||
1699 | "uri-js-4.2.2" = { | ||
1700 | name = "uri-js"; | ||
1701 | packageName = "uri-js"; | ||
1702 | version = "4.2.2"; | ||
1703 | src = fetchurl { | ||
1704 | url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; | ||
1705 | sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; | ||
1706 | }; | ||
1707 | }; | ||
1708 | "util-deprecate-1.0.2" = { | ||
1709 | name = "util-deprecate"; | ||
1710 | packageName = "util-deprecate"; | ||
1711 | version = "1.0.2"; | ||
1712 | src = fetchurl { | ||
1713 | url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; | ||
1714 | sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; | ||
1715 | }; | ||
1716 | }; | ||
1717 | "utils-0.3.1" = { | ||
1718 | name = "utils"; | ||
1719 | packageName = "utils"; | ||
1720 | version = "0.3.1"; | ||
1721 | src = fetchurl { | ||
1722 | url = "https://registry.npmjs.org/utils/-/utils-0.3.1.tgz"; | ||
1723 | sha1 = "04efaeb4290a67037a4cddfd2ff56144cc3a4581"; | ||
1724 | }; | ||
1725 | }; | ||
1726 | "utils-merge-1.0.1" = { | ||
1727 | name = "utils-merge"; | ||
1728 | packageName = "utils-merge"; | ||
1729 | version = "1.0.1"; | ||
1730 | src = fetchurl { | ||
1731 | url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; | ||
1732 | sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; | ||
1733 | }; | ||
1734 | }; | ||
1735 | "uuid-3.4.0" = { | ||
1736 | name = "uuid"; | ||
1737 | packageName = "uuid"; | ||
1738 | version = "3.4.0"; | ||
1739 | src = fetchurl { | ||
1740 | url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"; | ||
1741 | sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; | ||
1742 | }; | ||
1743 | }; | ||
1744 | "vary-1.1.2" = { | ||
1745 | name = "vary"; | ||
1746 | packageName = "vary"; | ||
1747 | version = "1.1.2"; | ||
1748 | src = fetchurl { | ||
1749 | url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; | ||
1750 | sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; | ||
1751 | }; | ||
1752 | }; | ||
1753 | "verror-1.10.0" = { | ||
1754 | name = "verror"; | ||
1755 | packageName = "verror"; | ||
1756 | version = "1.10.0"; | ||
1757 | src = fetchurl { | ||
1758 | url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; | ||
1759 | sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; | ||
1760 | }; | ||
1761 | }; | ||
1762 | "which-1.3.1" = { | ||
1763 | name = "which"; | ||
1764 | packageName = "which"; | ||
1765 | version = "1.3.1"; | ||
1766 | src = fetchurl { | ||
1767 | url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; | ||
1768 | sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; | ||
1769 | }; | ||
1770 | }; | ||
1771 | "wide-align-1.1.3" = { | ||
1772 | name = "wide-align"; | ||
1773 | packageName = "wide-align"; | ||
1774 | version = "1.1.3"; | ||
1775 | src = fetchurl { | ||
1776 | url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; | ||
1777 | sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; | ||
1778 | }; | ||
1779 | }; | ||
1780 | "word-wrap-1.2.3" = { | ||
1781 | name = "word-wrap"; | ||
1782 | packageName = "word-wrap"; | ||
1783 | version = "1.2.3"; | ||
1784 | src = fetchurl { | ||
1785 | url = "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"; | ||
1786 | sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; | ||
1787 | }; | ||
1788 | }; | ||
1789 | "wrappy-1.0.2" = { | ||
1790 | name = "wrappy"; | ||
1791 | packageName = "wrappy"; | ||
1792 | version = "1.0.2"; | ||
1793 | src = fetchurl { | ||
1794 | url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; | ||
1795 | sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; | ||
1796 | }; | ||
1797 | }; | ||
1798 | }; | ||
1799 | in | ||
1800 | { | ||
1801 | ep_private_pad = nodeEnv.buildNodePackage { | ||
1802 | name = "ep_private_pad"; | ||
1803 | packageName = "ep_private_pad"; | ||
1804 | version = "1.0.2"; | ||
1805 | src = fetchurl { | ||
1806 | url = "https://registry.npmjs.org/ep_private_pad/-/ep_private_pad-1.0.2.tgz"; | ||
1807 | sha512 = "3cw9br4cg5ctv+w0XoMCXxM0tjYZd0LifH6ci/1wnv3LEkVnkiT19CtKGleOpHBVcQKLDf0aegjP9VaTW3rtHg=="; | ||
1808 | }; | ||
1809 | dependencies = [ | ||
1810 | sources."abbrev-1.1.1" | ||
1811 | sources."accepts-1.3.7" | ||
1812 | sources."ajv-6.12.2" | ||
1813 | (sources."align-text-0.1.4" // { | ||
1814 | dependencies = [ | ||
1815 | sources."kind-of-3.2.2" | ||
1816 | ]; | ||
1817 | }) | ||
1818 | sources."ansi-regex-2.1.1" | ||
1819 | (sources."any-1.0.0" // { | ||
1820 | dependencies = [ | ||
1821 | sources."make-iterator-0.1.1" | ||
1822 | ]; | ||
1823 | }) | ||
1824 | sources."aproba-1.2.0" | ||
1825 | sources."are-we-there-yet-1.1.5" | ||
1826 | sources."arr-diff-1.1.0" | ||
1827 | sources."arr-flatten-1.1.0" | ||
1828 | (sources."arr-map-2.0.2" // { | ||
1829 | dependencies = [ | ||
1830 | sources."kind-of-6.0.3" | ||
1831 | sources."make-iterator-1.0.1" | ||
1832 | ]; | ||
1833 | }) | ||
1834 | sources."arr-union-3.1.0" | ||
1835 | sources."array-each-0.1.1" | ||
1836 | sources."array-flatten-1.1.1" | ||
1837 | sources."array-slice-0.2.3" | ||
1838 | sources."array-unique-0.2.1" | ||
1839 | sources."asn1-0.2.4" | ||
1840 | sources."assert-plus-1.0.0" | ||
1841 | sources."asynckit-0.4.0" | ||
1842 | sources."aws-sign2-0.7.0" | ||
1843 | sources."aws4-1.9.1" | ||
1844 | sources."balanced-match-1.0.0" | ||
1845 | sources."bcrypt-pbkdf-1.0.2" | ||
1846 | sources."bignumber.js-9.0.0" | ||
1847 | sources."block-stream-0.0.9" | ||
1848 | sources."body-parser-1.19.0" | ||
1849 | sources."brace-expansion-1.1.11" | ||
1850 | sources."bytes-3.1.0" | ||
1851 | sources."caseless-0.12.0" | ||
1852 | sources."center-align-0.1.3" | ||
1853 | sources."client-sessions-0.8.0" | ||
1854 | sources."code-point-at-1.1.0" | ||
1855 | sources."combined-stream-1.0.8" | ||
1856 | sources."concat-map-0.0.1" | ||
1857 | sources."console-control-strings-1.1.0" | ||
1858 | sources."content-disposition-0.5.3" | ||
1859 | sources."content-type-1.0.4" | ||
1860 | sources."cookie-0.4.0" | ||
1861 | sources."cookie-parser-1.4.5" | ||
1862 | sources."cookie-signature-1.0.6" | ||
1863 | sources."cookies-0.7.3" | ||
1864 | sources."core-util-is-1.0.2" | ||
1865 | sources."dashdash-1.14.1" | ||
1866 | sources."debug-2.6.9" | ||
1867 | sources."delayed-stream-1.0.0" | ||
1868 | sources."delegates-1.0.0" | ||
1869 | sources."depd-1.1.2" | ||
1870 | sources."destroy-1.0.4" | ||
1871 | sources."ecc-jsbn-0.1.2" | ||
1872 | sources."ee-first-1.1.1" | ||
1873 | sources."eejs-1.0.0" | ||
1874 | sources."ejs-1.0.0" | ||
1875 | sources."encodeurl-1.0.2" | ||
1876 | sources."escape-html-1.0.3" | ||
1877 | sources."etag-1.8.1" | ||
1878 | sources."etherpad-lite-client-0.8.0" | ||
1879 | sources."export-dirs-0.2.4" | ||
1880 | sources."export-files-2.1.1" | ||
1881 | sources."express-4.17.1" | ||
1882 | (sources."express-session-1.17.1" // { | ||
1883 | dependencies = [ | ||
1884 | sources."depd-2.0.0" | ||
1885 | sources."safe-buffer-5.2.0" | ||
1886 | ]; | ||
1887 | }) | ||
1888 | sources."extend-3.0.2" | ||
1889 | sources."extsprintf-1.3.0" | ||
1890 | sources."fast-deep-equal-3.1.1" | ||
1891 | sources."fast-json-stable-stringify-2.1.0" | ||
1892 | sources."finalhandler-1.1.2" | ||
1893 | sources."for-in-0.1.8" | ||
1894 | (sources."for-own-0.1.5" // { | ||
1895 | dependencies = [ | ||
1896 | sources."for-in-1.0.2" | ||
1897 | ]; | ||
1898 | }) | ||
1899 | sources."forever-agent-0.6.1" | ||
1900 | sources."form-data-2.3.3" | ||
1901 | sources."forwarded-0.1.2" | ||
1902 | sources."fresh-0.5.2" | ||
1903 | sources."fs.realpath-1.0.0" | ||
1904 | sources."fstream-1.0.12" | ||
1905 | sources."gauge-2.7.4" | ||
1906 | sources."getpass-0.1.7" | ||
1907 | sources."glob-7.1.6" | ||
1908 | sources."graceful-fs-4.2.4" | ||
1909 | sources."har-schema-2.0.0" | ||
1910 | sources."har-validator-5.1.3" | ||
1911 | sources."has-unicode-2.0.1" | ||
1912 | sources."has-values-0.1.4" | ||
1913 | sources."http-errors-1.7.2" | ||
1914 | sources."http-signature-1.2.0" | ||
1915 | sources."iconv-lite-0.4.24" | ||
1916 | sources."inflight-1.0.6" | ||
1917 | sources."inherits-2.0.3" | ||
1918 | sources."ipaddr.js-1.9.1" | ||
1919 | sources."is-buffer-1.1.6" | ||
1920 | sources."is-extendable-0.1.1" | ||
1921 | sources."is-fullwidth-code-point-1.0.0" | ||
1922 | (sources."is-number-2.1.0" // { | ||
1923 | dependencies = [ | ||
1924 | sources."kind-of-3.2.2" | ||
1925 | ]; | ||
1926 | }) | ||
1927 | sources."is-plain-object-2.0.4" | ||
1928 | sources."is-typedarray-1.0.0" | ||
1929 | sources."isarray-1.0.0" | ||
1930 | sources."isexe-2.0.0" | ||
1931 | sources."isobject-3.0.1" | ||
1932 | sources."isstream-0.1.2" | ||
1933 | sources."jsbn-0.1.1" | ||
1934 | sources."json-schema-0.2.3" | ||
1935 | sources."json-schema-traverse-0.4.1" | ||
1936 | sources."json-stringify-safe-5.0.1" | ||
1937 | sources."jsprim-1.4.1" | ||
1938 | sources."keygrip-1.0.3" | ||
1939 | sources."kind-of-2.0.1" | ||
1940 | sources."lazy-cache-1.0.4" | ||
1941 | sources."longest-1.0.1" | ||
1942 | (sources."make-iterator-0.2.1" // { | ||
1943 | dependencies = [ | ||
1944 | sources."kind-of-3.2.2" | ||
1945 | ]; | ||
1946 | }) | ||
1947 | sources."media-typer-0.3.0" | ||
1948 | sources."merge-descriptors-1.0.1" | ||
1949 | sources."methods-1.1.2" | ||
1950 | sources."mime-1.6.0" | ||
1951 | sources."mime-db-1.44.0" | ||
1952 | sources."mime-types-2.1.27" | ||
1953 | sources."minimatch-3.0.4" | ||
1954 | sources."minimist-1.2.5" | ||
1955 | sources."mkdirp-0.5.5" | ||
1956 | sources."ms-2.0.0" | ||
1957 | sources."mysql-2.18.1" | ||
1958 | sources."negotiator-0.6.2" | ||
1959 | sources."node-gyp-3.8.0" | ||
1960 | sources."nopt-3.0.6" | ||
1961 | sources."npmlog-4.1.2" | ||
1962 | sources."number-is-nan-1.0.1" | ||
1963 | sources."oauth-sign-0.9.0" | ||
1964 | sources."object-assign-4.1.1" | ||
1965 | (sources."object.defaults-0.3.0" // { | ||
1966 | dependencies = [ | ||
1967 | sources."isobject-1.0.2" | ||
1968 | ]; | ||
1969 | }) | ||
1970 | (sources."object.filter-0.3.0" // { | ||
1971 | dependencies = [ | ||
1972 | sources."make-iterator-0.1.1" | ||
1973 | ]; | ||
1974 | }) | ||
1975 | sources."object.omit-2.0.1" | ||
1976 | sources."object.pick-1.3.0" | ||
1977 | sources."object.reduce-0.1.7" | ||
1978 | sources."on-finished-2.3.0" | ||
1979 | sources."on-headers-1.0.2" | ||
1980 | sources."once-1.4.0" | ||
1981 | sources."os-homedir-1.0.2" | ||
1982 | sources."os-tmpdir-1.0.2" | ||
1983 | sources."osenv-0.1.5" | ||
1984 | sources."parseurl-1.3.3" | ||
1985 | sources."password-hash-1.2.2" | ||
1986 | sources."path-is-absolute-1.0.1" | ||
1987 | sources."path-to-regexp-0.1.7" | ||
1988 | sources."performance-now-2.1.0" | ||
1989 | sources."process-nextick-args-2.0.1" | ||
1990 | sources."proxy-addr-2.0.6" | ||
1991 | sources."psl-1.8.0" | ||
1992 | sources."punycode-2.1.1" | ||
1993 | sources."qs-6.7.0" | ||
1994 | sources."random-bytes-1.0.0" | ||
1995 | sources."range-parser-1.2.1" | ||
1996 | sources."raw-body-2.4.0" | ||
1997 | sources."readable-stream-2.3.7" | ||
1998 | sources."repeat-string-1.6.1" | ||
1999 | (sources."request-2.88.2" // { | ||
2000 | dependencies = [ | ||
2001 | sources."qs-6.5.2" | ||
2002 | ]; | ||
2003 | }) | ||
2004 | sources."right-align-0.1.3" | ||
2005 | sources."rimraf-2.7.1" | ||
2006 | sources."safe-buffer-5.1.2" | ||
2007 | sources."safer-buffer-2.1.2" | ||
2008 | sources."semver-5.3.0" | ||
2009 | (sources."send-0.17.1" // { | ||
2010 | dependencies = [ | ||
2011 | sources."ms-2.1.1" | ||
2012 | ]; | ||
2013 | }) | ||
2014 | sources."serve-static-1.14.1" | ||
2015 | sources."set-blocking-2.0.0" | ||
2016 | sources."setprototypeof-1.1.1" | ||
2017 | sources."signal-exit-3.0.3" | ||
2018 | sources."sqlstring-2.3.1" | ||
2019 | sources."sshpk-1.16.1" | ||
2020 | sources."statuses-1.5.0" | ||
2021 | sources."string-width-1.0.2" | ||
2022 | sources."string_decoder-1.1.1" | ||
2023 | sources."strip-ansi-3.0.1" | ||
2024 | sources."striptags-2.2.1" | ||
2025 | sources."tar-2.2.2" | ||
2026 | sources."toidentifier-1.0.0" | ||
2027 | sources."tough-cookie-2.5.0" | ||
2028 | sources."tunnel-agent-0.6.0" | ||
2029 | sources."tweetnacl-0.14.5" | ||
2030 | sources."type-is-1.6.18" | ||
2031 | sources."uid-safe-2.1.5" | ||
2032 | sources."underscore-1.3.3" | ||
2033 | sources."unpipe-1.0.0" | ||
2034 | sources."uri-js-4.2.2" | ||
2035 | sources."util-deprecate-1.0.2" | ||
2036 | sources."utils-0.3.1" | ||
2037 | sources."utils-merge-1.0.1" | ||
2038 | sources."uuid-3.4.0" | ||
2039 | sources."vary-1.1.2" | ||
2040 | sources."verror-1.10.0" | ||
2041 | sources."which-1.3.1" | ||
2042 | sources."wide-align-1.1.3" | ||
2043 | sources."word-wrap-1.2.3" | ||
2044 | sources."wrappy-1.0.2" | ||
2045 | ]; | ||
2046 | buildInputs = globalBuildInputs; | ||
2047 | meta = { | ||
2048 | description = "Signup and login to manage private pad, share your pad with other users, add roles to users for your pads."; | ||
2049 | homepage = "https://github.com/angelopiccolella/ep_private_pad#readme"; | ||
2050 | license = ""; | ||
2051 | }; | ||
2052 | production = true; | ||
2053 | bypassCache = true; | ||
2054 | reconstructLock = true; | ||
2055 | }; | ||
2056 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_ruler/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_ruler/node-packages.json deleted file mode 100644 index d31b236..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_ruler/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_ruler" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_ruler/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_ruler/node-packages.nix deleted file mode 100644 index c8697d4..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_ruler/node-packages.nix +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | {stdenv, nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
2 | |||
3 | let | ||
4 | sources = {}; | ||
5 | in | ||
6 | { | ||
7 | ep_ruler = nodeEnv.buildNodePackage { | ||
8 | name = "ep_ruler"; | ||
9 | packageName = "ep_ruler"; | ||
10 | version = "0.0.2"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/ep_ruler/-/ep_ruler-0.0.2.tgz"; | ||
13 | sha1 = "5af10dfe0b5f33459566ce649cc483c680ed7811"; | ||
14 | }; | ||
15 | preRebuild = '' | ||
16 | sed -i -e 's/"dependencies"/"peerDependencies"/' package.json | ||
17 | ''; | ||
18 | buildInputs = globalBuildInputs; | ||
19 | meta = { | ||
20 | description = "Adds a ruler to Etherpad lite"; | ||
21 | homepage = https://github.com/iquidus/ep_ruler; | ||
22 | }; | ||
23 | production = true; | ||
24 | bypassCache = false; | ||
25 | }; | ||
26 | } | ||
27 | |||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_scrollto/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_scrollto/node-packages.json deleted file mode 100644 index 6d068d0..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_scrollto/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_scrollto" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_scrollto/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_scrollto/node-packages.nix deleted file mode 100644 index 8f7656f..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_scrollto/node-packages.nix +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_scrollto = nodeEnv.buildNodePackage { | ||
10 | name = "ep_scrollto"; | ||
11 | packageName = "ep_scrollto"; | ||
12 | version = "0.0.7"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_scrollto/-/ep_scrollto-0.0.7.tgz"; | ||
15 | sha512 = "uUfpiUWO0xLhN2R89jMPUYD+vhyiPyH6b8QL7y+0bKiOYOqf9l/rgXwTLuf4iB3p0J1/oVXhgSkG0dlZ35bUWw=="; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | preRebuild = '' | ||
19 | sed -i -e "s/is_old_ie = browser.msie.*$/is_old_ie = false;/" static/js/postAceInit.js | ||
20 | ''; | ||
21 | meta = { | ||
22 | description = "Scroll to a specific line number based on a parameter of lineNumber in the URL IE http://test.com/p/foo#lineNumber=10 -- Users can click on the line number to get a link"; | ||
23 | homepage = "https://github.com/johnmclear/ep_scrollto#readme"; | ||
24 | }; | ||
25 | production = true; | ||
26 | bypassCache = true; | ||
27 | reconstructLock = true; | ||
28 | }; | ||
29 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_set_title_on_pad/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_set_title_on_pad/node-packages.json deleted file mode 100644 index 8755cd2..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_set_title_on_pad/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_set_title_on_pad" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_set_title_on_pad/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_set_title_on_pad/node-packages.nix deleted file mode 100644 index 74f9612..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_set_title_on_pad/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_set_title_on_pad = nodeEnv.buildNodePackage { | ||
10 | name = "ep_set_title_on_pad"; | ||
11 | packageName = "ep_set_title_on_pad"; | ||
12 | version = "0.2.0"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_set_title_on_pad/-/ep_set_title_on_pad-0.2.0.tgz"; | ||
15 | sha512 = "qt7Z+xJscGUB6A5R/vHsYbdOhmN3XG56LLtIxOzg/x3/ppHpBCmAf/y4cMNYyrm+6+lgwjt77aa6CchVRyUF7Q=="; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "Set the title on a pad in Etherpad, also includes real time updates to the UI"; | ||
20 | homepage = "https://github.com/JohnMcLear/ep_set_title_on_pad#readme"; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/font.patch b/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/font.patch deleted file mode 100644 index 474e823..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/font.patch +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | diff --git a/templates/editbarButtons.ejs b/templates/editbarButtons.ejs | ||
2 | index 7511025..f71a491 100644 | ||
3 | --- a/templates/editbarButtons.ejs | ||
4 | +++ b/templates/editbarButtons.ejs | ||
5 | @@ -20,7 +20,7 @@ | ||
6 | } | ||
7 | |||
8 | .subscript .buttonicon:before{ | ||
9 | - content:"\e81a"; | ||
10 | + content:"\e834"; | ||
11 | } | ||
12 | |||
13 | .superscript{ | ||
14 | @@ -32,7 +32,7 @@ | ||
15 | } | ||
16 | |||
17 | .superscript .buttonicon:before{ | ||
18 | - content:"\e819"; | ||
19 | + content:"\e833"; | ||
20 | } | ||
21 | |||
22 | </style> | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/node-packages.json deleted file mode 100644 index aa1cf21..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_subscript_and_superscript" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/node-packages.nix deleted file mode 100644 index 04065dd..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_subscript_and_superscript/node-packages.nix +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_subscript_and_superscript = nodeEnv.buildNodePackage { | ||
10 | name = "ep_subscript_and_superscript"; | ||
11 | packageName = "ep_subscript_and_superscript"; | ||
12 | version = "0.0.3"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_subscript_and_superscript/-/ep_subscript_and_superscript-0.0.3.tgz"; | ||
15 | sha1 = "47f74a242fe8be5911391943f718eab81c390620"; | ||
16 | }; | ||
17 | preRebuild = '' | ||
18 | patch -p1 < ${./font.patch} | ||
19 | ''; | ||
20 | buildInputs = globalBuildInputs; | ||
21 | meta = { | ||
22 | description = "Add support for Subscript and Superscript"; | ||
23 | }; | ||
24 | production = true; | ||
25 | bypassCache = true; | ||
26 | reconstructLock = true; | ||
27 | }; | ||
28 | } | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_timesliderdiff/node-packages.json b/pkgs/webapps/etherpad-lite/modules/ep_timesliderdiff/node-packages.json deleted file mode 100644 index d50e856..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_timesliderdiff/node-packages.json +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | [ "ep_timesliderdiff" ] | ||
diff --git a/pkgs/webapps/etherpad-lite/modules/ep_timesliderdiff/node-packages.nix b/pkgs/webapps/etherpad-lite/modules/ep_timesliderdiff/node-packages.nix deleted file mode 100644 index e3ddb1f..0000000 --- a/pkgs/webapps/etherpad-lite/modules/ep_timesliderdiff/node-packages.nix +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = {}; | ||
7 | in | ||
8 | { | ||
9 | ep_timesliderdiff = nodeEnv.buildNodePackage { | ||
10 | name = "ep_timesliderdiff"; | ||
11 | packageName = "ep_timesliderdiff"; | ||
12 | version = "0.0.5"; | ||
13 | src = fetchurl { | ||
14 | url = "https://registry.npmjs.org/ep_timesliderdiff/-/ep_timesliderdiff-0.0.5.tgz"; | ||
15 | sha1 = "f8e0543677f7ac643936a2afce9f370d08a43310"; | ||
16 | }; | ||
17 | buildInputs = globalBuildInputs; | ||
18 | meta = { | ||
19 | description = "See a diff view showing the changes between the latest pad and a revision"; | ||
20 | homepage = https://github.com/JohnMcLear/ep_timesliderdiff; | ||
21 | }; | ||
22 | production = true; | ||
23 | bypassCache = true; | ||
24 | reconstructLock = true; | ||
25 | }; | ||
26 | } \ No newline at end of file | ||
diff --git a/pkgs/webapps/etherpad-lite/node-packages.nix b/pkgs/webapps/etherpad-lite/node-packages.nix deleted file mode 100644 index 0058508..0000000 --- a/pkgs/webapps/etherpad-lite/node-packages.nix +++ /dev/null | |||
@@ -1,2934 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {src, nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = { | ||
7 | "@apidevtools/json-schema-ref-parser-8.0.0" = { | ||
8 | name = "_at_apidevtools_slash_json-schema-ref-parser"; | ||
9 | packageName = "@apidevtools/json-schema-ref-parser"; | ||
10 | version = "8.0.0"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-8.0.0.tgz"; | ||
13 | sha512 = "n4YBtwQhdpLto1BaUCyAeflizmIbaloGShsPyRtFf5qdFJxfssj+GgLavczgKJFa3Bq+3St2CKcpRJdjtB4EBw=="; | ||
14 | }; | ||
15 | }; | ||
16 | "@apidevtools/openapi-schemas-2.0.3" = { | ||
17 | name = "_at_apidevtools_slash_openapi-schemas"; | ||
18 | packageName = "@apidevtools/openapi-schemas"; | ||
19 | version = "2.0.3"; | ||
20 | src = fetchurl { | ||
21 | url = "https://registry.npmjs.org/@apidevtools/openapi-schemas/-/openapi-schemas-2.0.3.tgz"; | ||
22 | sha512 = "QoPaxGXfgqgGpK1p21FJ400z56hV681a8DOcZt3J5z0WIHgFeaIZ4+6bX5ATqmOoCpRCsH4ITEwKaOyFMz7wOA=="; | ||
23 | }; | ||
24 | }; | ||
25 | "@apidevtools/swagger-methods-3.0.1" = { | ||
26 | name = "_at_apidevtools_slash_swagger-methods"; | ||
27 | packageName = "@apidevtools/swagger-methods"; | ||
28 | version = "3.0.1"; | ||
29 | src = fetchurl { | ||
30 | url = "https://registry.npmjs.org/@apidevtools/swagger-methods/-/swagger-methods-3.0.1.tgz"; | ||
31 | sha512 = "1Vlm18XYW6Yg7uHunroXeunWz5FShPFAdxBbPy8H6niB2Elz9QQsCoYHMbcc11EL1pTxaIr9HXz2An/mHXlX1Q=="; | ||
32 | }; | ||
33 | }; | ||
34 | "@apidevtools/swagger-parser-9.0.1" = { | ||
35 | name = "_at_apidevtools_slash_swagger-parser"; | ||
36 | packageName = "@apidevtools/swagger-parser"; | ||
37 | version = "9.0.1"; | ||
38 | src = fetchurl { | ||
39 | url = "https://registry.npmjs.org/@apidevtools/swagger-parser/-/swagger-parser-9.0.1.tgz"; | ||
40 | sha512 = "Irqybg4dQrcHhZcxJc/UM4vO7Ksoj1Id5e+K94XUOzllqX1n47HEA50EKiXTCQbykxuJ4cYGIivjx/MRSTC5OA=="; | ||
41 | }; | ||
42 | }; | ||
43 | "@jsdevtools/ono-7.1.2" = { | ||
44 | name = "_at_jsdevtools_slash_ono"; | ||
45 | packageName = "@jsdevtools/ono"; | ||
46 | version = "7.1.2"; | ||
47 | src = fetchurl { | ||
48 | url = "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.2.tgz"; | ||
49 | sha512 = "qS/a24RA5FEoiJS9wiv6Pwg2c/kiUo3IVUQcfeM9JvsR6pM8Yx+yl/6xWYLckZCT5jpLNhslgjiA8p/XcGyMRQ=="; | ||
50 | }; | ||
51 | }; | ||
52 | "@types/caseless-0.12.2" = { | ||
53 | name = "_at_types_slash_caseless"; | ||
54 | packageName = "@types/caseless"; | ||
55 | version = "0.12.2"; | ||
56 | src = fetchurl { | ||
57 | url = "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.2.tgz"; | ||
58 | sha512 = "6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w=="; | ||
59 | }; | ||
60 | }; | ||
61 | "@types/long-4.0.1" = { | ||
62 | name = "_at_types_slash_long"; | ||
63 | packageName = "@types/long"; | ||
64 | version = "4.0.1"; | ||
65 | src = fetchurl { | ||
66 | url = "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz"; | ||
67 | sha512 = "5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w=="; | ||
68 | }; | ||
69 | }; | ||
70 | "@types/node-13.13.4" = { | ||
71 | name = "_at_types_slash_node"; | ||
72 | packageName = "@types/node"; | ||
73 | version = "13.13.4"; | ||
74 | src = fetchurl { | ||
75 | url = "https://registry.npmjs.org/@types/node/-/node-13.13.4.tgz"; | ||
76 | sha512 = "x26ur3dSXgv5AwKS0lNfbjpCakGIduWU1DU91Zz58ONRWrIKGunmZBNv4P7N+e27sJkiGDsw/3fT4AtsqQBrBA=="; | ||
77 | }; | ||
78 | }; | ||
79 | "@types/request-2.48.4" = { | ||
80 | name = "_at_types_slash_request"; | ||
81 | packageName = "@types/request"; | ||
82 | version = "2.48.4"; | ||
83 | src = fetchurl { | ||
84 | url = "https://registry.npmjs.org/@types/request/-/request-2.48.4.tgz"; | ||
85 | sha512 = "W1t1MTKYR8PxICH+A4HgEIPuAC3sbljoEVfyZbeFJJDbr30guDspJri2XOaM2E+Un7ZjrihaDi7cf6fPa2tbgw=="; | ||
86 | }; | ||
87 | }; | ||
88 | "@types/tough-cookie-4.0.0" = { | ||
89 | name = "_at_types_slash_tough-cookie"; | ||
90 | packageName = "@types/tough-cookie"; | ||
91 | version = "4.0.0"; | ||
92 | src = fetchurl { | ||
93 | url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.0.tgz"; | ||
94 | sha512 = "I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A=="; | ||
95 | }; | ||
96 | }; | ||
97 | "accepts-1.3.7" = { | ||
98 | name = "accepts"; | ||
99 | packageName = "accepts"; | ||
100 | version = "1.3.7"; | ||
101 | src = fetchurl { | ||
102 | url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"; | ||
103 | sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; | ||
104 | }; | ||
105 | }; | ||
106 | "adm-zip-0.4.14" = { | ||
107 | name = "adm-zip"; | ||
108 | packageName = "adm-zip"; | ||
109 | version = "0.4.14"; | ||
110 | src = fetchurl { | ||
111 | url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.14.tgz"; | ||
112 | sha512 = "/9aQCnQHF+0IiCl0qhXoK7qs//SwYE7zX8lsr/DNk1BRAHYxeLZPL4pguwK29gUEqasYQjqPtEpDRSWEkdHn9g=="; | ||
113 | }; | ||
114 | }; | ||
115 | "after-0.8.2" = { | ||
116 | name = "after"; | ||
117 | packageName = "after"; | ||
118 | version = "0.8.2"; | ||
119 | src = fetchurl { | ||
120 | url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz"; | ||
121 | sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f"; | ||
122 | }; | ||
123 | }; | ||
124 | "agentkeepalive-3.5.2" = { | ||
125 | name = "agentkeepalive"; | ||
126 | packageName = "agentkeepalive"; | ||
127 | version = "3.5.2"; | ||
128 | src = fetchurl { | ||
129 | url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.5.2.tgz"; | ||
130 | sha512 = "e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ=="; | ||
131 | }; | ||
132 | }; | ||
133 | "ajv-6.12.2" = { | ||
134 | name = "ajv"; | ||
135 | packageName = "ajv"; | ||
136 | version = "6.12.2"; | ||
137 | src = fetchurl { | ||
138 | url = "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz"; | ||
139 | sha512 = "k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ=="; | ||
140 | }; | ||
141 | }; | ||
142 | "ansi-regex-2.1.1" = { | ||
143 | name = "ansi-regex"; | ||
144 | packageName = "ansi-regex"; | ||
145 | version = "2.1.1"; | ||
146 | src = fetchurl { | ||
147 | url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; | ||
148 | sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; | ||
149 | }; | ||
150 | }; | ||
151 | "ansi-styles-2.2.1" = { | ||
152 | name = "ansi-styles"; | ||
153 | packageName = "ansi-styles"; | ||
154 | version = "2.2.1"; | ||
155 | src = fetchurl { | ||
156 | url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; | ||
157 | sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; | ||
158 | }; | ||
159 | }; | ||
160 | "argparse-1.0.10" = { | ||
161 | name = "argparse"; | ||
162 | packageName = "argparse"; | ||
163 | version = "1.0.10"; | ||
164 | src = fetchurl { | ||
165 | url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"; | ||
166 | sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; | ||
167 | }; | ||
168 | }; | ||
169 | "array-flatten-1.1.1" = { | ||
170 | name = "array-flatten"; | ||
171 | packageName = "array-flatten"; | ||
172 | version = "1.1.1"; | ||
173 | src = fetchurl { | ||
174 | url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; | ||
175 | sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; | ||
176 | }; | ||
177 | }; | ||
178 | "arraybuffer.slice-0.0.7" = { | ||
179 | name = "arraybuffer.slice"; | ||
180 | packageName = "arraybuffer.slice"; | ||
181 | version = "0.0.7"; | ||
182 | src = fetchurl { | ||
183 | url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz"; | ||
184 | sha512 = "wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog=="; | ||
185 | }; | ||
186 | }; | ||
187 | "asn1-0.2.4" = { | ||
188 | name = "asn1"; | ||
189 | packageName = "asn1"; | ||
190 | version = "0.2.4"; | ||
191 | src = fetchurl { | ||
192 | url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; | ||
193 | sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; | ||
194 | }; | ||
195 | }; | ||
196 | "assert-plus-1.0.0" = { | ||
197 | name = "assert-plus"; | ||
198 | packageName = "assert-plus"; | ||
199 | version = "1.0.0"; | ||
200 | src = fetchurl { | ||
201 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; | ||
202 | sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; | ||
203 | }; | ||
204 | }; | ||
205 | "async-0.9.0" = { | ||
206 | name = "async"; | ||
207 | packageName = "async"; | ||
208 | version = "0.9.0"; | ||
209 | src = fetchurl { | ||
210 | url = "https://registry.npmjs.org/async/-/async-0.9.0.tgz"; | ||
211 | sha1 = "ac3613b1da9bed1b47510bb4651b8931e47146c7"; | ||
212 | }; | ||
213 | }; | ||
214 | "async-3.2.0" = { | ||
215 | name = "async"; | ||
216 | packageName = "async"; | ||
217 | version = "3.2.0"; | ||
218 | src = fetchurl { | ||
219 | url = "https://registry.npmjs.org/async/-/async-3.2.0.tgz"; | ||
220 | sha512 = "TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw=="; | ||
221 | }; | ||
222 | }; | ||
223 | "async-limiter-1.0.1" = { | ||
224 | name = "async-limiter"; | ||
225 | packageName = "async-limiter"; | ||
226 | version = "1.0.1"; | ||
227 | src = fetchurl { | ||
228 | url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"; | ||
229 | sha512 = "csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="; | ||
230 | }; | ||
231 | }; | ||
232 | "async-stacktrace-0.0.2" = { | ||
233 | name = "async-stacktrace"; | ||
234 | packageName = "async-stacktrace"; | ||
235 | version = "0.0.2"; | ||
236 | src = fetchurl { | ||
237 | url = "https://registry.npmjs.org/async-stacktrace/-/async-stacktrace-0.0.2.tgz"; | ||
238 | sha1 = "8bbb9787e3b38c836c729a7e9d7c08630db5d1ef"; | ||
239 | }; | ||
240 | }; | ||
241 | "asynckit-0.4.0" = { | ||
242 | name = "asynckit"; | ||
243 | packageName = "asynckit"; | ||
244 | version = "0.4.0"; | ||
245 | src = fetchurl { | ||
246 | url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; | ||
247 | sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; | ||
248 | }; | ||
249 | }; | ||
250 | "aws-sign2-0.7.0" = { | ||
251 | name = "aws-sign2"; | ||
252 | packageName = "aws-sign2"; | ||
253 | version = "0.7.0"; | ||
254 | src = fetchurl { | ||
255 | url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; | ||
256 | sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; | ||
257 | }; | ||
258 | }; | ||
259 | "aws4-1.9.1" = { | ||
260 | name = "aws4"; | ||
261 | packageName = "aws4"; | ||
262 | version = "1.9.1"; | ||
263 | src = fetchurl { | ||
264 | url = "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz"; | ||
265 | sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="; | ||
266 | }; | ||
267 | }; | ||
268 | "backo2-1.0.2" = { | ||
269 | name = "backo2"; | ||
270 | packageName = "backo2"; | ||
271 | version = "1.0.2"; | ||
272 | src = fetchurl { | ||
273 | url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz"; | ||
274 | sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947"; | ||
275 | }; | ||
276 | }; | ||
277 | "base64-arraybuffer-0.1.5" = { | ||
278 | name = "base64-arraybuffer"; | ||
279 | packageName = "base64-arraybuffer"; | ||
280 | version = "0.1.5"; | ||
281 | src = fetchurl { | ||
282 | url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"; | ||
283 | sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; | ||
284 | }; | ||
285 | }; | ||
286 | "base64id-1.0.0" = { | ||
287 | name = "base64id"; | ||
288 | packageName = "base64id"; | ||
289 | version = "1.0.0"; | ||
290 | src = fetchurl { | ||
291 | url = "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz"; | ||
292 | sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6"; | ||
293 | }; | ||
294 | }; | ||
295 | "bath-es5-3.0.3" = { | ||
296 | name = "bath-es5"; | ||
297 | packageName = "bath-es5"; | ||
298 | version = "3.0.3"; | ||
299 | src = fetchurl { | ||
300 | url = "https://registry.npmjs.org/bath-es5/-/bath-es5-3.0.3.tgz"; | ||
301 | sha512 = "PdCioDToH3t84lP40kUFCKWCOCH389Dl1kbC8FGoqOwamxsmqxxnJSXdkTOsPoNHXjem4+sJ+bbNoQm5zeCqxg=="; | ||
302 | }; | ||
303 | }; | ||
304 | "bcrypt-pbkdf-1.0.2" = { | ||
305 | name = "bcrypt-pbkdf"; | ||
306 | packageName = "bcrypt-pbkdf"; | ||
307 | version = "1.0.2"; | ||
308 | src = fetchurl { | ||
309 | url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; | ||
310 | sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; | ||
311 | }; | ||
312 | }; | ||
313 | "better-assert-1.0.2" = { | ||
314 | name = "better-assert"; | ||
315 | packageName = "better-assert"; | ||
316 | version = "1.0.2"; | ||
317 | src = fetchurl { | ||
318 | url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"; | ||
319 | sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522"; | ||
320 | }; | ||
321 | }; | ||
322 | "bignumber.js-9.0.0" = { | ||
323 | name = "bignumber.js"; | ||
324 | packageName = "bignumber.js"; | ||
325 | version = "9.0.0"; | ||
326 | src = fetchurl { | ||
327 | url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz"; | ||
328 | sha512 = "t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A=="; | ||
329 | }; | ||
330 | }; | ||
331 | "binary-search-1.3.6" = { | ||
332 | name = "binary-search"; | ||
333 | packageName = "binary-search"; | ||
334 | version = "1.3.6"; | ||
335 | src = fetchurl { | ||
336 | url = "https://registry.npmjs.org/binary-search/-/binary-search-1.3.6.tgz"; | ||
337 | sha512 = "nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA=="; | ||
338 | }; | ||
339 | }; | ||
340 | "blob-0.0.5" = { | ||
341 | name = "blob"; | ||
342 | packageName = "blob"; | ||
343 | version = "0.0.5"; | ||
344 | src = fetchurl { | ||
345 | url = "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz"; | ||
346 | sha512 = "gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig=="; | ||
347 | }; | ||
348 | }; | ||
349 | "bluebird-2.11.0" = { | ||
350 | name = "bluebird"; | ||
351 | packageName = "bluebird"; | ||
352 | version = "2.11.0"; | ||
353 | src = fetchurl { | ||
354 | url = "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz"; | ||
355 | sha1 = "534b9033c022c9579c56ba3b3e5a5caafbb650e1"; | ||
356 | }; | ||
357 | }; | ||
358 | "body-parser-1.19.0" = { | ||
359 | name = "body-parser"; | ||
360 | packageName = "body-parser"; | ||
361 | version = "1.19.0"; | ||
362 | src = fetchurl { | ||
363 | url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"; | ||
364 | sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; | ||
365 | }; | ||
366 | }; | ||
367 | "boolbase-1.0.0" = { | ||
368 | name = "boolbase"; | ||
369 | packageName = "boolbase"; | ||
370 | version = "1.0.0"; | ||
371 | src = fetchurl { | ||
372 | url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; | ||
373 | sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; | ||
374 | }; | ||
375 | }; | ||
376 | "browser-request-0.3.3" = { | ||
377 | name = "browser-request"; | ||
378 | packageName = "browser-request"; | ||
379 | version = "0.3.3"; | ||
380 | src = fetchurl { | ||
381 | url = "https://registry.npmjs.org/browser-request/-/browser-request-0.3.3.tgz"; | ||
382 | sha1 = "9ece5b5aca89a29932242e18bf933def9876cc17"; | ||
383 | }; | ||
384 | }; | ||
385 | "buffer-writer-2.0.0" = { | ||
386 | name = "buffer-writer"; | ||
387 | packageName = "buffer-writer"; | ||
388 | version = "2.0.0"; | ||
389 | src = fetchurl { | ||
390 | url = "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz"; | ||
391 | sha512 = "a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw=="; | ||
392 | }; | ||
393 | }; | ||
394 | "bytes-3.1.0" = { | ||
395 | name = "bytes"; | ||
396 | packageName = "bytes"; | ||
397 | version = "3.1.0"; | ||
398 | src = fetchurl { | ||
399 | url = "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"; | ||
400 | sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; | ||
401 | }; | ||
402 | }; | ||
403 | "call-me-maybe-1.0.1" = { | ||
404 | name = "call-me-maybe"; | ||
405 | packageName = "call-me-maybe"; | ||
406 | version = "1.0.1"; | ||
407 | src = fetchurl { | ||
408 | url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz"; | ||
409 | sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b"; | ||
410 | }; | ||
411 | }; | ||
412 | "callsite-1.0.0" = { | ||
413 | name = "callsite"; | ||
414 | packageName = "callsite"; | ||
415 | version = "1.0.0"; | ||
416 | src = fetchurl { | ||
417 | url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"; | ||
418 | sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; | ||
419 | }; | ||
420 | }; | ||
421 | "caseless-0.12.0" = { | ||
422 | name = "caseless"; | ||
423 | packageName = "caseless"; | ||
424 | version = "0.12.0"; | ||
425 | src = fetchurl { | ||
426 | url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; | ||
427 | sha1 = "1b681c21ff84033c826543090689420d187151dc"; | ||
428 | }; | ||
429 | }; | ||
430 | "cassandra-driver-4.5.1" = { | ||
431 | name = "cassandra-driver"; | ||
432 | packageName = "cassandra-driver"; | ||
433 | version = "4.5.1"; | ||
434 | src = fetchurl { | ||
435 | url = "https://registry.npmjs.org/cassandra-driver/-/cassandra-driver-4.5.1.tgz"; | ||
436 | sha512 = "N5pxCxi9jPJzHuhx7ObClJtePcby8xuSb3mQkik1EE57CWqI7dEAuZZUaM7Flboasbwf/uSmw9oTfuf6sZMq9A=="; | ||
437 | }; | ||
438 | }; | ||
439 | "chalk-1.1.3" = { | ||
440 | name = "chalk"; | ||
441 | packageName = "chalk"; | ||
442 | version = "1.1.3"; | ||
443 | src = fetchurl { | ||
444 | url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; | ||
445 | sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; | ||
446 | }; | ||
447 | }; | ||
448 | "channels-0.0.4" = { | ||
449 | name = "channels"; | ||
450 | packageName = "channels"; | ||
451 | version = "0.0.4"; | ||
452 | src = fetchurl { | ||
453 | url = "https://registry.npmjs.org/channels/-/channels-0.0.4.tgz"; | ||
454 | sha1 = "1bee323edea152bb9ef04f41bc6e6b0f5948a941"; | ||
455 | }; | ||
456 | }; | ||
457 | "cheerio-0.22.0" = { | ||
458 | name = "cheerio"; | ||
459 | packageName = "cheerio"; | ||
460 | version = "0.22.0"; | ||
461 | src = fetchurl { | ||
462 | url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; | ||
463 | sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e"; | ||
464 | }; | ||
465 | }; | ||
466 | "clean-css-4.2.3" = { | ||
467 | name = "clean-css"; | ||
468 | packageName = "clean-css"; | ||
469 | version = "4.2.3"; | ||
470 | src = fetchurl { | ||
471 | url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz"; | ||
472 | sha512 = "VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA=="; | ||
473 | }; | ||
474 | }; | ||
475 | "cloudant-follow-0.18.2" = { | ||
476 | name = "cloudant-follow"; | ||
477 | packageName = "cloudant-follow"; | ||
478 | version = "0.18.2"; | ||
479 | src = fetchurl { | ||
480 | url = "https://registry.npmjs.org/cloudant-follow/-/cloudant-follow-0.18.2.tgz"; | ||
481 | sha512 = "qu/AmKxDqJds+UmT77+0NbM7Yab2K3w0qSeJRzsq5dRWJTEJdWeb+XpG4OpKuTE9RKOa/Awn2gR3TTnvNr3TeA=="; | ||
482 | }; | ||
483 | }; | ||
484 | "combined-stream-1.0.8" = { | ||
485 | name = "combined-stream"; | ||
486 | packageName = "combined-stream"; | ||
487 | version = "1.0.8"; | ||
488 | src = fetchurl { | ||
489 | url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; | ||
490 | sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; | ||
491 | }; | ||
492 | }; | ||
493 | "commander-2.20.3" = { | ||
494 | name = "commander"; | ||
495 | packageName = "commander"; | ||
496 | version = "2.20.3"; | ||
497 | src = fetchurl { | ||
498 | url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; | ||
499 | sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; | ||
500 | }; | ||
501 | }; | ||
502 | "component-bind-1.0.0" = { | ||
503 | name = "component-bind"; | ||
504 | packageName = "component-bind"; | ||
505 | version = "1.0.0"; | ||
506 | src = fetchurl { | ||
507 | url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz"; | ||
508 | sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"; | ||
509 | }; | ||
510 | }; | ||
511 | "component-emitter-1.2.1" = { | ||
512 | name = "component-emitter"; | ||
513 | packageName = "component-emitter"; | ||
514 | version = "1.2.1"; | ||
515 | src = fetchurl { | ||
516 | url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"; | ||
517 | sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; | ||
518 | }; | ||
519 | }; | ||
520 | "component-inherit-0.0.3" = { | ||
521 | name = "component-inherit"; | ||
522 | packageName = "component-inherit"; | ||
523 | version = "0.0.3"; | ||
524 | src = fetchurl { | ||
525 | url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz"; | ||
526 | sha1 = "645fc4adf58b72b649d5cae65135619db26ff143"; | ||
527 | }; | ||
528 | }; | ||
529 | "content-disposition-0.5.3" = { | ||
530 | name = "content-disposition"; | ||
531 | packageName = "content-disposition"; | ||
532 | version = "0.5.3"; | ||
533 | src = fetchurl { | ||
534 | url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz"; | ||
535 | sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; | ||
536 | }; | ||
537 | }; | ||
538 | "content-type-1.0.4" = { | ||
539 | name = "content-type"; | ||
540 | packageName = "content-type"; | ||
541 | version = "1.0.4"; | ||
542 | src = fetchurl { | ||
543 | url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; | ||
544 | sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; | ||
545 | }; | ||
546 | }; | ||
547 | "cookie-0.3.1" = { | ||
548 | name = "cookie"; | ||
549 | packageName = "cookie"; | ||
550 | version = "0.3.1"; | ||
551 | src = fetchurl { | ||
552 | url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"; | ||
553 | sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; | ||
554 | }; | ||
555 | }; | ||
556 | "cookie-0.4.0" = { | ||
557 | name = "cookie"; | ||
558 | packageName = "cookie"; | ||
559 | version = "0.4.0"; | ||
560 | src = fetchurl { | ||
561 | url = "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz"; | ||
562 | sha512 = "+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="; | ||
563 | }; | ||
564 | }; | ||
565 | "cookie-0.4.1" = { | ||
566 | name = "cookie"; | ||
567 | packageName = "cookie"; | ||
568 | version = "0.4.1"; | ||
569 | src = fetchurl { | ||
570 | url = "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz"; | ||
571 | sha512 = "ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA=="; | ||
572 | }; | ||
573 | }; | ||
574 | "cookie-parser-1.4.4" = { | ||
575 | name = "cookie-parser"; | ||
576 | packageName = "cookie-parser"; | ||
577 | version = "1.4.4"; | ||
578 | src = fetchurl { | ||
579 | url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.4.tgz"; | ||
580 | sha512 = "lo13tqF3JEtFO7FyA49CqbhaFkskRJ0u/UAiINgrIXeRCY41c88/zxtrECl8AKH3B0hj9q10+h3Kt8I7KlW4tw=="; | ||
581 | }; | ||
582 | }; | ||
583 | "cookie-signature-1.0.6" = { | ||
584 | name = "cookie-signature"; | ||
585 | packageName = "cookie-signature"; | ||
586 | version = "1.0.6"; | ||
587 | src = fetchurl { | ||
588 | url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; | ||
589 | sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; | ||
590 | }; | ||
591 | }; | ||
592 | "core-util-is-1.0.2" = { | ||
593 | name = "core-util-is"; | ||
594 | packageName = "core-util-is"; | ||
595 | version = "1.0.2"; | ||
596 | src = fetchurl { | ||
597 | url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; | ||
598 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; | ||
599 | }; | ||
600 | }; | ||
601 | "css-select-1.2.0" = { | ||
602 | name = "css-select"; | ||
603 | packageName = "css-select"; | ||
604 | version = "1.2.0"; | ||
605 | src = fetchurl { | ||
606 | url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz"; | ||
607 | sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858"; | ||
608 | }; | ||
609 | }; | ||
610 | "css-what-2.1.3" = { | ||
611 | name = "css-what"; | ||
612 | packageName = "css-what"; | ||
613 | version = "2.1.3"; | ||
614 | src = fetchurl { | ||
615 | url = "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz"; | ||
616 | sha512 = "a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg=="; | ||
617 | }; | ||
618 | }; | ||
619 | "dashdash-1.14.1" = { | ||
620 | name = "dashdash"; | ||
621 | packageName = "dashdash"; | ||
622 | version = "1.14.1"; | ||
623 | src = fetchurl { | ||
624 | url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; | ||
625 | sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; | ||
626 | }; | ||
627 | }; | ||
628 | "debug-2.6.9" = { | ||
629 | name = "debug"; | ||
630 | packageName = "debug"; | ||
631 | version = "2.6.9"; | ||
632 | src = fetchurl { | ||
633 | url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; | ||
634 | sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; | ||
635 | }; | ||
636 | }; | ||
637 | "debug-3.1.0" = { | ||
638 | name = "debug"; | ||
639 | packageName = "debug"; | ||
640 | version = "3.1.0"; | ||
641 | src = fetchurl { | ||
642 | url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"; | ||
643 | sha512 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="; | ||
644 | }; | ||
645 | }; | ||
646 | "debug-4.1.1" = { | ||
647 | name = "debug"; | ||
648 | packageName = "debug"; | ||
649 | version = "4.1.1"; | ||
650 | src = fetchurl { | ||
651 | url = "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"; | ||
652 | sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; | ||
653 | }; | ||
654 | }; | ||
655 | "delayed-stream-1.0.0" = { | ||
656 | name = "delayed-stream"; | ||
657 | packageName = "delayed-stream"; | ||
658 | version = "1.0.0"; | ||
659 | src = fetchurl { | ||
660 | url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; | ||
661 | sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; | ||
662 | }; | ||
663 | }; | ||
664 | "denque-1.4.1" = { | ||
665 | name = "denque"; | ||
666 | packageName = "denque"; | ||
667 | version = "1.4.1"; | ||
668 | src = fetchurl { | ||
669 | url = "https://registry.npmjs.org/denque/-/denque-1.4.1.tgz"; | ||
670 | sha512 = "OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ=="; | ||
671 | }; | ||
672 | }; | ||
673 | "depd-1.1.2" = { | ||
674 | name = "depd"; | ||
675 | packageName = "depd"; | ||
676 | version = "1.1.2"; | ||
677 | src = fetchurl { | ||
678 | url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; | ||
679 | sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; | ||
680 | }; | ||
681 | }; | ||
682 | "depd-2.0.0" = { | ||
683 | name = "depd"; | ||
684 | packageName = "depd"; | ||
685 | version = "2.0.0"; | ||
686 | src = fetchurl { | ||
687 | url = "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"; | ||
688 | sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; | ||
689 | }; | ||
690 | }; | ||
691 | "destroy-1.0.4" = { | ||
692 | name = "destroy"; | ||
693 | packageName = "destroy"; | ||
694 | version = "1.0.4"; | ||
695 | src = fetchurl { | ||
696 | url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; | ||
697 | sha1 = "978857442c44749e4206613e37946205826abd80"; | ||
698 | }; | ||
699 | }; | ||
700 | "dirty-1.1.0" = { | ||
701 | name = "dirty"; | ||
702 | packageName = "dirty"; | ||
703 | version = "1.1.0"; | ||
704 | src = fetchurl { | ||
705 | url = "https://registry.npmjs.org/dirty/-/dirty-1.1.0.tgz"; | ||
706 | sha1 = "70edd2b999541dc9974fd3a8cbd0c670fe236078"; | ||
707 | }; | ||
708 | }; | ||
709 | "dom-serializer-0.1.1" = { | ||
710 | name = "dom-serializer"; | ||
711 | packageName = "dom-serializer"; | ||
712 | version = "0.1.1"; | ||
713 | src = fetchurl { | ||
714 | url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz"; | ||
715 | sha512 = "l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA=="; | ||
716 | }; | ||
717 | }; | ||
718 | "domelementtype-1.3.1" = { | ||
719 | name = "domelementtype"; | ||
720 | packageName = "domelementtype"; | ||
721 | version = "1.3.1"; | ||
722 | src = fetchurl { | ||
723 | url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz"; | ||
724 | sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; | ||
725 | }; | ||
726 | }; | ||
727 | "domhandler-2.4.2" = { | ||
728 | name = "domhandler"; | ||
729 | packageName = "domhandler"; | ||
730 | version = "2.4.2"; | ||
731 | src = fetchurl { | ||
732 | url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz"; | ||
733 | sha512 = "JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA=="; | ||
734 | }; | ||
735 | }; | ||
736 | "domutils-1.5.1" = { | ||
737 | name = "domutils"; | ||
738 | packageName = "domutils"; | ||
739 | version = "1.5.1"; | ||
740 | src = fetchurl { | ||
741 | url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz"; | ||
742 | sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; | ||
743 | }; | ||
744 | }; | ||
745 | "ecc-jsbn-0.1.2" = { | ||
746 | name = "ecc-jsbn"; | ||
747 | packageName = "ecc-jsbn"; | ||
748 | version = "0.1.2"; | ||
749 | src = fetchurl { | ||
750 | url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; | ||
751 | sha1 = "3a83a904e54353287874c564b7549386849a98c9"; | ||
752 | }; | ||
753 | }; | ||
754 | "ee-first-1.1.1" = { | ||
755 | name = "ee-first"; | ||
756 | packageName = "ee-first"; | ||
757 | version = "1.1.1"; | ||
758 | src = fetchurl { | ||
759 | url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; | ||
760 | sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; | ||
761 | }; | ||
762 | }; | ||
763 | "ejs-2.6.1" = { | ||
764 | name = "ejs"; | ||
765 | packageName = "ejs"; | ||
766 | version = "2.6.1"; | ||
767 | src = fetchurl { | ||
768 | url = "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz"; | ||
769 | sha512 = "0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ=="; | ||
770 | }; | ||
771 | }; | ||
772 | "elasticsearch-16.7.1" = { | ||
773 | name = "elasticsearch"; | ||
774 | packageName = "elasticsearch"; | ||
775 | version = "16.7.1"; | ||
776 | src = fetchurl { | ||
777 | url = "https://registry.npmjs.org/elasticsearch/-/elasticsearch-16.7.1.tgz"; | ||
778 | sha512 = "PL/BxB03VGbbghJwISYvVcrR9KbSSkuQ7OM//jHJg/End/uC2fvXg4QI7RXLvCGbhBuNQ8dPue7DOOPra73PCw=="; | ||
779 | }; | ||
780 | }; | ||
781 | "encodeurl-1.0.2" = { | ||
782 | name = "encodeurl"; | ||
783 | packageName = "encodeurl"; | ||
784 | version = "1.0.2"; | ||
785 | src = fetchurl { | ||
786 | url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; | ||
787 | sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; | ||
788 | }; | ||
789 | }; | ||
790 | "engine.io-3.2.1" = { | ||
791 | name = "engine.io"; | ||
792 | packageName = "engine.io"; | ||
793 | version = "3.2.1"; | ||
794 | src = fetchurl { | ||
795 | url = "https://registry.npmjs.org/engine.io/-/engine.io-3.2.1.tgz"; | ||
796 | sha512 = "+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w=="; | ||
797 | }; | ||
798 | }; | ||
799 | "engine.io-client-3.2.1" = { | ||
800 | name = "engine.io-client"; | ||
801 | packageName = "engine.io-client"; | ||
802 | version = "3.2.1"; | ||
803 | src = fetchurl { | ||
804 | url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz"; | ||
805 | sha512 = "y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw=="; | ||
806 | }; | ||
807 | }; | ||
808 | "engine.io-parser-2.1.3" = { | ||
809 | name = "engine.io-parser"; | ||
810 | packageName = "engine.io-parser"; | ||
811 | version = "2.1.3"; | ||
812 | src = fetchurl { | ||
813 | url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz"; | ||
814 | sha512 = "6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA=="; | ||
815 | }; | ||
816 | }; | ||
817 | "entities-1.1.2" = { | ||
818 | name = "entities"; | ||
819 | packageName = "entities"; | ||
820 | version = "1.1.2"; | ||
821 | src = fetchurl { | ||
822 | url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"; | ||
823 | sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="; | ||
824 | }; | ||
825 | }; | ||
826 | "errs-0.3.2" = { | ||
827 | name = "errs"; | ||
828 | packageName = "errs"; | ||
829 | version = "0.3.2"; | ||
830 | src = fetchurl { | ||
831 | url = "https://registry.npmjs.org/errs/-/errs-0.3.2.tgz"; | ||
832 | sha1 = "798099b2dbd37ca2bc749e538a7c1307d0b50499"; | ||
833 | }; | ||
834 | }; | ||
835 | "escape-html-1.0.3" = { | ||
836 | name = "escape-html"; | ||
837 | packageName = "escape-html"; | ||
838 | version = "1.0.3"; | ||
839 | src = fetchurl { | ||
840 | url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; | ||
841 | sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; | ||
842 | }; | ||
843 | }; | ||
844 | "escape-string-regexp-1.0.5" = { | ||
845 | name = "escape-string-regexp"; | ||
846 | packageName = "escape-string-regexp"; | ||
847 | version = "1.0.5"; | ||
848 | src = fetchurl { | ||
849 | url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; | ||
850 | sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; | ||
851 | }; | ||
852 | }; | ||
853 | "esprima-4.0.1" = { | ||
854 | name = "esprima"; | ||
855 | packageName = "esprima"; | ||
856 | version = "4.0.1"; | ||
857 | src = fetchurl { | ||
858 | url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"; | ||
859 | sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; | ||
860 | }; | ||
861 | }; | ||
862 | "etag-1.8.1" = { | ||
863 | name = "etag"; | ||
864 | packageName = "etag"; | ||
865 | version = "1.8.1"; | ||
866 | src = fetchurl { | ||
867 | url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; | ||
868 | sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; | ||
869 | }; | ||
870 | }; | ||
871 | "etherpad-require-kernel-1.0.9" = { | ||
872 | name = "etherpad-require-kernel"; | ||
873 | packageName = "etherpad-require-kernel"; | ||
874 | version = "1.0.9"; | ||
875 | src = fetchurl { | ||
876 | url = "https://registry.npmjs.org/etherpad-require-kernel/-/etherpad-require-kernel-1.0.9.tgz"; | ||
877 | sha1 = "ed8f04e9fd2ccec3a0055bb6d2dfe9d99912e7e2"; | ||
878 | }; | ||
879 | }; | ||
880 | "etherpad-yajsml-0.0.2" = { | ||
881 | name = "etherpad-yajsml"; | ||
882 | packageName = "etherpad-yajsml"; | ||
883 | version = "0.0.2"; | ||
884 | src = fetchurl { | ||
885 | url = "https://registry.npmjs.org/etherpad-yajsml/-/etherpad-yajsml-0.0.2.tgz"; | ||
886 | sha1 = "1c24d268b09476e637d049cddb1c6df8c729b46e"; | ||
887 | }; | ||
888 | }; | ||
889 | "express-4.17.1" = { | ||
890 | name = "express"; | ||
891 | packageName = "express"; | ||
892 | version = "4.17.1"; | ||
893 | src = fetchurl { | ||
894 | url = "https://registry.npmjs.org/express/-/express-4.17.1.tgz"; | ||
895 | sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; | ||
896 | }; | ||
897 | }; | ||
898 | "express-rate-limit-5.1.1" = { | ||
899 | name = "express-rate-limit"; | ||
900 | packageName = "express-rate-limit"; | ||
901 | version = "5.1.1"; | ||
902 | src = fetchurl { | ||
903 | url = "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.1.1.tgz"; | ||
904 | sha512 = "puA1zcCx/quwWUOU6pT6daCt6t7SweD9wKChKhb+KSgFMKRwS81C224hiSAUANw/gnSHiwEhgozM/2ezEBZPeA=="; | ||
905 | }; | ||
906 | }; | ||
907 | "express-session-1.17.0" = { | ||
908 | name = "express-session"; | ||
909 | packageName = "express-session"; | ||
910 | version = "1.17.0"; | ||
911 | src = fetchurl { | ||
912 | url = "https://registry.npmjs.org/express-session/-/express-session-1.17.0.tgz"; | ||
913 | sha512 = "t4oX2z7uoSqATbMfsxWMbNjAL0T5zpvcJCk3Z9wnPPN7ibddhnmDZXHfEcoBMG2ojKXZoCyPMc5FbtK+G7SoDg=="; | ||
914 | }; | ||
915 | }; | ||
916 | "extend-3.0.2" = { | ||
917 | name = "extend"; | ||
918 | packageName = "extend"; | ||
919 | version = "3.0.2"; | ||
920 | src = fetchurl { | ||
921 | url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; | ||
922 | sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; | ||
923 | }; | ||
924 | }; | ||
925 | "extsprintf-1.3.0" = { | ||
926 | name = "extsprintf"; | ||
927 | packageName = "extsprintf"; | ||
928 | version = "1.3.0"; | ||
929 | src = fetchurl { | ||
930 | url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; | ||
931 | sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; | ||
932 | }; | ||
933 | }; | ||
934 | "fast-deep-equal-3.1.1" = { | ||
935 | name = "fast-deep-equal"; | ||
936 | packageName = "fast-deep-equal"; | ||
937 | version = "3.1.1"; | ||
938 | src = fetchurl { | ||
939 | url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; | ||
940 | sha512 = "8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA=="; | ||
941 | }; | ||
942 | }; | ||
943 | "fast-json-stable-stringify-2.1.0" = { | ||
944 | name = "fast-json-stable-stringify"; | ||
945 | packageName = "fast-json-stable-stringify"; | ||
946 | version = "2.1.0"; | ||
947 | src = fetchurl { | ||
948 | url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; | ||
949 | sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="; | ||
950 | }; | ||
951 | }; | ||
952 | "finalhandler-1.1.2" = { | ||
953 | name = "finalhandler"; | ||
954 | packageName = "finalhandler"; | ||
955 | version = "1.1.2"; | ||
956 | src = fetchurl { | ||
957 | url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"; | ||
958 | sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; | ||
959 | }; | ||
960 | }; | ||
961 | "find-root-1.1.0" = { | ||
962 | name = "find-root"; | ||
963 | packageName = "find-root"; | ||
964 | version = "1.1.0"; | ||
965 | src = fetchurl { | ||
966 | url = "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz"; | ||
967 | sha512 = "NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="; | ||
968 | }; | ||
969 | }; | ||
970 | "forever-agent-0.6.1" = { | ||
971 | name = "forever-agent"; | ||
972 | packageName = "forever-agent"; | ||
973 | version = "0.6.1"; | ||
974 | src = fetchurl { | ||
975 | url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; | ||
976 | sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; | ||
977 | }; | ||
978 | }; | ||
979 | "form-data-2.3.3" = { | ||
980 | name = "form-data"; | ||
981 | packageName = "form-data"; | ||
982 | version = "2.3.3"; | ||
983 | src = fetchurl { | ||
984 | url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; | ||
985 | sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; | ||
986 | }; | ||
987 | }; | ||
988 | "form-data-2.5.1" = { | ||
989 | name = "form-data"; | ||
990 | packageName = "form-data"; | ||
991 | version = "2.5.1"; | ||
992 | src = fetchurl { | ||
993 | url = "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz"; | ||
994 | sha512 = "m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA=="; | ||
995 | }; | ||
996 | }; | ||
997 | "formidable-1.2.1" = { | ||
998 | name = "formidable"; | ||
999 | packageName = "formidable"; | ||
1000 | version = "1.2.1"; | ||
1001 | src = fetchurl { | ||
1002 | url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz"; | ||
1003 | sha512 = "Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg=="; | ||
1004 | }; | ||
1005 | }; | ||
1006 | "forwarded-0.1.2" = { | ||
1007 | name = "forwarded"; | ||
1008 | packageName = "forwarded"; | ||
1009 | version = "0.1.2"; | ||
1010 | src = fetchurl { | ||
1011 | url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; | ||
1012 | sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; | ||
1013 | }; | ||
1014 | }; | ||
1015 | "fresh-0.5.2" = { | ||
1016 | name = "fresh"; | ||
1017 | packageName = "fresh"; | ||
1018 | version = "0.5.2"; | ||
1019 | src = fetchurl { | ||
1020 | url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; | ||
1021 | sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; | ||
1022 | }; | ||
1023 | }; | ||
1024 | "getpass-0.1.7" = { | ||
1025 | name = "getpass"; | ||
1026 | packageName = "getpass"; | ||
1027 | version = "0.1.7"; | ||
1028 | src = fetchurl { | ||
1029 | url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; | ||
1030 | sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; | ||
1031 | }; | ||
1032 | }; | ||
1033 | "graceful-fs-4.2.2" = { | ||
1034 | name = "graceful-fs"; | ||
1035 | packageName = "graceful-fs"; | ||
1036 | version = "4.2.2"; | ||
1037 | src = fetchurl { | ||
1038 | url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz"; | ||
1039 | sha512 = "IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q=="; | ||
1040 | }; | ||
1041 | }; | ||
1042 | "har-schema-2.0.0" = { | ||
1043 | name = "har-schema"; | ||
1044 | packageName = "har-schema"; | ||
1045 | version = "2.0.0"; | ||
1046 | src = fetchurl { | ||
1047 | url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; | ||
1048 | sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; | ||
1049 | }; | ||
1050 | }; | ||
1051 | "har-validator-5.1.3" = { | ||
1052 | name = "har-validator"; | ||
1053 | packageName = "har-validator"; | ||
1054 | version = "5.1.3"; | ||
1055 | src = fetchurl { | ||
1056 | url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; | ||
1057 | sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; | ||
1058 | }; | ||
1059 | }; | ||
1060 | "has-ansi-2.0.0" = { | ||
1061 | name = "has-ansi"; | ||
1062 | packageName = "has-ansi"; | ||
1063 | version = "2.0.0"; | ||
1064 | src = fetchurl { | ||
1065 | url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; | ||
1066 | sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; | ||
1067 | }; | ||
1068 | }; | ||
1069 | "has-binary2-1.0.3" = { | ||
1070 | name = "has-binary2"; | ||
1071 | packageName = "has-binary2"; | ||
1072 | version = "1.0.3"; | ||
1073 | src = fetchurl { | ||
1074 | url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz"; | ||
1075 | sha512 = "G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw=="; | ||
1076 | }; | ||
1077 | }; | ||
1078 | "has-cors-1.1.0" = { | ||
1079 | name = "has-cors"; | ||
1080 | packageName = "has-cors"; | ||
1081 | version = "1.1.0"; | ||
1082 | src = fetchurl { | ||
1083 | url = "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz"; | ||
1084 | sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; | ||
1085 | }; | ||
1086 | }; | ||
1087 | "htmlparser2-3.10.1" = { | ||
1088 | name = "htmlparser2"; | ||
1089 | packageName = "htmlparser2"; | ||
1090 | version = "3.10.1"; | ||
1091 | src = fetchurl { | ||
1092 | url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz"; | ||
1093 | sha512 = "IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ=="; | ||
1094 | }; | ||
1095 | }; | ||
1096 | "http-errors-1.7.2" = { | ||
1097 | name = "http-errors"; | ||
1098 | packageName = "http-errors"; | ||
1099 | version = "1.7.2"; | ||
1100 | src = fetchurl { | ||
1101 | url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz"; | ||
1102 | sha512 = "uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="; | ||
1103 | }; | ||
1104 | }; | ||
1105 | "http-errors-1.7.3" = { | ||
1106 | name = "http-errors"; | ||
1107 | packageName = "http-errors"; | ||
1108 | version = "1.7.3"; | ||
1109 | src = fetchurl { | ||
1110 | url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz"; | ||
1111 | sha512 = "ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw=="; | ||
1112 | }; | ||
1113 | }; | ||
1114 | "http-signature-1.2.0" = { | ||
1115 | name = "http-signature"; | ||
1116 | packageName = "http-signature"; | ||
1117 | version = "1.2.0"; | ||
1118 | src = fetchurl { | ||
1119 | url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; | ||
1120 | sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; | ||
1121 | }; | ||
1122 | }; | ||
1123 | "humanize-ms-1.2.1" = { | ||
1124 | name = "humanize-ms"; | ||
1125 | packageName = "humanize-ms"; | ||
1126 | version = "1.2.1"; | ||
1127 | src = fetchurl { | ||
1128 | url = "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz"; | ||
1129 | sha1 = "c46e3159a293f6b896da29316d8b6fe8bb79bbed"; | ||
1130 | }; | ||
1131 | }; | ||
1132 | "iconv-lite-0.4.24" = { | ||
1133 | name = "iconv-lite"; | ||
1134 | packageName = "iconv-lite"; | ||
1135 | version = "0.4.24"; | ||
1136 | src = fetchurl { | ||
1137 | url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; | ||
1138 | sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; | ||
1139 | }; | ||
1140 | }; | ||
1141 | "indexof-0.0.1" = { | ||
1142 | name = "indexof"; | ||
1143 | packageName = "indexof"; | ||
1144 | version = "0.0.1"; | ||
1145 | src = fetchurl { | ||
1146 | url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"; | ||
1147 | sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; | ||
1148 | }; | ||
1149 | }; | ||
1150 | "inherits-2.0.3" = { | ||
1151 | name = "inherits"; | ||
1152 | packageName = "inherits"; | ||
1153 | version = "2.0.3"; | ||
1154 | src = fetchurl { | ||
1155 | url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; | ||
1156 | sha1 = "633c2c83e3da42a502f52466022480f4208261de"; | ||
1157 | }; | ||
1158 | }; | ||
1159 | "inherits-2.0.4" = { | ||
1160 | name = "inherits"; | ||
1161 | packageName = "inherits"; | ||
1162 | version = "2.0.4"; | ||
1163 | src = fetchurl { | ||
1164 | url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; | ||
1165 | sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; | ||
1166 | }; | ||
1167 | }; | ||
1168 | "ipaddr.js-1.9.1" = { | ||
1169 | name = "ipaddr.js"; | ||
1170 | packageName = "ipaddr.js"; | ||
1171 | version = "1.9.1"; | ||
1172 | src = fetchurl { | ||
1173 | url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; | ||
1174 | sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; | ||
1175 | }; | ||
1176 | }; | ||
1177 | "is-promise-1.0.1" = { | ||
1178 | name = "is-promise"; | ||
1179 | packageName = "is-promise"; | ||
1180 | version = "1.0.1"; | ||
1181 | src = fetchurl { | ||
1182 | url = "https://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz"; | ||
1183 | sha1 = "31573761c057e33c2e91aab9e96da08cefbe76e5"; | ||
1184 | }; | ||
1185 | }; | ||
1186 | "is-typedarray-1.0.0" = { | ||
1187 | name = "is-typedarray"; | ||
1188 | packageName = "is-typedarray"; | ||
1189 | version = "1.0.0"; | ||
1190 | src = fetchurl { | ||
1191 | url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; | ||
1192 | sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; | ||
1193 | }; | ||
1194 | }; | ||
1195 | "isarray-0.0.1" = { | ||
1196 | name = "isarray"; | ||
1197 | packageName = "isarray"; | ||
1198 | version = "0.0.1"; | ||
1199 | src = fetchurl { | ||
1200 | url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; | ||
1201 | sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; | ||
1202 | }; | ||
1203 | }; | ||
1204 | "isarray-1.0.0" = { | ||
1205 | name = "isarray"; | ||
1206 | packageName = "isarray"; | ||
1207 | version = "1.0.0"; | ||
1208 | src = fetchurl { | ||
1209 | url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; | ||
1210 | sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; | ||
1211 | }; | ||
1212 | }; | ||
1213 | "isarray-2.0.1" = { | ||
1214 | name = "isarray"; | ||
1215 | packageName = "isarray"; | ||
1216 | version = "2.0.1"; | ||
1217 | src = fetchurl { | ||
1218 | url = "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz"; | ||
1219 | sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e"; | ||
1220 | }; | ||
1221 | }; | ||
1222 | "isstream-0.1.2" = { | ||
1223 | name = "isstream"; | ||
1224 | packageName = "isstream"; | ||
1225 | version = "0.1.2"; | ||
1226 | src = fetchurl { | ||
1227 | url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; | ||
1228 | sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; | ||
1229 | }; | ||
1230 | }; | ||
1231 | "js-yaml-3.13.1" = { | ||
1232 | name = "js-yaml"; | ||
1233 | packageName = "js-yaml"; | ||
1234 | version = "3.13.1"; | ||
1235 | src = fetchurl { | ||
1236 | url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"; | ||
1237 | sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; | ||
1238 | }; | ||
1239 | }; | ||
1240 | "jsbn-0.1.1" = { | ||
1241 | name = "jsbn"; | ||
1242 | packageName = "jsbn"; | ||
1243 | version = "0.1.1"; | ||
1244 | src = fetchurl { | ||
1245 | url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; | ||
1246 | sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; | ||
1247 | }; | ||
1248 | }; | ||
1249 | "json-schema-0.2.3" = { | ||
1250 | name = "json-schema"; | ||
1251 | packageName = "json-schema"; | ||
1252 | version = "0.2.3"; | ||
1253 | src = fetchurl { | ||
1254 | url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; | ||
1255 | sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; | ||
1256 | }; | ||
1257 | }; | ||
1258 | "json-schema-traverse-0.4.1" = { | ||
1259 | name = "json-schema-traverse"; | ||
1260 | packageName = "json-schema-traverse"; | ||
1261 | version = "0.4.1"; | ||
1262 | src = fetchurl { | ||
1263 | url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; | ||
1264 | sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; | ||
1265 | }; | ||
1266 | }; | ||
1267 | "json-stringify-safe-5.0.1" = { | ||
1268 | name = "json-stringify-safe"; | ||
1269 | packageName = "json-stringify-safe"; | ||
1270 | version = "5.0.1"; | ||
1271 | src = fetchurl { | ||
1272 | url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; | ||
1273 | sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; | ||
1274 | }; | ||
1275 | }; | ||
1276 | "jsonminify-0.4.1" = { | ||
1277 | name = "jsonminify"; | ||
1278 | packageName = "jsonminify"; | ||
1279 | version = "0.4.1"; | ||
1280 | src = fetchurl { | ||
1281 | url = "https://registry.npmjs.org/jsonminify/-/jsonminify-0.4.1.tgz"; | ||
1282 | sha1 = "805dafbb39395188cee9ab582c81ef959d7e710c"; | ||
1283 | }; | ||
1284 | }; | ||
1285 | "jsonschema-1.2.4" = { | ||
1286 | name = "jsonschema"; | ||
1287 | packageName = "jsonschema"; | ||
1288 | version = "1.2.4"; | ||
1289 | src = fetchurl { | ||
1290 | url = "https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.4.tgz"; | ||
1291 | sha512 = "lz1nOH69GbsVHeVgEdvyavc/33oymY1AZwtePMiMj4HZPMbP5OIKK3zT9INMWjwua/V4Z4yq7wSlBbSG+g4AEw=="; | ||
1292 | }; | ||
1293 | }; | ||
1294 | "jsonschema-draft4-1.0.0" = { | ||
1295 | name = "jsonschema-draft4"; | ||
1296 | packageName = "jsonschema-draft4"; | ||
1297 | version = "1.0.0"; | ||
1298 | src = fetchurl { | ||
1299 | url = "https://registry.npmjs.org/jsonschema-draft4/-/jsonschema-draft4-1.0.0.tgz"; | ||
1300 | sha1 = "f0af2005054f0f0ade7ea2118614b69dc512d865"; | ||
1301 | }; | ||
1302 | }; | ||
1303 | "jsprim-1.4.1" = { | ||
1304 | name = "jsprim"; | ||
1305 | packageName = "jsprim"; | ||
1306 | version = "1.4.1"; | ||
1307 | src = fetchurl { | ||
1308 | url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; | ||
1309 | sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; | ||
1310 | }; | ||
1311 | }; | ||
1312 | "languages4translatewiki-0.1.3" = { | ||
1313 | name = "languages4translatewiki"; | ||
1314 | packageName = "languages4translatewiki"; | ||
1315 | version = "0.1.3"; | ||
1316 | src = fetchurl { | ||
1317 | url = "https://registry.npmjs.org/languages4translatewiki/-/languages4translatewiki-0.1.3.tgz"; | ||
1318 | sha1 = "c436206e052d21490b11017a44d5118f9221e5db"; | ||
1319 | }; | ||
1320 | }; | ||
1321 | "lodash-4.17.15" = { | ||
1322 | name = "lodash"; | ||
1323 | packageName = "lodash"; | ||
1324 | version = "4.17.15"; | ||
1325 | src = fetchurl { | ||
1326 | url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; | ||
1327 | sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; | ||
1328 | }; | ||
1329 | }; | ||
1330 | "lodash.assignin-4.2.0" = { | ||
1331 | name = "lodash.assignin"; | ||
1332 | packageName = "lodash.assignin"; | ||
1333 | version = "4.2.0"; | ||
1334 | src = fetchurl { | ||
1335 | url = "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz"; | ||
1336 | sha1 = "ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"; | ||
1337 | }; | ||
1338 | }; | ||
1339 | "lodash.bind-4.2.1" = { | ||
1340 | name = "lodash.bind"; | ||
1341 | packageName = "lodash.bind"; | ||
1342 | version = "4.2.1"; | ||
1343 | src = fetchurl { | ||
1344 | url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz"; | ||
1345 | sha1 = "7ae3017e939622ac31b7d7d7dcb1b34db1690d35"; | ||
1346 | }; | ||
1347 | }; | ||
1348 | "lodash.clonedeep-4.5.0" = { | ||
1349 | name = "lodash.clonedeep"; | ||
1350 | packageName = "lodash.clonedeep"; | ||
1351 | version = "4.5.0"; | ||
1352 | src = fetchurl { | ||
1353 | url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; | ||
1354 | sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; | ||
1355 | }; | ||
1356 | }; | ||
1357 | "lodash.defaults-4.2.0" = { | ||
1358 | name = "lodash.defaults"; | ||
1359 | packageName = "lodash.defaults"; | ||
1360 | version = "4.2.0"; | ||
1361 | src = fetchurl { | ||
1362 | url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz"; | ||
1363 | sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c"; | ||
1364 | }; | ||
1365 | }; | ||
1366 | "lodash.filter-4.6.0" = { | ||
1367 | name = "lodash.filter"; | ||
1368 | packageName = "lodash.filter"; | ||
1369 | version = "4.6.0"; | ||
1370 | src = fetchurl { | ||
1371 | url = "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz"; | ||
1372 | sha1 = "668b1d4981603ae1cc5a6fa760143e480b4c4ace"; | ||
1373 | }; | ||
1374 | }; | ||
1375 | "lodash.flatten-4.4.0" = { | ||
1376 | name = "lodash.flatten"; | ||
1377 | packageName = "lodash.flatten"; | ||
1378 | version = "4.4.0"; | ||
1379 | src = fetchurl { | ||
1380 | url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; | ||
1381 | sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; | ||
1382 | }; | ||
1383 | }; | ||
1384 | "lodash.foreach-4.5.0" = { | ||
1385 | name = "lodash.foreach"; | ||
1386 | packageName = "lodash.foreach"; | ||
1387 | version = "4.5.0"; | ||
1388 | src = fetchurl { | ||
1389 | url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz"; | ||
1390 | sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53"; | ||
1391 | }; | ||
1392 | }; | ||
1393 | "lodash.get-4.4.2" = { | ||
1394 | name = "lodash.get"; | ||
1395 | packageName = "lodash.get"; | ||
1396 | version = "4.4.2"; | ||
1397 | src = fetchurl { | ||
1398 | url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"; | ||
1399 | sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99"; | ||
1400 | }; | ||
1401 | }; | ||
1402 | "lodash.isequal-4.5.0" = { | ||
1403 | name = "lodash.isequal"; | ||
1404 | packageName = "lodash.isequal"; | ||
1405 | version = "4.5.0"; | ||
1406 | src = fetchurl { | ||
1407 | url = "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz"; | ||
1408 | sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0"; | ||
1409 | }; | ||
1410 | }; | ||
1411 | "lodash.map-4.6.0" = { | ||
1412 | name = "lodash.map"; | ||
1413 | packageName = "lodash.map"; | ||
1414 | version = "4.6.0"; | ||
1415 | src = fetchurl { | ||
1416 | url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz"; | ||
1417 | sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; | ||
1418 | }; | ||
1419 | }; | ||
1420 | "lodash.merge-4.6.2" = { | ||
1421 | name = "lodash.merge"; | ||
1422 | packageName = "lodash.merge"; | ||
1423 | version = "4.6.2"; | ||
1424 | src = fetchurl { | ||
1425 | url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; | ||
1426 | sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; | ||
1427 | }; | ||
1428 | }; | ||
1429 | "lodash.pick-4.4.0" = { | ||
1430 | name = "lodash.pick"; | ||
1431 | packageName = "lodash.pick"; | ||
1432 | version = "4.4.0"; | ||
1433 | src = fetchurl { | ||
1434 | url = "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz"; | ||
1435 | sha1 = "52f05610fff9ded422611441ed1fc123a03001b3"; | ||
1436 | }; | ||
1437 | }; | ||
1438 | "lodash.reduce-4.6.0" = { | ||
1439 | name = "lodash.reduce"; | ||
1440 | packageName = "lodash.reduce"; | ||
1441 | version = "4.6.0"; | ||
1442 | src = fetchurl { | ||
1443 | url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz"; | ||
1444 | sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b"; | ||
1445 | }; | ||
1446 | }; | ||
1447 | "lodash.reject-4.6.0" = { | ||
1448 | name = "lodash.reject"; | ||
1449 | packageName = "lodash.reject"; | ||
1450 | version = "4.6.0"; | ||
1451 | src = fetchurl { | ||
1452 | url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz"; | ||
1453 | sha1 = "80d6492dc1470864bbf583533b651f42a9f52415"; | ||
1454 | }; | ||
1455 | }; | ||
1456 | "lodash.some-4.6.0" = { | ||
1457 | name = "lodash.some"; | ||
1458 | packageName = "lodash.some"; | ||
1459 | version = "4.6.0"; | ||
1460 | src = fetchurl { | ||
1461 | url = "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz"; | ||
1462 | sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d"; | ||
1463 | }; | ||
1464 | }; | ||
1465 | "log4js-0.6.35" = { | ||
1466 | name = "log4js"; | ||
1467 | packageName = "log4js"; | ||
1468 | version = "0.6.35"; | ||
1469 | src = fetchurl { | ||
1470 | url = "https://registry.npmjs.org/log4js/-/log4js-0.6.35.tgz"; | ||
1471 | sha1 = "3ab1da7cb14823b74ed3865c48593acdf11f1b59"; | ||
1472 | }; | ||
1473 | }; | ||
1474 | "long-2.4.0" = { | ||
1475 | name = "long"; | ||
1476 | packageName = "long"; | ||
1477 | version = "2.4.0"; | ||
1478 | src = fetchurl { | ||
1479 | url = "https://registry.npmjs.org/long/-/long-2.4.0.tgz"; | ||
1480 | sha1 = "9fa180bb1d9500cdc29c4156766a1995e1f4524f"; | ||
1481 | }; | ||
1482 | }; | ||
1483 | "measured-core-1.11.2" = { | ||
1484 | name = "measured-core"; | ||
1485 | packageName = "measured-core"; | ||
1486 | version = "1.11.2"; | ||
1487 | src = fetchurl { | ||
1488 | url = "https://registry.npmjs.org/measured-core/-/measured-core-1.11.2.tgz"; | ||
1489 | sha1 = "9dbea6d20741b56f61abd866e496eb8b85e69349"; | ||
1490 | }; | ||
1491 | }; | ||
1492 | "media-typer-0.3.0" = { | ||
1493 | name = "media-typer"; | ||
1494 | packageName = "media-typer"; | ||
1495 | version = "0.3.0"; | ||
1496 | src = fetchurl { | ||
1497 | url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; | ||
1498 | sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; | ||
1499 | }; | ||
1500 | }; | ||
1501 | "merge-descriptors-1.0.1" = { | ||
1502 | name = "merge-descriptors"; | ||
1503 | packageName = "merge-descriptors"; | ||
1504 | version = "1.0.1"; | ||
1505 | src = fetchurl { | ||
1506 | url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; | ||
1507 | sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; | ||
1508 | }; | ||
1509 | }; | ||
1510 | "methods-1.1.2" = { | ||
1511 | name = "methods"; | ||
1512 | packageName = "methods"; | ||
1513 | version = "1.1.2"; | ||
1514 | src = fetchurl { | ||
1515 | url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; | ||
1516 | sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; | ||
1517 | }; | ||
1518 | }; | ||
1519 | "mime-1.6.0" = { | ||
1520 | name = "mime"; | ||
1521 | packageName = "mime"; | ||
1522 | version = "1.6.0"; | ||
1523 | src = fetchurl { | ||
1524 | url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"; | ||
1525 | sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; | ||
1526 | }; | ||
1527 | }; | ||
1528 | "mime-db-1.44.0" = { | ||
1529 | name = "mime-db"; | ||
1530 | packageName = "mime-db"; | ||
1531 | version = "1.44.0"; | ||
1532 | src = fetchurl { | ||
1533 | url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"; | ||
1534 | sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; | ||
1535 | }; | ||
1536 | }; | ||
1537 | "mime-types-2.1.27" = { | ||
1538 | name = "mime-types"; | ||
1539 | packageName = "mime-types"; | ||
1540 | version = "2.1.27"; | ||
1541 | src = fetchurl { | ||
1542 | url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"; | ||
1543 | sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; | ||
1544 | }; | ||
1545 | }; | ||
1546 | "mock-json-schema-1.0.8" = { | ||
1547 | name = "mock-json-schema"; | ||
1548 | packageName = "mock-json-schema"; | ||
1549 | version = "1.0.8"; | ||
1550 | src = fetchurl { | ||
1551 | url = "https://registry.npmjs.org/mock-json-schema/-/mock-json-schema-1.0.8.tgz"; | ||
1552 | sha512 = "22yL+WggSo8HXqw0HkXgXXJjJMSBCfv54htfwN4BabaFdJ3808jL0CzE+VaBRlj8Nr0+pnSVE9YvsDG5Quu6hQ=="; | ||
1553 | }; | ||
1554 | }; | ||
1555 | "ms-2.0.0" = { | ||
1556 | name = "ms"; | ||
1557 | packageName = "ms"; | ||
1558 | version = "2.0.0"; | ||
1559 | src = fetchurl { | ||
1560 | url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; | ||
1561 | sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; | ||
1562 | }; | ||
1563 | }; | ||
1564 | "ms-2.1.1" = { | ||
1565 | name = "ms"; | ||
1566 | packageName = "ms"; | ||
1567 | version = "2.1.1"; | ||
1568 | src = fetchurl { | ||
1569 | url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; | ||
1570 | sha512 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="; | ||
1571 | }; | ||
1572 | }; | ||
1573 | "ms-2.1.2" = { | ||
1574 | name = "ms"; | ||
1575 | packageName = "ms"; | ||
1576 | version = "2.1.2"; | ||
1577 | src = fetchurl { | ||
1578 | url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; | ||
1579 | sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; | ||
1580 | }; | ||
1581 | }; | ||
1582 | "mysql-2.18.1" = { | ||
1583 | name = "mysql"; | ||
1584 | packageName = "mysql"; | ||
1585 | version = "2.18.1"; | ||
1586 | src = fetchurl { | ||
1587 | url = "https://registry.npmjs.org/mysql/-/mysql-2.18.1.tgz"; | ||
1588 | sha512 = "Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig=="; | ||
1589 | }; | ||
1590 | }; | ||
1591 | "nano-8.2.2" = { | ||
1592 | name = "nano"; | ||
1593 | packageName = "nano"; | ||
1594 | version = "8.2.2"; | ||
1595 | src = fetchurl { | ||
1596 | url = "https://registry.npmjs.org/nano/-/nano-8.2.2.tgz"; | ||
1597 | sha512 = "1/rAvpd1J0Os0SazgutWQBx2buAq3KwJpmdIylPDqOwy73iQeAhTSCq3uzbGzvcNNW16Vv/BLXkk+DYcdcH+aw=="; | ||
1598 | }; | ||
1599 | }; | ||
1600 | "negotiator-0.6.2" = { | ||
1601 | name = "negotiator"; | ||
1602 | packageName = "negotiator"; | ||
1603 | version = "0.6.2"; | ||
1604 | src = fetchurl { | ||
1605 | url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"; | ||
1606 | sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; | ||
1607 | }; | ||
1608 | }; | ||
1609 | "nodeify-1.0.1" = { | ||
1610 | name = "nodeify"; | ||
1611 | packageName = "nodeify"; | ||
1612 | version = "1.0.1"; | ||
1613 | src = fetchurl { | ||
1614 | url = "https://registry.npmjs.org/nodeify/-/nodeify-1.0.1.tgz"; | ||
1615 | sha1 = "64ab69a7bdbaf03ce107b4f0335c87c0b9e91b1d"; | ||
1616 | }; | ||
1617 | }; | ||
1618 | "npm-6.14.4" = { | ||
1619 | name = "npm"; | ||
1620 | packageName = "npm"; | ||
1621 | version = "6.14.4"; | ||
1622 | src = fetchurl { | ||
1623 | url = "https://registry.npmjs.org/npm/-/npm-6.14.4.tgz"; | ||
1624 | sha512 = "B8UDDbWvdkW6RgXFn8/h2cHJP/u/FPa4HWeGzW23aNEBARN3QPrRaHqPIZW2NSN3fW649gtgUDNZpaRs0zTMPw=="; | ||
1625 | }; | ||
1626 | }; | ||
1627 | "nth-check-1.0.2" = { | ||
1628 | name = "nth-check"; | ||
1629 | packageName = "nth-check"; | ||
1630 | version = "1.0.2"; | ||
1631 | src = fetchurl { | ||
1632 | url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz"; | ||
1633 | sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; | ||
1634 | }; | ||
1635 | }; | ||
1636 | "oauth-sign-0.9.0" = { | ||
1637 | name = "oauth-sign"; | ||
1638 | packageName = "oauth-sign"; | ||
1639 | version = "0.9.0"; | ||
1640 | src = fetchurl { | ||
1641 | url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; | ||
1642 | sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; | ||
1643 | }; | ||
1644 | }; | ||
1645 | "object-component-0.0.3" = { | ||
1646 | name = "object-component"; | ||
1647 | packageName = "object-component"; | ||
1648 | version = "0.0.3"; | ||
1649 | src = fetchurl { | ||
1650 | url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"; | ||
1651 | sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291"; | ||
1652 | }; | ||
1653 | }; | ||
1654 | "on-finished-2.3.0" = { | ||
1655 | name = "on-finished"; | ||
1656 | packageName = "on-finished"; | ||
1657 | version = "2.3.0"; | ||
1658 | src = fetchurl { | ||
1659 | url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; | ||
1660 | sha1 = "20f1336481b083cd75337992a16971aa2d906947"; | ||
1661 | }; | ||
1662 | }; | ||
1663 | "on-headers-1.0.2" = { | ||
1664 | name = "on-headers"; | ||
1665 | packageName = "on-headers"; | ||
1666 | version = "1.0.2"; | ||
1667 | src = fetchurl { | ||
1668 | url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"; | ||
1669 | sha512 = "pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="; | ||
1670 | }; | ||
1671 | }; | ||
1672 | "openapi-backend-2.4.1" = { | ||
1673 | name = "openapi-backend"; | ||
1674 | packageName = "openapi-backend"; | ||
1675 | version = "2.4.1"; | ||
1676 | src = fetchurl { | ||
1677 | url = "https://registry.npmjs.org/openapi-backend/-/openapi-backend-2.4.1.tgz"; | ||
1678 | sha512 = "48j8QhDD9sfV6t7Zgn9JrfJtCpJ53bmoT2bzXYYig1HhG/Xn0Aa5fJhM0cQSZq9nq78/XbU7RDEa3e+IADNkmA=="; | ||
1679 | }; | ||
1680 | }; | ||
1681 | "openapi-schema-validation-0.4.2" = { | ||
1682 | name = "openapi-schema-validation"; | ||
1683 | packageName = "openapi-schema-validation"; | ||
1684 | version = "0.4.2"; | ||
1685 | src = fetchurl { | ||
1686 | url = "https://registry.npmjs.org/openapi-schema-validation/-/openapi-schema-validation-0.4.2.tgz"; | ||
1687 | sha512 = "K8LqLpkUf2S04p2Nphq9L+3bGFh/kJypxIG2NVGKX0ffzT4NQI9HirhiY6Iurfej9lCu7y4Ndm4tv+lm86Ck7w=="; | ||
1688 | }; | ||
1689 | }; | ||
1690 | "openapi-types-1.3.5" = { | ||
1691 | name = "openapi-types"; | ||
1692 | packageName = "openapi-types"; | ||
1693 | version = "1.3.5"; | ||
1694 | src = fetchurl { | ||
1695 | url = "https://registry.npmjs.org/openapi-types/-/openapi-types-1.3.5.tgz"; | ||
1696 | sha512 = "11oi4zYorsgvg5yBarZplAqbpev5HkuVNPlZaPTknPDzAynq+lnJdXAmruGWP0s+dNYZS7bjM+xrTpJw7184Fg=="; | ||
1697 | }; | ||
1698 | }; | ||
1699 | "optional-js-2.1.1" = { | ||
1700 | name = "optional-js"; | ||
1701 | packageName = "optional-js"; | ||
1702 | version = "2.1.1"; | ||
1703 | src = fetchurl { | ||
1704 | url = "https://registry.npmjs.org/optional-js/-/optional-js-2.1.1.tgz"; | ||
1705 | sha512 = "mUS4bDngcD5kKzzRUd1HVQkr9Lzzby3fSrrPR9wOHhQiyYo+hDS5NVli5YQzGjQRQ15k5Sno4xH9pfykJdeEUA=="; | ||
1706 | }; | ||
1707 | }; | ||
1708 | "packet-reader-1.0.0" = { | ||
1709 | name = "packet-reader"; | ||
1710 | packageName = "packet-reader"; | ||
1711 | version = "1.0.0"; | ||
1712 | src = fetchurl { | ||
1713 | url = "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz"; | ||
1714 | sha512 = "HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ=="; | ||
1715 | }; | ||
1716 | }; | ||
1717 | "parseqs-0.0.5" = { | ||
1718 | name = "parseqs"; | ||
1719 | packageName = "parseqs"; | ||
1720 | version = "0.0.5"; | ||
1721 | src = fetchurl { | ||
1722 | url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz"; | ||
1723 | sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d"; | ||
1724 | }; | ||
1725 | }; | ||
1726 | "parseuri-0.0.5" = { | ||
1727 | name = "parseuri"; | ||
1728 | packageName = "parseuri"; | ||
1729 | version = "0.0.5"; | ||
1730 | src = fetchurl { | ||
1731 | url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz"; | ||
1732 | sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a"; | ||
1733 | }; | ||
1734 | }; | ||
1735 | "parseurl-1.3.3" = { | ||
1736 | name = "parseurl"; | ||
1737 | packageName = "parseurl"; | ||
1738 | version = "1.3.3"; | ||
1739 | src = fetchurl { | ||
1740 | url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; | ||
1741 | sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; | ||
1742 | }; | ||
1743 | }; | ||
1744 | "path-to-regexp-0.1.7" = { | ||
1745 | name = "path-to-regexp"; | ||
1746 | packageName = "path-to-regexp"; | ||
1747 | version = "0.1.7"; | ||
1748 | src = fetchurl { | ||
1749 | url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; | ||
1750 | sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; | ||
1751 | }; | ||
1752 | }; | ||
1753 | "performance-now-2.1.0" = { | ||
1754 | name = "performance-now"; | ||
1755 | packageName = "performance-now"; | ||
1756 | version = "2.1.0"; | ||
1757 | src = fetchurl { | ||
1758 | url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; | ||
1759 | sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; | ||
1760 | }; | ||
1761 | }; | ||
1762 | "pg-7.18.2" = { | ||
1763 | name = "pg"; | ||
1764 | packageName = "pg"; | ||
1765 | version = "7.18.2"; | ||
1766 | src = fetchurl { | ||
1767 | url = "https://registry.npmjs.org/pg/-/pg-7.18.2.tgz"; | ||
1768 | sha512 = "Mvt0dGYMwvEADNKy5PMQGlzPudKcKKzJds/VbOeZJpb6f/pI3mmoXX0JksPgI3l3JPP/2Apq7F36O63J7mgveA=="; | ||
1769 | }; | ||
1770 | }; | ||
1771 | "pg-connection-string-0.1.3" = { | ||
1772 | name = "pg-connection-string"; | ||
1773 | packageName = "pg-connection-string"; | ||
1774 | version = "0.1.3"; | ||
1775 | src = fetchurl { | ||
1776 | url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-0.1.3.tgz"; | ||
1777 | sha1 = "da1847b20940e42ee1492beaf65d49d91b245df7"; | ||
1778 | }; | ||
1779 | }; | ||
1780 | "pg-int8-1.0.1" = { | ||
1781 | name = "pg-int8"; | ||
1782 | packageName = "pg-int8"; | ||
1783 | version = "1.0.1"; | ||
1784 | src = fetchurl { | ||
1785 | url = "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz"; | ||
1786 | sha512 = "WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="; | ||
1787 | }; | ||
1788 | }; | ||
1789 | "pg-packet-stream-1.1.0" = { | ||
1790 | name = "pg-packet-stream"; | ||
1791 | packageName = "pg-packet-stream"; | ||
1792 | version = "1.1.0"; | ||
1793 | src = fetchurl { | ||
1794 | url = "https://registry.npmjs.org/pg-packet-stream/-/pg-packet-stream-1.1.0.tgz"; | ||
1795 | sha512 = "kRBH0tDIW/8lfnnOyTwKD23ygJ/kexQVXZs7gEyBljw4FYqimZFxnMMx50ndZ8In77QgfGuItS5LLclC2TtjYg=="; | ||
1796 | }; | ||
1797 | }; | ||
1798 | "pg-pool-2.0.10" = { | ||
1799 | name = "pg-pool"; | ||
1800 | packageName = "pg-pool"; | ||
1801 | version = "2.0.10"; | ||
1802 | src = fetchurl { | ||
1803 | url = "https://registry.npmjs.org/pg-pool/-/pg-pool-2.0.10.tgz"; | ||
1804 | sha512 = "qdwzY92bHf3nwzIUcj+zJ0Qo5lpG/YxchahxIN8+ZVmXqkahKXsnl2aiJPHLYN9o5mB/leG+Xh6XKxtP7e0sjg=="; | ||
1805 | }; | ||
1806 | }; | ||
1807 | "pg-types-2.2.0" = { | ||
1808 | name = "pg-types"; | ||
1809 | packageName = "pg-types"; | ||
1810 | version = "2.2.0"; | ||
1811 | src = fetchurl { | ||
1812 | url = "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz"; | ||
1813 | sha512 = "qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA=="; | ||
1814 | }; | ||
1815 | }; | ||
1816 | "pgpass-1.0.2" = { | ||
1817 | name = "pgpass"; | ||
1818 | packageName = "pgpass"; | ||
1819 | version = "1.0.2"; | ||
1820 | src = fetchurl { | ||
1821 | url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.2.tgz"; | ||
1822 | sha1 = "2a7bb41b6065b67907e91da1b07c1847c877b306"; | ||
1823 | }; | ||
1824 | }; | ||
1825 | "postgres-array-2.0.0" = { | ||
1826 | name = "postgres-array"; | ||
1827 | packageName = "postgres-array"; | ||
1828 | version = "2.0.0"; | ||
1829 | src = fetchurl { | ||
1830 | url = "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz"; | ||
1831 | sha512 = "VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA=="; | ||
1832 | }; | ||
1833 | }; | ||
1834 | "postgres-bytea-1.0.0" = { | ||
1835 | name = "postgres-bytea"; | ||
1836 | packageName = "postgres-bytea"; | ||
1837 | version = "1.0.0"; | ||
1838 | src = fetchurl { | ||
1839 | url = "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz"; | ||
1840 | sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35"; | ||
1841 | }; | ||
1842 | }; | ||
1843 | "postgres-date-1.0.5" = { | ||
1844 | name = "postgres-date"; | ||
1845 | packageName = "postgres-date"; | ||
1846 | version = "1.0.5"; | ||
1847 | src = fetchurl { | ||
1848 | url = "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.5.tgz"; | ||
1849 | sha512 = "pdau6GRPERdAYUQwkBnGKxEfPyhVZXG/JiS44iZWiNdSOWE09N2lUgN6yshuq6fVSon4Pm0VMXd1srUUkLe9iA=="; | ||
1850 | }; | ||
1851 | }; | ||
1852 | "postgres-interval-1.2.0" = { | ||
1853 | name = "postgres-interval"; | ||
1854 | packageName = "postgres-interval"; | ||
1855 | version = "1.2.0"; | ||
1856 | src = fetchurl { | ||
1857 | url = "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz"; | ||
1858 | sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="; | ||
1859 | }; | ||
1860 | }; | ||
1861 | "process-nextick-args-2.0.1" = { | ||
1862 | name = "process-nextick-args"; | ||
1863 | packageName = "process-nextick-args"; | ||
1864 | version = "2.0.1"; | ||
1865 | src = fetchurl { | ||
1866 | url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; | ||
1867 | sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; | ||
1868 | }; | ||
1869 | }; | ||
1870 | "promise-1.3.0" = { | ||
1871 | name = "promise"; | ||
1872 | packageName = "promise"; | ||
1873 | version = "1.3.0"; | ||
1874 | src = fetchurl { | ||
1875 | url = "https://registry.npmjs.org/promise/-/promise-1.3.0.tgz"; | ||
1876 | sha1 = "e5cc9a4c8278e4664ffedc01c7da84842b040175"; | ||
1877 | }; | ||
1878 | }; | ||
1879 | "proxy-addr-2.0.6" = { | ||
1880 | name = "proxy-addr"; | ||
1881 | packageName = "proxy-addr"; | ||
1882 | version = "2.0.6"; | ||
1883 | src = fetchurl { | ||
1884 | url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz"; | ||
1885 | sha512 = "dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw=="; | ||
1886 | }; | ||
1887 | }; | ||
1888 | "psl-1.8.0" = { | ||
1889 | name = "psl"; | ||
1890 | packageName = "psl"; | ||
1891 | version = "1.8.0"; | ||
1892 | src = fetchurl { | ||
1893 | url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; | ||
1894 | sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; | ||
1895 | }; | ||
1896 | }; | ||
1897 | "punycode-1.4.1" = { | ||
1898 | name = "punycode"; | ||
1899 | packageName = "punycode"; | ||
1900 | version = "1.4.1"; | ||
1901 | src = fetchurl { | ||
1902 | url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; | ||
1903 | sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; | ||
1904 | }; | ||
1905 | }; | ||
1906 | "punycode-2.1.1" = { | ||
1907 | name = "punycode"; | ||
1908 | packageName = "punycode"; | ||
1909 | version = "2.1.1"; | ||
1910 | src = fetchurl { | ||
1911 | url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; | ||
1912 | sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; | ||
1913 | }; | ||
1914 | }; | ||
1915 | "qs-6.5.2" = { | ||
1916 | name = "qs"; | ||
1917 | packageName = "qs"; | ||
1918 | version = "6.5.2"; | ||
1919 | src = fetchurl { | ||
1920 | url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; | ||
1921 | sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; | ||
1922 | }; | ||
1923 | }; | ||
1924 | "qs-6.7.0" = { | ||
1925 | name = "qs"; | ||
1926 | packageName = "qs"; | ||
1927 | version = "6.7.0"; | ||
1928 | src = fetchurl { | ||
1929 | url = "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"; | ||
1930 | sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; | ||
1931 | }; | ||
1932 | }; | ||
1933 | "random-bytes-1.0.0" = { | ||
1934 | name = "random-bytes"; | ||
1935 | packageName = "random-bytes"; | ||
1936 | version = "1.0.0"; | ||
1937 | src = fetchurl { | ||
1938 | url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz"; | ||
1939 | sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b"; | ||
1940 | }; | ||
1941 | }; | ||
1942 | "range-parser-1.2.1" = { | ||
1943 | name = "range-parser"; | ||
1944 | packageName = "range-parser"; | ||
1945 | version = "1.2.1"; | ||
1946 | src = fetchurl { | ||
1947 | url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"; | ||
1948 | sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; | ||
1949 | }; | ||
1950 | }; | ||
1951 | "raw-body-2.4.0" = { | ||
1952 | name = "raw-body"; | ||
1953 | packageName = "raw-body"; | ||
1954 | version = "2.4.0"; | ||
1955 | src = fetchurl { | ||
1956 | url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz"; | ||
1957 | sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; | ||
1958 | }; | ||
1959 | }; | ||
1960 | "readable-stream-1.0.34" = { | ||
1961 | name = "readable-stream"; | ||
1962 | packageName = "readable-stream"; | ||
1963 | version = "1.0.34"; | ||
1964 | src = fetchurl { | ||
1965 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; | ||
1966 | sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; | ||
1967 | }; | ||
1968 | }; | ||
1969 | "readable-stream-2.3.7" = { | ||
1970 | name = "readable-stream"; | ||
1971 | packageName = "readable-stream"; | ||
1972 | version = "2.3.7"; | ||
1973 | src = fetchurl { | ||
1974 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; | ||
1975 | sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; | ||
1976 | }; | ||
1977 | }; | ||
1978 | "readable-stream-3.6.0" = { | ||
1979 | name = "readable-stream"; | ||
1980 | packageName = "readable-stream"; | ||
1981 | version = "3.6.0"; | ||
1982 | src = fetchurl { | ||
1983 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; | ||
1984 | sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; | ||
1985 | }; | ||
1986 | }; | ||
1987 | "redis-3.0.2" = { | ||
1988 | name = "redis"; | ||
1989 | packageName = "redis"; | ||
1990 | version = "3.0.2"; | ||
1991 | src = fetchurl { | ||
1992 | url = "https://registry.npmjs.org/redis/-/redis-3.0.2.tgz"; | ||
1993 | sha512 = "PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ=="; | ||
1994 | }; | ||
1995 | }; | ||
1996 | "redis-commands-1.5.0" = { | ||
1997 | name = "redis-commands"; | ||
1998 | packageName = "redis-commands"; | ||
1999 | version = "1.5.0"; | ||
2000 | src = fetchurl { | ||
2001 | url = "https://registry.npmjs.org/redis-commands/-/redis-commands-1.5.0.tgz"; | ||
2002 | sha512 = "6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg=="; | ||
2003 | }; | ||
2004 | }; | ||
2005 | "redis-errors-1.2.0" = { | ||
2006 | name = "redis-errors"; | ||
2007 | packageName = "redis-errors"; | ||
2008 | version = "1.2.0"; | ||
2009 | src = fetchurl { | ||
2010 | url = "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz"; | ||
2011 | sha1 = "eb62d2adb15e4eaf4610c04afe1529384250abad"; | ||
2012 | }; | ||
2013 | }; | ||
2014 | "redis-parser-3.0.0" = { | ||
2015 | name = "redis-parser"; | ||
2016 | packageName = "redis-parser"; | ||
2017 | version = "3.0.0"; | ||
2018 | src = fetchurl { | ||
2019 | url = "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz"; | ||
2020 | sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4"; | ||
2021 | }; | ||
2022 | }; | ||
2023 | "request-2.88.0" = { | ||
2024 | name = "request"; | ||
2025 | packageName = "request"; | ||
2026 | version = "2.88.0"; | ||
2027 | src = fetchurl { | ||
2028 | url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz"; | ||
2029 | sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg=="; | ||
2030 | }; | ||
2031 | }; | ||
2032 | "resolve-1.1.7" = { | ||
2033 | name = "resolve"; | ||
2034 | packageName = "resolve"; | ||
2035 | version = "1.1.7"; | ||
2036 | src = fetchurl { | ||
2037 | url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"; | ||
2038 | sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b"; | ||
2039 | }; | ||
2040 | }; | ||
2041 | "rethinkdb-2.4.2" = { | ||
2042 | name = "rethinkdb"; | ||
2043 | packageName = "rethinkdb"; | ||
2044 | version = "2.4.2"; | ||
2045 | src = fetchurl { | ||
2046 | url = "https://registry.npmjs.org/rethinkdb/-/rethinkdb-2.4.2.tgz"; | ||
2047 | sha512 = "6DzwqEpFc8cqesAdo07a845oBRxLiHvWzopTKBo/uY2ypGWIsJQFJk3wjRDtSEhczxJqLS0jnf37rwgzYAw8NQ=="; | ||
2048 | }; | ||
2049 | }; | ||
2050 | "safe-buffer-5.1.2" = { | ||
2051 | name = "safe-buffer"; | ||
2052 | packageName = "safe-buffer"; | ||
2053 | version = "5.1.2"; | ||
2054 | src = fetchurl { | ||
2055 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; | ||
2056 | sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; | ||
2057 | }; | ||
2058 | }; | ||
2059 | "safe-buffer-5.2.0" = { | ||
2060 | name = "safe-buffer"; | ||
2061 | packageName = "safe-buffer"; | ||
2062 | version = "5.2.0"; | ||
2063 | src = fetchurl { | ||
2064 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; | ||
2065 | sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; | ||
2066 | }; | ||
2067 | }; | ||
2068 | "safer-buffer-2.1.2" = { | ||
2069 | name = "safer-buffer"; | ||
2070 | packageName = "safer-buffer"; | ||
2071 | version = "2.1.2"; | ||
2072 | src = fetchurl { | ||
2073 | url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; | ||
2074 | sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; | ||
2075 | }; | ||
2076 | }; | ||
2077 | "security-1.0.0" = { | ||
2078 | name = "security"; | ||
2079 | packageName = "security"; | ||
2080 | version = "1.0.0"; | ||
2081 | src = fetchurl { | ||
2082 | url = "https://registry.npmjs.org/security/-/security-1.0.0.tgz"; | ||
2083 | sha1 = "811c300313686133ef0007125e3b0ed700978815"; | ||
2084 | }; | ||
2085 | }; | ||
2086 | "semver-4.3.2" = { | ||
2087 | name = "semver"; | ||
2088 | packageName = "semver"; | ||
2089 | version = "4.3.2"; | ||
2090 | src = fetchurl { | ||
2091 | url = "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz"; | ||
2092 | sha1 = "c7a07158a80bedd052355b770d82d6640f803be7"; | ||
2093 | }; | ||
2094 | }; | ||
2095 | "semver-4.3.6" = { | ||
2096 | name = "semver"; | ||
2097 | packageName = "semver"; | ||
2098 | version = "4.3.6"; | ||
2099 | src = fetchurl { | ||
2100 | url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz"; | ||
2101 | sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da"; | ||
2102 | }; | ||
2103 | }; | ||
2104 | "semver-5.6.0" = { | ||
2105 | name = "semver"; | ||
2106 | packageName = "semver"; | ||
2107 | version = "5.6.0"; | ||
2108 | src = fetchurl { | ||
2109 | url = "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz"; | ||
2110 | sha512 = "RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg=="; | ||
2111 | }; | ||
2112 | }; | ||
2113 | "send-0.17.1" = { | ||
2114 | name = "send"; | ||
2115 | packageName = "send"; | ||
2116 | version = "0.17.1"; | ||
2117 | src = fetchurl { | ||
2118 | url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; | ||
2119 | sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; | ||
2120 | }; | ||
2121 | }; | ||
2122 | "serve-static-1.14.1" = { | ||
2123 | name = "serve-static"; | ||
2124 | packageName = "serve-static"; | ||
2125 | version = "1.14.1"; | ||
2126 | src = fetchurl { | ||
2127 | url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"; | ||
2128 | sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; | ||
2129 | }; | ||
2130 | }; | ||
2131 | "setprototypeof-1.1.1" = { | ||
2132 | name = "setprototypeof"; | ||
2133 | packageName = "setprototypeof"; | ||
2134 | version = "1.1.1"; | ||
2135 | src = fetchurl { | ||
2136 | url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"; | ||
2137 | sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; | ||
2138 | }; | ||
2139 | }; | ||
2140 | "slide-1.1.6" = { | ||
2141 | name = "slide"; | ||
2142 | packageName = "slide"; | ||
2143 | version = "1.1.6"; | ||
2144 | src = fetchurl { | ||
2145 | url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz"; | ||
2146 | sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"; | ||
2147 | }; | ||
2148 | }; | ||
2149 | "socket.io-2.1.1" = { | ||
2150 | name = "socket.io"; | ||
2151 | packageName = "socket.io"; | ||
2152 | version = "2.1.1"; | ||
2153 | src = fetchurl { | ||
2154 | url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz"; | ||
2155 | sha512 = "rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA=="; | ||
2156 | }; | ||
2157 | }; | ||
2158 | "socket.io-adapter-1.1.2" = { | ||
2159 | name = "socket.io-adapter"; | ||
2160 | packageName = "socket.io-adapter"; | ||
2161 | version = "1.1.2"; | ||
2162 | src = fetchurl { | ||
2163 | url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.2.tgz"; | ||
2164 | sha512 = "WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g=="; | ||
2165 | }; | ||
2166 | }; | ||
2167 | "socket.io-client-2.1.1" = { | ||
2168 | name = "socket.io-client"; | ||
2169 | packageName = "socket.io-client"; | ||
2170 | version = "2.1.1"; | ||
2171 | src = fetchurl { | ||
2172 | url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz"; | ||
2173 | sha512 = "jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ=="; | ||
2174 | }; | ||
2175 | }; | ||
2176 | "socket.io-parser-3.2.0" = { | ||
2177 | name = "socket.io-parser"; | ||
2178 | packageName = "socket.io-parser"; | ||
2179 | version = "3.2.0"; | ||
2180 | src = fetchurl { | ||
2181 | url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz"; | ||
2182 | sha512 = "FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA=="; | ||
2183 | }; | ||
2184 | }; | ||
2185 | "source-map-0.6.1" = { | ||
2186 | name = "source-map"; | ||
2187 | packageName = "source-map"; | ||
2188 | version = "0.6.1"; | ||
2189 | src = fetchurl { | ||
2190 | url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; | ||
2191 | sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; | ||
2192 | }; | ||
2193 | }; | ||
2194 | "split-1.0.1" = { | ||
2195 | name = "split"; | ||
2196 | packageName = "split"; | ||
2197 | version = "1.0.1"; | ||
2198 | src = fetchurl { | ||
2199 | url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; | ||
2200 | sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; | ||
2201 | }; | ||
2202 | }; | ||
2203 | "sprintf-js-1.0.3" = { | ||
2204 | name = "sprintf-js"; | ||
2205 | packageName = "sprintf-js"; | ||
2206 | version = "1.0.3"; | ||
2207 | src = fetchurl { | ||
2208 | url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; | ||
2209 | sha1 = "04e6926f662895354f3dd015203633b857297e2c"; | ||
2210 | }; | ||
2211 | }; | ||
2212 | "sqlstring-2.3.1" = { | ||
2213 | name = "sqlstring"; | ||
2214 | packageName = "sqlstring"; | ||
2215 | version = "2.3.1"; | ||
2216 | src = fetchurl { | ||
2217 | url = "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz"; | ||
2218 | sha1 = "475393ff9e91479aea62dcaf0ca3d14983a7fb40"; | ||
2219 | }; | ||
2220 | }; | ||
2221 | "sshpk-1.16.1" = { | ||
2222 | name = "sshpk"; | ||
2223 | packageName = "sshpk"; | ||
2224 | version = "1.16.1"; | ||
2225 | src = fetchurl { | ||
2226 | url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; | ||
2227 | sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; | ||
2228 | }; | ||
2229 | }; | ||
2230 | "statuses-1.5.0" = { | ||
2231 | name = "statuses"; | ||
2232 | packageName = "statuses"; | ||
2233 | version = "1.5.0"; | ||
2234 | src = fetchurl { | ||
2235 | url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; | ||
2236 | sha1 = "161c7dac177659fd9811f43771fa99381478628c"; | ||
2237 | }; | ||
2238 | }; | ||
2239 | "string_decoder-0.10.31" = { | ||
2240 | name = "string_decoder"; | ||
2241 | packageName = "string_decoder"; | ||
2242 | version = "0.10.31"; | ||
2243 | src = fetchurl { | ||
2244 | url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; | ||
2245 | sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; | ||
2246 | }; | ||
2247 | }; | ||
2248 | "string_decoder-1.1.1" = { | ||
2249 | name = "string_decoder"; | ||
2250 | packageName = "string_decoder"; | ||
2251 | version = "1.1.1"; | ||
2252 | src = fetchurl { | ||
2253 | url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; | ||
2254 | sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; | ||
2255 | }; | ||
2256 | }; | ||
2257 | "string_decoder-1.3.0" = { | ||
2258 | name = "string_decoder"; | ||
2259 | packageName = "string_decoder"; | ||
2260 | version = "1.3.0"; | ||
2261 | src = fetchurl { | ||
2262 | url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; | ||
2263 | sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; | ||
2264 | }; | ||
2265 | }; | ||
2266 | "strip-ansi-3.0.1" = { | ||
2267 | name = "strip-ansi"; | ||
2268 | packageName = "strip-ansi"; | ||
2269 | version = "3.0.1"; | ||
2270 | src = fetchurl { | ||
2271 | url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; | ||
2272 | sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; | ||
2273 | }; | ||
2274 | }; | ||
2275 | "supports-color-2.0.0" = { | ||
2276 | name = "supports-color"; | ||
2277 | packageName = "supports-color"; | ||
2278 | version = "2.0.0"; | ||
2279 | src = fetchurl { | ||
2280 | url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; | ||
2281 | sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; | ||
2282 | }; | ||
2283 | }; | ||
2284 | "swagger-parser-9.0.1" = { | ||
2285 | name = "swagger-parser"; | ||
2286 | packageName = "swagger-parser"; | ||
2287 | version = "9.0.1"; | ||
2288 | src = fetchurl { | ||
2289 | url = "https://registry.npmjs.org/swagger-parser/-/swagger-parser-9.0.1.tgz"; | ||
2290 | sha512 = "oxOHUaeNetO9ChhTJm2fD+48DbGbLD09ZEOwPOWEqcW8J6zmjWxutXtSuOiXsoRgDWvORYlImbwM21Pn+EiuvQ=="; | ||
2291 | }; | ||
2292 | }; | ||
2293 | "swagger-schema-official-2.0.0-bab6bed" = { | ||
2294 | name = "swagger-schema-official"; | ||
2295 | packageName = "swagger-schema-official"; | ||
2296 | version = "2.0.0-bab6bed"; | ||
2297 | src = fetchurl { | ||
2298 | url = "https://registry.npmjs.org/swagger-schema-official/-/swagger-schema-official-2.0.0-bab6bed.tgz"; | ||
2299 | sha1 = "70070468d6d2977ca5237b2e519ca7d06a2ea3fd"; | ||
2300 | }; | ||
2301 | }; | ||
2302 | "through-2.3.8" = { | ||
2303 | name = "through"; | ||
2304 | packageName = "through"; | ||
2305 | version = "2.3.8"; | ||
2306 | src = fetchurl { | ||
2307 | url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; | ||
2308 | sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; | ||
2309 | }; | ||
2310 | }; | ||
2311 | "tinycon-0.0.1" = { | ||
2312 | name = "tinycon"; | ||
2313 | packageName = "tinycon"; | ||
2314 | version = "0.0.1"; | ||
2315 | src = fetchurl { | ||
2316 | url = "https://registry.npmjs.org/tinycon/-/tinycon-0.0.1.tgz"; | ||
2317 | sha1 = "6de10cd5219a1f121d9a0a24b2c11b3fb24dffed"; | ||
2318 | }; | ||
2319 | }; | ||
2320 | "to-array-0.1.4" = { | ||
2321 | name = "to-array"; | ||
2322 | packageName = "to-array"; | ||
2323 | version = "0.1.4"; | ||
2324 | src = fetchurl { | ||
2325 | url = "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz"; | ||
2326 | sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"; | ||
2327 | }; | ||
2328 | }; | ||
2329 | "toidentifier-1.0.0" = { | ||
2330 | name = "toidentifier"; | ||
2331 | packageName = "toidentifier"; | ||
2332 | version = "1.0.0"; | ||
2333 | src = fetchurl { | ||
2334 | url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; | ||
2335 | sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; | ||
2336 | }; | ||
2337 | }; | ||
2338 | "tough-cookie-2.4.3" = { | ||
2339 | name = "tough-cookie"; | ||
2340 | packageName = "tough-cookie"; | ||
2341 | version = "2.4.3"; | ||
2342 | src = fetchurl { | ||
2343 | url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz"; | ||
2344 | sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ=="; | ||
2345 | }; | ||
2346 | }; | ||
2347 | "tunnel-agent-0.6.0" = { | ||
2348 | name = "tunnel-agent"; | ||
2349 | packageName = "tunnel-agent"; | ||
2350 | version = "0.6.0"; | ||
2351 | src = fetchurl { | ||
2352 | url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; | ||
2353 | sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; | ||
2354 | }; | ||
2355 | }; | ||
2356 | "tweetnacl-0.14.5" = { | ||
2357 | name = "tweetnacl"; | ||
2358 | packageName = "tweetnacl"; | ||
2359 | version = "0.14.5"; | ||
2360 | src = fetchurl { | ||
2361 | url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; | ||
2362 | sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; | ||
2363 | }; | ||
2364 | }; | ||
2365 | "type-is-1.6.18" = { | ||
2366 | name = "type-is"; | ||
2367 | packageName = "type-is"; | ||
2368 | version = "1.6.18"; | ||
2369 | src = fetchurl { | ||
2370 | url = "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"; | ||
2371 | sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; | ||
2372 | }; | ||
2373 | }; | ||
2374 | "ueberdb2-0.4.5" = { | ||
2375 | name = "ueberdb2"; | ||
2376 | packageName = "ueberdb2"; | ||
2377 | version = "0.4.5"; | ||
2378 | src = fetchurl { | ||
2379 | url = "https://registry.npmjs.org/ueberdb2/-/ueberdb2-0.4.5.tgz"; | ||
2380 | sha512 = "D8TogZ6Dc4Ot909b0D0QQRSanVB3W4EtqA8smKEZS7H5eIbAWFOyBF74XADIB9f+NASSjdu8DU3EJeKe9Xdzjg=="; | ||
2381 | }; | ||
2382 | }; | ||
2383 | "uglify-js-3.8.1" = { | ||
2384 | name = "uglify-js"; | ||
2385 | packageName = "uglify-js"; | ||
2386 | version = "3.8.1"; | ||
2387 | src = fetchurl { | ||
2388 | url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.8.1.tgz"; | ||
2389 | sha512 = "W7KxyzeaQmZvUFbGj4+YFshhVrMBGSg2IbcYAjGWGvx8DHvJMclbTDMpffdxFUGPBHjIytk7KJUR/KUXstUGDw=="; | ||
2390 | }; | ||
2391 | }; | ||
2392 | "uid-safe-2.1.5" = { | ||
2393 | name = "uid-safe"; | ||
2394 | packageName = "uid-safe"; | ||
2395 | version = "2.1.5"; | ||
2396 | src = fetchurl { | ||
2397 | url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz"; | ||
2398 | sha512 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA=="; | ||
2399 | }; | ||
2400 | }; | ||
2401 | "ultron-1.1.1" = { | ||
2402 | name = "ultron"; | ||
2403 | packageName = "ultron"; | ||
2404 | version = "1.1.1"; | ||
2405 | src = fetchurl { | ||
2406 | url = "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz"; | ||
2407 | sha512 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og=="; | ||
2408 | }; | ||
2409 | }; | ||
2410 | "underscore-1.8.3" = { | ||
2411 | name = "underscore"; | ||
2412 | packageName = "underscore"; | ||
2413 | version = "1.8.3"; | ||
2414 | src = fetchurl { | ||
2415 | url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; | ||
2416 | sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; | ||
2417 | }; | ||
2418 | }; | ||
2419 | "unorm-1.4.1" = { | ||
2420 | name = "unorm"; | ||
2421 | packageName = "unorm"; | ||
2422 | version = "1.4.1"; | ||
2423 | src = fetchurl { | ||
2424 | url = "https://registry.npmjs.org/unorm/-/unorm-1.4.1.tgz"; | ||
2425 | sha1 = "364200d5f13646ca8bcd44490271335614792300"; | ||
2426 | }; | ||
2427 | }; | ||
2428 | "unpipe-1.0.0" = { | ||
2429 | name = "unpipe"; | ||
2430 | packageName = "unpipe"; | ||
2431 | version = "1.0.0"; | ||
2432 | src = fetchurl { | ||
2433 | url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; | ||
2434 | sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; | ||
2435 | }; | ||
2436 | }; | ||
2437 | "uri-js-4.2.2" = { | ||
2438 | name = "uri-js"; | ||
2439 | packageName = "uri-js"; | ||
2440 | version = "4.2.2"; | ||
2441 | src = fetchurl { | ||
2442 | url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; | ||
2443 | sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; | ||
2444 | }; | ||
2445 | }; | ||
2446 | "util-deprecate-1.0.2" = { | ||
2447 | name = "util-deprecate"; | ||
2448 | packageName = "util-deprecate"; | ||
2449 | version = "1.0.2"; | ||
2450 | src = fetchurl { | ||
2451 | url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; | ||
2452 | sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; | ||
2453 | }; | ||
2454 | }; | ||
2455 | "utils-merge-1.0.1" = { | ||
2456 | name = "utils-merge"; | ||
2457 | packageName = "utils-merge"; | ||
2458 | version = "1.0.1"; | ||
2459 | src = fetchurl { | ||
2460 | url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; | ||
2461 | sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; | ||
2462 | }; | ||
2463 | }; | ||
2464 | "uuid-3.4.0" = { | ||
2465 | name = "uuid"; | ||
2466 | packageName = "uuid"; | ||
2467 | version = "3.4.0"; | ||
2468 | src = fetchurl { | ||
2469 | url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"; | ||
2470 | sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; | ||
2471 | }; | ||
2472 | }; | ||
2473 | "validator-12.2.0" = { | ||
2474 | name = "validator"; | ||
2475 | packageName = "validator"; | ||
2476 | version = "12.2.0"; | ||
2477 | src = fetchurl { | ||
2478 | url = "https://registry.npmjs.org/validator/-/validator-12.2.0.tgz"; | ||
2479 | sha512 = "jJfE/DW6tIK1Ek8nCfNFqt8Wb3nzMoAbocBF6/Icgg1ZFSBpObdnwVY2jQj6qUqzhx5jc71fpvBWyLGO7Xl+nQ=="; | ||
2480 | }; | ||
2481 | }; | ||
2482 | "vary-1.1.2" = { | ||
2483 | name = "vary"; | ||
2484 | packageName = "vary"; | ||
2485 | version = "1.1.2"; | ||
2486 | src = fetchurl { | ||
2487 | url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; | ||
2488 | sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; | ||
2489 | }; | ||
2490 | }; | ||
2491 | "verror-1.10.0" = { | ||
2492 | name = "verror"; | ||
2493 | packageName = "verror"; | ||
2494 | version = "1.10.0"; | ||
2495 | src = fetchurl { | ||
2496 | url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; | ||
2497 | sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; | ||
2498 | }; | ||
2499 | }; | ||
2500 | "ws-3.3.3" = { | ||
2501 | name = "ws"; | ||
2502 | packageName = "ws"; | ||
2503 | version = "3.3.3"; | ||
2504 | src = fetchurl { | ||
2505 | url = "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz"; | ||
2506 | sha512 = "nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA=="; | ||
2507 | }; | ||
2508 | }; | ||
2509 | "xmlhttprequest-ssl-1.5.5" = { | ||
2510 | name = "xmlhttprequest-ssl"; | ||
2511 | packageName = "xmlhttprequest-ssl"; | ||
2512 | version = "1.5.5"; | ||
2513 | src = fetchurl { | ||
2514 | url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; | ||
2515 | sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e"; | ||
2516 | }; | ||
2517 | }; | ||
2518 | "xtend-4.0.2" = { | ||
2519 | name = "xtend"; | ||
2520 | packageName = "xtend"; | ||
2521 | version = "4.0.2"; | ||
2522 | src = fetchurl { | ||
2523 | url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; | ||
2524 | sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; | ||
2525 | }; | ||
2526 | }; | ||
2527 | "yeast-0.1.2" = { | ||
2528 | name = "yeast"; | ||
2529 | packageName = "yeast"; | ||
2530 | version = "0.1.2"; | ||
2531 | src = fetchurl { | ||
2532 | url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz"; | ||
2533 | sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; | ||
2534 | }; | ||
2535 | }; | ||
2536 | "z-schema-4.2.3" = { | ||
2537 | name = "z-schema"; | ||
2538 | packageName = "z-schema"; | ||
2539 | version = "4.2.3"; | ||
2540 | src = fetchurl { | ||
2541 | url = "https://registry.npmjs.org/z-schema/-/z-schema-4.2.3.tgz"; | ||
2542 | sha512 = "zkvK/9TC6p38IwcrbnT3ul9in1UX4cm1y/VZSs4GHKIiDCrlafc+YQBgQBUdDXLAoZHf2qvQ7gJJOo6yT1LH6A=="; | ||
2543 | }; | ||
2544 | }; | ||
2545 | }; | ||
2546 | args = { | ||
2547 | name = "ep_etherpad-lite"; | ||
2548 | packageName = "ep_etherpad-lite"; | ||
2549 | version = "1.8.3"; | ||
2550 | inherit src; | ||
2551 | dependencies = [ | ||
2552 | sources."@apidevtools/json-schema-ref-parser-8.0.0" | ||
2553 | sources."@apidevtools/openapi-schemas-2.0.3" | ||
2554 | sources."@apidevtools/swagger-methods-3.0.1" | ||
2555 | sources."@apidevtools/swagger-parser-9.0.1" | ||
2556 | sources."@jsdevtools/ono-7.1.2" | ||
2557 | sources."@types/caseless-0.12.2" | ||
2558 | sources."@types/long-4.0.1" | ||
2559 | sources."@types/node-13.13.4" | ||
2560 | (sources."@types/request-2.48.4" // { | ||
2561 | dependencies = [ | ||
2562 | sources."form-data-2.5.1" | ||
2563 | ]; | ||
2564 | }) | ||
2565 | sources."@types/tough-cookie-4.0.0" | ||
2566 | sources."accepts-1.3.7" | ||
2567 | sources."adm-zip-0.4.14" | ||
2568 | sources."after-0.8.2" | ||
2569 | sources."agentkeepalive-3.5.2" | ||
2570 | sources."ajv-6.12.2" | ||
2571 | sources."ansi-regex-2.1.1" | ||
2572 | sources."ansi-styles-2.2.1" | ||
2573 | sources."argparse-1.0.10" | ||
2574 | sources."array-flatten-1.1.1" | ||
2575 | sources."arraybuffer.slice-0.0.7" | ||
2576 | sources."asn1-0.2.4" | ||
2577 | sources."assert-plus-1.0.0" | ||
2578 | sources."async-0.9.0" | ||
2579 | sources."async-limiter-1.0.1" | ||
2580 | sources."async-stacktrace-0.0.2" | ||
2581 | sources."asynckit-0.4.0" | ||
2582 | sources."aws-sign2-0.7.0" | ||
2583 | sources."aws4-1.9.1" | ||
2584 | sources."backo2-1.0.2" | ||
2585 | sources."base64-arraybuffer-0.1.5" | ||
2586 | sources."base64id-1.0.0" | ||
2587 | sources."bath-es5-3.0.3" | ||
2588 | sources."bcrypt-pbkdf-1.0.2" | ||
2589 | sources."better-assert-1.0.2" | ||
2590 | sources."bignumber.js-9.0.0" | ||
2591 | sources."binary-search-1.3.6" | ||
2592 | sources."blob-0.0.5" | ||
2593 | sources."bluebird-2.11.0" | ||
2594 | (sources."body-parser-1.19.0" // { | ||
2595 | dependencies = [ | ||
2596 | sources."http-errors-1.7.2" | ||
2597 | sources."inherits-2.0.3" | ||
2598 | ]; | ||
2599 | }) | ||
2600 | sources."boolbase-1.0.0" | ||
2601 | sources."browser-request-0.3.3" | ||
2602 | sources."buffer-writer-2.0.0" | ||
2603 | sources."bytes-3.1.0" | ||
2604 | sources."call-me-maybe-1.0.1" | ||
2605 | sources."callsite-1.0.0" | ||
2606 | sources."caseless-0.12.0" | ||
2607 | sources."cassandra-driver-4.5.1" | ||
2608 | sources."chalk-1.1.3" | ||
2609 | sources."channels-0.0.4" | ||
2610 | sources."cheerio-0.22.0" | ||
2611 | sources."clean-css-4.2.3" | ||
2612 | (sources."cloudant-follow-0.18.2" // { | ||
2613 | dependencies = [ | ||
2614 | sources."debug-4.1.1" | ||
2615 | sources."ms-2.1.2" | ||
2616 | ]; | ||
2617 | }) | ||
2618 | sources."combined-stream-1.0.8" | ||
2619 | sources."commander-2.20.3" | ||
2620 | sources."component-bind-1.0.0" | ||
2621 | sources."component-emitter-1.2.1" | ||
2622 | sources."component-inherit-0.0.3" | ||
2623 | (sources."content-disposition-0.5.3" // { | ||
2624 | dependencies = [ | ||
2625 | sources."safe-buffer-5.1.2" | ||
2626 | ]; | ||
2627 | }) | ||
2628 | sources."content-type-1.0.4" | ||
2629 | sources."cookie-0.3.1" | ||
2630 | sources."cookie-parser-1.4.4" | ||
2631 | sources."cookie-signature-1.0.6" | ||
2632 | sources."core-util-is-1.0.2" | ||
2633 | sources."css-select-1.2.0" | ||
2634 | sources."css-what-2.1.3" | ||
2635 | sources."dashdash-1.14.1" | ||
2636 | sources."debug-2.6.9" | ||
2637 | sources."delayed-stream-1.0.0" | ||
2638 | sources."denque-1.4.1" | ||
2639 | sources."depd-1.1.2" | ||
2640 | sources."destroy-1.0.4" | ||
2641 | sources."dirty-1.1.0" | ||
2642 | sources."dom-serializer-0.1.1" | ||
2643 | sources."domelementtype-1.3.1" | ||
2644 | sources."domhandler-2.4.2" | ||
2645 | sources."domutils-1.5.1" | ||
2646 | sources."ecc-jsbn-0.1.2" | ||
2647 | sources."ee-first-1.1.1" | ||
2648 | sources."ejs-2.6.1" | ||
2649 | sources."elasticsearch-16.7.1" | ||
2650 | sources."encodeurl-1.0.2" | ||
2651 | (sources."engine.io-3.2.1" // { | ||
2652 | dependencies = [ | ||
2653 | sources."debug-3.1.0" | ||
2654 | ]; | ||
2655 | }) | ||
2656 | (sources."engine.io-client-3.2.1" // { | ||
2657 | dependencies = [ | ||
2658 | sources."debug-3.1.0" | ||
2659 | ]; | ||
2660 | }) | ||
2661 | sources."engine.io-parser-2.1.3" | ||
2662 | sources."entities-1.1.2" | ||
2663 | sources."errs-0.3.2" | ||
2664 | sources."escape-html-1.0.3" | ||
2665 | sources."escape-string-regexp-1.0.5" | ||
2666 | sources."esprima-4.0.1" | ||
2667 | sources."etag-1.8.1" | ||
2668 | sources."etherpad-require-kernel-1.0.9" | ||
2669 | sources."etherpad-yajsml-0.0.2" | ||
2670 | (sources."express-4.17.1" // { | ||
2671 | dependencies = [ | ||
2672 | sources."cookie-0.4.0" | ||
2673 | sources."safe-buffer-5.1.2" | ||
2674 | ]; | ||
2675 | }) | ||
2676 | sources."express-rate-limit-5.1.1" | ||
2677 | (sources."express-session-1.17.0" // { | ||
2678 | dependencies = [ | ||
2679 | sources."cookie-0.4.0" | ||
2680 | sources."depd-2.0.0" | ||
2681 | ]; | ||
2682 | }) | ||
2683 | sources."extend-3.0.2" | ||
2684 | sources."extsprintf-1.3.0" | ||
2685 | sources."fast-deep-equal-3.1.1" | ||
2686 | sources."fast-json-stable-stringify-2.1.0" | ||
2687 | sources."finalhandler-1.1.2" | ||
2688 | sources."find-root-1.1.0" | ||
2689 | sources."forever-agent-0.6.1" | ||
2690 | sources."form-data-2.3.3" | ||
2691 | sources."formidable-1.2.1" | ||
2692 | sources."forwarded-0.1.2" | ||
2693 | sources."fresh-0.5.2" | ||
2694 | sources."getpass-0.1.7" | ||
2695 | sources."graceful-fs-4.2.2" | ||
2696 | sources."har-schema-2.0.0" | ||
2697 | sources."har-validator-5.1.3" | ||
2698 | sources."has-ansi-2.0.0" | ||
2699 | (sources."has-binary2-1.0.3" // { | ||
2700 | dependencies = [ | ||
2701 | sources."isarray-2.0.1" | ||
2702 | ]; | ||
2703 | }) | ||
2704 | sources."has-cors-1.1.0" | ||
2705 | sources."htmlparser2-3.10.1" | ||
2706 | sources."http-errors-1.7.3" | ||
2707 | sources."http-signature-1.2.0" | ||
2708 | sources."humanize-ms-1.2.1" | ||
2709 | sources."iconv-lite-0.4.24" | ||
2710 | sources."indexof-0.0.1" | ||
2711 | sources."inherits-2.0.4" | ||
2712 | sources."ipaddr.js-1.9.1" | ||
2713 | sources."is-promise-1.0.1" | ||
2714 | sources."is-typedarray-1.0.0" | ||
2715 | sources."isarray-0.0.1" | ||
2716 | sources."isstream-0.1.2" | ||
2717 | sources."js-yaml-3.13.1" | ||
2718 | sources."jsbn-0.1.1" | ||
2719 | sources."json-schema-0.2.3" | ||
2720 | sources."json-schema-traverse-0.4.1" | ||
2721 | sources."json-stringify-safe-5.0.1" | ||
2722 | sources."jsonminify-0.4.1" | ||
2723 | sources."jsonschema-1.2.4" | ||
2724 | sources."jsonschema-draft4-1.0.0" | ||
2725 | sources."jsprim-1.4.1" | ||
2726 | sources."languages4translatewiki-0.1.3" | ||
2727 | sources."lodash-4.17.15" | ||
2728 | sources."lodash.assignin-4.2.0" | ||
2729 | sources."lodash.bind-4.2.1" | ||
2730 | sources."lodash.clonedeep-4.5.0" | ||
2731 | sources."lodash.defaults-4.2.0" | ||
2732 | sources."lodash.filter-4.6.0" | ||
2733 | sources."lodash.flatten-4.4.0" | ||
2734 | sources."lodash.foreach-4.5.0" | ||
2735 | sources."lodash.get-4.4.2" | ||
2736 | sources."lodash.isequal-4.5.0" | ||
2737 | sources."lodash.map-4.6.0" | ||
2738 | sources."lodash.merge-4.6.2" | ||
2739 | sources."lodash.pick-4.4.0" | ||
2740 | sources."lodash.reduce-4.6.0" | ||
2741 | sources."lodash.reject-4.6.0" | ||
2742 | sources."lodash.some-4.6.0" | ||
2743 | (sources."log4js-0.6.35" // { | ||
2744 | dependencies = [ | ||
2745 | sources."readable-stream-1.0.34" | ||
2746 | sources."semver-4.3.6" | ||
2747 | sources."string_decoder-0.10.31" | ||
2748 | ]; | ||
2749 | }) | ||
2750 | sources."long-2.4.0" | ||
2751 | sources."measured-core-1.11.2" | ||
2752 | sources."media-typer-0.3.0" | ||
2753 | sources."merge-descriptors-1.0.1" | ||
2754 | sources."methods-1.1.2" | ||
2755 | sources."mime-1.6.0" | ||
2756 | sources."mime-db-1.44.0" | ||
2757 | sources."mime-types-2.1.27" | ||
2758 | sources."mock-json-schema-1.0.8" | ||
2759 | sources."ms-2.0.0" | ||
2760 | (sources."mysql-2.18.1" // { | ||
2761 | dependencies = [ | ||
2762 | sources."isarray-1.0.0" | ||
2763 | sources."readable-stream-2.3.7" | ||
2764 | sources."safe-buffer-5.1.2" | ||
2765 | sources."string_decoder-1.1.1" | ||
2766 | ]; | ||
2767 | }) | ||
2768 | (sources."nano-8.2.2" // { | ||
2769 | dependencies = [ | ||
2770 | sources."debug-4.1.1" | ||
2771 | sources."ms-2.1.2" | ||
2772 | ]; | ||
2773 | }) | ||
2774 | sources."negotiator-0.6.2" | ||
2775 | sources."nodeify-1.0.1" | ||
2776 | sources."npm-6.14.4" | ||
2777 | sources."nth-check-1.0.2" | ||
2778 | sources."oauth-sign-0.9.0" | ||
2779 | sources."object-component-0.0.3" | ||
2780 | sources."on-finished-2.3.0" | ||
2781 | sources."on-headers-1.0.2" | ||
2782 | (sources."openapi-backend-2.4.1" // { | ||
2783 | dependencies = [ | ||
2784 | sources."cookie-0.4.1" | ||
2785 | ]; | ||
2786 | }) | ||
2787 | sources."openapi-schema-validation-0.4.2" | ||
2788 | sources."openapi-types-1.3.5" | ||
2789 | sources."optional-js-2.1.1" | ||
2790 | sources."packet-reader-1.0.0" | ||
2791 | sources."parseqs-0.0.5" | ||
2792 | sources."parseuri-0.0.5" | ||
2793 | sources."parseurl-1.3.3" | ||
2794 | sources."path-to-regexp-0.1.7" | ||
2795 | sources."performance-now-2.1.0" | ||
2796 | (sources."pg-7.18.2" // { | ||
2797 | dependencies = [ | ||
2798 | sources."semver-4.3.2" | ||
2799 | ]; | ||
2800 | }) | ||
2801 | sources."pg-connection-string-0.1.3" | ||
2802 | sources."pg-int8-1.0.1" | ||
2803 | sources."pg-packet-stream-1.1.0" | ||
2804 | sources."pg-pool-2.0.10" | ||
2805 | sources."pg-types-2.2.0" | ||
2806 | sources."pgpass-1.0.2" | ||
2807 | sources."postgres-array-2.0.0" | ||
2808 | sources."postgres-bytea-1.0.0" | ||
2809 | sources."postgres-date-1.0.5" | ||
2810 | sources."postgres-interval-1.2.0" | ||
2811 | sources."process-nextick-args-2.0.1" | ||
2812 | sources."promise-1.3.0" | ||
2813 | sources."proxy-addr-2.0.6" | ||
2814 | sources."psl-1.8.0" | ||
2815 | sources."punycode-2.1.1" | ||
2816 | sources."qs-6.7.0" | ||
2817 | sources."random-bytes-1.0.0" | ||
2818 | sources."range-parser-1.2.1" | ||
2819 | (sources."raw-body-2.4.0" // { | ||
2820 | dependencies = [ | ||
2821 | sources."http-errors-1.7.2" | ||
2822 | sources."inherits-2.0.3" | ||
2823 | ]; | ||
2824 | }) | ||
2825 | sources."readable-stream-3.6.0" | ||
2826 | sources."redis-3.0.2" | ||
2827 | sources."redis-commands-1.5.0" | ||
2828 | sources."redis-errors-1.2.0" | ||
2829 | sources."redis-parser-3.0.0" | ||
2830 | (sources."request-2.88.0" // { | ||
2831 | dependencies = [ | ||
2832 | sources."qs-6.5.2" | ||
2833 | ]; | ||
2834 | }) | ||
2835 | sources."resolve-1.1.7" | ||
2836 | sources."rethinkdb-2.4.2" | ||
2837 | sources."safe-buffer-5.2.0" | ||
2838 | sources."safer-buffer-2.1.2" | ||
2839 | sources."security-1.0.0" | ||
2840 | sources."semver-5.6.0" | ||
2841 | (sources."send-0.17.1" // { | ||
2842 | dependencies = [ | ||
2843 | sources."ms-2.1.1" | ||
2844 | ]; | ||
2845 | }) | ||
2846 | sources."serve-static-1.14.1" | ||
2847 | sources."setprototypeof-1.1.1" | ||
2848 | sources."slide-1.1.6" | ||
2849 | (sources."socket.io-2.1.1" // { | ||
2850 | dependencies = [ | ||
2851 | sources."debug-3.1.0" | ||
2852 | ]; | ||
2853 | }) | ||
2854 | sources."socket.io-adapter-1.1.2" | ||
2855 | (sources."socket.io-client-2.1.1" // { | ||
2856 | dependencies = [ | ||
2857 | sources."debug-3.1.0" | ||
2858 | ]; | ||
2859 | }) | ||
2860 | (sources."socket.io-parser-3.2.0" // { | ||
2861 | dependencies = [ | ||
2862 | sources."debug-3.1.0" | ||
2863 | sources."isarray-2.0.1" | ||
2864 | ]; | ||
2865 | }) | ||
2866 | sources."source-map-0.6.1" | ||
2867 | sources."split-1.0.1" | ||
2868 | sources."sprintf-js-1.0.3" | ||
2869 | sources."sqlstring-2.3.1" | ||
2870 | sources."sshpk-1.16.1" | ||
2871 | sources."statuses-1.5.0" | ||
2872 | sources."string_decoder-1.3.0" | ||
2873 | sources."strip-ansi-3.0.1" | ||
2874 | sources."supports-color-2.0.0" | ||
2875 | sources."swagger-parser-9.0.1" | ||
2876 | sources."swagger-schema-official-2.0.0-bab6bed" | ||
2877 | sources."through-2.3.8" | ||
2878 | sources."tinycon-0.0.1" | ||
2879 | sources."to-array-0.1.4" | ||
2880 | sources."toidentifier-1.0.0" | ||
2881 | (sources."tough-cookie-2.4.3" // { | ||
2882 | dependencies = [ | ||
2883 | sources."punycode-1.4.1" | ||
2884 | ]; | ||
2885 | }) | ||
2886 | sources."tunnel-agent-0.6.0" | ||
2887 | sources."tweetnacl-0.14.5" | ||
2888 | sources."type-is-1.6.18" | ||
2889 | (sources."ueberdb2-0.4.5" // { | ||
2890 | dependencies = [ | ||
2891 | sources."async-3.2.0" | ||
2892 | ]; | ||
2893 | }) | ||
2894 | sources."uglify-js-3.8.1" | ||
2895 | sources."uid-safe-2.1.5" | ||
2896 | sources."ultron-1.1.1" | ||
2897 | sources."underscore-1.8.3" | ||
2898 | sources."unorm-1.4.1" | ||
2899 | sources."unpipe-1.0.0" | ||
2900 | sources."uri-js-4.2.2" | ||
2901 | sources."util-deprecate-1.0.2" | ||
2902 | sources."utils-merge-1.0.1" | ||
2903 | sources."uuid-3.4.0" | ||
2904 | sources."validator-12.2.0" | ||
2905 | sources."vary-1.1.2" | ||
2906 | sources."verror-1.10.0" | ||
2907 | (sources."ws-3.3.3" // { | ||
2908 | dependencies = [ | ||
2909 | sources."safe-buffer-5.1.2" | ||
2910 | ]; | ||
2911 | }) | ||
2912 | sources."xmlhttprequest-ssl-1.5.5" | ||
2913 | sources."xtend-4.0.2" | ||
2914 | sources."yeast-0.1.2" | ||
2915 | sources."z-schema-4.2.3" | ||
2916 | ]; | ||
2917 | buildInputs = globalBuildInputs; | ||
2918 | meta = { | ||
2919 | description = "A free and open source realtime collaborative editor"; | ||
2920 | homepage = https://etherpad.org/; | ||
2921 | license = "Apache-2.0"; | ||
2922 | }; | ||
2923 | production = true; | ||
2924 | bypassCache = true; | ||
2925 | reconstructLock = false; | ||
2926 | }; | ||
2927 | in | ||
2928 | { | ||
2929 | args = args; | ||
2930 | sources = sources; | ||
2931 | tarball = nodeEnv.buildNodeSourceDist args; | ||
2932 | package = nodeEnv.buildNodePackage args; | ||
2933 | shell = nodeEnv.buildNodeShell args; | ||
2934 | } | ||
diff --git a/pkgs/webapps/grocy/default.nix b/pkgs/webapps/grocy/default.nix deleted file mode 100644 index f87f6ec..0000000 --- a/pkgs/webapps/grocy/default.nix +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | { varDir ? "/var/lib/grocy", stdenv, callPackage, composerEnv, fetchurl, mylibs, runCommand, git, which, jq, yarn2nix-moretea }: | ||
2 | let | ||
3 | version = "2.6.1-1"; | ||
4 | packagesource = mylibs.fetchedGithub ./grocy.json; | ||
5 | patchedPackages = stdenv.mkDerivation (packagesource // rec { | ||
6 | buildInputs = [ jq ]; | ||
7 | patches = [ ./yarn.patch ]; | ||
8 | installPhase = '' | ||
9 | mkdir $out | ||
10 | cat package.json | jq -r '.version = "${version}"' > $out/package.json | ||
11 | cp yarn.lock $out/ | ||
12 | ''; | ||
13 | }); | ||
14 | yarnModules = yarn2nix-moretea.mkYarnModules rec { | ||
15 | name = "grocy-yarn"; | ||
16 | pname = name; | ||
17 | version = version; | ||
18 | packageJSON = "${patchedPackages}/package.json"; | ||
19 | yarnLock = "${patchedPackages}/yarn.lock"; | ||
20 | yarnNix = ./yarn-packages.nix; | ||
21 | pkgConfig = { | ||
22 | all = { | ||
23 | buildInputs = [ git which ]; | ||
24 | }; | ||
25 | }; | ||
26 | }; | ||
27 | app = composerEnv.buildPackage ( | ||
28 | import ./php-packages.nix { inherit composerEnv fetchurl; } // | ||
29 | packagesource // | ||
30 | { | ||
31 | noDev = true; | ||
32 | buildInputs = [ yarnModules ]; | ||
33 | postInstall = '' | ||
34 | rm -rf data | ||
35 | ln -sf ${varDir}/data data | ||
36 | ln -sf ${yarnModules}/node_modules public | ||
37 | ''; | ||
38 | passthru = { | ||
39 | inherit varDir yarnModules; | ||
40 | webRoot = "${app}/public"; | ||
41 | }; | ||
42 | } | ||
43 | ); | ||
44 | in | ||
45 | app | ||
diff --git a/pkgs/webapps/grocy/grocy.json b/pkgs/webapps/grocy/grocy.json deleted file mode 100644 index cd75c18..0000000 --- a/pkgs/webapps/grocy/grocy.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "d7738aa-master", | ||
3 | "meta": { | ||
4 | "name": "grocy", | ||
5 | "url": "https://github.com/grocy/grocy/", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "grocy", | ||
10 | "repo": "grocy", | ||
11 | "rev": "d7738aa1ec330c81f11e4976681df0299d4ed35a", | ||
12 | "sha256": "13zxzq71hvs3dzywrdwqflnkx6dpdc40l9klm4slv0fmmyclbbdf", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/grocy/php-packages.nix b/pkgs/webapps/grocy/php-packages.nix deleted file mode 100644 index 47491f9..0000000 --- a/pkgs/webapps/grocy/php-packages.nix +++ /dev/null | |||
@@ -1,457 +0,0 @@ | |||
1 | # Generated with composer2nix and adapted to return only the list of | ||
2 | # packages | ||
3 | { composerEnv, fetchurl }: | ||
4 | { | ||
5 | packages = { | ||
6 | "doctrine/inflector" = { | ||
7 | targetDir = ""; | ||
8 | src = composerEnv.buildZipPackage { | ||
9 | name = "doctrine-inflector-ec3a55242203ffa6a4b27c58176da97ff0a7aec1"; | ||
10 | src = fetchurl { | ||
11 | url = https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1; | ||
12 | sha256 = "18i6zyd5bh5zazgqr3c9bwi7s5vhm9wpnn2hd8vp8vgdp9x7f4hb"; | ||
13 | }; | ||
14 | }; | ||
15 | }; | ||
16 | "eluceo/ical" = { | ||
17 | targetDir = ""; | ||
18 | src = composerEnv.buildZipPackage { | ||
19 | name = "eluceo-ical-97da0d94c9716e65c141066a2d96aa098379721b"; | ||
20 | src = fetchurl { | ||
21 | url = https://api.github.com/repos/markuspoerschke/iCal/zipball/97da0d94c9716e65c141066a2d96aa098379721b; | ||
22 | sha256 = "195ajn30fdqxvvj03m4aa20yxf3li7w4zyl54r2f9rbwbibljia6"; | ||
23 | }; | ||
24 | }; | ||
25 | }; | ||
26 | "erusev/parsedown" = { | ||
27 | targetDir = ""; | ||
28 | src = composerEnv.buildZipPackage { | ||
29 | name = "erusev-parsedown-cb17b6477dfff935958ba01325f2e8a2bfa6dab3"; | ||
30 | src = fetchurl { | ||
31 | url = https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3; | ||
32 | sha256 = "1iil9v8g03m5vpxxg3a5qb2sxd1cs5c4p5i0k00cqjnjsxfrazxd"; | ||
33 | }; | ||
34 | }; | ||
35 | }; | ||
36 | "fig/http-message-util" = { | ||
37 | targetDir = ""; | ||
38 | src = composerEnv.buildZipPackage { | ||
39 | name = "fig-http-message-util-3242caa9da7221a304b8f84eb9eaddae0a7cf422"; | ||
40 | src = fetchurl { | ||
41 | url = https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422; | ||
42 | sha256 = "1cjbbsb8z4g340aqg8wrrc4vd9b7dksclqb7sh0xlmigjihn4shk"; | ||
43 | }; | ||
44 | }; | ||
45 | }; | ||
46 | "gettext/gettext" = { | ||
47 | targetDir = ""; | ||
48 | src = composerEnv.buildZipPackage { | ||
49 | name = "gettext-gettext-e474f872f2c8636cf53fd283ec4ce1218f3d236a"; | ||
50 | src = fetchurl { | ||
51 | url = https://api.github.com/repos/php-gettext/Gettext/zipball/e474f872f2c8636cf53fd283ec4ce1218f3d236a; | ||
52 | sha256 = "0plr9jzmhk2aw51qwhql2f2clak667qqlbxwx0q2g419w1ki1aky"; | ||
53 | }; | ||
54 | }; | ||
55 | }; | ||
56 | "gettext/languages" = { | ||
57 | targetDir = ""; | ||
58 | src = composerEnv.buildZipPackage { | ||
59 | name = "gettext-languages-38ea0482f649e0802e475f0ed19fa993bcb7a618"; | ||
60 | src = fetchurl { | ||
61 | url = https://api.github.com/repos/php-gettext/Languages/zipball/38ea0482f649e0802e475f0ed19fa993bcb7a618; | ||
62 | sha256 = "1f81ynhlki5h99crp6c1myyhsqhc74rjlxmmxkbmi986pbxr16m0"; | ||
63 | }; | ||
64 | }; | ||
65 | }; | ||
66 | "gumlet/php-image-resize" = { | ||
67 | targetDir = ""; | ||
68 | src = composerEnv.buildZipPackage { | ||
69 | name = "gumlet-php-image-resize-06339a9c1b167acd58173db226f57957a6617547"; | ||
70 | src = fetchurl { | ||
71 | url = https://api.github.com/repos/gumlet/php-image-resize/zipball/06339a9c1b167acd58173db226f57957a6617547; | ||
72 | sha256 = "1nn66n85n9cm8brdvw3lq6g36jl0ylv60dkzpjm8nsn83nqn9ns0"; | ||
73 | }; | ||
74 | }; | ||
75 | }; | ||
76 | "illuminate/container" = { | ||
77 | targetDir = ""; | ||
78 | src = composerEnv.buildZipPackage { | ||
79 | name = "illuminate-container-b42e5ef939144b77f78130918da0ce2d9ee16574"; | ||
80 | src = fetchurl { | ||
81 | url = https://api.github.com/repos/illuminate/container/zipball/b42e5ef939144b77f78130918da0ce2d9ee16574; | ||
82 | sha256 = "1szb8l69ap7agc8pqm3apqjspdgnhhb7xbrf6g77w9nwj4bdc9ix"; | ||
83 | }; | ||
84 | }; | ||
85 | }; | ||
86 | "illuminate/contracts" = { | ||
87 | targetDir = ""; | ||
88 | src = composerEnv.buildZipPackage { | ||
89 | name = "illuminate-contracts-00fc6afee788fa07c311b0650ad276585f8aef96"; | ||
90 | src = fetchurl { | ||
91 | url = https://api.github.com/repos/illuminate/contracts/zipball/00fc6afee788fa07c311b0650ad276585f8aef96; | ||
92 | sha256 = "1g7dlcjbgypfiag9sn3jaxhfd4qivsjgfh2kivazcg62n3sz8zca"; | ||
93 | }; | ||
94 | }; | ||
95 | }; | ||
96 | "illuminate/events" = { | ||
97 | targetDir = ""; | ||
98 | src = composerEnv.buildZipPackage { | ||
99 | name = "illuminate-events-a85d7c273bc4e3357000c5fc4812374598515de3"; | ||
100 | src = fetchurl { | ||
101 | url = https://api.github.com/repos/illuminate/events/zipball/a85d7c273bc4e3357000c5fc4812374598515de3; | ||
102 | sha256 = "1fdcabsqh43kzhi2n5703jiagmggchzdsjvi0ckc377nv6qkk5ym"; | ||
103 | }; | ||
104 | }; | ||
105 | }; | ||
106 | "illuminate/filesystem" = { | ||
107 | targetDir = ""; | ||
108 | src = composerEnv.buildZipPackage { | ||
109 | name = "illuminate-filesystem-494ba903402d64ec49c8d869ab61791db34b2288"; | ||
110 | src = fetchurl { | ||
111 | url = https://api.github.com/repos/illuminate/filesystem/zipball/494ba903402d64ec49c8d869ab61791db34b2288; | ||
112 | sha256 = "1ajj58125pzb746ad5pdkb4vn2ckg382x0c939r3jwv45913js3f"; | ||
113 | }; | ||
114 | }; | ||
115 | }; | ||
116 | "illuminate/support" = { | ||
117 | targetDir = ""; | ||
118 | src = composerEnv.buildZipPackage { | ||
119 | name = "illuminate-support-df4af6a32908f1d89d74348624b57e3233eea247"; | ||
120 | src = fetchurl { | ||
121 | url = https://api.github.com/repos/illuminate/support/zipball/df4af6a32908f1d89d74348624b57e3233eea247; | ||
122 | sha256 = "0n5kj0vbbakhzhkh0dfmpn4iqakkh783h0f2kl20wb9j6i6ywgjm"; | ||
123 | }; | ||
124 | }; | ||
125 | }; | ||
126 | "illuminate/view" = { | ||
127 | targetDir = ""; | ||
128 | src = composerEnv.buildZipPackage { | ||
129 | name = "illuminate-view-c859919bc3be97a3f114377d5d812f047b8ea90d"; | ||
130 | src = fetchurl { | ||
131 | url = https://api.github.com/repos/illuminate/view/zipball/c859919bc3be97a3f114377d5d812f047b8ea90d; | ||
132 | sha256 = "02l5wwbn6vhxl3af9avjdqwhj0wacigr6iwn9370pzw7cknlrvfm"; | ||
133 | }; | ||
134 | }; | ||
135 | }; | ||
136 | "jeremeamia/superclosure" = { | ||
137 | targetDir = ""; | ||
138 | src = composerEnv.buildZipPackage { | ||
139 | name = "jeremeamia-superclosure-5707d5821b30b9a07acfb4d76949784aaa0e9ce9"; | ||
140 | src = fetchurl { | ||
141 | url = https://api.github.com/repos/jeremeamia/super_closure/zipball/5707d5821b30b9a07acfb4d76949784aaa0e9ce9; | ||
142 | sha256 = "0jhj9s4fkv5lqpjs0r80czq2s8wv4i2ilaav9pkbwrpk17q9dh0c"; | ||
143 | }; | ||
144 | }; | ||
145 | }; | ||
146 | "morris/lessql" = { | ||
147 | targetDir = ""; | ||
148 | src = composerEnv.buildZipPackage { | ||
149 | name = "morris-lessql-f4150517f6492a761ed1ccb8dd180769e1f89e54"; | ||
150 | src = fetchurl { | ||
151 | url = https://api.github.com/repos/morris/lessql/zipball/f4150517f6492a761ed1ccb8dd180769e1f89e54; | ||
152 | sha256 = "1fcznaf0lijq3nd56iwjwkwc4j2v1li9vxp9hpghkc84ic0pf6c4"; | ||
153 | }; | ||
154 | }; | ||
155 | }; | ||
156 | "neomerx/cors-psr7" = { | ||
157 | targetDir = ""; | ||
158 | src = composerEnv.buildZipPackage { | ||
159 | name = "neomerx-cors-psr7-2556e2013f16a55532c95928455257d5b6bbc6e2"; | ||
160 | src = fetchurl { | ||
161 | url = https://api.github.com/repos/neomerx/cors-psr7/zipball/2556e2013f16a55532c95928455257d5b6bbc6e2; | ||
162 | sha256 = "0x64zvqjwaz2hkjl9vw29y29sny0z35c77yy8676scqlabwr98py"; | ||
163 | }; | ||
164 | }; | ||
165 | }; | ||
166 | "nesbot/carbon" = { | ||
167 | targetDir = ""; | ||
168 | src = composerEnv.buildZipPackage { | ||
169 | name = "nesbot-carbon-bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d"; | ||
170 | src = fetchurl { | ||
171 | url = https://api.github.com/repos/briannesbitt/Carbon/zipball/bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d; | ||
172 | sha256 = "0acyfvnsqy082390ijhi4mrlllgsskax3yj7bjrf97l6jlnci3g0"; | ||
173 | }; | ||
174 | }; | ||
175 | }; | ||
176 | "nikic/fast-route" = { | ||
177 | targetDir = ""; | ||
178 | src = composerEnv.buildZipPackage { | ||
179 | name = "nikic-fast-route-181d480e08d9476e61381e04a71b34dc0432e812"; | ||
180 | src = fetchurl { | ||
181 | url = https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812; | ||
182 | sha256 = "0sjqivm0gp6d6nal58n4r5wzyi21r4hdzn4v31ydgjgni7877p4i"; | ||
183 | }; | ||
184 | }; | ||
185 | }; | ||
186 | "nikic/php-parser" = { | ||
187 | targetDir = ""; | ||
188 | src = composerEnv.buildZipPackage { | ||
189 | name = "nikic-php-parser-9a9981c347c5c49d6dfe5cf826bb882b824080dc"; | ||
190 | src = fetchurl { | ||
191 | url = https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc; | ||
192 | sha256 = "1qk8g51sxh8vm9b2w98383045ig20g71p67izw7vrsazqljmxxyb"; | ||
193 | }; | ||
194 | }; | ||
195 | }; | ||
196 | "philo/laravel-blade" = { | ||
197 | targetDir = ""; | ||
198 | src = composerEnv.buildZipPackage { | ||
199 | name = "philo-laravel-blade-3f0ce2ee198604c53c25188110e6d7b5e887527a"; | ||
200 | src = fetchurl { | ||
201 | url = https://api.github.com/repos/PhiloNL/Laravel-Blade/zipball/3f0ce2ee198604c53c25188110e6d7b5e887527a; | ||
202 | sha256 = "03gpyga86qlc9770vsvymh3qbj22sy52k0f3r4lwgy0h2sbd3664"; | ||
203 | }; | ||
204 | }; | ||
205 | }; | ||
206 | "php-di/invoker" = { | ||
207 | targetDir = ""; | ||
208 | src = composerEnv.buildZipPackage { | ||
209 | name = "php-di-invoker-540c27c86f663e20fe39a24cd72fa76cdb21d41a"; | ||
210 | src = fetchurl { | ||
211 | url = https://api.github.com/repos/PHP-DI/Invoker/zipball/540c27c86f663e20fe39a24cd72fa76cdb21d41a; | ||
212 | sha256 = "0gchfy3ail4bps0hdwjj9ncgq354kfdk32y4wcrm61vnl71j59v6"; | ||
213 | }; | ||
214 | }; | ||
215 | }; | ||
216 | "php-di/php-di" = { | ||
217 | targetDir = ""; | ||
218 | src = composerEnv.buildZipPackage { | ||
219 | name = "php-di-php-di-9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620"; | ||
220 | src = fetchurl { | ||
221 | url = https://api.github.com/repos/PHP-DI/PHP-DI/zipball/9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620; | ||
222 | sha256 = "0ykzw0kx9f3f0qjqlvzmdds1cfnn7g5m3kns2k4p13gdrjn1pdnx"; | ||
223 | }; | ||
224 | }; | ||
225 | }; | ||
226 | "php-di/phpdoc-reader" = { | ||
227 | targetDir = ""; | ||
228 | src = composerEnv.buildZipPackage { | ||
229 | name = "php-di-phpdoc-reader-15678f7451c020226807f520efb867ad26fbbfcf"; | ||
230 | src = fetchurl { | ||
231 | url = https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/15678f7451c020226807f520efb867ad26fbbfcf; | ||
232 | sha256 = "09yi52spm0a7ccl40smnkw23wg3xj1r06nqxcslbya2axw9ziyh9"; | ||
233 | }; | ||
234 | }; | ||
235 | }; | ||
236 | "psr/container" = { | ||
237 | targetDir = ""; | ||
238 | src = composerEnv.buildZipPackage { | ||
239 | name = "psr-container-b7ce3b176482dbbc1245ebf52b181af44c2cf55f"; | ||
240 | src = fetchurl { | ||
241 | url = https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f; | ||
242 | sha256 = "0rkz64vgwb0gfi09klvgay4qnw993l1dc03vyip7d7m2zxi6cy4j"; | ||
243 | }; | ||
244 | }; | ||
245 | }; | ||
246 | "psr/http-factory" = { | ||
247 | targetDir = ""; | ||
248 | src = composerEnv.buildZipPackage { | ||
249 | name = "psr-http-factory-12ac7fcd07e5b077433f5f2bee95b3a771bf61be"; | ||
250 | src = fetchurl { | ||
251 | url = https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be; | ||
252 | sha256 = "0inbnqpc5bfhbbda9dwazsrw9xscfnc8rdx82q1qm3r446mc1vds"; | ||
253 | }; | ||
254 | }; | ||
255 | }; | ||
256 | "psr/http-message" = { | ||
257 | targetDir = ""; | ||
258 | src = composerEnv.buildZipPackage { | ||
259 | name = "psr-http-message-f6561bf28d520154e4b0ec72be95418abe6d9363"; | ||
260 | src = fetchurl { | ||
261 | url = https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363; | ||
262 | sha256 = "195dd67hva9bmr52iadr4kyp2gw2f5l51lplfiay2pv6l9y4cf45"; | ||
263 | }; | ||
264 | }; | ||
265 | }; | ||
266 | "psr/http-server-handler" = { | ||
267 | targetDir = ""; | ||
268 | src = composerEnv.buildZipPackage { | ||
269 | name = "psr-http-server-handler-aff2f80e33b7f026ec96bb42f63242dc50ffcae7"; | ||
270 | src = fetchurl { | ||
271 | url = https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7; | ||
272 | sha256 = "0sfz1j9lxirsld0zm0bqqmxf52krjn982w3fq9n27q7mpjd33y4x"; | ||
273 | }; | ||
274 | }; | ||
275 | }; | ||
276 | "psr/http-server-middleware" = { | ||
277 | targetDir = ""; | ||
278 | src = composerEnv.buildZipPackage { | ||
279 | name = "psr-http-server-middleware-2296f45510945530b9dceb8bcedb5cb84d40c5f5"; | ||
280 | src = fetchurl { | ||
281 | url = https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5; | ||
282 | sha256 = "1r92xj2hybnxcnamxqklk5kivkgy0bi34hhsh00dnwn9wmf3s0gj"; | ||
283 | }; | ||
284 | }; | ||
285 | }; | ||
286 | "psr/log" = { | ||
287 | targetDir = ""; | ||
288 | src = composerEnv.buildZipPackage { | ||
289 | name = "psr-log-446d54b4cb6bf489fc9d75f55843658e6f25d801"; | ||
290 | src = fetchurl { | ||
291 | url = https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801; | ||
292 | sha256 = "04baykaig5nmxsrwmzmcwbs60ixilcx1n0r9wdcnvxnnj64cf2kr"; | ||
293 | }; | ||
294 | }; | ||
295 | }; | ||
296 | "psr/simple-cache" = { | ||
297 | targetDir = ""; | ||
298 | src = composerEnv.buildZipPackage { | ||
299 | name = "psr-simple-cache-408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"; | ||
300 | src = fetchurl { | ||
301 | url = https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b; | ||
302 | sha256 = "1djgzclkamjxi9jy4m9ggfzgq1vqxaga2ip7l3cj88p7rwkzjxgw"; | ||
303 | }; | ||
304 | }; | ||
305 | }; | ||
306 | "ralouphie/getallheaders" = { | ||
307 | targetDir = ""; | ||
308 | src = composerEnv.buildZipPackage { | ||
309 | name = "ralouphie-getallheaders-120b605dfeb996808c31b6477290a714d356e822"; | ||
310 | src = fetchurl { | ||
311 | url = https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822; | ||
312 | sha256 = "1bv7ndkkankrqlr2b4kw7qp3fl0dxi6bp26bnim6dnlhavd6a0gg"; | ||
313 | }; | ||
314 | }; | ||
315 | }; | ||
316 | "rubellum/slim-blade-view" = { | ||
317 | targetDir = ""; | ||
318 | src = composerEnv.buildZipPackage { | ||
319 | name = "rubellum-slim-blade-view-9cdea69285acbf712463b38a9bb0b5ce23c4c98c"; | ||
320 | src = fetchurl { | ||
321 | url = https://api.github.com/repos/rubellum/Slim-Blade-View/zipball/9cdea69285acbf712463b38a9bb0b5ce23c4c98c; | ||
322 | sha256 = "1774l8hiy7q9xjpfpps60xiphnlghna9qz9cszw9iqbkz90dl405"; | ||
323 | }; | ||
324 | }; | ||
325 | }; | ||
326 | "slim/http" = { | ||
327 | targetDir = ""; | ||
328 | src = composerEnv.buildZipPackage { | ||
329 | name = "slim-http-c2e67ac1680207aa7863fd4721530b01f3436b2e"; | ||
330 | src = fetchurl { | ||
331 | url = https://api.github.com/repos/slimphp/Slim-Http/zipball/c2e67ac1680207aa7863fd4721530b01f3436b2e; | ||
332 | sha256 = "1sp48gapv19kal2i2j1w335qk171h254ihy3ivp7js9b1ybyy4rz"; | ||
333 | }; | ||
334 | }; | ||
335 | }; | ||
336 | "slim/psr7" = { | ||
337 | targetDir = ""; | ||
338 | src = composerEnv.buildZipPackage { | ||
339 | name = "slim-psr7-7ca5b5d96687b7c563238715cc80b12675d8b895"; | ||
340 | src = fetchurl { | ||
341 | url = https://api.github.com/repos/slimphp/Slim-Psr7/zipball/7ca5b5d96687b7c563238715cc80b12675d8b895; | ||
342 | sha256 = "1r2krm85li2zkdh4w4kii5cpwpca169i0i66pylzyjbz6rg32zsf"; | ||
343 | }; | ||
344 | }; | ||
345 | }; | ||
346 | "slim/slim" = { | ||
347 | targetDir = ""; | ||
348 | src = composerEnv.buildZipPackage { | ||
349 | name = "slim-slim-207acac048652a35d4762a737d59e317aedc02df"; | ||
350 | src = fetchurl { | ||
351 | url = https://api.github.com/repos/slimphp/Slim/zipball/207acac048652a35d4762a737d59e317aedc02df; | ||
352 | sha256 = "0q7rxrmyilz0i90nkwbf64j5a892ky35l1f9a6l09xyrda1hbhdc"; | ||
353 | }; | ||
354 | }; | ||
355 | }; | ||
356 | "symfony/debug" = { | ||
357 | targetDir = ""; | ||
358 | src = composerEnv.buildZipPackage { | ||
359 | name = "symfony-debug-a980d87a659648980d89193fd8b7a7ca89d97d21"; | ||
360 | src = fetchurl { | ||
361 | url = https://api.github.com/repos/symfony/debug/zipball/a980d87a659648980d89193fd8b7a7ca89d97d21; | ||
362 | sha256 = "1qlmb4pvrapyhcxz4lk0jswhk1ki0634k3vgn2vs6vsf70fd4sqd"; | ||
363 | }; | ||
364 | }; | ||
365 | }; | ||
366 | "symfony/finder" = { | ||
367 | targetDir = ""; | ||
368 | src = composerEnv.buildZipPackage { | ||
369 | name = "symfony-finder-ea69c129aed9fdeca781d4b77eb20b62cf5d5357"; | ||
370 | src = fetchurl { | ||
371 | url = https://api.github.com/repos/symfony/finder/zipball/ea69c129aed9fdeca781d4b77eb20b62cf5d5357; | ||
372 | sha256 = "1k57fzn92pxvbcvvb9z2j7iibi2y4pg1gn8fcqrn678hdnpg9vl7"; | ||
373 | }; | ||
374 | }; | ||
375 | }; | ||
376 | "symfony/polyfill-mbstring" = { | ||
377 | targetDir = ""; | ||
378 | src = composerEnv.buildZipPackage { | ||
379 | name = "symfony-polyfill-mbstring-34094cfa9abe1f0f14f48f490772db7a775559f2"; | ||
380 | src = fetchurl { | ||
381 | url = https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2; | ||
382 | sha256 = "1lnrmk1yrv9cbs7kb2cwfgqzq1hwl135bhbkr6yyayfk67zs3rqa"; | ||
383 | }; | ||
384 | }; | ||
385 | }; | ||
386 | "symfony/polyfill-php56" = { | ||
387 | targetDir = ""; | ||
388 | src = composerEnv.buildZipPackage { | ||
389 | name = "symfony-polyfill-php56-16ec91cb06998b609501b55b7177b7d7c02badb3"; | ||
390 | src = fetchurl { | ||
391 | url = https://api.github.com/repos/symfony/polyfill-php56/zipball/16ec91cb06998b609501b55b7177b7d7c02badb3; | ||
392 | sha256 = "0j0fi8lwqncvvwm132c88d87csx2cyblxvj7bcrdivjvkv1ymqky"; | ||
393 | }; | ||
394 | }; | ||
395 | }; | ||
396 | "symfony/polyfill-util" = { | ||
397 | targetDir = ""; | ||
398 | src = composerEnv.buildZipPackage { | ||
399 | name = "symfony-polyfill-util-ba3cfcea6d0192cae46c62041f61cbb704b526d3"; | ||
400 | src = fetchurl { | ||
401 | url = https://api.github.com/repos/symfony/polyfill-util/zipball/ba3cfcea6d0192cae46c62041f61cbb704b526d3; | ||
402 | sha256 = "0q18h0920jp3js9lnvzw7gnyi1nsi8035ddzz8nh7wvl6frwr703"; | ||
403 | }; | ||
404 | }; | ||
405 | }; | ||
406 | "symfony/translation" = { | ||
407 | targetDir = ""; | ||
408 | src = composerEnv.buildZipPackage { | ||
409 | name = "symfony-translation-e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b"; | ||
410 | src = fetchurl { | ||
411 | url = https://api.github.com/repos/symfony/translation/zipball/e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b; | ||
412 | sha256 = "1r83h9061pgakkgqxqn4j65bimgbx854pipangb15cg1ssgc83dl"; | ||
413 | }; | ||
414 | }; | ||
415 | }; | ||
416 | "symfony/translation-contracts" = { | ||
417 | targetDir = ""; | ||
418 | src = composerEnv.buildZipPackage { | ||
419 | name = "symfony-translation-contracts-8cc682ac458d75557203b2f2f14b0b92e1c744ed"; | ||
420 | src = fetchurl { | ||
421 | url = https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed; | ||
422 | sha256 = "10ra2n1qgzkb31sbn0cv1y425i80qk9v59yhh7x2ipjxw1lpv714"; | ||
423 | }; | ||
424 | }; | ||
425 | }; | ||
426 | "tuupola/callable-handler" = { | ||
427 | targetDir = ""; | ||
428 | src = composerEnv.buildZipPackage { | ||
429 | name = "tuupola-callable-handler-8b9d87f88056d4234af317d65612d7b6307a747a"; | ||
430 | src = fetchurl { | ||
431 | url = https://api.github.com/repos/tuupola/callable-handler/zipball/8b9d87f88056d4234af317d65612d7b6307a747a; | ||
432 | sha256 = "0ahp4yvyr31spvwd00fk991cnsdzgbw6kgvfqf89b4nb49adjwza"; | ||
433 | }; | ||
434 | }; | ||
435 | }; | ||
436 | "tuupola/cors-middleware" = { | ||
437 | targetDir = ""; | ||
438 | src = composerEnv.buildZipPackage { | ||
439 | name = "tuupola-cors-middleware-a043f4f52b902ee8902f95d28aae05013a7180fc"; | ||
440 | src = fetchurl { | ||
441 | url = https://api.github.com/repos/tuupola/cors-middleware/zipball/a043f4f52b902ee8902f95d28aae05013a7180fc; | ||
442 | sha256 = "0zw4xg4c165x0xkdqyxqw9q2ic2d8y235kk3mwijdxhv6f9f2m3g"; | ||
443 | }; | ||
444 | }; | ||
445 | }; | ||
446 | "tuupola/http-factory" = { | ||
447 | targetDir = ""; | ||
448 | src = composerEnv.buildZipPackage { | ||
449 | name = "tuupola-http-factory-5fbde4c65a10d09a85652684a6e569542265a749"; | ||
450 | src = fetchurl { | ||
451 | url = https://api.github.com/repos/tuupola/http-factory/zipball/5fbde4c65a10d09a85652684a6e569542265a749; | ||
452 | sha256 = "0r0skw1ywy17l1km6jrx46gd981i685y3rb45v0rrlgpljnm8i1n"; | ||
453 | }; | ||
454 | }; | ||
455 | }; | ||
456 | }; | ||
457 | } | ||
diff --git a/pkgs/webapps/grocy/yarn-packages.nix b/pkgs/webapps/grocy/yarn-packages.nix deleted file mode 100644 index 073fb5a..0000000 --- a/pkgs/webapps/grocy/yarn-packages.nix +++ /dev/null | |||
@@ -1,1085 +0,0 @@ | |||
1 | {fetchurl, linkFarm}: rec { | ||
2 | offline_cache = linkFarm "offline" packages; | ||
3 | packages = [ | ||
4 | |||
5 | { | ||
6 | name = "https___github.com_berrnd_bootstrap_combobox_archive_fcf0110146f4daab94888234c57d198b4ca5f129.tar.gz"; | ||
7 | path = fetchurl { | ||
8 | name = "https___github.com_berrnd_bootstrap_combobox_archive_fcf0110146f4daab94888234c57d198b4ca5f129.tar.g"; | ||
9 | url = "https://github.com/berrnd/bootstrap-combobox/archive/fcf0110146f4daab94888234c57d198b4ca5f129.tar.gz"; | ||
10 | sha1 = "0nvnkr1w9nnn7r2h63zmkjpphawwmfca"; | ||
11 | }; | ||
12 | } | ||
13 | |||
14 | { | ||
15 | name = "_fortawesome_fontawesome_free___fontawesome_free_5.12.1.tgz"; | ||
16 | path = fetchurl { | ||
17 | name = "_fortawesome_fontawesome_free___fontawesome_free_5.12.1.tgz"; | ||
18 | url = "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.12.1.tgz"; | ||
19 | sha1 = "2a98fea9fbb8a606ddc79a4680034e9d5591c550"; | ||
20 | }; | ||
21 | } | ||
22 | |||
23 | { | ||
24 | name = "https___github.com_max_favilli_tagmanager_archive_b43646ef2f2373facaf21c7acc5e3eea61188d76.tar.gz"; | ||
25 | path = fetchurl { | ||
26 | name = "https___github.com_max_favilli_tagmanager_archive_b43646ef2f2373facaf21c7acc5e3eea61188d76.tar.gz"; | ||
27 | url = "https://github.com/max-favilli/tagmanager/archive/b43646ef2f2373facaf21c7acc5e3eea61188d76.tar.gz"; | ||
28 | sha1 = "1p7d96k4gnn2jm0fj15y9f62a1z9cn7p"; | ||
29 | }; | ||
30 | } | ||
31 | |||
32 | { | ||
33 | name = "ajv___ajv_6.11.0.tgz"; | ||
34 | path = fetchurl { | ||
35 | name = "ajv___ajv_6.11.0.tgz"; | ||
36 | url = "https://registry.yarnpkg.com/ajv/-/ajv-6.11.0.tgz"; | ||
37 | sha1 = "c3607cbc8ae392d8a5a536f25b21f8e5f3f87fe9"; | ||
38 | }; | ||
39 | } | ||
40 | |||
41 | { | ||
42 | name = "animate.css___animate.css_3.7.2.tgz"; | ||
43 | path = fetchurl { | ||
44 | name = "animate.css___animate.css_3.7.2.tgz"; | ||
45 | url = "https://registry.yarnpkg.com/animate.css/-/animate.css-3.7.2.tgz"; | ||
46 | sha1 = "e73e0d50e92cb1cfef1597d9b38a9481020e08ea"; | ||
47 | }; | ||
48 | } | ||
49 | |||
50 | { | ||
51 | name = "asn1___asn1_0.2.4.tgz"; | ||
52 | path = fetchurl { | ||
53 | name = "asn1___asn1_0.2.4.tgz"; | ||
54 | url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; | ||
55 | sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; | ||
56 | }; | ||
57 | } | ||
58 | |||
59 | { | ||
60 | name = "assert_plus___assert_plus_1.0.0.tgz"; | ||
61 | path = fetchurl { | ||
62 | name = "assert_plus___assert_plus_1.0.0.tgz"; | ||
63 | url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; | ||
64 | sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; | ||
65 | }; | ||
66 | } | ||
67 | |||
68 | { | ||
69 | name = "asynckit___asynckit_0.4.0.tgz"; | ||
70 | path = fetchurl { | ||
71 | name = "asynckit___asynckit_0.4.0.tgz"; | ||
72 | url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; | ||
73 | sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; | ||
74 | }; | ||
75 | } | ||
76 | |||
77 | { | ||
78 | name = "aws_sign2___aws_sign2_0.7.0.tgz"; | ||
79 | path = fetchurl { | ||
80 | name = "aws_sign2___aws_sign2_0.7.0.tgz"; | ||
81 | url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz"; | ||
82 | sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; | ||
83 | }; | ||
84 | } | ||
85 | |||
86 | { | ||
87 | name = "aws4___aws4_1.9.1.tgz"; | ||
88 | path = fetchurl { | ||
89 | name = "aws4___aws4_1.9.1.tgz"; | ||
90 | url = "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz"; | ||
91 | sha1 = "7e33d8f7d449b3f673cd72deb9abdc552dbe528e"; | ||
92 | }; | ||
93 | } | ||
94 | |||
95 | { | ||
96 | name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; | ||
97 | path = fetchurl { | ||
98 | name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; | ||
99 | url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; | ||
100 | sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; | ||
101 | }; | ||
102 | } | ||
103 | |||
104 | { | ||
105 | name = "bootbox___bootbox_5.4.0.tgz"; | ||
106 | path = fetchurl { | ||
107 | name = "bootbox___bootbox_5.4.0.tgz"; | ||
108 | url = "https://registry.yarnpkg.com/bootbox/-/bootbox-5.4.0.tgz"; | ||
109 | sha1 = "2857a63c270b1b797d62e4c5597e74b497267655"; | ||
110 | }; | ||
111 | } | ||
112 | |||
113 | { | ||
114 | name = "bootstrap_select___bootstrap_select_1.13.12.tgz"; | ||
115 | path = fetchurl { | ||
116 | name = "bootstrap_select___bootstrap_select_1.13.12.tgz"; | ||
117 | url = "https://registry.yarnpkg.com/bootstrap-select/-/bootstrap-select-1.13.12.tgz"; | ||
118 | sha1 = "81b9f1394cb8d7151aea16fb9030c112330dbf98"; | ||
119 | }; | ||
120 | } | ||
121 | |||
122 | { | ||
123 | name = "bootstrap___bootstrap_4.0.0.tgz"; | ||
124 | path = fetchurl { | ||
125 | name = "bootstrap___bootstrap_4.0.0.tgz"; | ||
126 | url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.0.0.tgz"; | ||
127 | sha1 = "ceb03842c145fcc1b9b4e15da2a05656ba68469a"; | ||
128 | }; | ||
129 | } | ||
130 | |||
131 | { | ||
132 | name = "bootstrap___bootstrap_4.4.1.tgz"; | ||
133 | path = fetchurl { | ||
134 | name = "bootstrap___bootstrap_4.4.1.tgz"; | ||
135 | url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.4.1.tgz"; | ||
136 | sha1 = "8582960eea0c5cd2bede84d8b0baf3789c3e8b01"; | ||
137 | }; | ||
138 | } | ||
139 | |||
140 | { | ||
141 | name = "caseless___caseless_0.12.0.tgz"; | ||
142 | path = fetchurl { | ||
143 | name = "caseless___caseless_0.12.0.tgz"; | ||
144 | url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; | ||
145 | sha1 = "1b681c21ff84033c826543090689420d187151dc"; | ||
146 | }; | ||
147 | } | ||
148 | |||
149 | { | ||
150 | name = "chart.js___chart.js_2.7.1.tgz"; | ||
151 | path = fetchurl { | ||
152 | name = "chart.js___chart.js_2.7.1.tgz"; | ||
153 | url = "https://registry.yarnpkg.com/chart.js/-/chart.js-2.7.1.tgz"; | ||
154 | sha1 = "ae90b4aa4ff1f02decd6b1a2a8dabfd73c9f9886"; | ||
155 | }; | ||
156 | } | ||
157 | |||
158 | { | ||
159 | name = "chart.js___chart.js_2.9.3.tgz"; | ||
160 | path = fetchurl { | ||
161 | name = "chart.js___chart.js_2.9.3.tgz"; | ||
162 | url = "https://registry.yarnpkg.com/chart.js/-/chart.js-2.9.3.tgz"; | ||
163 | sha1 = "ae3884114dafd381bc600f5b35a189138aac1ef7"; | ||
164 | }; | ||
165 | } | ||
166 | |||
167 | { | ||
168 | name = "chartjs_color_string___chartjs_color_string_0.5.0.tgz"; | ||
169 | path = fetchurl { | ||
170 | name = "chartjs_color_string___chartjs_color_string_0.5.0.tgz"; | ||
171 | url = "https://registry.yarnpkg.com/chartjs-color-string/-/chartjs-color-string-0.5.0.tgz"; | ||
172 | sha1 = "8d3752d8581d86687c35bfe2cb80ac5213ceb8c1"; | ||
173 | }; | ||
174 | } | ||
175 | |||
176 | { | ||
177 | name = "chartjs_color_string___chartjs_color_string_0.6.0.tgz"; | ||
178 | path = fetchurl { | ||
179 | name = "chartjs_color_string___chartjs_color_string_0.6.0.tgz"; | ||
180 | url = "https://registry.yarnpkg.com/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz"; | ||
181 | sha1 = "1df096621c0e70720a64f4135ea171d051402f71"; | ||
182 | }; | ||
183 | } | ||
184 | |||
185 | { | ||
186 | name = "chartjs_color___chartjs_color_2.4.1.tgz"; | ||
187 | path = fetchurl { | ||
188 | name = "chartjs_color___chartjs_color_2.4.1.tgz"; | ||
189 | url = "https://registry.yarnpkg.com/chartjs-color/-/chartjs-color-2.4.1.tgz"; | ||
190 | sha1 = "6118bba202fe1ea79dd7f7c0f9da93467296c3b0"; | ||
191 | }; | ||
192 | } | ||
193 | |||
194 | { | ||
195 | name = "chartjs_color___chartjs_color_2.2.0.tgz"; | ||
196 | path = fetchurl { | ||
197 | name = "chartjs_color___chartjs_color_2.2.0.tgz"; | ||
198 | url = "https://registry.yarnpkg.com/chartjs-color/-/chartjs-color-2.2.0.tgz"; | ||
199 | sha1 = "84a2fb755787ed85c39dd6dd8c7b1d88429baeae"; | ||
200 | }; | ||
201 | } | ||
202 | |||
203 | { | ||
204 | name = "color_convert___color_convert_0.5.3.tgz"; | ||
205 | path = fetchurl { | ||
206 | name = "color_convert___color_convert_0.5.3.tgz"; | ||
207 | url = "https://registry.yarnpkg.com/color-convert/-/color-convert-0.5.3.tgz"; | ||
208 | sha1 = "bdb6c69ce660fadffe0b0007cc447e1b9f7282bd"; | ||
209 | }; | ||
210 | } | ||
211 | |||
212 | { | ||
213 | name = "color_convert___color_convert_1.9.3.tgz"; | ||
214 | path = fetchurl { | ||
215 | name = "color_convert___color_convert_1.9.3.tgz"; | ||
216 | url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; | ||
217 | sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; | ||
218 | }; | ||
219 | } | ||
220 | |||
221 | { | ||
222 | name = "color_name___color_name_1.1.3.tgz"; | ||
223 | path = fetchurl { | ||
224 | name = "color_name___color_name_1.1.3.tgz"; | ||
225 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; | ||
226 | sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; | ||
227 | }; | ||
228 | } | ||
229 | |||
230 | { | ||
231 | name = "color_name___color_name_1.1.4.tgz"; | ||
232 | path = fetchurl { | ||
233 | name = "color_name___color_name_1.1.4.tgz"; | ||
234 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; | ||
235 | sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2"; | ||
236 | }; | ||
237 | } | ||
238 | |||
239 | { | ||
240 | name = "combined_stream___combined_stream_1.0.8.tgz"; | ||
241 | path = fetchurl { | ||
242 | name = "combined_stream___combined_stream_1.0.8.tgz"; | ||
243 | url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz"; | ||
244 | sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f"; | ||
245 | }; | ||
246 | } | ||
247 | |||
248 | { | ||
249 | name = "core_util_is___core_util_is_1.0.2.tgz"; | ||
250 | path = fetchurl { | ||
251 | name = "core_util_is___core_util_is_1.0.2.tgz"; | ||
252 | url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; | ||
253 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; | ||
254 | }; | ||
255 | } | ||
256 | |||
257 | { | ||
258 | name = "cwise_compiler___cwise_compiler_1.1.3.tgz"; | ||
259 | path = fetchurl { | ||
260 | name = "cwise_compiler___cwise_compiler_1.1.3.tgz"; | ||
261 | url = "https://registry.yarnpkg.com/cwise-compiler/-/cwise-compiler-1.1.3.tgz"; | ||
262 | sha1 = "f4d667410e850d3a313a7d2db7b1e505bb034cc5"; | ||
263 | }; | ||
264 | } | ||
265 | |||
266 | { | ||
267 | name = "dashdash___dashdash_1.14.1.tgz"; | ||
268 | path = fetchurl { | ||
269 | name = "dashdash___dashdash_1.14.1.tgz"; | ||
270 | url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz"; | ||
271 | sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; | ||
272 | }; | ||
273 | } | ||
274 | |||
275 | { | ||
276 | name = "data_uri_to_buffer___data_uri_to_buffer_0.0.3.tgz"; | ||
277 | path = fetchurl { | ||
278 | name = "data_uri_to_buffer___data_uri_to_buffer_0.0.3.tgz"; | ||
279 | url = "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz"; | ||
280 | sha1 = "18ae979a6a0ca994b0625853916d2662bbae0b1a"; | ||
281 | }; | ||
282 | } | ||
283 | |||
284 | { | ||
285 | name = "datatables.net_bs4___datatables.net_bs4_1.10.16.tgz"; | ||
286 | path = fetchurl { | ||
287 | name = "datatables.net_bs4___datatables.net_bs4_1.10.16.tgz"; | ||
288 | url = "https://registry.yarnpkg.com/datatables.net-bs4/-/datatables.net-bs4-1.10.16.tgz"; | ||
289 | sha1 = "9eee67cfa8565bd3807a603a188305f7d0e20e32"; | ||
290 | }; | ||
291 | } | ||
292 | |||
293 | { | ||
294 | name = "datatables.net_bs4___datatables.net_bs4_1.10.20.tgz"; | ||
295 | path = fetchurl { | ||
296 | name = "datatables.net_bs4___datatables.net_bs4_1.10.20.tgz"; | ||
297 | url = "https://registry.yarnpkg.com/datatables.net-bs4/-/datatables.net-bs4-1.10.20.tgz"; | ||
298 | sha1 = "beff1c8d3510826c0678eaa055270607c0e53882"; | ||
299 | }; | ||
300 | } | ||
301 | |||
302 | { | ||
303 | name = "datatables.net_colreorder_bs4___datatables.net_colreorder_bs4_1.5.2.tgz"; | ||
304 | path = fetchurl { | ||
305 | name = "datatables.net_colreorder_bs4___datatables.net_colreorder_bs4_1.5.2.tgz"; | ||
306 | url = "https://registry.yarnpkg.com/datatables.net-colreorder-bs4/-/datatables.net-colreorder-bs4-1.5.2.tgz"; | ||
307 | sha1 = "4fe1a9ffe679e7e84f3ccb58c9c4d31ac0d49a1b"; | ||
308 | }; | ||
309 | } | ||
310 | |||
311 | { | ||
312 | name = "datatables.net_colreorder___datatables.net_colreorder_1.5.2.tgz"; | ||
313 | path = fetchurl { | ||
314 | name = "datatables.net_colreorder___datatables.net_colreorder_1.5.2.tgz"; | ||
315 | url = "https://registry.yarnpkg.com/datatables.net-colreorder/-/datatables.net-colreorder-1.5.2.tgz"; | ||
316 | sha1 = "c425cee1f88b3246be0363c67a152be743ca6bce"; | ||
317 | }; | ||
318 | } | ||
319 | |||
320 | { | ||
321 | name = "datatables.net_responsive_bs4___datatables.net_responsive_bs4_2.2.3.tgz"; | ||
322 | path = fetchurl { | ||
323 | name = "datatables.net_responsive_bs4___datatables.net_responsive_bs4_2.2.3.tgz"; | ||
324 | url = "https://registry.yarnpkg.com/datatables.net-responsive-bs4/-/datatables.net-responsive-bs4-2.2.3.tgz"; | ||
325 | sha1 = "639de17c1d31210ebf2b3c25f1c774c13f729e94"; | ||
326 | }; | ||
327 | } | ||
328 | |||
329 | { | ||
330 | name = "datatables.net_responsive___datatables.net_responsive_2.2.3.tgz"; | ||
331 | path = fetchurl { | ||
332 | name = "datatables.net_responsive___datatables.net_responsive_2.2.3.tgz"; | ||
333 | url = "https://registry.yarnpkg.com/datatables.net-responsive/-/datatables.net-responsive-2.2.3.tgz"; | ||
334 | sha1 = "50a2b1b4955b16b32f573a3f00f473b0bfbee913"; | ||
335 | }; | ||
336 | } | ||
337 | |||
338 | { | ||
339 | name = "datatables.net_rowgroup_bs4___datatables.net_rowgroup_bs4_1.1.1.tgz"; | ||
340 | path = fetchurl { | ||
341 | name = "datatables.net_rowgroup_bs4___datatables.net_rowgroup_bs4_1.1.1.tgz"; | ||
342 | url = "https://registry.yarnpkg.com/datatables.net-rowgroup-bs4/-/datatables.net-rowgroup-bs4-1.1.1.tgz"; | ||
343 | sha1 = "57c17e611f8f8ec0aa456fd325bbf466545c230d"; | ||
344 | }; | ||
345 | } | ||
346 | |||
347 | { | ||
348 | name = "datatables.net_rowgroup___datatables.net_rowgroup_1.1.1.tgz"; | ||
349 | path = fetchurl { | ||
350 | name = "datatables.net_rowgroup___datatables.net_rowgroup_1.1.1.tgz"; | ||
351 | url = "https://registry.yarnpkg.com/datatables.net-rowgroup/-/datatables.net-rowgroup-1.1.1.tgz"; | ||
352 | sha1 = "616531e5fb3c8642f6a51fb14801f8aff50cf90e"; | ||
353 | }; | ||
354 | } | ||
355 | |||
356 | { | ||
357 | name = "datatables.net_select_bs4___datatables.net_select_bs4_1.3.1.tgz"; | ||
358 | path = fetchurl { | ||
359 | name = "datatables.net_select_bs4___datatables.net_select_bs4_1.3.1.tgz"; | ||
360 | url = "https://registry.yarnpkg.com/datatables.net-select-bs4/-/datatables.net-select-bs4-1.3.1.tgz"; | ||
361 | sha1 = "1c39c7fd5bfb66b5c8402611c2c64fc47e3cfca4"; | ||
362 | }; | ||
363 | } | ||
364 | |||
365 | { | ||
366 | name = "datatables.net_select___datatables.net_select_1.3.1.tgz"; | ||
367 | path = fetchurl { | ||
368 | name = "datatables.net_select___datatables.net_select_1.3.1.tgz"; | ||
369 | url = "https://registry.yarnpkg.com/datatables.net-select/-/datatables.net-select-1.3.1.tgz"; | ||
370 | sha1 = "ec2c3ad7df2bc9c13c09587d0bfd0ceba52a8bff"; | ||
371 | }; | ||
372 | } | ||
373 | |||
374 | { | ||
375 | name = "datatables.net___datatables.net_1.10.16.tgz"; | ||
376 | path = fetchurl { | ||
377 | name = "datatables.net___datatables.net_1.10.16.tgz"; | ||
378 | url = "https://registry.yarnpkg.com/datatables.net/-/datatables.net-1.10.16.tgz"; | ||
379 | sha1 = "4b052d1082824261b68eed9d22741b711d3d2469"; | ||
380 | }; | ||
381 | } | ||
382 | |||
383 | { | ||
384 | name = "datatables.net___datatables.net_1.10.20.tgz"; | ||
385 | path = fetchurl { | ||
386 | name = "datatables.net___datatables.net_1.10.20.tgz"; | ||
387 | url = "https://registry.yarnpkg.com/datatables.net/-/datatables.net-1.10.20.tgz"; | ||
388 | sha1 = "9d65ecc3c83cbe7baa4fa5a053405c8fe42c1350"; | ||
389 | }; | ||
390 | } | ||
391 | |||
392 | { | ||
393 | name = "delayed_stream___delayed_stream_1.0.0.tgz"; | ||
394 | path = fetchurl { | ||
395 | name = "delayed_stream___delayed_stream_1.0.0.tgz"; | ||
396 | url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; | ||
397 | sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; | ||
398 | }; | ||
399 | } | ||
400 | |||
401 | { | ||
402 | name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; | ||
403 | path = fetchurl { | ||
404 | name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; | ||
405 | url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; | ||
406 | sha1 = "3a83a904e54353287874c564b7549386849a98c9"; | ||
407 | }; | ||
408 | } | ||
409 | |||
410 | { | ||
411 | name = "extend___extend_3.0.2.tgz"; | ||
412 | path = fetchurl { | ||
413 | name = "extend___extend_3.0.2.tgz"; | ||
414 | url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; | ||
415 | sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; | ||
416 | }; | ||
417 | } | ||
418 | |||
419 | { | ||
420 | name = "extsprintf___extsprintf_1.3.0.tgz"; | ||
421 | path = fetchurl { | ||
422 | name = "extsprintf___extsprintf_1.3.0.tgz"; | ||
423 | url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz"; | ||
424 | sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; | ||
425 | }; | ||
426 | } | ||
427 | |||
428 | { | ||
429 | name = "extsprintf___extsprintf_1.4.0.tgz"; | ||
430 | path = fetchurl { | ||
431 | name = "extsprintf___extsprintf_1.4.0.tgz"; | ||
432 | url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz"; | ||
433 | sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f"; | ||
434 | }; | ||
435 | } | ||
436 | |||
437 | { | ||
438 | name = "fast_deep_equal___fast_deep_equal_3.1.1.tgz"; | ||
439 | path = fetchurl { | ||
440 | name = "fast_deep_equal___fast_deep_equal_3.1.1.tgz"; | ||
441 | url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz"; | ||
442 | sha1 = "545145077c501491e33b15ec408c294376e94ae4"; | ||
443 | }; | ||
444 | } | ||
445 | |||
446 | { | ||
447 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; | ||
448 | path = fetchurl { | ||
449 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.1.0.tgz"; | ||
450 | url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"; | ||
451 | sha1 = "874bf69c6f404c2b5d99c481341399fd55892633"; | ||
452 | }; | ||
453 | } | ||
454 | |||
455 | { | ||
456 | name = "font_awesome___font_awesome_4.7.0.tgz"; | ||
457 | path = fetchurl { | ||
458 | name = "font_awesome___font_awesome_4.7.0.tgz"; | ||
459 | url = "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz"; | ||
460 | sha1 = "8fa8cf0411a1a31afd07b06d2902bb9fc815a133"; | ||
461 | }; | ||
462 | } | ||
463 | |||
464 | { | ||
465 | name = "forever_agent___forever_agent_0.6.1.tgz"; | ||
466 | path = fetchurl { | ||
467 | name = "forever_agent___forever_agent_0.6.1.tgz"; | ||
468 | url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz"; | ||
469 | sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; | ||
470 | }; | ||
471 | } | ||
472 | |||
473 | { | ||
474 | name = "form_data___form_data_2.3.3.tgz"; | ||
475 | path = fetchurl { | ||
476 | name = "form_data___form_data_2.3.3.tgz"; | ||
477 | url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz"; | ||
478 | sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6"; | ||
479 | }; | ||
480 | } | ||
481 | |||
482 | { | ||
483 | name = "fullcalendar___fullcalendar_3.10.1.tgz"; | ||
484 | path = fetchurl { | ||
485 | name = "fullcalendar___fullcalendar_3.10.1.tgz"; | ||
486 | url = "https://registry.yarnpkg.com/fullcalendar/-/fullcalendar-3.10.1.tgz"; | ||
487 | sha1 = "cca3f9a2656a7e978a3f3facb7f35934a91185db"; | ||
488 | }; | ||
489 | } | ||
490 | |||
491 | { | ||
492 | name = "get_pixels___get_pixels_3.3.2.tgz"; | ||
493 | path = fetchurl { | ||
494 | name = "get_pixels___get_pixels_3.3.2.tgz"; | ||
495 | url = "https://registry.yarnpkg.com/get-pixels/-/get-pixels-3.3.2.tgz"; | ||
496 | sha1 = "3f62fb8811932c69f262bba07cba72b692b4ff03"; | ||
497 | }; | ||
498 | } | ||
499 | |||
500 | { | ||
501 | name = "getpass___getpass_0.1.7.tgz"; | ||
502 | path = fetchurl { | ||
503 | name = "getpass___getpass_0.1.7.tgz"; | ||
504 | url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz"; | ||
505 | sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; | ||
506 | }; | ||
507 | } | ||
508 | |||
509 | { | ||
510 | name = "gettext_translator___gettext_translator_2.1.0.tgz"; | ||
511 | path = fetchurl { | ||
512 | name = "gettext_translator___gettext_translator_2.1.0.tgz"; | ||
513 | url = "https://registry.yarnpkg.com/gettext-translator/-/gettext-translator-2.1.0.tgz"; | ||
514 | sha1 = "946047649b7df4ef00522787bb78792667e4de2f"; | ||
515 | }; | ||
516 | } | ||
517 | |||
518 | { | ||
519 | name = "gl_mat2___gl_mat2_1.0.1.tgz"; | ||
520 | path = fetchurl { | ||
521 | name = "gl_mat2___gl_mat2_1.0.1.tgz"; | ||
522 | url = "https://registry.yarnpkg.com/gl-mat2/-/gl-mat2-1.0.1.tgz"; | ||
523 | sha1 = "142505730a5c2fe1e9f25d9ece3d0d6cc2710a30"; | ||
524 | }; | ||
525 | } | ||
526 | |||
527 | { | ||
528 | name = "gl_vec2___gl_vec2_1.3.0.tgz"; | ||
529 | path = fetchurl { | ||
530 | name = "gl_vec2___gl_vec2_1.3.0.tgz"; | ||
531 | url = "https://registry.yarnpkg.com/gl-vec2/-/gl-vec2-1.3.0.tgz"; | ||
532 | sha1 = "83d472ed46034de8e09cbc857123fb6c81c51199"; | ||
533 | }; | ||
534 | } | ||
535 | |||
536 | { | ||
537 | name = "gl_vec3___gl_vec3_1.1.3.tgz"; | ||
538 | path = fetchurl { | ||
539 | name = "gl_vec3___gl_vec3_1.1.3.tgz"; | ||
540 | url = "https://registry.yarnpkg.com/gl-vec3/-/gl-vec3-1.1.3.tgz"; | ||
541 | sha1 = "a47c62f918774a06cbed1b65bcd0288ecbb03826"; | ||
542 | }; | ||
543 | } | ||
544 | |||
545 | { | ||
546 | name = "har_schema___har_schema_2.0.0.tgz"; | ||
547 | path = fetchurl { | ||
548 | name = "har_schema___har_schema_2.0.0.tgz"; | ||
549 | url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz"; | ||
550 | sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; | ||
551 | }; | ||
552 | } | ||
553 | |||
554 | { | ||
555 | name = "har_validator___har_validator_5.1.3.tgz"; | ||
556 | path = fetchurl { | ||
557 | name = "har_validator___har_validator_5.1.3.tgz"; | ||
558 | url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz"; | ||
559 | sha1 = "1ef89ebd3e4996557675eed9893110dc350fa080"; | ||
560 | }; | ||
561 | } | ||
562 | |||
563 | { | ||
564 | name = "http_signature___http_signature_1.2.0.tgz"; | ||
565 | path = fetchurl { | ||
566 | name = "http_signature___http_signature_1.2.0.tgz"; | ||
567 | url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz"; | ||
568 | sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; | ||
569 | }; | ||
570 | } | ||
571 | |||
572 | { | ||
573 | name = "iota_array___iota_array_1.0.0.tgz"; | ||
574 | path = fetchurl { | ||
575 | name = "iota_array___iota_array_1.0.0.tgz"; | ||
576 | url = "https://registry.yarnpkg.com/iota-array/-/iota-array-1.0.0.tgz"; | ||
577 | sha1 = "81ef57fe5d05814cd58c2483632a99c30a0e8087"; | ||
578 | }; | ||
579 | } | ||
580 | |||
581 | { | ||
582 | name = "is_buffer___is_buffer_1.1.6.tgz"; | ||
583 | path = fetchurl { | ||
584 | name = "is_buffer___is_buffer_1.1.6.tgz"; | ||
585 | url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; | ||
586 | sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; | ||
587 | }; | ||
588 | } | ||
589 | |||
590 | { | ||
591 | name = "is_typedarray___is_typedarray_1.0.0.tgz"; | ||
592 | path = fetchurl { | ||
593 | name = "is_typedarray___is_typedarray_1.0.0.tgz"; | ||
594 | url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; | ||
595 | sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; | ||
596 | }; | ||
597 | } | ||
598 | |||
599 | { | ||
600 | name = "isstream___isstream_0.1.2.tgz"; | ||
601 | path = fetchurl { | ||
602 | name = "isstream___isstream_0.1.2.tgz"; | ||
603 | url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; | ||
604 | sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; | ||
605 | }; | ||
606 | } | ||
607 | |||
608 | { | ||
609 | name = "jpeg_js___jpeg_js_0.3.6.tgz"; | ||
610 | path = fetchurl { | ||
611 | name = "jpeg_js___jpeg_js_0.3.6.tgz"; | ||
612 | url = "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.3.6.tgz"; | ||
613 | sha1 = "c40382aac9506e7d1f2d856eb02f6c7b2a98b37c"; | ||
614 | }; | ||
615 | } | ||
616 | |||
617 | { | ||
618 | name = "jquery_lazy___jquery_lazy_1.7.10.tgz"; | ||
619 | path = fetchurl { | ||
620 | name = "jquery_lazy___jquery_lazy_1.7.10.tgz"; | ||
621 | url = "https://registry.yarnpkg.com/jquery-lazy/-/jquery-lazy-1.7.10.tgz"; | ||
622 | sha1 = "aa3d43d058bf1ea89284214f4521f6d9a162d051"; | ||
623 | }; | ||
624 | } | ||
625 | |||
626 | { | ||
627 | name = "jquery_serializejson___jquery_serializejson_2.9.0.tgz"; | ||
628 | path = fetchurl { | ||
629 | name = "jquery_serializejson___jquery_serializejson_2.9.0.tgz"; | ||
630 | url = "https://registry.yarnpkg.com/jquery-serializejson/-/jquery-serializejson-2.9.0.tgz"; | ||
631 | sha1 = "03e3764e3a4b42c1c5aae9f93d7f19320c5f35a6"; | ||
632 | }; | ||
633 | } | ||
634 | |||
635 | { | ||
636 | name = "jquery.easing___jquery.easing_1.4.1.tgz"; | ||
637 | path = fetchurl { | ||
638 | name = "jquery.easing___jquery.easing_1.4.1.tgz"; | ||
639 | url = "https://registry.yarnpkg.com/jquery.easing/-/jquery.easing-1.4.1.tgz"; | ||
640 | sha1 = "47982c5836bd758fd48494923c4a101ef6e93e3b"; | ||
641 | }; | ||
642 | } | ||
643 | |||
644 | { | ||
645 | name = "jquery___jquery_1.12.4.tgz"; | ||
646 | path = fetchurl { | ||
647 | name = "jquery___jquery_1.12.4.tgz"; | ||
648 | url = "https://registry.yarnpkg.com/jquery/-/jquery-1.12.4.tgz"; | ||
649 | sha1 = "01e1dfba290fe73deba77ceeacb0f9ba2fec9e0c"; | ||
650 | }; | ||
651 | } | ||
652 | |||
653 | { | ||
654 | name = "jquery___jquery_3.3.1.tgz"; | ||
655 | path = fetchurl { | ||
656 | name = "jquery___jquery_3.3.1.tgz"; | ||
657 | url = "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz"; | ||
658 | sha1 = "958ce29e81c9790f31be7792df5d4d95fc57fbca"; | ||
659 | }; | ||
660 | } | ||
661 | |||
662 | { | ||
663 | name = "jquery___jquery_3.4.1.tgz"; | ||
664 | path = fetchurl { | ||
665 | name = "jquery___jquery_3.4.1.tgz"; | ||
666 | url = "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz"; | ||
667 | sha1 = "714f1f8d9dde4bdfa55764ba37ef214630d80ef2"; | ||
668 | }; | ||
669 | } | ||
670 | |||
671 | { | ||
672 | name = "jsbn___jsbn_0.1.1.tgz"; | ||
673 | path = fetchurl { | ||
674 | name = "jsbn___jsbn_0.1.1.tgz"; | ||
675 | url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz"; | ||
676 | sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; | ||
677 | }; | ||
678 | } | ||
679 | |||
680 | { | ||
681 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; | ||
682 | path = fetchurl { | ||
683 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; | ||
684 | url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; | ||
685 | sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; | ||
686 | }; | ||
687 | } | ||
688 | |||
689 | { | ||
690 | name = "json_schema___json_schema_0.2.3.tgz"; | ||
691 | path = fetchurl { | ||
692 | name = "json_schema___json_schema_0.2.3.tgz"; | ||
693 | url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz"; | ||
694 | sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; | ||
695 | }; | ||
696 | } | ||
697 | |||
698 | { | ||
699 | name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; | ||
700 | path = fetchurl { | ||
701 | name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; | ||
702 | url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; | ||
703 | sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; | ||
704 | }; | ||
705 | } | ||
706 | |||
707 | { | ||
708 | name = "jsprim___jsprim_1.4.1.tgz"; | ||
709 | path = fetchurl { | ||
710 | name = "jsprim___jsprim_1.4.1.tgz"; | ||
711 | url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; | ||
712 | sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; | ||
713 | }; | ||
714 | } | ||
715 | |||
716 | { | ||
717 | name = "lodash___lodash_4.17.15.tgz"; | ||
718 | path = fetchurl { | ||
719 | name = "lodash___lodash_4.17.15.tgz"; | ||
720 | url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz"; | ||
721 | sha1 = "b447f6670a0455bbfeedd11392eff330ea097548"; | ||
722 | }; | ||
723 | } | ||
724 | |||
725 | { | ||
726 | name = "mime_db___mime_db_1.43.0.tgz"; | ||
727 | path = fetchurl { | ||
728 | name = "mime_db___mime_db_1.43.0.tgz"; | ||
729 | url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz"; | ||
730 | sha1 = "0a12e0502650e473d735535050e7c8f4eb4fae58"; | ||
731 | }; | ||
732 | } | ||
733 | |||
734 | { | ||
735 | name = "mime_types___mime_types_2.1.26.tgz"; | ||
736 | path = fetchurl { | ||
737 | name = "mime_types___mime_types_2.1.26.tgz"; | ||
738 | url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz"; | ||
739 | sha1 = "9c921fc09b7e149a65dfdc0da4d20997200b0a06"; | ||
740 | }; | ||
741 | } | ||
742 | |||
743 | { | ||
744 | name = "moment_timezone___moment_timezone_0.5.27.tgz"; | ||
745 | path = fetchurl { | ||
746 | name = "moment_timezone___moment_timezone_0.5.27.tgz"; | ||
747 | url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.27.tgz"; | ||
748 | sha1 = "73adec8139b6fe30452e78f210f27b1f346b8877"; | ||
749 | }; | ||
750 | } | ||
751 | |||
752 | { | ||
753 | name = "moment___moment_2.24.0.tgz"; | ||
754 | path = fetchurl { | ||
755 | name = "moment___moment_2.24.0.tgz"; | ||
756 | url = "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz"; | ||
757 | sha1 = "0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"; | ||
758 | }; | ||
759 | } | ||
760 | |||
761 | { | ||
762 | name = "moment___moment_2.18.1.tgz"; | ||
763 | path = fetchurl { | ||
764 | name = "moment___moment_2.18.1.tgz"; | ||
765 | url = "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz"; | ||
766 | sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"; | ||
767 | }; | ||
768 | } | ||
769 | |||
770 | { | ||
771 | name = "ndarray_linear_interpolate___ndarray_linear_interpolate_1.0.0.tgz"; | ||
772 | path = fetchurl { | ||
773 | name = "ndarray_linear_interpolate___ndarray_linear_interpolate_1.0.0.tgz"; | ||
774 | url = "https://registry.yarnpkg.com/ndarray-linear-interpolate/-/ndarray-linear-interpolate-1.0.0.tgz"; | ||
775 | sha1 = "78bc92b85b9abc15b6e67ee65828f9e2137ae72b"; | ||
776 | }; | ||
777 | } | ||
778 | |||
779 | { | ||
780 | name = "ndarray_pack___ndarray_pack_1.2.1.tgz"; | ||
781 | path = fetchurl { | ||
782 | name = "ndarray_pack___ndarray_pack_1.2.1.tgz"; | ||
783 | url = "https://registry.yarnpkg.com/ndarray-pack/-/ndarray-pack-1.2.1.tgz"; | ||
784 | sha1 = "8caebeaaa24d5ecf70ff86020637977da8ee585a"; | ||
785 | }; | ||
786 | } | ||
787 | |||
788 | { | ||
789 | name = "ndarray___ndarray_1.0.19.tgz"; | ||
790 | path = fetchurl { | ||
791 | name = "ndarray___ndarray_1.0.19.tgz"; | ||
792 | url = "https://registry.yarnpkg.com/ndarray/-/ndarray-1.0.19.tgz"; | ||
793 | sha1 = "6785b5f5dfa58b83e31ae5b2a058cfd1ab3f694e"; | ||
794 | }; | ||
795 | } | ||
796 | |||
797 | { | ||
798 | name = "node_bitmap___node_bitmap_0.0.1.tgz"; | ||
799 | path = fetchurl { | ||
800 | name = "node_bitmap___node_bitmap_0.0.1.tgz"; | ||
801 | url = "https://registry.yarnpkg.com/node-bitmap/-/node-bitmap-0.0.1.tgz"; | ||
802 | sha1 = "180eac7003e0c707618ef31368f62f84b2a69091"; | ||
803 | }; | ||
804 | } | ||
805 | |||
806 | { | ||
807 | name = "nosleep.js___nosleep.js_0.9.0.tgz"; | ||
808 | path = fetchurl { | ||
809 | name = "nosleep.js___nosleep.js_0.9.0.tgz"; | ||
810 | url = "https://registry.yarnpkg.com/nosleep.js/-/nosleep.js-0.9.0.tgz"; | ||
811 | sha1 = "0f1371b81dc182e3b6bbdb837e880f16db9d7163"; | ||
812 | }; | ||
813 | } | ||
814 | |||
815 | { | ||
816 | name = "oauth_sign___oauth_sign_0.9.0.tgz"; | ||
817 | path = fetchurl { | ||
818 | name = "oauth_sign___oauth_sign_0.9.0.tgz"; | ||
819 | url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz"; | ||
820 | sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455"; | ||
821 | }; | ||
822 | } | ||
823 | |||
824 | { | ||
825 | name = "omggif___omggif_1.0.10.tgz"; | ||
826 | path = fetchurl { | ||
827 | name = "omggif___omggif_1.0.10.tgz"; | ||
828 | url = "https://registry.yarnpkg.com/omggif/-/omggif-1.0.10.tgz"; | ||
829 | sha1 = "ddaaf90d4a42f532e9e7cb3a95ecdd47f17c7b19"; | ||
830 | }; | ||
831 | } | ||
832 | |||
833 | { | ||
834 | name = "parse_data_uri___parse_data_uri_0.2.0.tgz"; | ||
835 | path = fetchurl { | ||
836 | name = "parse_data_uri___parse_data_uri_0.2.0.tgz"; | ||
837 | url = "https://registry.yarnpkg.com/parse-data-uri/-/parse-data-uri-0.2.0.tgz"; | ||
838 | sha1 = "bf04d851dd5c87b0ab238e5d01ace494b604b4c9"; | ||
839 | }; | ||
840 | } | ||
841 | |||
842 | { | ||
843 | name = "performance_now___performance_now_2.1.0.tgz"; | ||
844 | path = fetchurl { | ||
845 | name = "performance_now___performance_now_2.1.0.tgz"; | ||
846 | url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz"; | ||
847 | sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; | ||
848 | }; | ||
849 | } | ||
850 | |||
851 | { | ||
852 | name = "pngjs___pngjs_3.4.0.tgz"; | ||
853 | path = fetchurl { | ||
854 | name = "pngjs___pngjs_3.4.0.tgz"; | ||
855 | url = "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz"; | ||
856 | sha1 = "99ca7d725965fb655814eaf65f38f12bbdbf555f"; | ||
857 | }; | ||
858 | } | ||
859 | |||
860 | { | ||
861 | name = "popper.js___popper.js_1.16.1.tgz"; | ||
862 | path = fetchurl { | ||
863 | name = "popper.js___popper.js_1.16.1.tgz"; | ||
864 | url = "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz"; | ||
865 | sha1 = "2a223cb3dc7b6213d740e40372be40de43e65b1b"; | ||
866 | }; | ||
867 | } | ||
868 | |||
869 | { | ||
870 | name = "psl___psl_1.7.0.tgz"; | ||
871 | path = fetchurl { | ||
872 | name = "psl___psl_1.7.0.tgz"; | ||
873 | url = "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz"; | ||
874 | sha1 = "f1c4c47a8ef97167dea5d6bbf4816d736e884a3c"; | ||
875 | }; | ||
876 | } | ||
877 | |||
878 | { | ||
879 | name = "punycode___punycode_1.4.1.tgz"; | ||
880 | path = fetchurl { | ||
881 | name = "punycode___punycode_1.4.1.tgz"; | ||
882 | url = "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz"; | ||
883 | sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; | ||
884 | }; | ||
885 | } | ||
886 | |||
887 | { | ||
888 | name = "punycode___punycode_2.1.1.tgz"; | ||
889 | path = fetchurl { | ||
890 | name = "punycode___punycode_2.1.1.tgz"; | ||
891 | url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; | ||
892 | sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; | ||
893 | }; | ||
894 | } | ||
895 | |||
896 | { | ||
897 | name = "qs___qs_6.5.2.tgz"; | ||
898 | path = fetchurl { | ||
899 | name = "qs___qs_6.5.2.tgz"; | ||
900 | url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz"; | ||
901 | sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36"; | ||
902 | }; | ||
903 | } | ||
904 | |||
905 | { | ||
906 | name = "quagga___quagga_0.12.1.tgz"; | ||
907 | path = fetchurl { | ||
908 | name = "quagga___quagga_0.12.1.tgz"; | ||
909 | url = "https://registry.yarnpkg.com/quagga/-/quagga-0.12.1.tgz"; | ||
910 | sha1 = "6f48c56ed992dc5fdeb90dbee7069c2e1cdde8b7"; | ||
911 | }; | ||
912 | } | ||
913 | |||
914 | { | ||
915 | name = "request___request_2.88.0.tgz"; | ||
916 | path = fetchurl { | ||
917 | name = "request___request_2.88.0.tgz"; | ||
918 | url = "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz"; | ||
919 | sha1 = "9c2fca4f7d35b592efe57c7f0a55e81052124fef"; | ||
920 | }; | ||
921 | } | ||
922 | |||
923 | { | ||
924 | name = "safe_buffer___safe_buffer_5.2.0.tgz"; | ||
925 | path = fetchurl { | ||
926 | name = "safe_buffer___safe_buffer_5.2.0.tgz"; | ||
927 | url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz"; | ||
928 | sha1 = "b74daec49b1148f88c64b68d49b1e815c1f2f519"; | ||
929 | }; | ||
930 | } | ||
931 | |||
932 | { | ||
933 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; | ||
934 | path = fetchurl { | ||
935 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; | ||
936 | url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; | ||
937 | sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; | ||
938 | }; | ||
939 | } | ||
940 | |||
941 | { | ||
942 | name = "sprintf_js___sprintf_js_1.1.2.tgz"; | ||
943 | path = fetchurl { | ||
944 | name = "sprintf_js___sprintf_js_1.1.2.tgz"; | ||
945 | url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz"; | ||
946 | sha1 = "da1765262bf8c0f571749f2ad6c26300207ae673"; | ||
947 | }; | ||
948 | } | ||
949 | |||
950 | { | ||
951 | name = "sshpk___sshpk_1.16.1.tgz"; | ||
952 | path = fetchurl { | ||
953 | name = "sshpk___sshpk_1.16.1.tgz"; | ||
954 | url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz"; | ||
955 | sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877"; | ||
956 | }; | ||
957 | } | ||
958 | |||
959 | { | ||
960 | name = "startbootstrap_sb_admin___startbootstrap_sb_admin_4.0.0.tgz"; | ||
961 | path = fetchurl { | ||
962 | name = "startbootstrap_sb_admin___startbootstrap_sb_admin_4.0.0.tgz"; | ||
963 | url = "https://registry.yarnpkg.com/startbootstrap-sb-admin/-/startbootstrap-sb-admin-4.0.0.tgz"; | ||
964 | sha1 = "cf141a260d031b36bdc013c68200a1c1ea6c9881"; | ||
965 | }; | ||
966 | } | ||
967 | |||
968 | { | ||
969 | name = "summernote___summernote_0.8.15.tgz"; | ||
970 | path = fetchurl { | ||
971 | name = "summernote___summernote_0.8.15.tgz"; | ||
972 | url = "https://registry.yarnpkg.com/summernote/-/summernote-0.8.15.tgz"; | ||
973 | sha1 = "f783f23b2c1f85c1609855ad37205595147a3c39"; | ||
974 | }; | ||
975 | } | ||
976 | |||
977 | { | ||
978 | name = "swagger_ui_dist___swagger_ui_dist_3.25.0.tgz"; | ||
979 | path = fetchurl { | ||
980 | name = "swagger_ui_dist___swagger_ui_dist_3.25.0.tgz"; | ||
981 | url = "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-3.25.0.tgz"; | ||
982 | sha1 = "90279cdcc56e591fcfbe7b5240a9d653b989336d"; | ||
983 | }; | ||
984 | } | ||
985 | |||
986 | { | ||
987 | name = "https___github.com_berrnd_tempusdominus_bootstrap_4_archive_2cf725fed9216cb77a298e5ce46762bfe979eaa0.tar.gz"; | ||
988 | path = fetchurl { | ||
989 | name = "https___github.com_berrnd_tempusdominus_bootstrap_4_archive_2cf725fed9216cb77a298e5ce46762bfe979eaa0.tar.gz"; | ||
990 | url = "https://github.com/berrnd/tempusdominus-bootstrap-4/archive/2cf725fed9216cb77a298e5ce46762bfe979eaa0.tar.gz"; | ||
991 | sha1 = "q9z5vwgs4p8ijf7asxxrfyb7rpis3hqm"; | ||
992 | }; | ||
993 | } | ||
994 | |||
995 | { | ||
996 | name = "through___through_2.3.8.tgz"; | ||
997 | path = fetchurl { | ||
998 | name = "through___through_2.3.8.tgz"; | ||
999 | url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; | ||
1000 | sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; | ||
1001 | }; | ||
1002 | } | ||
1003 | |||
1004 | { | ||
1005 | name = "timeago___timeago_1.6.7.tgz"; | ||
1006 | path = fetchurl { | ||
1007 | name = "timeago___timeago_1.6.7.tgz"; | ||
1008 | url = "https://registry.yarnpkg.com/timeago/-/timeago-1.6.7.tgz"; | ||
1009 | sha1 = "afd467c29a911e697fc22a81888c7c3022783cb5"; | ||
1010 | }; | ||
1011 | } | ||
1012 | |||
1013 | { | ||
1014 | name = "toastr___toastr_2.1.4.tgz"; | ||
1015 | path = fetchurl { | ||
1016 | name = "toastr___toastr_2.1.4.tgz"; | ||
1017 | url = "https://registry.yarnpkg.com/toastr/-/toastr-2.1.4.tgz"; | ||
1018 | sha1 = "8b43be64fb9d0c414871446f2db8e8ca4e95f181"; | ||
1019 | }; | ||
1020 | } | ||
1021 | |||
1022 | { | ||
1023 | name = "tough_cookie___tough_cookie_2.4.3.tgz"; | ||
1024 | path = fetchurl { | ||
1025 | name = "tough_cookie___tough_cookie_2.4.3.tgz"; | ||
1026 | url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz"; | ||
1027 | sha1 = "53f36da3f47783b0925afa06ff9f3b165280f781"; | ||
1028 | }; | ||
1029 | } | ||
1030 | |||
1031 | { | ||
1032 | name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; | ||
1033 | path = fetchurl { | ||
1034 | name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; | ||
1035 | url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; | ||
1036 | sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; | ||
1037 | }; | ||
1038 | } | ||
1039 | |||
1040 | { | ||
1041 | name = "tweetnacl___tweetnacl_0.14.5.tgz"; | ||
1042 | path = fetchurl { | ||
1043 | name = "tweetnacl___tweetnacl_0.14.5.tgz"; | ||
1044 | url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz"; | ||
1045 | sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; | ||
1046 | }; | ||
1047 | } | ||
1048 | |||
1049 | { | ||
1050 | name = "uniq___uniq_1.0.1.tgz"; | ||
1051 | path = fetchurl { | ||
1052 | name = "uniq___uniq_1.0.1.tgz"; | ||
1053 | url = "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz"; | ||
1054 | sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff"; | ||
1055 | }; | ||
1056 | } | ||
1057 | |||
1058 | { | ||
1059 | name = "uri_js___uri_js_4.2.2.tgz"; | ||
1060 | path = fetchurl { | ||
1061 | name = "uri_js___uri_js_4.2.2.tgz"; | ||
1062 | url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; | ||
1063 | sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0"; | ||
1064 | }; | ||
1065 | } | ||
1066 | |||
1067 | { | ||
1068 | name = "uuid___uuid_3.4.0.tgz"; | ||
1069 | path = fetchurl { | ||
1070 | name = "uuid___uuid_3.4.0.tgz"; | ||
1071 | url = "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz"; | ||
1072 | sha1 = "b23e4358afa8a202fe7a100af1f5f883f02007ee"; | ||
1073 | }; | ||
1074 | } | ||
1075 | |||
1076 | { | ||
1077 | name = "verror___verror_1.10.0.tgz"; | ||
1078 | path = fetchurl { | ||
1079 | name = "verror___verror_1.10.0.tgz"; | ||
1080 | url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz"; | ||
1081 | sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; | ||
1082 | }; | ||
1083 | } | ||
1084 | ]; | ||
1085 | } | ||
diff --git a/pkgs/webapps/grocy/yarn.patch b/pkgs/webapps/grocy/yarn.patch deleted file mode 100644 index e6f318d..0000000 --- a/pkgs/webapps/grocy/yarn.patch +++ /dev/null | |||
@@ -1,67 +0,0 @@ | |||
1 | diff --git a/package.json b/package.json | ||
2 | index 1afdf44..8acc985 100644 | ||
3 | --- a/package.json | ||
4 | +++ b/package.json | ||
5 | @@ -2,9 +2,9 @@ | ||
6 | "name": "grocy", | ||
7 | "private": true, | ||
8 | "dependencies": { | ||
9 | - "@danielfarrell/bootstrap-combobox": "https://github.com/berrnd/bootstrap-combobox.git#master", | ||
10 | + "@danielfarrell/bootstrap-combobox": "^1.1.8", | ||
11 | "@fortawesome/fontawesome-free": "^5.12.1", | ||
12 | - "TagManager": "https://github.com/max-favilli/tagmanager.git#master", | ||
13 | + "TagManager": "^3.0.1", | ||
14 | "animate.css": "^3.7.2", | ||
15 | "bootbox": "^5.3.2", | ||
16 | "bootstrap": "^4.3.1", | ||
17 | @@ -32,7 +32,7 @@ | ||
18 | "startbootstrap-sb-admin": "4.0.0", | ||
19 | "summernote": "^0.8.12", | ||
20 | "swagger-ui-dist": "^3.23.10", | ||
21 | - "tempusdominus-bootstrap-4": "https://github.com/berrnd/tempusdominus-bootstrap-4.git#master", | ||
22 | + "tempusdominus-bootstrap-4": "^5.1.2", | ||
23 | "timeago": "^1.6.7", | ||
24 | "toastr": "^2.1.4" | ||
25 | } | ||
26 | diff --git a/yarn.lock b/yarn.lock | ||
27 | index dfb3108..7f8d761 100644 | ||
28 | --- a/yarn.lock | ||
29 | +++ b/yarn.lock | ||
30 | @@ -2,18 +2,20 @@ | ||
31 | # yarn lockfile v1 | ||
32 | |||
33 | |||
34 | -"@danielfarrell/bootstrap-combobox@https://github.com/berrnd/bootstrap-combobox.git#master": | ||
35 | +"@danielfarrell/bootstrap-combobox@^1.1.8": | ||
36 | version "1.1.8" | ||
37 | - resolved "https://github.com/berrnd/bootstrap-combobox.git#fcf0110146f4daab94888234c57d198b4ca5f129" | ||
38 | + resolved "https://github.com/berrnd/bootstrap-combobox/archive/fcf0110146f4daab94888234c57d198b4ca5f129.tar.gz#dummy" | ||
39 | + integrity sha512-svyqYhH2HYrgJtPhyGF/dydpERR9UIdKo7WUGcXbSnEqwSUQjcCh8ILhn+Ze0eqKf/zQCejrDrWl/578t9rz3Q== | ||
40 | |||
41 | "@fortawesome/fontawesome-free@^5.12.1": | ||
42 | version "5.12.1" | ||
43 | resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.12.1.tgz#2a98fea9fbb8a606ddc79a4680034e9d5591c550" | ||
44 | integrity sha512-ZtjIIFplxncqxvogq148C3hBLQE+W3iJ8E4UvJ09zIJUgzwLcROsWwFDErVSXY2Plzao5J9KUYNHKHMEUYDMKw== | ||
45 | |||
46 | -"TagManager@https://github.com/max-favilli/tagmanager.git#master": | ||
47 | +"TagManager@^3.0.1": | ||
48 | version "3.0.1" | ||
49 | - resolved "https://github.com/max-favilli/tagmanager.git#b43646ef2f2373facaf21c7acc5e3eea61188d76" | ||
50 | + resolved "https://github.com/max-favilli/tagmanager/archive/b43646ef2f2373facaf21c7acc5e3eea61188d76.tar.gz#dummy" | ||
51 | + integrity sha512-lisa2KW8z+7kmPT+QAkR2FC2LGE2rCPmQ4Qt8+hF83hoTuqoc3sqpRha14oqYfCjKufXGGCdH3sQG5xdHABkTA== | ||
52 | dependencies: | ||
53 | jquery "1" | ||
54 | |||
55 | @@ -719,9 +721,10 @@ swagger-ui-dist@^3.23.10: | ||
56 | resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-3.25.0.tgz#90279cdcc56e591fcfbe7b5240a9d653b989336d" | ||
57 | integrity sha512-vwvJPPbdooTvDwLGzjIXinOXizDJJ6U1hxnJL3y6U3aL1d2MSXDmKg2139XaLBhsVZdnQJV2bOkX4reB+RXamg== | ||
58 | |||
59 | -"tempusdominus-bootstrap-4@https://github.com/berrnd/tempusdominus-bootstrap-4.git#master": | ||
60 | +"tempusdominus-bootstrap-4@^5.1.2": | ||
61 | version "5.1.2" | ||
62 | - resolved "https://github.com/berrnd/tempusdominus-bootstrap-4.git#2cf725fed9216cb77a298e5ce46762bfe979eaa0" | ||
63 | + resolved "https://github.com/berrnd/tempusdominus-bootstrap-4/archive/2cf725fed9216cb77a298e5ce46762bfe979eaa0.tar.gz#dummy" | ||
64 | + integrity sha512-xYDSn8Gb8GicQHt6Ax9VULKSviPrEm7Fpk5WpSY2qBfX1hQbDiEhBZXcWIlgVBPWQmJoUSPzLpe0B2xbOmjaeg== | ||
65 | dependencies: | ||
66 | bootstrap ">=4.1.2" | ||
67 | jquery "^3.0" | ||
diff --git a/pkgs/webapps/infcloud/default.nix b/pkgs/webapps/infcloud/default.nix deleted file mode 100644 index 45354fa..0000000 --- a/pkgs/webapps/infcloud/default.nix +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | { infcloud_config ? ./infcloud_config.js, stdenv, fetchzip, ed }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "0.13.2rc1"; | ||
4 | name = "InfCloud-${version}"; | ||
5 | src = fetchzip { | ||
6 | url = "https://www.inf-it.com/InfCloud_${version}.zip"; | ||
7 | sha256 = "1qgw6l7ccfkyzcw9dxcjwhxw9q27c0x9w584amc579mmrn9ppz3n"; | ||
8 | }; | ||
9 | buildPhase = '' | ||
10 | patchShebangs . | ||
11 | ./cache_update.sh | ||
12 | rm config.js | ||
13 | ''; | ||
14 | installPhase = '' | ||
15 | cp -a . $out | ||
16 | ln -s ${infcloud_config} $out/config.js | ||
17 | ''; | ||
18 | buildInputs = [ ed ]; | ||
19 | } | ||
diff --git a/pkgs/webapps/infcloud/infcloud_config.js b/pkgs/webapps/infcloud/infcloud_config.js deleted file mode 100644 index ba73860..0000000 --- a/pkgs/webapps/infcloud/infcloud_config.js +++ /dev/null | |||
@@ -1,1446 +0,0 @@ | |||
1 | /* | ||
2 | InfCloud - the open source CalDAV/CardDAV Web Client | ||
3 | Copyright (C) 2011-2015 | ||
4 | Jan Mate <jan.mate@inf-it.com> | ||
5 | Andrej Lezo <andrej.lezo@inf-it.com> | ||
6 | Matej Mihalik <matej.mihalik@inf-it.com> | ||
7 | |||
8 | This program is free software: you can redistribute it and/or modify | ||
9 | it under the terms of the GNU Affero General Public License as | ||
10 | published by the Free Software Foundation, either version 3 of the | ||
11 | License, or (at your option) any later version. | ||
12 | |||
13 | This program is distributed in the hope that it will be useful, | ||
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | GNU Affero General Public License for more details. | ||
17 | |||
18 | You should have received a copy of the GNU Affero General Public License | ||
19 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
20 | */ | ||
21 | |||
22 | |||
23 | // NOTE: see readme.txt before you start to configure this client! | ||
24 | |||
25 | |||
26 | // NOTE: do not forget to execute the cache_update.sh script every time you | ||
27 | // update this configuration file or any other files (otherwise your browser | ||
28 | // will use the previous version of files stored in HTML5 cache). Alternatively | ||
29 | // you can update the cache.manifest manually - edit the second line beginning | ||
30 | // with "#V 20" to anything else (this file simple needs "some" change) | ||
31 | |||
32 | |||
33 | // Supported setup types (use ONE of them): | ||
34 | // a.) globalAccountSettings => username and password is hardcoded | ||
35 | // in config.js, automatic login without the login screen | ||
36 | // - advantages: fast login process = no username/password is required | ||
37 | // - disadvantages: username/password is visible in your config.js, so | ||
38 | // this type of setup is recommended ONLY for intranet/home users | ||
39 | // b.) globalNetworkCheckSettings => standard setup with login screen | ||
40 | // - advantages: username/password is required (no visible | ||
41 | // username/password in config.js) | ||
42 | // - disadvantages: if a user enters wrong username/password then | ||
43 | // the browser will show authentication popup window (it is NOT | ||
44 | // possible to disable it in JavaScript; see the next option) | ||
45 | // c.) globalNetworkAccountSettings => advanced setup with login screen | ||
46 | // - advantages: no authentication popup if you enter wrong username/ | ||
47 | // password, dynamic XML configuration generator (you can generate | ||
48 | // different configurations for your users /by modifying the "auth" | ||
49 | // module configuration or the PHP code itself/) | ||
50 | // - disadvantages: requires PHP >= 5.3 and additional configuration, | ||
51 | // only basic http authentication is supported => always use https! | ||
52 | // | ||
53 | // | ||
54 | // What is a "principal URL"? => Check you server documentation! | ||
55 | // - "principal URL" is NOT "collection URL" | ||
56 | // - this client automatically detects collections for "principal URL" | ||
57 | // - PROPER "principal URL" looks like: | ||
58 | // https://server.com:8443/principals/users/USER/ | ||
59 | // https://server.com:8443/caldav.php/USER/ | ||
60 | // - INVALID principal URL looks like: | ||
61 | // https://server.com:8443/principals/users/USER/collection/ | ||
62 | // => this is a collection URL | ||
63 | // https://server.com:8443/caldav.php/USER/collection/ | ||
64 | // => this is a collection URL | ||
65 | // https://server.com:8443/principals/users/USER | ||
66 | // => missing trailing '/' | ||
67 | // https://server.com:8443/caldav.php/USER | ||
68 | // => missing trailing '/' | ||
69 | // /caldav.php/USER/ | ||
70 | // => relative URL instead of full URL | ||
71 | // | ||
72 | // | ||
73 | // List of properties used in globalAccountSettings, globalNetworkCheckSettings | ||
74 | // and globalNetworkAccountSettings variables (+ in the "auth" module): | ||
75 | // - href | ||
76 | // Depending on the setup type set the value to: | ||
77 | // a.) globalAccountSettings: full "principal URL" | ||
78 | // b.) globalNetworkCheckSettings: "principal URL" WITHOUT the "USER/" part | ||
79 | // c.) globalNetworkAccountSettings: "full URL" to the "auth" directory | ||
80 | // This property is supported in: | ||
81 | // globalAccountSettings | ||
82 | // globalNetworkCheckSettings | ||
83 | // globalNetworkAccountSettings | ||
84 | // - userAuth | ||
85 | // - userName | ||
86 | // Set the username you want to login. | ||
87 | // - userPassword | ||
88 | // Set the password for the given username. | ||
89 | // This property is supported in: | ||
90 | // globalAccountSettings | ||
91 | // - timeOut | ||
92 | // This option sets the timeout for jQuery .ajax call (in miliseconds). | ||
93 | // Example: | ||
94 | // timeOut: 90000 | ||
95 | // This property is supported in: | ||
96 | // globalAccountSettings | ||
97 | // globalNetworkCheckSettings | ||
98 | // globalNetworkAccountSettings | ||
99 | // - lockTimeOut | ||
100 | // NOTE: used only if server supports LOCK requests | ||
101 | // This option sets the LOCK timeout value if resource locking | ||
102 | // is used (in miliseconds). | ||
103 | // Example: | ||
104 | // lockTimeOut: 10000 | ||
105 | // This property is supported in: | ||
106 | // globalAccountSettings | ||
107 | // globalNetworkCheckSettings | ||
108 | // globalNetworkAccountSettings (available in auth module only) | ||
109 | // - checkContentType | ||
110 | // This option enables a content-type checking for server response. | ||
111 | // If enabled then only objects with proper content-type are inserted | ||
112 | // into the interface. | ||
113 | // If you cannot see data in the interface you may try to disable it (useful | ||
114 | // if your server returns wrong value in "propstat/prop/getcontenttype"). | ||
115 | // If undefined then content-type checking is enabled. | ||
116 | // Examples: | ||
117 | // checkContentType: true | ||
118 | // checkContentType: false | ||
119 | // This property is supported in: | ||
120 | // globalAccountSettings | ||
121 | // globalNetworkCheckSettings | ||
122 | // globalNetworkAccountSettings (available in auth module only) | ||
123 | // - settingsAccount | ||
124 | // NOTE: server support for custom DAV properties is REQUIRED! | ||
125 | // This option sets the account where the client properties such as: | ||
126 | // loaded collections, enabled collections, ... are saved during | ||
127 | // the logout and resource/collection synchronisation | ||
128 | // NOTE: set it to true ONLY for ONE account! | ||
129 | // Examples: | ||
130 | // settingsAccount: true | ||
131 | // settingsAccount: false | ||
132 | // This property is supported in: | ||
133 | // globalAccountSettings | ||
134 | // globalNetworkCheckSettings | ||
135 | // globalNetworkAccountSettings (available in auth module only) | ||
136 | // - delegation | ||
137 | // NOTE: server support for this functionality is REQUIRED! | ||
138 | // This option allows you to load delegated (shared) collections. | ||
139 | // If set to true (default) then delegation functionality is enabled, | ||
140 | // and the interface allows you to load delegated collections. | ||
141 | // If false then delegation functionality is completely disabled. | ||
142 | // Examples: | ||
143 | // delegation: true | ||
144 | // delegation: false | ||
145 | // This property is supported in: | ||
146 | // globalAccountSettings | ||
147 | // globalNetworkCheckSettings | ||
148 | // globalNetworkAccountSettings (available in auth module only) | ||
149 | // - additionalResources | ||
150 | // This options sets the list of additional resources (e.g. shared resources | ||
151 | // accessible by all users). If the server supports delegation (see | ||
152 | // the delegation option above) there is no reason to use this option! | ||
153 | // Supported values: | ||
154 | // - array of URL encoded resource names (not collections), such as: | ||
155 | // 'company' | ||
156 | // 'shared_resource' | ||
157 | // If empty (default) or undefined then shared resources are not loaded | ||
158 | // using this option, but may be loaded using the delegation option. | ||
159 | // Examples: | ||
160 | // additionalResources=[] | ||
161 | // additionalResources=['public', 'shared_resource'] | ||
162 | // This property is supported in: | ||
163 | // globalNetworkCheckSettings | ||
164 | // - hrefLabel | ||
165 | // This option sets the server name in the resource header (useful if | ||
166 | // you want to see custom resource header above the collections). | ||
167 | // You can use the following variables in the value: | ||
168 | // %H = full hostname (including the port number) | ||
169 | // %h = full hostname (without the port number) | ||
170 | // %D = full domain name | ||
171 | // %d = only the first and second level domain | ||
172 | // %P = principal name | ||
173 | // %p = principal name without the @domain.com part (if present) | ||
174 | // %U = logged user name | ||
175 | // %u = logged user name without the @domain.com part (if present) | ||
176 | // If undefined, empty or or null then '%d/%p [%u]' is used. | ||
177 | // Examples: | ||
178 | // hrefLabel: '%d/%p [%u]' | ||
179 | // hrefLabel: '%D/%u' | ||
180 | // This property is supported in: | ||
181 | // globalAccountSettings | ||
182 | // globalNetworkCheckSettings | ||
183 | // globalNetworkAccountSettings (available in auth module only) | ||
184 | // - forceReadOnly | ||
185 | // This option sets the list of collections as "read-only". | ||
186 | // Supported values: | ||
187 | // - true | ||
188 | // all collections will be "read-only" | ||
189 | // - array of URL encoded | ||
190 | // - collections, such as: | ||
191 | // '/caldav.php/user/calendar/' | ||
192 | // '/caldav.php/user%40domain.com/calendar/' | ||
193 | // - regexes, such as: | ||
194 | // new RegExp('^/caldav.php/user/calendar[0-9]/$', 'i') | ||
195 | // specifies the list of collections marked as "read-only" | ||
196 | // If null (default) or undefined then server detected privileges are used. | ||
197 | // Examples: | ||
198 | // forceReadOnly: null | ||
199 | // forceReadOnly: true | ||
200 | // forceReadOnly: ['/caldav.php/user/calendar/', | ||
201 | // '/caldav.php/user/calendar2/'] | ||
202 | // forceReadOnly: [new RegExp('^/.*/user/calendar[0-9]/$', 'i')] | ||
203 | // This property is supported in: | ||
204 | // globalAccountSettings | ||
205 | // globalNetworkCheckSettings | ||
206 | // globalNetworkAccountSettings (available in auth module only, with | ||
207 | // different syntax for regexes) | ||
208 | // - ignoreAlarms | ||
209 | // This option sets list of calendar collections with disabled | ||
210 | // alarm functionality. | ||
211 | // Supported values: | ||
212 | // - true | ||
213 | // alarm functionality is disabled for all collections | ||
214 | // - array of URL encoded | ||
215 | // - collections, such as: | ||
216 | // '/caldav.php/user/calendar/' | ||
217 | // '/caldav.php/user%40domain.com/calendar/' | ||
218 | // - regexes, such as: | ||
219 | // new RegExp('^/caldav.php/user/calendar[0-9]/$', 'i') | ||
220 | // specifies the list of collections with disabled alarm functionality. | ||
221 | // If false (default) or undefined then alarm functionality is enabled | ||
222 | // for all collections. | ||
223 | // Examples: | ||
224 | // ignoreAlarms: true | ||
225 | // ignoreAlarms: ['/caldav.php/user/calendar/', | ||
226 | // '/caldav.php/user/calendar2/'] | ||
227 | // ignoreAlarms: [new RegExp('^/.*/user/calendar[0-9]/$', 'i')] | ||
228 | // This property is supported in: | ||
229 | // globalAccountSettings | ||
230 | // globalNetworkCheckSettings | ||
231 | // globalNetworkAccountSettings (available in auth module only, with | ||
232 | // different syntax for regexes) | ||
233 | // - backgroundCalendars | ||
234 | // This options defines a list of background calendars. If there is | ||
235 | // at least one event defined for the given day in a background calendar, | ||
236 | // the background color for that day will be pink/light-red. | ||
237 | // Supported values: | ||
238 | // - array of URL encoded | ||
239 | // - collections, such as: | ||
240 | // '/caldav.php/user/calendar/' | ||
241 | // '/caldav.php/user%40domain.com/calendar/' | ||
242 | // - regexes, such as: | ||
243 | // new RegExp('^/caldav.php/user/calendar[0-9]/$', 'i') | ||
244 | // specifies the list of background calendar collections. | ||
245 | // Examples: | ||
246 | // backgroundCalendars: ['/caldav.php/user/calendar/', | ||
247 | // '/caldav.php/user/calendar2/'] | ||
248 | // backgroundCalendars: [new RegExp('^/.*/user/calendar[0-9]/$', 'i')] | ||
249 | // This property is supported in: | ||
250 | // globalAccountSettings | ||
251 | // globalNetworkCheckSettings | ||
252 | // globalNetworkAccountSettings (available in auth module only, with | ||
253 | // different syntax for regexes) | ||
254 | // Special options not present in configuration examples: | ||
255 | // NOTE: use ONLY if you know what are you doing! | ||
256 | // - crossDomain | ||
257 | // This option sets the crossDomain for jQuery .ajax call. If null (default) | ||
258 | // then the value is autodetected /and the result is shown in the console/ | ||
259 | // - withCredentials | ||
260 | // This option sets the withCredentials for jQuery .ajax call. The default | ||
261 | // value is false and there is NO REASON to change it to true! | ||
262 | // NOTE: if true, Access-Control-Allow-Origin "*" (CORS header) not works! | ||
263 | |||
264 | |||
265 | // globalAccountSettings | ||
266 | // Use this option if you want to use automatic login (without a login | ||
267 | // screen) with hardcoded username/password in config.js. Otherwise use | ||
268 | // globalNetworkCheckSettings or globalNetworkAccountSettings (see below). | ||
269 | // NOTE: if this option is used the value must be an array of object(s). | ||
270 | // List of properties used in globalAccountSettings variable: | ||
271 | // - href | ||
272 | // Set this option to the full "principal URL". | ||
273 | // NOTE: the last character in the value must be '/' | ||
274 | // - userAuth | ||
275 | // - userName | ||
276 | // Set the username you want to login. | ||
277 | // - userPassword | ||
278 | // Set the password for the given username. | ||
279 | // NOTE: for description of other properties see comments at the beginning | ||
280 | // of this file. | ||
281 | // NOTE: for minimal/fast setup you need to set only the href and userAuth | ||
282 | // options. It is safe/recommended to keep the remaining options unchanged! | ||
283 | // Example: | ||
284 | //var globalAccountSettings=[ | ||
285 | // { | ||
286 | // href: 'https://server1.com:8443/caldav.php/USERNAME1/', | ||
287 | // userAuth: | ||
288 | // { | ||
289 | // userName: 'USERNAME1', | ||
290 | // userPassword: 'PASSWORD1' | ||
291 | // }, | ||
292 | // timeOut: 90000, | ||
293 | // lockTimeOut: 10000, | ||
294 | // checkContentType: true, | ||
295 | // settingsAccount: true, | ||
296 | // delegation: true, | ||
297 | // hrefLabel: null, | ||
298 | // forceReadOnly: null, | ||
299 | // ignoreAlarms: false, | ||
300 | // backgroundCalendars: [] | ||
301 | // }, | ||
302 | // { | ||
303 | // href: 'https://server2.com:8443/caldav.php/USERNAME2/', | ||
304 | // ... | ||
305 | // ... | ||
306 | // } | ||
307 | //]; | ||
308 | |||
309 | |||
310 | // globalNetworkCheckSettings | ||
311 | // Use this option if you want to use standard login screen without | ||
312 | // hardcoded username/password in config.js (used by globalAccountSettings). | ||
313 | // NOTE: if this option is used the value must be an object. | ||
314 | // List of properties used in globalAccountSettings variable: | ||
315 | // - href | ||
316 | // Set this option to the "principal URL" WITHOUT the "USERNAME/" | ||
317 | // part (this options uses the username from the login screen). | ||
318 | // NOTE: the last character in the value must be '/' | ||
319 | // NOTE: for description of other properties see comments at the beginning | ||
320 | // of this file. | ||
321 | // NOTE: for minimal/fast setup you need to set only the href option. It is | ||
322 | // safe/recommended to keep the remaining options unchanged! | ||
323 | // Example href values: | ||
324 | // OS X server http example (see misc/readme_osx.txt for server setup): | ||
325 | // href: 'http://osx.server.com:8008/principals/users/' | ||
326 | // OS X server https example (see misc/readme_osx.txt for server setup): | ||
327 | // href: 'https://osx.server.com:8443/principals/users/' | ||
328 | // Cyrus server https example: | ||
329 | // href: 'https://cyrus.server.com/dav/principals/user/' | ||
330 | // Example: | ||
331 | // Davical example which automatically detects the protocol, server name, | ||
332 | // port, ... (client installed into Davical "htdocs" subdirectory; | ||
333 | // works "out of the box", no additional setup required): | ||
334 | var globalNetworkCheckSettings={ | ||
335 | href: location.protocol+'//'+location.hostname+ | ||
336 | (location.port ? ':'+location.port: '')+ | ||
337 | location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+ | ||
338 | '/caldav.php/', | ||
339 | timeOut: 90000, | ||
340 | lockTimeOut: 10000, | ||
341 | checkContentType: true, | ||
342 | settingsAccount: true, | ||
343 | delegation: true, | ||
344 | additionalResources: [], | ||
345 | hrefLabel: null, | ||
346 | forceReadOnly: null, | ||
347 | ignoreAlarms: false, | ||
348 | backgroundCalendars: [] | ||
349 | } | ||
350 | |||
351 | |||
352 | // globalNetworkAccountSettings | ||
353 | // Try this option ONLY if you have working setup using | ||
354 | // globalNetworkCheckSettings and want to fix the authentication popup | ||
355 | // window problem (if invalid username/password is entered)! | ||
356 | // If you use this option then your browser sends username/password to the PHP | ||
357 | // "auth" module ("auth" directory) instead of the DAV server itself. | ||
358 | // The "auth" module then validates your username/password against your server, | ||
359 | // and if the authentication is successful, then it sends back a configuration | ||
360 | // XML (requires additional configuration). The resulting XML is handled | ||
361 | // IDENTICALLY as the globalAccountSettings configuration option. | ||
362 | // NOTE: for the "auth" module configuration see readme.txt! | ||
363 | // NOTE: this option invokes a login screen and disallows access until | ||
364 | // the client gets correct XML configuration file from the server! | ||
365 | // List of properties used in globalNetworkAccountSettings variable: | ||
366 | // - href | ||
367 | // Set this option to the "full URL" of the "auth" directory | ||
368 | // NOTE: the last character in the value must be '/' | ||
369 | // NOTE: for description of other properties see comments at the beginning | ||
370 | // of this file. | ||
371 | // Example href values: | ||
372 | // href: 'https://server.com/client/auth/' | ||
373 | // Example: | ||
374 | // Use this configuration if the "auth" module is located in the client | ||
375 | // installation subdirectory (default): | ||
376 | //var globalNetworkAccountSettings={ | ||
377 | // href: location.protocol+'//'+location.hostname+ | ||
378 | // (location.port ? ':'+location.port : '')+ | ||
379 | // location.pathname.replace(RegExp('index\.html$'),'')+ | ||
380 | // 'auth/', | ||
381 | // timeOut: 30000 | ||
382 | //}; | ||
383 | |||
384 | |||
385 | // globalUseJqueryAuth | ||
386 | // Use jQuery .ajax() auth or custom header for HTTP basic auth (default). | ||
387 | // Set this option to true if your server uses digest auth (note: you may | ||
388 | // experience auth popups on some browsers). | ||
389 | // If undefined (or empty), custom header for HTTP basic auth is used. | ||
390 | // Example: | ||
391 | //var globalUseJqueryAuth=false; | ||
392 | |||
393 | |||
394 | // globalBackgroundSync | ||
395 | // Enable background synchronization even if the browser window/tab has no | ||
396 | // focus. | ||
397 | // If false, synchronization is performed only if the browser window/tab | ||
398 | // is focused. If undefined or not false, then background sync is enabled. | ||
399 | // Example: | ||
400 | var globalBackgroundSync=true; | ||
401 | |||
402 | |||
403 | // globalSyncResourcesInterval | ||
404 | // This option defines how often (in miliseconds) are resources/collections | ||
405 | // asynchronously synchronized. | ||
406 | // Example: | ||
407 | var globalSyncResourcesInterval=120000; | ||
408 | |||
409 | |||
410 | // globalEnableRefresh | ||
411 | // This option enables or disables the manual synchronization button in | ||
412 | // the interface. If this option is enabled then users can perform server | ||
413 | // synchronization manually. Enabling this option may cause high server | ||
414 | // load (even DDOS) if users will try to manually synchronize data too | ||
415 | // often (instead of waiting for the automatic synchronization). | ||
416 | // If undefined or false, the synchronization button is disabled. | ||
417 | // NOTE: enable this option only if you really know what are you doing! | ||
418 | // Example: | ||
419 | var globalEnableRefresh=false; | ||
420 | |||
421 | |||
422 | // globalEnableKbNavigation | ||
423 | // Enable basic keyboard navigation using arrow keys? | ||
424 | // If undefined or not false, keyboard navigation is enabled. | ||
425 | // Example: | ||
426 | var globalEnableKbNavigation=true; | ||
427 | |||
428 | |||
429 | // globalSettingsType | ||
430 | // Where to store user settings such as: active view, enabled/selected | ||
431 | // collections, ... (the client store them into DAV property on the server). | ||
432 | // NOTE: not all servers support storing DAV properties (some servers support | ||
433 | // only subset /or none/ of these URLs). | ||
434 | // Supported values: | ||
435 | // - 'principal-URL', '', null or undefined (default) => settings are stored | ||
436 | // to principal-URL (recommended for most servers) | ||
437 | // - 'addressbook-home-set' => settings are are stored to addressbook-home-set | ||
438 | // - 'calendar-home-set' => settings are stored to calendar-home-set | ||
439 | // Example: | ||
440 | //var globalSettingsType=''; | ||
441 | |||
442 | |||
443 | // globalCrossServerSettingsURL | ||
444 | // Settings such as enabled/selected collections are stored on the server | ||
445 | // (see the previous option) in form of full URL | ||
446 | // (e.g.: https://user@server:port/principal/collection/), but even if this | ||
447 | // approach is "correct" (you can use the same principal URL with multiple | ||
448 | // different logins, ...) it causes a problem if your server is accessible | ||
449 | // from multiple URLs (e.g. http://server/ and https://server/). If you want | ||
450 | // to store only the "principal/collection/" part of the URL (instead of the | ||
451 | // full URL) then enable this option. | ||
452 | // Example: | ||
453 | //var globalCrossServerSettingsURL=false; | ||
454 | |||
455 | |||
456 | // globalInterfaceLanguage | ||
457 | // Default interface language (note: this option is case sensitive): | ||
458 | // cs_CZ (Čeština [Czech]) | ||
459 | // da_DK (Dansk [Danish]; thanks Niels Bo Andersen) | ||
460 | // de_DE (Deutsch [German]; thanks Marten Gajda and Thomas Scheel) | ||
461 | // en_US (English [English/US]) | ||
462 | // es_ES (Español [Spanish]; thanks Damián Vila) | ||
463 | // fr_FR (Français [French]; thanks John Fischer) | ||
464 | // it_IT (Italiano [Italian]; thanks Luca Ferrario) | ||
465 | // ja_JP (日本語 [Japan]; thanks Muimu Nakayama) | ||
466 | // hu_HU (Magyar [Hungarian]) | ||
467 | // nl_NL (Nederlands [Dutch]; thanks Johan Vromans) | ||
468 | // sk_SK (Slovenčina [Slovak]) | ||
469 | // tr_TR (Türkçe [Turkish]; thanks Selcuk Pultar) | ||
470 | // ru_RU (Русский [Russian]; thanks Александр Симонов) | ||
471 | // uk_UA (Українська [Ukrainian]; thanks Serge Yakimchuck) | ||
472 | // zh_CN (中国 [Chinese]; thanks Fandy) | ||
473 | // Example: | ||
474 | var globalInterfaceLanguage='fr_FR'; | ||
475 | |||
476 | |||
477 | // globalInterfaceCustomLanguages | ||
478 | // If defined and not empty then only languages listed here are shown | ||
479 | // at the login screen, otherwise (default) all languages are shown | ||
480 | // NOTE: values in the array must refer to an existing localization | ||
481 | // (see the option above) | ||
482 | // Example: | ||
483 | // globalInterfaceCustomLanguages=['en_US', 'sk_SK']; | ||
484 | var globalInterfaceCustomLanguages=[]; | ||
485 | |||
486 | |||
487 | // globalSortAlphabet | ||
488 | // Use JavaScript localeCompare() or custom alphabet for data sorting. | ||
489 | // Custom alphabet is used by default because JavaScript localeCompare() | ||
490 | // not supports collation and often returns "wrong" result. If set to null | ||
491 | // then localeCompare() is used. | ||
492 | // Example: | ||
493 | // var globalSortAlphabet=null; | ||
494 | var globalSortAlphabet=' 0123456789'+ | ||
495 | 'AÀÁÂÄÆÃÅĀBCÇĆČDĎEÈÉÊËĒĖĘĚFGĞHIÌÍÎİÏĪĮJKLŁĹĽMNŃÑŇOÒÓÔÖŐŒØÕŌ'+ | ||
496 | 'PQRŔŘSŚŠȘșŞşẞTŤȚțŢţUÙÚÛÜŰŮŪVWXYÝŸZŹŻŽ'+ | ||
497 | 'aàáâäæãåābcçćčdďeèéêëēėęěfgğhiìíîïīįıjklłĺľmnńñňoòóôöőœøõō'+ | ||
498 | 'pqrŕřsśšßtťuùúûüűůūvwxyýÿzźżžАБВГҐДЕЄЖЗИІЇЙКЛМНОПРСТУФХЦЧШЩЮЯ'+ | ||
499 | 'Ьабвгґдеєжзиіїйклмнопрстуфхцчшщюяь'; | ||
500 | |||
501 | |||
502 | // globalSearchTransformAlphabet | ||
503 | // To support search without diacritics (e.g. search for 'd' will find: 'Ď', 'ď') | ||
504 | // it is required to define something like "character equivalence". | ||
505 | // key = regex text, value = search character | ||
506 | // Example: | ||
507 | var globalSearchTransformAlphabet={ | ||
508 | '[ÀàÁáÂâÄäÆæÃãÅåĀā]': 'a', '[ÇçĆćČč]': 'c', '[Ďď]': 'd', | ||
509 | '[ÈèÉéÊêËëĒēĖėĘęĚě]': 'e', '[Ğğ]': 'g', '[ÌìÍíÎîİıÏïĪīĮį]': 'i', | ||
510 | '[ŁłĹ弾]': 'l', '[ŃńÑñŇň]': 'n', '[ÒòÓóÔôÖöŐőŒœØøÕõŌō]': 'o', | ||
511 | '[ŔŕŘř]': 'r', '[ŚśŠšȘșŞşẞß]': 's', '[ŤťȚțŢţ]': 't', | ||
512 | '[ÙùÚúÛûÜüŰűŮůŪū]': 'u', '[ÝýŸÿ]': 'y', '[ŹźŻżŽž]': 'z' | ||
513 | }; | ||
514 | |||
515 | // globalResourceAlphabetSorting | ||
516 | // If more than one resource (server account) is configured, sort the | ||
517 | // resources alphabetically? | ||
518 | // Example: | ||
519 | var globalResourceAlphabetSorting=true; | ||
520 | |||
521 | |||
522 | // globalNewVersionNotifyUsers | ||
523 | // Update notification will be shown only to users with login names defined | ||
524 | // in this array. | ||
525 | // If undefined (or empty), update notifications will be shown to all users. | ||
526 | // Example: | ||
527 | // globalNewVersionNotifyUsers=['admin', 'peter']; | ||
528 | var globalNewVersionNotifyUsers=[]; | ||
529 | |||
530 | |||
531 | // globalDatepickerFormat | ||
532 | // Set the datepicker format (see | ||
533 | // http://docs.jquery.com/UI/Datepicker/formatDate for valid values). | ||
534 | // NOTE: date format is predefined for each localization - use this option | ||
535 | // ONLY if you want to use custom date format (instead of the localization | ||
536 | // predefined one). | ||
537 | // Example: | ||
538 | //var globalDatepickerFormat='dd.mm.yy'; | ||
539 | var globalDatepickerFormat='yy-mm-dd'; | ||
540 | |||
541 | |||
542 | // globalDatepickerFirstDayOfWeek | ||
543 | // Set the datepicker first day of the week: Sunday is 0, Monday is 1, etc. | ||
544 | // Example: | ||
545 | var globalDatepickerFirstDayOfWeek=1; | ||
546 | |||
547 | |||
548 | // globalHideInfoMessageAfter | ||
549 | // How long are information messages (such as: success, error) displayed | ||
550 | // (in miliseconds). | ||
551 | // Example: | ||
552 | var globalHideInfoMessageAfter=1800; | ||
553 | |||
554 | |||
555 | // globalEditorFadeAnimation | ||
556 | // Set the editor fade in/out animation duration when editing or saving data | ||
557 | // (in miliseconds). | ||
558 | // Example: | ||
559 | var globalEditorFadeAnimation=666; | ||
560 | |||
561 | |||
562 | |||
563 | |||
564 | // ******* CalDAV (CalDavZAP) related settings ******* // | ||
565 | |||
566 | // globalEventStartPastLimit, globalEventStartFutureLimit, globalTodoPastLimit | ||
567 | // Number of months pre-loaded from past/future in advance for calendars | ||
568 | // and todo lists (if null then date range synchronization is disabled). | ||
569 | // NOTE: interval synchronization is used only if your server supports | ||
570 | // sync-collection REPORT (e.g. DAViCal). | ||
571 | // NOTE: if you experience problems with data loading and your server has | ||
572 | // no time-range filtering support set these variables to null. | ||
573 | // Example: | ||
574 | var globalEventStartPastLimit=3; | ||
575 | var globalEventStartFutureLimit=3; | ||
576 | var globalTodoPastLimit=1; | ||
577 | |||
578 | |||
579 | // globalLoadedCalendarCollections | ||
580 | // This option sets the list of calendar collections (down)loaded after login. | ||
581 | // If empty then all calendar collections for the currently logged user are | ||
582 | // loaded. | ||
583 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
584 | // option. | ||
585 | // Example: | ||
586 | var globalLoadedCalendarCollections=[]; | ||
587 | |||
588 | |||
589 | // globalLoadedTodoCollections | ||
590 | // This option sets the list of todo collections (down)loaded after login. | ||
591 | // If empty then all todo collections for the currently logged user are loaded. | ||
592 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
593 | // option. | ||
594 | // Example: | ||
595 | var globalLoadedTodoCollections=[]; | ||
596 | |||
597 | |||
598 | // globalActiveCalendarCollections | ||
599 | // This options sets the list of calendar collections checked (enabled | ||
600 | // checkbox => data visible in the interface) by default after login. | ||
601 | // If empty then all loaded calendar collections for the currently logged | ||
602 | // user are checked. | ||
603 | // NOTE: only already (down)loaded collections can be checked (see | ||
604 | // the globalLoadedCalendarCollections option). | ||
605 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
606 | // option. | ||
607 | // Example: | ||
608 | var globalActiveCalendarCollections=[]; | ||
609 | |||
610 | |||
611 | // globalActiveTodoCollections | ||
612 | // This options sets the list of todo collections checked (enabled | ||
613 | // checkbox => data visible in the interface) by default after login. | ||
614 | // If empty then all loaded todo collections for the currently logged | ||
615 | // user are checked. | ||
616 | // NOTE: only already (down)loaded collections can be checked (see | ||
617 | // the globalLoadedTodoCollections option). | ||
618 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
619 | // option. | ||
620 | // Example: | ||
621 | var globalActiveTodoCollections=[]; | ||
622 | |||
623 | |||
624 | // globalCalendarSelected | ||
625 | // This option sets which calendar collection will be pre-selected | ||
626 | // (if you create a new event) by default after login. | ||
627 | // The value must be URL encoded path to a calendar collection, | ||
628 | // for example: 'USER/calendar/' | ||
629 | // If empty or undefined then the first available calendar collection | ||
630 | // is selected automatically. | ||
631 | // NOTE: only already (down)loaded collections can be pre-selected (see | ||
632 | // the globalLoadedCalendarCollections option). | ||
633 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
634 | // option. | ||
635 | // Example: | ||
636 | //var globalCalendarSelected=''; | ||
637 | |||
638 | |||
639 | // globalTodoCalendarSelected | ||
640 | // This option sets which todo collection will be pre-selected | ||
641 | // (if you create a new todo) by default after login. | ||
642 | // The value must be URL encoded path to a todo collection, | ||
643 | // for example: 'USER/todo_calendar/' | ||
644 | // If empty or undefined then the first available todo collection | ||
645 | // is selected automatically. | ||
646 | // NOTE: only already (down)loaded collections can be pre-selected (see | ||
647 | // the globalLoadedTodoCollections option). | ||
648 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
649 | // option. | ||
650 | // Example: | ||
651 | //var globalTodoCalendarSelected=''; | ||
652 | |||
653 | |||
654 | // globalActiveView | ||
655 | // This options sets the default fullcalendar view option (the default calendar | ||
656 | // view after the first login). | ||
657 | // Supported values: | ||
658 | // - 'month' | ||
659 | // - 'multiWeek' | ||
660 | // - 'agendaWeek' | ||
661 | // - 'agendaDay' | ||
662 | // NOTE: we use custom and enhanced version of fullcalendar! | ||
663 | // Example: | ||
664 | var globalActiveView='multiWeek'; | ||
665 | |||
666 | |||
667 | // globalOpenFormMode | ||
668 | // Open new event form on 'single' or 'double' click. | ||
669 | // If undefined or not 'double', then 'single' is used. | ||
670 | // Example: | ||
671 | var globalOpenFormMode='double'; | ||
672 | |||
673 | |||
674 | // globalTodoListFilterSelected | ||
675 | // This options sets the list of filters in todo list that are selected | ||
676 | // after login. | ||
677 | // Supported options: | ||
678 | // - 'filterAction' | ||
679 | // - 'filterProgress' (available only if globalAppleRemindersMode is disabled) | ||
680 | // - 'filterCompleted' | ||
681 | // - 'filterCanceled' (available only if globalAppleRemindersMode is disabled) | ||
682 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
683 | // option. | ||
684 | // Example: | ||
685 | var globalTodoListFilterSelected=['filterAction', 'filterProgress']; | ||
686 | |||
687 | |||
688 | // globalCalendarStartOfBusiness, globalCalendarEndOfBusiness | ||
689 | // These options set the start and end of business hours with 0.5 hour | ||
690 | // precision. Non-business hours are faded out in the calendar interface. | ||
691 | // If both variables are set to the same value then no fade out occurs. | ||
692 | // Example: | ||
693 | var globalCalendarStartOfBusiness=8; | ||
694 | var globalCalendarEndOfBusiness=17; | ||
695 | |||
696 | |||
697 | // globalDefaultEventDuration | ||
698 | // This option sets the default duration (in minutes) for newly created events. | ||
699 | // If undefined or null, globalCalendarEndOfBusiness value will be taken as | ||
700 | // a default end time instead. | ||
701 | // Example: | ||
702 | var globalDefaultEventDuration=120; | ||
703 | |||
704 | |||
705 | // globalAMPMFormat | ||
706 | // This option enables to use 12 hours format (AM/PM) for displaying time. | ||
707 | // NOTE: time format is predefined for each localization - use this option | ||
708 | // ONLY if you want to use custom time format (instead of the localization | ||
709 | // predefined one). | ||
710 | // Example: | ||
711 | //var globalAMPMFormat=false; | ||
712 | |||
713 | |||
714 | // globalTimeFormatBasic | ||
715 | // This option defines the time format information for events in month and | ||
716 | // multiweek views. If undefined or null then default value is used. | ||
717 | // If defined as empty string no time information is shown in these views. | ||
718 | // See http://arshaw.com/fullcalendar/docs/utilities/formatDate/ for exact | ||
719 | // formating rules. | ||
720 | // Example: | ||
721 | //var globalTimeFormatBasic=''; | ||
722 | |||
723 | |||
724 | // globalTimeFormatAgenda | ||
725 | // This option defines the time format information for events in day and | ||
726 | // week views. If undefined or null then default value is used. | ||
727 | // If defined as empty string no time information is shown in these views. | ||
728 | // See http://arshaw.com/fullcalendar/docs/utilities/formatDate/ for exact | ||
729 | // formating rules. | ||
730 | // Example: | ||
731 | //var globalTimeFormatAgenda=''; | ||
732 | |||
733 | |||
734 | // globalDisplayHiddenEvents | ||
735 | // This option defined whether events from unechecked calendars are displayed | ||
736 | // with certain transparency (true) or completely hidden (false). | ||
737 | // Example: | ||
738 | var globalDisplayHiddenEvents=false; | ||
739 | |||
740 | |||
741 | // globalTimeZoneSupport | ||
742 | // This option enables timezone support in the client. | ||
743 | // NOTE: timezone cannot be specified for all-day events because these don't | ||
744 | // have start and end time. | ||
745 | // If this option is disabled then local time is used. | ||
746 | // Example: | ||
747 | var globalTimeZoneSupport=true; | ||
748 | |||
749 | |||
750 | // globalTimeZone | ||
751 | // If timezone support is enabled, this option sets the default timezone. | ||
752 | // See timezones.js or use the following command to get the list of supported | ||
753 | // timezones (defined in timezones.js): | ||
754 | // grep "'[^']\+': {" timezones.js | sed -Ee "s#(\s*'|':\s*\{)##g" | ||
755 | // Example: | ||
756 | var globalTimeZone='Europe/Paris'; | ||
757 | |||
758 | |||
759 | // globalTimeZonesEnabled | ||
760 | // This option sets the list of available timezones in the interface (for the | ||
761 | // list of supported timezones see the comment for the previous configuration | ||
762 | // option). | ||
763 | // NOTE: if there is at least one event/todo with a certain timezone defined, | ||
764 | // that timezone is enabled (even if it is not present in this list). | ||
765 | // Example: | ||
766 | // var globalTimeZonesEnabled=['America/New_York', 'Europe/Berlin']; | ||
767 | var globalTimeZonesEnabled=[]; | ||
768 | |||
769 | |||
770 | // globalRewriteTimezoneComponent | ||
771 | // This options sets whether the client will enhance/replace (if you edit an | ||
772 | // event or todo) the timezone information using the official IANA timezone | ||
773 | // database information (recommended). | ||
774 | // Example: | ||
775 | var globalRewriteTimezoneComponent=true; | ||
776 | |||
777 | |||
778 | // globalRemoveUnknownTimezone | ||
779 | // This options sets whether the client will remove all non-standard timezone | ||
780 | // names from events and todos (if you edit an event or todo) | ||
781 | // (e.g.: /freeassociation.sourceforge.net/Tzfile/Europe/Vienna) | ||
782 | // Example: | ||
783 | var globalRemoveUnknownTimezone=false; | ||
784 | |||
785 | |||
786 | // globalShowHiddenAlarms | ||
787 | // This option sets whether the client will show alarm notifications for | ||
788 | // unchecked calendars. If this option is enabled and you uncheck a calendar | ||
789 | // in the calendar list, alarm notifications will be temporary disabled for | ||
790 | // unchecked calendar(s). | ||
791 | // Example: | ||
792 | var globalShowHiddenAlarms=false; | ||
793 | |||
794 | |||
795 | // globalIgnoreCompletedOrCancelledAlarms | ||
796 | // This options sets whether the client will show alarm notifications for | ||
797 | // already completed or cancelled todos. If enabled then alarm notification | ||
798 | // for completed and cancelled todos are disabled. | ||
799 | // Example: | ||
800 | var globalIgnoreCompletedOrCancelledAlarms=true; | ||
801 | |||
802 | |||
803 | // globalMozillaSupport | ||
804 | // Mozilla automatically treats custom repeating event calculations as if | ||
805 | // the start day of the week is Monday, despite what day is chosen in settings. | ||
806 | // Set this variable to true to use the same approach, ensuring compatible | ||
807 | // event rendering in special cases. | ||
808 | // Example: | ||
809 | var globalMozillaSupport=false; | ||
810 | |||
811 | |||
812 | // globalCalendarColorPropertyXmlns | ||
813 | // This options sets the namespace used for storing the "calendar-color" | ||
814 | // property by the client. | ||
815 | // If true, undefined (or empty) "http://apple.com/ns/ical/" is used (Apple | ||
816 | // compatible). If false, then the calendar color modification functionality | ||
817 | // is completely disabled. | ||
818 | // Example: | ||
819 | //var globalCalendarColorPropertyXmlns=true; | ||
820 | |||
821 | |||
822 | // globalWeekendDays | ||
823 | // This option sets the list of days considered as weekend days (these | ||
824 | // are faded out in the calendar interface). Non-weekend days are automatically | ||
825 | // considered as business days. | ||
826 | // Sunday is 0, Monday is 1, etc. | ||
827 | // Example: | ||
828 | var globalWeekendDays=[0, 6]; | ||
829 | |||
830 | |||
831 | // globalAppleRemindersMode | ||
832 | // If this option is enabled then then client will use the same approach | ||
833 | // for handling repeating reminders (todos) as Apple. It is STRONGLY | ||
834 | // recommended to enabled this option if you use any Apple clients for | ||
835 | // reminders (todos). | ||
836 | // Supported options: | ||
837 | // - 'iOS6' | ||
838 | // - 'iOS7' | ||
839 | // - true (support of the latest iOS version - 'iOS8') | ||
840 | // - false | ||
841 | // If this option is enabled: | ||
842 | // - RFC todo support is SEVERELY limited and the client mimics the behaviour | ||
843 | // of Apple Reminders.app (to ensure maximum compatibility) | ||
844 | // - when a single instance of repeating todo is edited, it becomes an | ||
845 | // autonomous non-repeating todo with NO relation to the original repeating | ||
846 | // todo | ||
847 | // - capabilities of repeating todos are limited - only the first instance | ||
848 | // is ever visible in the interface | ||
849 | // - support for todo DTSTART attribute is disabled | ||
850 | // - support for todo STATUS attribute other than COMPLETED and NEEDS-ACTION | ||
851 | // is disabled | ||
852 | // - [iOS6 only] support for LOCATION and URL attributes is disabled | ||
853 | // Example: | ||
854 | var globalAppleRemindersMode=true; | ||
855 | |||
856 | |||
857 | // globalSubscribedCalendars | ||
858 | // This option specifies a list of remote URLs to ics files (e.g.: used | ||
859 | // for distributing holidays information). Subscribed calendars are | ||
860 | // ALWAYS read-only. Remote servers where ics files are hosted MUST | ||
861 | // return proper CORS headers (see readme.txt) otherwise this functionality | ||
862 | // will not work! | ||
863 | // NOTE: subsribed calendars are NOT "shared" calendars. For "shared" | ||
864 | // calendars see the delegation option in globalAccountSettings, | ||
865 | // globalNetworkCheckSettings and globalNetworkAccountSettings. | ||
866 | // List of properties used in globalSubscribedCalendars variable: | ||
867 | // - hrefLabel | ||
868 | // This options defines the header string above the subcsribed calendars. | ||
869 | // - calendars | ||
870 | // This option specifies an array of remote calendar objects with the | ||
871 | // following properties: | ||
872 | // - href | ||
873 | // Set this option to the "full URL" of the remote calendar | ||
874 | // - userAuth | ||
875 | // NOTE: keep empty if remote authentication is not required! | ||
876 | // - userName | ||
877 | // Set the username you want to login. | ||
878 | // - userPassword | ||
879 | // Set the password for the given username. | ||
880 | // - typeList | ||
881 | // Set the list of objects you want to process from remote calendars; | ||
882 | // two options are available: | ||
883 | // - 'vevent' (show remote events in the interface) | ||
884 | // - 'vtodo' (show remote todos in the interface) | ||
885 | // - ignoreAlarm | ||
886 | // Set this option to true if you want to disable alarm notifications | ||
887 | // from the remote calendar. | ||
888 | // - displayName | ||
889 | // Set this option to the name of the calendar you want to see | ||
890 | // in the interface. | ||
891 | // - color | ||
892 | // Set the calendar color you want to see in the interface. | ||
893 | // Example: | ||
894 | //var globalSubscribedCalendars={ | ||
895 | // hrefLabel: 'Subscribed', | ||
896 | // calendars: [ | ||
897 | // { | ||
898 | // href: 'http://something.com/calendar.ics', | ||
899 | // userAuth: { | ||
900 | // userName: '', | ||
901 | // userPassword: '' | ||
902 | // }, | ||
903 | // typeList: ['vevent', 'vtodo'], | ||
904 | // ignoreAlarm: true, | ||
905 | // displayName: 'Remote Calendar 1', | ||
906 | // color: '#ff0000' | ||
907 | // }, | ||
908 | // { | ||
909 | // href: 'http://calendar.com/calendar2.ics', | ||
910 | // ... | ||
911 | // ... | ||
912 | // } | ||
913 | // ] | ||
914 | //}; | ||
915 | |||
916 | |||
917 | |||
918 | // ******* CardDAV (CardDavMATE) related settings ******* // | ||
919 | |||
920 | |||
921 | // globalLoadedAddressbookCollections | ||
922 | // This option sets the list of addressbook collections (down)loaded after | ||
923 | // login. If empty then all addressbook collections for the currently logged | ||
924 | // user are loaded. | ||
925 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
926 | // option. | ||
927 | // Example: | ||
928 | var globalLoadedAddressbookCollections=[]; | ||
929 | |||
930 | |||
931 | // globalActiveAddressbookCollections | ||
932 | // This options sets the list of addressbook collections checked (enabled | ||
933 | // checkbox => data visible in the interface) by default after login. | ||
934 | // If empty then all loaded addressbook collections for the currently logged | ||
935 | // user are checked. | ||
936 | // NOTE: only already (down)loaded collections can be checked (see | ||
937 | // the globalLoadedAddressbookCollections option). | ||
938 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
939 | // option. | ||
940 | // Example: | ||
941 | var globalActiveAddressbookCollections=[]; | ||
942 | |||
943 | |||
944 | // globalAddressbookSelected | ||
945 | // This option sets which addressbook collection will be pre-selected | ||
946 | // (if you create a new contact) by default after login. | ||
947 | // The value must be URL encoded path to an addressbook collection, | ||
948 | // for example: 'USER/addressbook/' | ||
949 | // If empty or undefined then the first available addressbook collection | ||
950 | // is selected automatically. | ||
951 | // NOTE: only already (down)loaded collections can be pre-selected (see | ||
952 | // the globalLoadedAddressbookCollections option). | ||
953 | // NOTE: settings stored on the server (see settingsAccount) overwrite this | ||
954 | // option. | ||
955 | // Example: | ||
956 | //var globalAddressbookSelected=''; | ||
957 | |||
958 | |||
959 | // globalCompatibility | ||
960 | // This options is reserved for various compatibility settings. | ||
961 | // NOTE: if this option is used the value must be an object. | ||
962 | // Currently there is only one supported option: | ||
963 | // - anniversaryOutputFormat | ||
964 | // Different clients use different (and incompatible) approach | ||
965 | // to store anniversary date in vCards. Apple stores this attribute as: | ||
966 | // itemX.X-ABDATE;TYPE=pref:2000-01-01\r\n | ||
967 | // itemX.X-ABLabel:_$!<Anniversary>!$_\r\n' | ||
968 | // other clients store this attribute as: | ||
969 | // X-ANNIVERSARY:2000-01-01\r\n | ||
970 | // Choose 'apple' or 'other' (lower case) for your 3rd party client | ||
971 | // compatibility. You can chose both: ['apple', 'other'], but it may | ||
972 | // cause many problems in the future, for example: duplicate anniversary | ||
973 | // dates, invalid/old anniversary date in your clients, ...) | ||
974 | // Examples: | ||
975 | // anniversaryOutputFormat: ['other'] | ||
976 | // anniversaryOutputFormat: ['apple', 'other'] | ||
977 | // Example: | ||
978 | var globalCompatibility={anniversaryOutputFormat: ['apple']}; | ||
979 | |||
980 | |||
981 | // globalUriHandler{Tel,Email,Url,Profile} | ||
982 | // These options set the URI handlers for TEL, EMAIL, URL and X-SOCIALPROFILE | ||
983 | // vCard attributes. Set them to null (or comment out) to disable. | ||
984 | // NOTE: for globalUriHandlerTel is recommended to use 'tel:', 'callto:' | ||
985 | // or 'skype:'. The globalUriHandlerUrl value is used only if no URI handler | ||
986 | // is defined in the URL. | ||
987 | // NOTE: it is safe to keep these values unchanged! | ||
988 | // Example: | ||
989 | var globalUriHandlerTel='tel:'; | ||
990 | var globalUriHandlerEmail='mailto:'; | ||
991 | var globalUriHandlerUrl='http://'; | ||
992 | var globalUriHandlerProfile={ | ||
993 | 'twitter': 'http://twitter.com/%u', | ||
994 | 'facebook': 'http://www.facebook.com/%u', | ||
995 | 'flickr': 'http://www.flickr.com/photos/%u', | ||
996 | 'linkedin': 'http://www.linkedin.com/in/%u', | ||
997 | 'myspace': 'http://www.myspace.com/%u', | ||
998 | 'sinaweibo': 'http://weibo.com/n/%u' | ||
999 | }; | ||
1000 | |||
1001 | |||
1002 | // globalDefaultAddressCountry | ||
1003 | // This option sets the default country for new address fields. | ||
1004 | // See common.js or use the following command to get the list of | ||
1005 | // all supported country codes (defined in common.js): | ||
1006 | // grep -E "'[a-z]{2}':\s+\[" common.js | sed -Ee 's#^\s+|\s+\[\s+# #g' | ||
1007 | // Example: | ||
1008 | var globalDefaultAddressCountry='fr'; | ||
1009 | |||
1010 | |||
1011 | // globalAddressCountryEquivalence | ||
1012 | // This option sets the processing of the country field specified | ||
1013 | // in the vCard ADR attribute. | ||
1014 | // By default the address field in vCard looks like: | ||
1015 | // ADR;TYPE=WORK:;;1 Waters Edge;Baytown;LA;30314;USA\r\n | ||
1016 | // what cause a problem, because the country field is a plain | ||
1017 | // text and can contain any value, e.g.: | ||
1018 | // USA | ||
1019 | // United States of America | ||
1020 | // US | ||
1021 | // and because the address format can be completely different for | ||
1022 | // each country, e.g.: | ||
1023 | // China address example: | ||
1024 | // [China] | ||
1025 | // [Province] [City] | ||
1026 | // [Street] | ||
1027 | // [Postal] | ||
1028 | // Japan address example: | ||
1029 | // [Postal] | ||
1030 | // [Prefecture] [County/City] | ||
1031 | // [Further Divisions] | ||
1032 | // [Japan] | ||
1033 | // the client needs to correctly detect the country from the ADR | ||
1034 | // attribute. Apple solved this problem by using: | ||
1035 | // item1.ADR;TYPE=WORK:;;1 Waters Edge;Baytown;LA;30314;USA\r\n | ||
1036 | // item1.X-ABADR:us\r\n | ||
1037 | // where the second "related" attribute defines the country code | ||
1038 | // for the ADR attribute. This client uses the same approach, but | ||
1039 | // if the vCard is created by 3rd party clients and the X-ABADR | ||
1040 | // is missing, it is possible to define additional "rules" for | ||
1041 | // country matching. These rules are specied by the country code | ||
1042 | // (for full list of country codes see the comment for pre previous | ||
1043 | // option) and a case insensitive regular expression (which matches | ||
1044 | // the plain text value in the country field). | ||
1045 | // NOTE: if X-ABADR is not present and the country not matches any | ||
1046 | // country defined in this option, then globalDefaultAddressCountry | ||
1047 | // is used by default. | ||
1048 | // Example: | ||
1049 | var globalAddressCountryEquivalence=[ | ||
1050 | {country: 'de', regex: '^\\W*Deutschland\\W*$'}, | ||
1051 | {country: 'sk', regex: '^\\W*Slovensko\\W*$'} | ||
1052 | ]; | ||
1053 | |||
1054 | |||
1055 | // globalAddressCountryFavorites | ||
1056 | // This option defines the list of countries which are shown at the top | ||
1057 | // of the country list in the interface (for full list of country codes | ||
1058 | // see the comment for pre globalDefaultAddressCountry option). | ||
1059 | // Example: | ||
1060 | // var globalAddressCountryFavorites=['de','sk']; | ||
1061 | var globalAddressCountryFavorites=[]; | ||
1062 | |||
1063 | |||
1064 | // globalAddrColorPropertyXmlns | ||
1065 | // This options sets the namespace used for storing the "addressbook-color" | ||
1066 | // property by the client. | ||
1067 | // If true, undefined (or empty) "http://inf-it.com/ns/ab/" is used. | ||
1068 | // If false, then the addressbook color modification functionality | ||
1069 | // is completely disabled, and addressbook colors in the interface are | ||
1070 | // generated automatically. | ||
1071 | // Example: | ||
1072 | //var globalAddrColorPropertyXmlns=true; | ||
1073 | |||
1074 | |||
1075 | // globalContactStoreFN | ||
1076 | // This option specifies how the FN (formatted name) is stored into vCard. | ||
1077 | // The value for this options must be an array of strings, that can contain | ||
1078 | // the following variables: | ||
1079 | // prefix | ||
1080 | // last | ||
1081 | // middle | ||
1082 | // first | ||
1083 | // suffix | ||
1084 | // The string element of the array can contain any other characters (usually | ||
1085 | // space or colon). Elements are added into FN only if the there is | ||
1086 | // a variable match, for example if: | ||
1087 | // last='Lastname' | ||
1088 | // first='Firstname' | ||
1089 | // middle='' (empty) | ||
1090 | // and this option is set to: | ||
1091 | // ['last', ' middle', ' first'] (space in the second and third element) | ||
1092 | // the resulting value for FN will be: 'Lastname Firstname' and not | ||
1093 | // 'Lastname Firstname' (two spaces), because the middle name is empty (so | ||
1094 | // the second element is completely ignored /not added into FN/). | ||
1095 | // NOTE: this attribute is NOT used by this client, and it is also NOT | ||
1096 | // possible to directly edit it in the interface. | ||
1097 | // Examples: | ||
1098 | // var globalContactStoreFN=[' last', ' middle', ' first']; | ||
1099 | // var globalContactStoreFN=['last', ', middle', ' ,first']; | ||
1100 | var globalContactStoreFN=['prefix',' last',' middle',' first',' suffix']; | ||
1101 | |||
1102 | |||
1103 | // globalGroupContactsByCompanies | ||
1104 | // This options specifies how contacts are grouped in the interface. | ||
1105 | // By default the interface looks like (very simple example): | ||
1106 | // A | ||
1107 | // Adams Adam | ||
1108 | // Anderson Peter | ||
1109 | // B | ||
1110 | // Brown John | ||
1111 | // Baker Josh | ||
1112 | // if grouped by company/deparment the result is: | ||
1113 | // Company A [Department X] | ||
1114 | // Adams Adam | ||
1115 | // Brown John | ||
1116 | // Company B [Department Y] | ||
1117 | // Anderson Peter | ||
1118 | // Baker Josh | ||
1119 | // If this option is set to true contacts are grouped by company/department, | ||
1120 | // otherwise (default) contacts are grouped by letters of the alphabet. | ||
1121 | // If undefined or not true, grouping by alphabet letters is used. | ||
1122 | // NOTE: see also the globalCollectionDisplay option below. | ||
1123 | var globalGroupContactsByCompanies=false; | ||
1124 | |||
1125 | |||
1126 | // globalCollectionDisplay | ||
1127 | // This options specifies how data columns in the contact list are displayed. | ||
1128 | // | ||
1129 | // NOTE: columns are displayed ONLY if there is enought horizontal place in | ||
1130 | // the browser window (e.g. if you define 5 columns here, but your browser | ||
1131 | // window is not wide enough, you will see only first 3 columns instead of 5). | ||
1132 | // | ||
1133 | // NOTE: see the globalContactDataMinVisiblePercentage option which defines the | ||
1134 | // width for columns. | ||
1135 | // | ||
1136 | // The value must be an array of columns, where each column is represented by | ||
1137 | // an object with the following properties: | ||
1138 | // label => the value of this option is a string used as column header | ||
1139 | // You can use the following localized variables in the label string: | ||
1140 | // - {Name} | ||
1141 | // - {FirstName} | ||
1142 | // - {LastName} | ||
1143 | // - {MiddleName} | ||
1144 | // - {NickName} | ||
1145 | // - {Prefix} | ||
1146 | // - {Suffix} | ||
1147 | // - {BirthDay} | ||
1148 | // - {PhoneticLastName} | ||
1149 | // - {PhoneticFirstName} | ||
1150 | // - {JobTitle} | ||
1151 | // - {Company} | ||
1152 | // - {Department} | ||
1153 | // - {Categories} | ||
1154 | // - {NoteText} | ||
1155 | // - {Address}, {AddressWork}, {AddressHome}, {AddressOther} | ||
1156 | // - {Phone}, {PhoneWork}, {PhoneHome}, {PhoneCell}, {PhoneMain}, | ||
1157 | // {PhonePager}, {PhoneFax}, {PhoneIphone}, {PhoneOther} | ||
1158 | // - {Email}, {EmailWork}, {EmailHome}, {EmailMobileme}, {EmailOther} | ||
1159 | // - {URL}, {URLWork}, {URLHome}, {URLHomepage}, {URLOther} | ||
1160 | // - {Dates}, {DatesAnniversary}, {DatesOther} | ||
1161 | // - {Related}, {RelatedManager}, {RelatedAssistant}, {RelatedFather}, | ||
1162 | // {RelatedMother}, {RelatedParent}, {RelatedBrother}, {RelatedSister}, | ||
1163 | // {RelatedChild}, {RelatedFriend}, {RelatedSpouse}, {RelatedPartner}, | ||
1164 | // {RelatedOther} | ||
1165 | // - {Profile}, {ProfileTwitter}, {ProfileFacebook}, {ProfileFlickr}, | ||
1166 | // {ProfileLinkedin}, {ProfileMyspace}, {ProfileSinaweibo} | ||
1167 | // - {IM}, {IMWork}, {IMHome}, {IMMobileme}, {IMOther}, {IMAim}, {IMIcq}, | ||
1168 | // {IMIrc}, {IMJabber}, {IMMsn}, {IMYahoo}, {IMFacebook}, {IMGadugadu}, | ||
1169 | // {IMGoogletalk}, {IMQq}, {IMSkype} | ||
1170 | // value => the value of this option is an array of format strings, or | ||
1171 | // an object with the following properties: | ||
1172 | // - company (used for company contacts) | ||
1173 | // - personal (used for user contacts) | ||
1174 | // where the value of these properties is an array of format strings used | ||
1175 | // for company or user contacts (you can have different values in the same | ||
1176 | // column for personal and company contacts). | ||
1177 | // You can use the following simple variables in the format string: | ||
1178 | // - {FirstName} | ||
1179 | // - {LastName} | ||
1180 | // - {MiddleName} | ||
1181 | // - {NickName} | ||
1182 | // - {Prefix} | ||
1183 | // - {Suffix} | ||
1184 | // - {BirthDay} | ||
1185 | // - {PhoneticLastName} | ||
1186 | // - {PhoneticFirstName} | ||
1187 | // - {JobTitle} | ||
1188 | // - {Company} | ||
1189 | // - {Department} | ||
1190 | // - {Categories} | ||
1191 | // - {NoteText} | ||
1192 | // You can also use parametrized variables, where the parameter is enclosed | ||
1193 | // in square bracket. Paramatrized variables are useful to extract data | ||
1194 | // such as home phone {Phone[type=home]}, extract the second phone number | ||
1195 | // {Phone[:1]} (zero based indexing) or extract the third home phone number | ||
1196 | // {Phone[type=home][:2]} from the vCard. | ||
1197 | // NOTE: if the parametrized variable matches multiple items, e.g.: | ||
1198 | // {Phone[type=work]} (if the contact has multiple work phones) then the | ||
1199 | // first one is used! | ||
1200 | // | ||
1201 | // The following parametrized variables are supported (note: you can use | ||
1202 | // all of them also without parameters /the first one will be used/): | ||
1203 | // - {Address[type=XXX]} or {Address[:NUM]} or {Address[type=XXX][:NUM]} | ||
1204 | // where supported values for XXX are: | ||
1205 | // - work | ||
1206 | // - home | ||
1207 | // - other | ||
1208 | // - any other custom value | ||
1209 | // - {Phone[type=XXX]} or {Phone[:NUM]} or {Phone[type=XXX][:NUM]} | ||
1210 | // where supported values for XXX are: | ||
1211 | // - work | ||
1212 | // - home | ||
1213 | // - cell | ||
1214 | // - main | ||
1215 | // - pager | ||
1216 | // - fax | ||
1217 | // - iphone | ||
1218 | // - other | ||
1219 | // - any other custom value | ||
1220 | // - {Email[type=XXX]} or {Email[:NUM]} or {Email[type=XXX][:NUM]} | ||
1221 | // where supported values for XXX are: | ||
1222 | // - work | ||
1223 | // - home | ||
1224 | // - mobileme | ||
1225 | // - other | ||
1226 | // - any other custom value | ||
1227 | // - {URL[type=XXX]} or {URL[:NUM]} or {URL[type=XXX][:NUM]} | ||
1228 | // where supported values for XXX are: | ||
1229 | // - work | ||
1230 | // - home | ||
1231 | // - homepage | ||
1232 | // - other | ||
1233 | // - any other custom value | ||
1234 | // - {Dates[type=XXX]} or {Dates[:NUM]} or {Dates[type=XXX][:NUM]} | ||
1235 | // where supported values for XXX are: | ||
1236 | // - anniversary | ||
1237 | // - other | ||
1238 | // - any other custom value | ||
1239 | // - {Related[type=XXX]} or {Related[:NUM]} or {Related[type=XXX][:NUM]} | ||
1240 | // where supported values for XXX are: | ||
1241 | // - manager | ||
1242 | // - assistant | ||
1243 | // - father | ||
1244 | // - mother | ||
1245 | // - parent | ||
1246 | // - brother | ||
1247 | // - sister | ||
1248 | // - child | ||
1249 | // - friend | ||
1250 | // - spouse | ||
1251 | // - partner | ||
1252 | // - other | ||
1253 | // - any other custom value | ||
1254 | // - {Profile[type=XXX]} or {Profile[:NUM]} or {Profile[type=XXX][:NUM]} | ||
1255 | // where supported values for XXX are: | ||
1256 | |||
1257 | |||
1258 | // - flickr | ||
1259 | |||
1260 | // - myspace | ||
1261 | // - sinaweibo | ||
1262 | // - any other custom value | ||
1263 | // - {IM[type=XXX]} or {IM[service-type=YYY]} or {IM[:NUM]} | ||
1264 | // where supported values for XXX are: | ||
1265 | // - work | ||
1266 | // - home | ||
1267 | // - mobileme | ||
1268 | // - other | ||
1269 | // - any other custom value | ||
1270 | // and supported values for YYY are: | ||
1271 | // - aim | ||
1272 | // - icq | ||
1273 | // - irc | ||
1274 | // - jabber | ||
1275 | // - msn | ||
1276 | // - yahoo | ||
1277 | |||
1278 | // - gadugadu | ||
1279 | // - googletalk | ||
1280 | |||
1281 | // - skype | ||
1282 | // - any other custom value | ||
1283 | // | ||
1284 | // NOTE: if you want to use the "any other custom value" option (for XXX | ||
1285 | // or YYY above) you MUST double escape the following characters: | ||
1286 | // =[]{}\ | ||
1287 | // for example: | ||
1288 | // - for profile type "=XXX=" use: '{Profile[type=\\=XXX\\=]}' | ||
1289 | // - for profile type "\XXX\" use: '{Profile[type=\\\\XXX\\\\]}' | ||
1290 | // | ||
1291 | // NOTE: if you want to use curly brackets in the format string you must | ||
1292 | // double escape it, e.g.: ['{Company}', '\\{{Department}\\}'] | ||
1293 | // | ||
1294 | // The format string (for the value option) is an array to allow full | ||
1295 | // customization of the interface. For example if: | ||
1296 | // value: ['{LastName} {MiddleName} {FirstName}'] | ||
1297 | // and the person has no middle name, then the result in the column | ||
1298 | // will be (without quotes): | ||
1299 | // "Parker Peter" (note: two space characters) | ||
1300 | // but if you use: | ||
1301 | // value: ['{LastName}', ' {MiddleName}', ' {FirstName}'] | ||
1302 | // then the result will be (without quotes): | ||
1303 | // "Parker Peter" (note: only one space character) | ||
1304 | // The reason is that only those elements of the array are appended | ||
1305 | // into the result where non-empty substitution was performed (so the | ||
1306 | // ' {MiddleName}' element in this case is ignored, because the person | ||
1307 | // in the example above has no /more precisely has empty/ middle name). | ||
1308 | // | ||
1309 | // Examples: | ||
1310 | // To specify two columns (named "Company" and "Department / LastName"), | ||
1311 | // where the first will display the company name, and the second will display | ||
1312 | // department for company contacts (with "Dep -" prefix), and lastname for | ||
1313 | // personal contacts (with "Name -" prefix) use: | ||
1314 | // var globalCollectionDisplay=[ | ||
1315 | // { | ||
1316 | // label: 'Company', | ||
1317 | // value: ['{Company}'] | ||
1318 | // }, | ||
1319 | // { | ||
1320 | // label: 'Department / LastName', | ||
1321 | // value: { | ||
1322 | // company: ['Dep - {Department}'], | ||
1323 | // personal: ['Name - {LastName}'] | ||
1324 | // } | ||
1325 | // } | ||
1326 | // ]; | ||
1327 | // To specify 3 columns (named "Categories", "URL" and "IM"), where the first | ||
1328 | // will display categories, second will display the third work URL, and third | ||
1329 | // will display ICQ IM use: | ||
1330 | // var globalCollectionDisplay=[ | ||
1331 | // { | ||
1332 | // label: 'Categories', | ||
1333 | // value: ['{Categories}'] | ||
1334 | // }, | ||
1335 | // { | ||
1336 | // label: 'URL', | ||
1337 | // value: ['{URL[type=WORK][:2]}'] | ||
1338 | // }, | ||
1339 | // { | ||
1340 | // label: 'IM', | ||
1341 | // value: ['{IM[service-type=ICQ]}'] | ||
1342 | // } | ||
1343 | // ]; | ||
1344 | // | ||
1345 | // Recommended settings if globalGroupContactsByCompanies | ||
1346 | // is set to false: | ||
1347 | // var globalCollectionDisplay=[ | ||
1348 | // { | ||
1349 | // label: '{Name}', | ||
1350 | // value: ['{LastName}', ' {MiddleName}', ' {FirstName}'] | ||
1351 | // }, | ||
1352 | // { | ||
1353 | // label: '{Company} [{Department}]', | ||
1354 | // value: ['{Company}', ' [{Department}]'] | ||
1355 | // }, | ||
1356 | // { | ||
1357 | // label: '{JobTitle}', | ||
1358 | // value: ['{JobTitle}'] | ||
1359 | // }, | ||
1360 | // { | ||
1361 | // label: '{Email}', | ||
1362 | // value: ['{Email[:0]}'] | ||
1363 | // }, | ||
1364 | // { | ||
1365 | // label: '{Phone} 1', | ||
1366 | // value: ['{Phone[:0]}'] | ||
1367 | // }, | ||
1368 | // { | ||
1369 | // label: '{Phone} 2', | ||
1370 | // value: ['{Phone[:1]}'] | ||
1371 | // }, | ||
1372 | // { | ||
1373 | // label: '{NoteText}', | ||
1374 | // value: ['{NoteText}'] | ||
1375 | // } | ||
1376 | // ]; | ||
1377 | // | ||
1378 | // Recommended settings if globalGroupContactsByCompanies | ||
1379 | // is set to true: | ||
1380 | // var globalCollectionDisplay=[ | ||
1381 | // { | ||
1382 | // label: '{Name}', | ||
1383 | // value: { | ||
1384 | // personal: ['{LastName}', ' {MiddleName}', ' {FirstName}'], | ||
1385 | // company: ['{Company}', ' [{Department}]'] | ||
1386 | // } | ||
1387 | // }, | ||
1388 | // { | ||
1389 | // label: '{JobTitle}', | ||
1390 | // value: ['{JobTitle}'] | ||
1391 | // }, | ||
1392 | // { | ||
1393 | // label: '{Email}', | ||
1394 | // value: ['{Email[:0]}'] | ||
1395 | // }, | ||
1396 | // { | ||
1397 | // label: '{Phone} 1', | ||
1398 | // value: ['{Phone[:0]}'] | ||
1399 | // }, | ||
1400 | // { | ||
1401 | // label: '{Phone} 2', | ||
1402 | // value: ['{Phone[:1]}'] | ||
1403 | // }, | ||
1404 | // { | ||
1405 | // label: '{NoteText}', | ||
1406 | // value: ['{NoteText}'] | ||
1407 | // } | ||
1408 | // ]; | ||
1409 | // | ||
1410 | // NOTE: if left undefined, the recommended settings will be used. | ||
1411 | |||
1412 | |||
1413 | // globalCollectionSort | ||
1414 | // This options sets the ordering of contacts in the interface. In general | ||
1415 | // contacts are ordered alphabetically by an internal "sort string" which | ||
1416 | // is created for each contact. Here you can specify how this internal string | ||
1417 | // is created. The value is a simple array holding only the values from the | ||
1418 | // value property defined in the globalCollectionDisplay option. | ||
1419 | // If undefined, the definition from globalCollectionDisplay is used. | ||
1420 | // Example: | ||
1421 | // var globalCollectionSort = [ | ||
1422 | // ['{LastName}'], | ||
1423 | // ['{FirstName}'], | ||
1424 | // ['{MiddleName}'], | ||
1425 | // { | ||
1426 | // company: ['{Categories}'], | ||
1427 | // personal: ['{Company}'] | ||
1428 | // } | ||
1429 | // ]; | ||
1430 | var globalCollectionSort=[ | ||
1431 | ['{LastName}'], | ||
1432 | ['{FirstName}'], | ||
1433 | ['{MiddleName}'] | ||
1434 | ]; | ||
1435 | |||
1436 | |||
1437 | // globalContactDataMinVisiblePercentage | ||
1438 | // This option defines how the width for columns are computed. If you set | ||
1439 | // it to 1 then 100% of all data in the column will be visible (the column | ||
1440 | // width is determined by the longest string in the column). If you set it | ||
1441 | // to 0.95 then 95% of data will fit into the column width, and the remaining | ||
1442 | // 5% will be truncated (" ..."). | ||
1443 | // Example: | ||
1444 | var globalContactDataMinVisiblePercentage=0.95; | ||
1445 | |||
1446 | |||
diff --git a/pkgs/webapps/mantisbt_2/bug_report.php.diff b/pkgs/webapps/mantisbt_2/bug_report.php.diff deleted file mode 100644 index 2924252..0000000 --- a/pkgs/webapps/mantisbt_2/bug_report.php.diff +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | --- a/bug_report.php 2019-05-06 12:06:44.265508011 +0200 | ||
2 | +++ b/bug_report.php 2019-05-06 12:09:40.106952738 +0200 | ||
3 | @@ -67,6 +67,17 @@ | ||
4 | 'copy_files' => $f_copy_attachments_from_parent | ||
5 | ); | ||
6 | |||
7 | +# begin captcha check for anon user | ||
8 | +if ( current_user_is_anonymous() && get_gd_version() > 0 ) { | ||
9 | + $f_captcha = gpc_get_string( 'captcha', '' ); | ||
10 | + $f_captcha = utf8_strtolower( trim( $f_captcha ) ); | ||
11 | + | ||
12 | + $t_securimage = new Securimage(); | ||
13 | + if( $t_securimage->check( $f_captcha ) == false ) { | ||
14 | + trigger_error( ERROR_SIGNUP_NOT_MATCHING_CAPTCHA, ERROR ); | ||
15 | + } | ||
16 | +} | ||
17 | + | ||
18 | if( $f_master_bug_id > 0 ) { | ||
19 | bug_ensure_exists( $f_master_bug_id ); | ||
20 | |||
diff --git a/pkgs/webapps/mantisbt_2/bug_report_page.php.diff b/pkgs/webapps/mantisbt_2/bug_report_page.php.diff deleted file mode 100644 index 80dea91..0000000 --- a/pkgs/webapps/mantisbt_2/bug_report_page.php.diff +++ /dev/null | |||
@@ -1,53 +0,0 @@ | |||
1 | --- a/bug_report_page.php 2018-02-10 21:29:27.000000000 +0100 | ||
2 | +++ b/bug_report_page.php 2018-03-03 15:04:19.622499678 +0100 | ||
3 | @@ -708,7 +708,50 @@ | ||
4 | <span class="lbl padding-6"><?php echo lang_get( 'check_report_more_bugs' ) ?></span> | ||
5 | </label> | ||
6 | </td> | ||
7 | </tr> | ||
8 | +<?php | ||
9 | + # captcha image requires GD library and related option to ON | ||
10 | + if( current_user_is_anonymous() && get_gd_version() > 0 ) { | ||
11 | + $t_securimage_path = 'vendor/dapphp/securimage'; | ||
12 | + $t_securimage_show = $t_securimage_path . '/securimage_show.php'; | ||
13 | + $t_securimage_play = $t_securimage_path . '/securimage_play.swf?' | ||
14 | + . http_build_query( array( | ||
15 | + 'audio_file' => $t_securimage_path . '/securimage_play.php', | ||
16 | + 'bgColor1=' => '#fff', | ||
17 | + 'bgColor2=' => '#fff', | ||
18 | + 'iconColor=' => '#777', | ||
19 | + 'borderWidth=' => 1, | ||
20 | + 'borderColor=' => '#000', | ||
21 | + ) ); | ||
22 | +?> | ||
23 | + <tr> | ||
24 | + <th class="category">CAPTCHA</th> | ||
25 | + <td> | ||
26 | + | ||
27 | + <label for="captcha-field" class="block clearfix"> | ||
28 | + <strong><?php echo lang_get( 'signup_captcha_request_label' ); ?></strong> | ||
29 | + </label> | ||
30 | + <span id="captcha-input" class="input"> | ||
31 | + <?php print_captcha_input( 'captcha' ); ?> | ||
32 | + | ||
33 | + <span id="captcha-image" class="captcha-image" style="padding-right:3px;"> | ||
34 | + <img src="<?php echo $t_securimage_show; ?>" alt="visual captcha" /> | ||
35 | + <ul id="captcha-refresh"><li><a href="#"><?php | ||
36 | + echo lang_get( 'signup_captcha_refresh' ); | ||
37 | + ?></a></li></ul> | ||
38 | + </span> | ||
39 | + | ||
40 | + <object type="application/x-shockwave-flash" width="19" height="19" | ||
41 | + data="<?php echo $t_securimage_play; ?>"> | ||
42 | + <param name="movie" value="<?php echo $t_securimage_play; ?>" /> | ||
43 | + </object> | ||
44 | + </span> | ||
45 | + </td> | ||
46 | + </tr> | ||
47 | +<?php | ||
48 | + } | ||
49 | +?> | ||
50 | + | ||
51 | </table> | ||
52 | </div> | ||
53 | </div> | ||
diff --git a/pkgs/webapps/mantisbt_2/bugnote_add.php.diff b/pkgs/webapps/mantisbt_2/bugnote_add.php.diff deleted file mode 100644 index 4509f0a..0000000 --- a/pkgs/webapps/mantisbt_2/bugnote_add.php.diff +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | --- a/bugnote_add.php 2018-02-10 21:29:27.000000000 +0100 | ||
2 | +++ b/bugnote_add.php 2018-03-03 15:13:12.439919511 +0100 | ||
3 | @@ -44,6 +44,17 @@ | ||
4 | |||
5 | $t_query = array( 'issue_id' => $f_bug_id ); | ||
6 | |||
7 | +# begin captcha check for anon user | ||
8 | +if ( current_user_is_anonymous() && get_gd_version() > 0 ) { | ||
9 | + $f_captcha = gpc_get_string( 'captcha', '' ); | ||
10 | + $f_captcha = utf8_strtolower( trim( $f_captcha ) ); | ||
11 | + | ||
12 | + $t_securimage = new Securimage(); | ||
13 | + if( $t_securimage->check( $f_captcha ) == false ) { | ||
14 | + trigger_error( ERROR_SIGNUP_NOT_MATCHING_CAPTCHA, ERROR ); | ||
15 | + } | ||
16 | +} | ||
17 | + | ||
18 | if( count( $f_files ) > 0 && is_blank( $f_text ) && helper_duration_to_minutes( $f_duration ) == 0 ) { | ||
19 | $t_payload = array( | ||
20 | 'files' => helper_array_transpose( $f_files ) | ||
diff --git a/pkgs/webapps/mantisbt_2/bugnote_add_inc.php.diff b/pkgs/webapps/mantisbt_2/bugnote_add_inc.php.diff deleted file mode 100644 index a8589c7..0000000 --- a/pkgs/webapps/mantisbt_2/bugnote_add_inc.php.diff +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | --- a/bugnote_add_inc.php 2018-02-10 21:29:27.000000000 +0100 | ||
2 | +++ b/bugnote_add_inc.php 2018-03-03 15:14:27.332428557 +0100 | ||
3 | @@ -119,6 +119,49 @@ | ||
4 | <textarea name="bugnote_text" id="bugnote_text" class="<?php echo $t_bugnote_class ?>" rows="7"></textarea> | ||
5 | </td> | ||
6 | </tr> | ||
7 | +<?php | ||
8 | + # captcha image requires GD library and related option to ON | ||
9 | + if( current_user_is_anonymous() && get_gd_version() > 0 ) { | ||
10 | + $t_securimage_path = 'vendor/dapphp/securimage'; | ||
11 | + $t_securimage_show = $t_securimage_path . '/securimage_show.php'; | ||
12 | + $t_securimage_play = $t_securimage_path . '/securimage_play.swf?' | ||
13 | + . http_build_query( array( | ||
14 | + 'audio_file' => $t_securimage_path . '/securimage_play.php', | ||
15 | + 'bgColor1=' => '#fff', | ||
16 | + 'bgColor2=' => '#fff', | ||
17 | + 'iconColor=' => '#777', | ||
18 | + 'borderWidth=' => 1, | ||
19 | + 'borderColor=' => '#000', | ||
20 | + ) ); | ||
21 | +?> | ||
22 | + <tr> | ||
23 | + <th class="category">CAPTCHA</th> | ||
24 | + <td> | ||
25 | + | ||
26 | + <label for="captcha-field" class="block clearfix"> | ||
27 | + <strong><?php echo lang_get( 'signup_captcha_request_label' ); ?></strong> | ||
28 | + </label> | ||
29 | + <span id="captcha-input" class="input"> | ||
30 | + <?php print_captcha_input( 'captcha' ); ?> | ||
31 | + | ||
32 | + <span id="captcha-image" class="captcha-image" style="padding-right:3px;"> | ||
33 | + <img src="<?php echo $t_securimage_show; ?>" alt="visual captcha" /> | ||
34 | + <ul id="captcha-refresh"><li><a href="#"><?php | ||
35 | + echo lang_get( 'signup_captcha_refresh' ); | ||
36 | + ?></a></li></ul> | ||
37 | + </span> | ||
38 | + | ||
39 | + <object type="application/x-shockwave-flash" width="19" height="19" | ||
40 | + data="<?php echo $t_securimage_play; ?>"> | ||
41 | + <param name="movie" value="<?php echo $t_securimage_play; ?>" /> | ||
42 | + </object> | ||
43 | + </span> | ||
44 | + </td> | ||
45 | + </tr> | ||
46 | +<?php | ||
47 | + } | ||
48 | +?> | ||
49 | + | ||
50 | |||
51 | <?php | ||
52 | if( config_get( 'time_tracking_enabled' ) ) { | ||
diff --git a/pkgs/webapps/mantisbt_2/default.nix b/pkgs/webapps/mantisbt_2/default.nix deleted file mode 100644 index 5aa04d1..0000000 --- a/pkgs/webapps/mantisbt_2/default.nix +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | { mantis_config ? "/etc/mantisbt/config_inc.php", stdenv, fetchurl, lib, callPackage}: | ||
2 | let | ||
3 | pluginNames = [ "slack" "source-integration" ]; | ||
4 | allPlugins = lib.attrsets.genAttrs pluginNames | ||
5 | (name: callPackage (./plugins + "/${name}") {}); | ||
6 | toPassthru = pkg: plugins: { | ||
7 | inherit plugins allPlugins; | ||
8 | withPlugins = withPlugins pkg; | ||
9 | }; | ||
10 | withPlugins = pkg: toPlugins: | ||
11 | let | ||
12 | plugins = toPlugins allPlugins; | ||
13 | toInstallPlugin = n: | ||
14 | if builtins.hasAttr "selector" n then | ||
15 | "ln -sf ${n}/${n.selector} $out/plugins/" | ||
16 | else | ||
17 | "ln -sf ${n} $out/plugins/${n.pluginName}"; | ||
18 | newMantisbt = pkg.overrideAttrs(old: { | ||
19 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallPlugin plugins); | ||
20 | passthru = toPassthru newMantisbt (pkg.plugins ++ plugins); | ||
21 | }); | ||
22 | in newMantisbt; | ||
23 | package = stdenv.mkDerivation rec { | ||
24 | name = "mantisbt-${version}"; | ||
25 | version = "2.21.0"; | ||
26 | src = fetchurl { | ||
27 | url = "https://downloads.sourceforge.net/project/mantisbt/mantis-stable/${version}/${name}.tar.gz"; | ||
28 | sha256 = "13lx569dp1gibq5daqp7dj6gsqic85rrix1s7xkp60gwpzk8wiw5"; | ||
29 | }; | ||
30 | patches = [ | ||
31 | ./bug_report.php.diff | ||
32 | ./bug_report_page.php.diff | ||
33 | ./bugnote_add.php.diff | ||
34 | ./bugnote_add_inc.php.diff | ||
35 | ]; | ||
36 | installPhase = '' | ||
37 | cp -a . $out | ||
38 | ln -s ${mantis_config} $out/config/config_inc.php | ||
39 | ''; | ||
40 | |||
41 | passthru = toPassthru package []; | ||
42 | }; | ||
43 | in package | ||
diff --git a/pkgs/webapps/mantisbt_2/plugins/slack/default.nix b/pkgs/webapps/mantisbt_2/plugins/slack/default.nix deleted file mode 100644 index 61ed15f..0000000 --- a/pkgs/webapps/mantisbt_2/plugins/slack/default.nix +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | { stdenv, fetchFromGitHub }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | passthru = { | ||
4 | pluginName = "Slack"; | ||
5 | }; | ||
6 | version = "9286d2e-master"; | ||
7 | name = "mantisbt-plugin-slack-${version}"; | ||
8 | src = fetchFromGitHub { | ||
9 | owner = "mantisbt-plugins"; | ||
10 | repo = "Slack"; | ||
11 | rev = "9286d2eeeb8a986ed949e378711fef5f0bf182dc"; | ||
12 | sha256 = "0nn0v4jc967giilkzrppi5svd04m2hnals75xxp0iabcdjnih0mn"; | ||
13 | }; | ||
14 | installPhase = '' | ||
15 | sed -i -e "s/return '@' . \\\$username;/return \\\$username;/" Slack.php | ||
16 | cp -a . $out | ||
17 | ''; | ||
18 | } | ||
diff --git a/pkgs/webapps/mantisbt_2/plugins/source-integration/Source.API.php.diff b/pkgs/webapps/mantisbt_2/plugins/source-integration/Source.API.php.diff deleted file mode 100644 index c355144..0000000 --- a/pkgs/webapps/mantisbt_2/plugins/source-integration/Source.API.php.diff +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | --- b/Source/Source.API.php 2017-09-18 00:50:32.000000000 +0200 | ||
2 | +++ a/Source/Source.API.php 2018-03-04 19:00:25.578889039 +0100 | ||
3 | @@ -452,6 +452,9 @@ | ||
4 | # Allow other plugins to post-process commit data | ||
5 | event_signal( 'EVENT_SOURCE_COMMITS', array( $p_changesets ) ); | ||
6 | event_signal( 'EVENT_SOURCE_FIXED', array( $t_fixed_bugs ) ); | ||
7 | + foreach( $t_fixed_bugs as $t_bug_id => $t_changeset ) { | ||
8 | + event_signal( 'EVENT_BUG_ACTION', array('RESOLVE', $t_bug_id) ); | ||
9 | + } | ||
10 | } | ||
11 | |||
12 | /** | ||
diff --git a/pkgs/webapps/mantisbt_2/plugins/source-integration/default.nix b/pkgs/webapps/mantisbt_2/plugins/source-integration/default.nix deleted file mode 100644 index dc6c7de..0000000 --- a/pkgs/webapps/mantisbt_2/plugins/source-integration/default.nix +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | { stdenv, fetchFromGitHub }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "v2.2.0"; | ||
4 | name = "mantisbt-plugin-source-integration-${version}"; | ||
5 | src = fetchFromGitHub { | ||
6 | owner = "mantisbt-plugins"; | ||
7 | repo = "source-integration"; | ||
8 | rev = "44fc9e2e770aff4f40f56833f26a86ce0e2deb76"; | ||
9 | sha256 = "0gcm6kqqijnv303sk59zn27adwx5vkr545mwzyaq2nrpxnkwdy5b"; | ||
10 | }; | ||
11 | patches = [ | ||
12 | ./Source.API.php.diff | ||
13 | ]; | ||
14 | installPhase = '' | ||
15 | mkdir $out | ||
16 | cp -a Source* $out/ | ||
17 | ''; | ||
18 | passthru = { | ||
19 | selector = "Source*"; | ||
20 | }; | ||
21 | } | ||
diff --git a/pkgs/webapps/mastodon/default.nix b/pkgs/webapps/mastodon/default.nix deleted file mode 100644 index ce015c5..0000000 --- a/pkgs/webapps/mastodon/default.nix +++ /dev/null | |||
@@ -1,92 +0,0 @@ | |||
1 | { varDir ? "/var/lib/mastodon", mylibs, | ||
2 | stdenv, writeText, runCommand, | ||
3 | ruby_2_6, bundlerEnv, defaultGemConfig, | ||
4 | jq, protobuf, protobufc, pkgconfig, libidn, pam, nodejs, yarn, yarn2nix-moretea }: | ||
5 | let | ||
6 | info = mylibs.fetchedGithub ./mastodon.json // { | ||
7 | src = runCommand "mastodon-patched" { | ||
8 | source = (mylibs.fetchedGithub ./mastodon.json).src; | ||
9 | } '' | ||
10 | cp -a $source $out | ||
11 | chmod -R u+w $out | ||
12 | sed -i -e "/fuubar/s/2.4.0/2.4.1/" $out/Gemfile.lock | ||
13 | sed -i -e "s/ff00dc470b5b2d9f145a6d6e977a54de5df2b4c9/ff00dc470b5b2d9f145a6d6e977a54de5df2b4c9#4255dc41fa7df9c3a02c1595f058e248bc37b784/" $out/yarn.lock | ||
14 | ''; | ||
15 | }; | ||
16 | gems = bundlerEnv { | ||
17 | name = "mastodon-env"; | ||
18 | ruby = ruby_2_6; | ||
19 | gemset = ./gemset.nix; | ||
20 | gemdir = info.src; | ||
21 | groups = [ "default" "production" "test" "development" ]; | ||
22 | gemConfig = defaultGemConfig // { | ||
23 | redis-rack = attrs: { | ||
24 | preBuild = '' | ||
25 | sed -i 's!s\.files.*!!' redis-rack.gemspec | ||
26 | ''; | ||
27 | }; | ||
28 | tzinfo = attrs: { | ||
29 | preBuild = '' | ||
30 | sed -i 's!s\.files.*!!' tzinfo.gemspec | ||
31 | ''; | ||
32 | }; | ||
33 | cld3 = attrs: { | ||
34 | buildInputs = [ protobuf protobufc pkgconfig ]; | ||
35 | }; | ||
36 | idn-ruby = attrs: { | ||
37 | buildInputs = [ libidn ]; | ||
38 | }; | ||
39 | rpam2 = attrs: { | ||
40 | buildInputs = [ pam ]; | ||
41 | }; | ||
42 | }; | ||
43 | }; | ||
44 | yarnModules = let | ||
45 | packagejson = runCommand "package.json" { buildInputs = [ jq ]; } '' | ||
46 | cat ${info.src}/package.json | jq -r '.version = "${info.version}"' > $out | ||
47 | ''; | ||
48 | in | ||
49 | yarn2nix-moretea.mkYarnModules rec { | ||
50 | name = "mastodon-yarn"; | ||
51 | pname = name; | ||
52 | version = info.version; | ||
53 | packageJSON = packagejson; | ||
54 | yarnLock = "${info.src}/yarn.lock"; | ||
55 | yarnNix = ./yarn-packages.nix; | ||
56 | pkgConfig = { | ||
57 | uws = { | ||
58 | postInstall = '' | ||
59 | npx node-gyp rebuild > build_log.txt 2>&1 || true | ||
60 | ''; | ||
61 | }; | ||
62 | }; | ||
63 | }; | ||
64 | mastodon_with_yarn = stdenv.mkDerivation (info // rec { | ||
65 | installPhase = '' | ||
66 | cp -a . $out | ||
67 | cp -a ${yarnModules}/node_modules $out | ||
68 | ''; | ||
69 | buildInputs = [ yarnModules ]; | ||
70 | }); | ||
71 | in | ||
72 | stdenv.mkDerivation { | ||
73 | name = "mastodon"; | ||
74 | inherit mastodon_with_yarn; | ||
75 | builder = writeText "build_mastodon" '' | ||
76 | source $stdenv/setup | ||
77 | set -a | ||
78 | SECRET_KEY_BASE=Dummy | ||
79 | OTP_SECRET=Dummy | ||
80 | set +a | ||
81 | cp -a $mastodon_with_yarn $out | ||
82 | cd $out | ||
83 | chmod u+rwX . public | ||
84 | chmod -R u+rwX config/ node_modules/ | ||
85 | sed -i -e 's@^end$@ config.action_mailer.sendmail_settings = { location: ENV.fetch("SENDMAIL_LOCATION", "/usr/sbin/sendmail") }\nend@' config/environments/production.rb | ||
86 | RAILS_ENV=production ${gems}/bin/rails assets:precompile | ||
87 | rm -rf tmp/cache | ||
88 | ln -sf ${varDir}/tmp/cache tmp | ||
89 | ''; | ||
90 | buildInputs = [ gems gems.ruby nodejs yarn ]; | ||
91 | passthru = { inherit gems varDir; }; | ||
92 | } | ||
diff --git a/pkgs/webapps/mastodon/gemset.nix b/pkgs/webapps/mastodon/gemset.nix deleted file mode 100644 index 74fa5b3..0000000 --- a/pkgs/webapps/mastodon/gemset.nix +++ /dev/null | |||
@@ -1,2816 +0,0 @@ | |||
1 | { | ||
2 | actioncable = { | ||
3 | dependencies = ["actionpack" "nio4r" "websocket-driver"]; | ||
4 | groups = ["default"]; | ||
5 | platforms = []; | ||
6 | source = { | ||
7 | remotes = ["https://rubygems.org"]; | ||
8 | sha256 = "04wd9rf8sglrqc8jz49apqcxbi51gdj7l1apf5qr4i86iddk6pkm"; | ||
9 | type = "gem"; | ||
10 | }; | ||
11 | version = "5.2.3"; | ||
12 | }; | ||
13 | actionmailer = { | ||
14 | dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; | ||
15 | groups = ["default" "development"]; | ||
16 | platforms = []; | ||
17 | source = { | ||
18 | remotes = ["https://rubygems.org"]; | ||
19 | sha256 = "15laym06zcm2021qdhlyr6y9jn1marw436i89hcxqg14a8zvyvwa"; | ||
20 | type = "gem"; | ||
21 | }; | ||
22 | version = "5.2.3"; | ||
23 | }; | ||
24 | actionpack = { | ||
25 | dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; | ||
26 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
27 | platforms = []; | ||
28 | source = { | ||
29 | remotes = ["https://rubygems.org"]; | ||
30 | sha256 = "1s2iay17i2k0xx36cmnpbrmr5w6x70jk7fq1d8w70xcdw5chm0w1"; | ||
31 | type = "gem"; | ||
32 | }; | ||
33 | version = "5.2.3"; | ||
34 | }; | ||
35 | actionview = { | ||
36 | dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; | ||
37 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
38 | platforms = []; | ||
39 | source = { | ||
40 | remotes = ["https://rubygems.org"]; | ||
41 | sha256 = "1v49rgf8305grqf6gq7qa47qhamr369igyy0giycz60x86afyr4h"; | ||
42 | type = "gem"; | ||
43 | }; | ||
44 | version = "5.2.3"; | ||
45 | }; | ||
46 | active_model_serializers = { | ||
47 | dependencies = ["actionpack" "activemodel" "case_transform" "jsonapi-renderer"]; | ||
48 | groups = ["default"]; | ||
49 | platforms = []; | ||
50 | source = { | ||
51 | remotes = ["https://rubygems.org"]; | ||
52 | sha256 = "00fldcifg5zyx866njpjhwlxjxvb32pakf5q3pwnw3ms905s70kd"; | ||
53 | type = "gem"; | ||
54 | }; | ||
55 | version = "0.10.9"; | ||
56 | }; | ||
57 | active_record_query_trace = { | ||
58 | groups = ["development"]; | ||
59 | platforms = []; | ||
60 | source = { | ||
61 | remotes = ["https://rubygems.org"]; | ||
62 | sha256 = "16fwv2h3h3hh8v6wgrpv13yxgg8mswsld0d8z6q1y5z9vd8vncc3"; | ||
63 | type = "gem"; | ||
64 | }; | ||
65 | version = "1.6.2"; | ||
66 | }; | ||
67 | activejob = { | ||
68 | dependencies = ["activesupport" "globalid"]; | ||
69 | groups = ["default" "development"]; | ||
70 | platforms = []; | ||
71 | source = { | ||
72 | remotes = ["https://rubygems.org"]; | ||
73 | sha256 = "17vizibxbsli5yppgrvmw13wj7a9xy19s5nqxf1k23bbk2s5b87s"; | ||
74 | type = "gem"; | ||
75 | }; | ||
76 | version = "5.2.3"; | ||
77 | }; | ||
78 | activemodel = { | ||
79 | dependencies = ["activesupport"]; | ||
80 | groups = ["default" "development"]; | ||
81 | platforms = []; | ||
82 | source = { | ||
83 | remotes = ["https://rubygems.org"]; | ||
84 | sha256 = "0mghh9di8011ara9h1r5a216yzk1vjm9r3p0gdvdi8j1zmkl6k6h"; | ||
85 | type = "gem"; | ||
86 | }; | ||
87 | version = "5.2.3"; | ||
88 | }; | ||
89 | activerecord = { | ||
90 | dependencies = ["activemodel" "activesupport" "arel"]; | ||
91 | groups = ["default" "development"]; | ||
92 | platforms = []; | ||
93 | source = { | ||
94 | remotes = ["https://rubygems.org"]; | ||
95 | sha256 = "0d6036f592803iyvp6bw98p3sg638mia5dbw19lvachx6jgzfvpw"; | ||
96 | type = "gem"; | ||
97 | }; | ||
98 | version = "5.2.3"; | ||
99 | }; | ||
100 | activestorage = { | ||
101 | dependencies = ["actionpack" "activerecord" "marcel"]; | ||
102 | groups = ["default"]; | ||
103 | platforms = []; | ||
104 | source = { | ||
105 | remotes = ["https://rubygems.org"]; | ||
106 | sha256 = "04is6ipjqw1f337i8pm8w5bd99rpygqfd0fzzxkr7jd308ggmsjk"; | ||
107 | type = "gem"; | ||
108 | }; | ||
109 | version = "5.2.3"; | ||
110 | }; | ||
111 | activesupport = { | ||
112 | dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; | ||
113 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
114 | platforms = []; | ||
115 | source = { | ||
116 | remotes = ["https://rubygems.org"]; | ||
117 | sha256 = "110vp4frgkw3mpzlmshg2f2ig09cknls2w68ym1r1s39d01v0mi8"; | ||
118 | type = "gem"; | ||
119 | }; | ||
120 | version = "5.2.3"; | ||
121 | }; | ||
122 | addressable = { | ||
123 | dependencies = ["public_suffix"]; | ||
124 | groups = ["default" "development" "test"]; | ||
125 | platforms = []; | ||
126 | source = { | ||
127 | remotes = ["https://rubygems.org"]; | ||
128 | sha256 = "0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l"; | ||
129 | type = "gem"; | ||
130 | }; | ||
131 | version = "2.6.0"; | ||
132 | }; | ||
133 | airbrussh = { | ||
134 | dependencies = ["sshkit"]; | ||
135 | groups = ["default" "development"]; | ||
136 | platforms = []; | ||
137 | source = { | ||
138 | remotes = ["https://rubygems.org"]; | ||
139 | sha256 = "0yp1sl5n94ksxpwmaajflbdls45s81hw4spgz01h19xs2zrvv8wl"; | ||
140 | type = "gem"; | ||
141 | }; | ||
142 | version = "1.3.0"; | ||
143 | }; | ||
144 | annotate = { | ||
145 | dependencies = ["activerecord" "rake"]; | ||
146 | groups = ["development"]; | ||
147 | platforms = []; | ||
148 | source = { | ||
149 | remotes = ["https://rubygems.org"]; | ||
150 | sha256 = "1k3ls7z32gz6yx6y372r5a7sm4nkbyrc4nkqyqzgayfkgpjzh0wk"; | ||
151 | type = "gem"; | ||
152 | }; | ||
153 | version = "2.7.5"; | ||
154 | }; | ||
155 | arel = { | ||
156 | groups = ["default" "development"]; | ||
157 | platforms = []; | ||
158 | source = { | ||
159 | remotes = ["https://rubygems.org"]; | ||
160 | sha256 = "1jk7wlmkr61f6g36w9s2sn46nmdg6wn2jfssrhbhirv5x9n95nk0"; | ||
161 | type = "gem"; | ||
162 | }; | ||
163 | version = "9.0.0"; | ||
164 | }; | ||
165 | ast = { | ||
166 | groups = ["default" "development" "test"]; | ||
167 | platforms = []; | ||
168 | source = { | ||
169 | remotes = ["https://rubygems.org"]; | ||
170 | sha256 = "184ssy3w93nkajlz2c70ifm79jp3j737294kbc5fjw69v1w0n9x7"; | ||
171 | type = "gem"; | ||
172 | }; | ||
173 | version = "2.4.0"; | ||
174 | }; | ||
175 | attr_encrypted = { | ||
176 | dependencies = ["encryptor"]; | ||
177 | groups = ["default"]; | ||
178 | platforms = []; | ||
179 | source = { | ||
180 | remotes = ["https://rubygems.org"]; | ||
181 | sha256 = "0ncv2az1zlj33bsllr6q1qdvbw42gv91lxq0ryclbv8l8xh841jg"; | ||
182 | type = "gem"; | ||
183 | }; | ||
184 | version = "3.1.0"; | ||
185 | }; | ||
186 | av = { | ||
187 | dependencies = ["cocaine"]; | ||
188 | groups = ["default"]; | ||
189 | platforms = []; | ||
190 | source = { | ||
191 | remotes = ["https://rubygems.org"]; | ||
192 | sha256 = "1swakpybf6g0nzfdn6q4s9c97ysc3i4ffk84dw8v2321fpvc8gqq"; | ||
193 | type = "gem"; | ||
194 | }; | ||
195 | version = "0.9.0"; | ||
196 | }; | ||
197 | aws-eventstream = { | ||
198 | groups = ["default"]; | ||
199 | platforms = []; | ||
200 | source = { | ||
201 | remotes = ["https://rubygems.org"]; | ||
202 | sha256 = "100g77a5ixg4p5zwq77f28n2pdkk0y481f7v83qrlmnj22318qq6"; | ||
203 | type = "gem"; | ||
204 | }; | ||
205 | version = "1.0.3"; | ||
206 | }; | ||
207 | aws-partitions = { | ||
208 | groups = ["default"]; | ||
209 | platforms = []; | ||
210 | source = { | ||
211 | remotes = ["https://rubygems.org"]; | ||
212 | sha256 = "0f72sad43nm7qqcb6bmracqv4qjdijg1jd6yabad6jaszw2hncx2"; | ||
213 | type = "gem"; | ||
214 | }; | ||
215 | version = "1.175.0"; | ||
216 | }; | ||
217 | aws-sdk-core = { | ||
218 | dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"]; | ||
219 | groups = ["default"]; | ||
220 | platforms = []; | ||
221 | source = { | ||
222 | remotes = ["https://rubygems.org"]; | ||
223 | sha256 = "1rgvjvg58qh8b5nppp27qfayh0709bhhbqdpqvcr4ccs8qanln07"; | ||
224 | type = "gem"; | ||
225 | }; | ||
226 | version = "3.55.0"; | ||
227 | }; | ||
228 | aws-sdk-kms = { | ||
229 | dependencies = ["aws-sdk-core" "aws-sigv4"]; | ||
230 | groups = ["default"]; | ||
231 | platforms = []; | ||
232 | source = { | ||
233 | remotes = ["https://rubygems.org"]; | ||
234 | sha256 = "1lkdhk75fj67n7wh61p13fga6n15s2lfvh1sfgdhaj99kmv44lyv"; | ||
235 | type = "gem"; | ||
236 | }; | ||
237 | version = "1.21.0"; | ||
238 | }; | ||
239 | aws-sdk-s3 = { | ||
240 | dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"]; | ||
241 | groups = ["default"]; | ||
242 | platforms = []; | ||
243 | source = { | ||
244 | remotes = ["https://rubygems.org"]; | ||
245 | sha256 = "06vmp89n5gljx7rs57yjm6my8f3b14ddb24g95pnwsd86im7plp4"; | ||
246 | type = "gem"; | ||
247 | }; | ||
248 | version = "1.42.0"; | ||
249 | }; | ||
250 | aws-sigv4 = { | ||
251 | dependencies = ["aws-eventstream"]; | ||
252 | groups = ["default"]; | ||
253 | platforms = []; | ||
254 | source = { | ||
255 | remotes = ["https://rubygems.org"]; | ||
256 | sha256 = "1dfc8i5cxjwlvi4b665lbpbwvks8a6wfy3vfmwr3pjdmxwdmc2cs"; | ||
257 | type = "gem"; | ||
258 | }; | ||
259 | version = "1.1.0"; | ||
260 | }; | ||
261 | bcrypt = { | ||
262 | groups = ["default" "pam_authentication"]; | ||
263 | platforms = []; | ||
264 | source = { | ||
265 | remotes = ["https://rubygems.org"]; | ||
266 | sha256 = "0ysblqxkclmnhrd0kmb5mr8p38mbar633gdsb14b7dhkhgawgzfy"; | ||
267 | type = "gem"; | ||
268 | }; | ||
269 | version = "3.1.12"; | ||
270 | }; | ||
271 | benchmark-ips = { | ||
272 | groups = ["default" "development"]; | ||
273 | platforms = []; | ||
274 | source = { | ||
275 | remotes = ["https://rubygems.org"]; | ||
276 | sha256 = "1w59c4qnwkjqwn7zyp9hshslbshna77vknmz43h0va5lxisd6ai2"; | ||
277 | type = "gem"; | ||
278 | }; | ||
279 | version = "2.7.2"; | ||
280 | }; | ||
281 | better_errors = { | ||
282 | dependencies = ["coderay" "erubi" "rack"]; | ||
283 | groups = ["development"]; | ||
284 | platforms = []; | ||
285 | source = { | ||
286 | remotes = ["https://rubygems.org"]; | ||
287 | sha256 = "1mq43k4szfgcdanhdwacyp7yvldl76m9arhdj9n0x25dmbdzp2yn"; | ||
288 | type = "gem"; | ||
289 | }; | ||
290 | version = "2.5.1"; | ||
291 | }; | ||
292 | binding_of_caller = { | ||
293 | dependencies = ["debug_inspector"]; | ||
294 | groups = ["development"]; | ||
295 | platforms = []; | ||
296 | source = { | ||
297 | remotes = ["https://rubygems.org"]; | ||
298 | sha256 = "05syqlks7463zsy1jdfbbdravdhj9hpj5pv2m74blqpv8bq4vv5g"; | ||
299 | type = "gem"; | ||
300 | }; | ||
301 | version = "0.8.0"; | ||
302 | }; | ||
303 | blurhash = { | ||
304 | dependencies = ["ffi"]; | ||
305 | groups = ["default"]; | ||
306 | platforms = []; | ||
307 | source = { | ||
308 | remotes = ["https://rubygems.org"]; | ||
309 | sha256 = "1n137f1dg3cwl8dwmss61kgi21n0vg6nnkd7vymxssd1vzl4r3fs"; | ||
310 | type = "gem"; | ||
311 | }; | ||
312 | version = "0.1.3"; | ||
313 | }; | ||
314 | bootsnap = { | ||
315 | dependencies = ["msgpack"]; | ||
316 | groups = ["default"]; | ||
317 | platforms = []; | ||
318 | source = { | ||
319 | remotes = ["https://rubygems.org"]; | ||
320 | sha256 = "1jcc0x0l3jqap8r8l1j994ljh93c8hcppm59mjzpa0hdvprh23av"; | ||
321 | type = "gem"; | ||
322 | }; | ||
323 | version = "1.4.4"; | ||
324 | }; | ||
325 | brakeman = { | ||
326 | groups = ["development"]; | ||
327 | platforms = []; | ||
328 | source = { | ||
329 | remotes = ["https://rubygems.org"]; | ||
330 | sha256 = "0vqnhlswvrg5fpxszfkjmla85gdlvgspz0whlli730ydx648mi68"; | ||
331 | type = "gem"; | ||
332 | }; | ||
333 | version = "4.5.1"; | ||
334 | }; | ||
335 | browser = { | ||
336 | groups = ["default"]; | ||
337 | platforms = []; | ||
338 | source = { | ||
339 | remotes = ["https://rubygems.org"]; | ||
340 | sha256 = "0sdx0ny34i6vqxdsc7sy9g0nafdbrw8kvvb5xh9m18x1bzpqk92f"; | ||
341 | type = "gem"; | ||
342 | }; | ||
343 | version = "2.5.3"; | ||
344 | }; | ||
345 | builder = { | ||
346 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
347 | platforms = []; | ||
348 | source = { | ||
349 | remotes = ["https://rubygems.org"]; | ||
350 | sha256 = "0qibi5s67lpdv1wgcj66wcymcr04q6j4mzws6a479n0mlrmh5wr1"; | ||
351 | type = "gem"; | ||
352 | }; | ||
353 | version = "3.2.3"; | ||
354 | }; | ||
355 | bullet = { | ||
356 | dependencies = ["activesupport" "uniform_notifier"]; | ||
357 | groups = ["development"]; | ||
358 | platforms = []; | ||
359 | source = { | ||
360 | remotes = ["https://rubygems.org"]; | ||
361 | sha256 = "0i00v399i0g8wba5kw32qhx15bygih8fcr59c9qvy2mpwcqaspv5"; | ||
362 | type = "gem"; | ||
363 | }; | ||
364 | version = "6.0.0"; | ||
365 | }; | ||
366 | bundler-audit = { | ||
367 | dependencies = ["thor"]; | ||
368 | groups = ["development"]; | ||
369 | platforms = []; | ||
370 | source = { | ||
371 | remotes = ["https://rubygems.org"]; | ||
372 | sha256 = "0pm22xpn3xyymsainixnrk8v3l3xi9bzwkjkspx00cfzp84xvxbq"; | ||
373 | type = "gem"; | ||
374 | }; | ||
375 | version = "0.6.1"; | ||
376 | }; | ||
377 | byebug = { | ||
378 | groups = ["default" "development" "test"]; | ||
379 | platforms = []; | ||
380 | source = { | ||
381 | remotes = ["https://rubygems.org"]; | ||
382 | sha256 = "1vk10jinfp345s2cb4ba7d0jcxj3phbgvab0by4a3ln2d376mkj4"; | ||
383 | type = "gem"; | ||
384 | }; | ||
385 | version = "11.0.0"; | ||
386 | }; | ||
387 | capistrano = { | ||
388 | dependencies = ["airbrussh" "i18n" "rake" "sshkit"]; | ||
389 | groups = ["development"]; | ||
390 | platforms = []; | ||
391 | source = { | ||
392 | remotes = ["https://rubygems.org"]; | ||
393 | sha256 = "1p1hj8hpmplxl41y6phsvkw2k8x3yxmkngs8yl8gkr7c1ma870p4"; | ||
394 | type = "gem"; | ||
395 | }; | ||
396 | version = "3.11.0"; | ||
397 | }; | ||
398 | capistrano-bundler = { | ||
399 | dependencies = ["capistrano" "sshkit"]; | ||
400 | groups = ["default" "development"]; | ||
401 | platforms = []; | ||
402 | source = { | ||
403 | remotes = ["https://rubygems.org"]; | ||
404 | sha256 = "1p00rw2886v77kfjnh0mslyrv4lij5fa9niflz1lhynzlivgrmdr"; | ||
405 | type = "gem"; | ||
406 | }; | ||
407 | version = "1.3.0"; | ||
408 | }; | ||
409 | capistrano-rails = { | ||
410 | dependencies = ["capistrano" "capistrano-bundler"]; | ||
411 | groups = ["development"]; | ||
412 | platforms = []; | ||
413 | source = { | ||
414 | remotes = ["https://rubygems.org"]; | ||
415 | sha256 = "19j82kiarrph1ilw2xfhfj62z0b53w0gph7613b21iccb2gn3dqy"; | ||
416 | type = "gem"; | ||
417 | }; | ||
418 | version = "1.4.0"; | ||
419 | }; | ||
420 | capistrano-rbenv = { | ||
421 | dependencies = ["capistrano" "sshkit"]; | ||
422 | groups = ["development"]; | ||
423 | platforms = []; | ||
424 | source = { | ||
425 | remotes = ["https://rubygems.org"]; | ||
426 | sha256 = "182dmsliny87b74m9mxi7farmp03ycqh30yf58b2kcx7m2js2s92"; | ||
427 | type = "gem"; | ||
428 | }; | ||
429 | version = "2.1.4"; | ||
430 | }; | ||
431 | capistrano-yarn = { | ||
432 | dependencies = ["capistrano"]; | ||
433 | groups = ["development"]; | ||
434 | platforms = []; | ||
435 | source = { | ||
436 | remotes = ["https://rubygems.org"]; | ||
437 | sha256 = "1zdg2s061vl5b8114n909mrjb2hc1qx0i4wqx9nacsrcjgyp07l9"; | ||
438 | type = "gem"; | ||
439 | }; | ||
440 | version = "2.0.2"; | ||
441 | }; | ||
442 | capybara = { | ||
443 | dependencies = ["addressable" "mini_mime" "nokogiri" "rack" "rack-test" "regexp_parser" "xpath"]; | ||
444 | groups = ["test"]; | ||
445 | platforms = []; | ||
446 | source = { | ||
447 | remotes = ["https://rubygems.org"]; | ||
448 | sha256 = "0zg182fa19w0n19v6l72ly2rsyd4x5jvph2bfrm1fjba6wwxn20h"; | ||
449 | type = "gem"; | ||
450 | }; | ||
451 | version = "3.24.0"; | ||
452 | }; | ||
453 | case_transform = { | ||
454 | dependencies = ["activesupport"]; | ||
455 | groups = ["default"]; | ||
456 | platforms = []; | ||
457 | source = { | ||
458 | remotes = ["https://rubygems.org"]; | ||
459 | sha256 = "0fzyws6spn5arqf6q604dh9mrj84a36k5hsc8z7jgcpfvhc49bg2"; | ||
460 | type = "gem"; | ||
461 | }; | ||
462 | version = "0.2"; | ||
463 | }; | ||
464 | charlock_holmes = { | ||
465 | groups = ["default"]; | ||
466 | platforms = []; | ||
467 | source = { | ||
468 | remotes = ["https://rubygems.org"]; | ||
469 | sha256 = "1nf1l31n10yaark2rrg5qzyzcx9w80681449s3j09qmnipsl8rl5"; | ||
470 | type = "gem"; | ||
471 | }; | ||
472 | version = "0.7.6"; | ||
473 | }; | ||
474 | chewy = { | ||
475 | dependencies = ["activesupport" "elasticsearch" "elasticsearch-dsl"]; | ||
476 | groups = ["default"]; | ||
477 | platforms = []; | ||
478 | source = { | ||
479 | remotes = ["https://rubygems.org"]; | ||
480 | sha256 = "0m1n98fww2is9v4h73qnxjzs0l9ixx2szby5rip26g9l7mjwmm7v"; | ||
481 | type = "gem"; | ||
482 | }; | ||
483 | version = "5.0.0"; | ||
484 | }; | ||
485 | chunky_png = { | ||
486 | groups = ["default"]; | ||
487 | platforms = []; | ||
488 | source = { | ||
489 | remotes = ["https://rubygems.org"]; | ||
490 | sha256 = "05g2xli9wbjylkmblln3bhvjalziwb92q452q8ibjagmb853424w"; | ||
491 | type = "gem"; | ||
492 | }; | ||
493 | version = "1.3.10"; | ||
494 | }; | ||
495 | cld3 = { | ||
496 | dependencies = ["ffi"]; | ||
497 | groups = ["default"]; | ||
498 | platforms = []; | ||
499 | source = { | ||
500 | remotes = ["https://rubygems.org"]; | ||
501 | sha256 = "06p4jgrr0zixqnflmg5dcrbmhlnmll85j7vxkrjmnng293cwvzgw"; | ||
502 | type = "gem"; | ||
503 | }; | ||
504 | version = "3.2.4"; | ||
505 | }; | ||
506 | climate_control = { | ||
507 | groups = ["test"]; | ||
508 | platforms = []; | ||
509 | source = { | ||
510 | remotes = ["https://rubygems.org"]; | ||
511 | sha256 = "0q11v0iabvr6rif0d025xh078ili5frrihlj0m04zfg7lgvagxji"; | ||
512 | type = "gem"; | ||
513 | }; | ||
514 | version = "0.2.0"; | ||
515 | }; | ||
516 | cocaine = { | ||
517 | dependencies = ["climate_control"]; | ||
518 | groups = ["default"]; | ||
519 | platforms = []; | ||
520 | source = { | ||
521 | remotes = ["https://rubygems.org"]; | ||
522 | sha256 = "01kk5xd7lspbkdvn6nyj0y51zhvia3z6r4nalbdcqw5fbsywwi7d"; | ||
523 | type = "gem"; | ||
524 | }; | ||
525 | version = "0.5.8"; | ||
526 | }; | ||
527 | coderay = { | ||
528 | groups = ["default" "development" "test"]; | ||
529 | platforms = []; | ||
530 | source = { | ||
531 | remotes = ["https://rubygems.org"]; | ||
532 | sha256 = "15vav4bhcc2x3jmi3izb11l4d9f3xv8hp2fszb7iqmpsccv1pz4y"; | ||
533 | type = "gem"; | ||
534 | }; | ||
535 | version = "1.1.2"; | ||
536 | }; | ||
537 | concurrent-ruby = { | ||
538 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
539 | platforms = []; | ||
540 | source = { | ||
541 | remotes = ["https://rubygems.org"]; | ||
542 | sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; | ||
543 | type = "gem"; | ||
544 | }; | ||
545 | version = "1.1.5"; | ||
546 | }; | ||
547 | connection_pool = { | ||
548 | groups = ["default" "test"]; | ||
549 | platforms = []; | ||
550 | source = { | ||
551 | remotes = ["https://rubygems.org"]; | ||
552 | sha256 = "0lflx29mlznf1hn0nihkgllzbj8xp5qasn8j7h838465pi399k68"; | ||
553 | type = "gem"; | ||
554 | }; | ||
555 | version = "2.2.2"; | ||
556 | }; | ||
557 | crack = { | ||
558 | dependencies = ["safe_yaml"]; | ||
559 | groups = ["default" "test"]; | ||
560 | platforms = []; | ||
561 | source = { | ||
562 | remotes = ["https://rubygems.org"]; | ||
563 | sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k"; | ||
564 | type = "gem"; | ||
565 | }; | ||
566 | version = "0.4.3"; | ||
567 | }; | ||
568 | crass = { | ||
569 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
570 | platforms = []; | ||
571 | source = { | ||
572 | remotes = ["https://rubygems.org"]; | ||
573 | sha256 = "0bpxzy6gjw9ggjynlxschbfsgmx8lv3zw1azkjvnb8b9i895dqfi"; | ||
574 | type = "gem"; | ||
575 | }; | ||
576 | version = "1.0.4"; | ||
577 | }; | ||
578 | css_parser = { | ||
579 | dependencies = ["addressable"]; | ||
580 | groups = ["default"]; | ||
581 | platforms = []; | ||
582 | source = { | ||
583 | remotes = ["https://rubygems.org"]; | ||
584 | sha256 = "0gwvf8mc8gnz4aizfijplv3594998h2j44ydakpzsdmkivs07v61"; | ||
585 | type = "gem"; | ||
586 | }; | ||
587 | version = "1.6.0"; | ||
588 | }; | ||
589 | debug_inspector = { | ||
590 | groups = ["default" "development"]; | ||
591 | platforms = []; | ||
592 | source = { | ||
593 | remotes = ["https://rubygems.org"]; | ||
594 | sha256 = "0vxr0xa1mfbkfcrn71n7c4f2dj7la5hvphn904vh20j3x4j5lrx0"; | ||
595 | type = "gem"; | ||
596 | }; | ||
597 | version = "0.0.3"; | ||
598 | }; | ||
599 | derailed_benchmarks = { | ||
600 | dependencies = ["benchmark-ips" "get_process_mem" "heapy" "memory_profiler" "rack" "rake" "thor"]; | ||
601 | groups = ["development"]; | ||
602 | platforms = []; | ||
603 | source = { | ||
604 | remotes = ["https://rubygems.org"]; | ||
605 | sha256 = "1c9djg1r2w461h97zmmdsdgnsrxqm4qfyp7gry9qxbav9skrplb8"; | ||
606 | type = "gem"; | ||
607 | }; | ||
608 | version = "1.3.5"; | ||
609 | }; | ||
610 | devise = { | ||
611 | dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "warden"]; | ||
612 | groups = ["default" "pam_authentication"]; | ||
613 | platforms = []; | ||
614 | source = { | ||
615 | remotes = ["https://rubygems.org"]; | ||
616 | sha256 = "04b2p61mqfb6ln8s2lhmvnkd45wjjinykbn9svmhs54kacrrjkcf"; | ||
617 | type = "gem"; | ||
618 | }; | ||
619 | version = "4.6.2"; | ||
620 | }; | ||
621 | devise-two-factor = { | ||
622 | dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"]; | ||
623 | groups = ["default"]; | ||
624 | platforms = []; | ||
625 | source = { | ||
626 | remotes = ["https://rubygems.org"]; | ||
627 | sha256 = "1b61s5y1ch205lgf3xv8hcvyi27ddd0d4qbbcpnnakhn2bx16lmc"; | ||
628 | type = "gem"; | ||
629 | }; | ||
630 | version = "3.0.3"; | ||
631 | }; | ||
632 | devise_pam_authenticatable2 = { | ||
633 | dependencies = ["devise" "rpam2"]; | ||
634 | groups = ["pam_authentication"]; | ||
635 | platforms = []; | ||
636 | source = { | ||
637 | remotes = ["https://rubygems.org"]; | ||
638 | sha256 = "13ipl52pkhc6vxp8ca31viwv01237bi2bfk3b1fixq1x46nf87p2"; | ||
639 | type = "gem"; | ||
640 | }; | ||
641 | version = "9.2.0"; | ||
642 | }; | ||
643 | diff-lcs = { | ||
644 | groups = ["default" "development" "test"]; | ||
645 | platforms = []; | ||
646 | source = { | ||
647 | remotes = ["https://rubygems.org"]; | ||
648 | sha256 = "18w22bjz424gzafv6nzv98h0aqkwz3d9xhm7cbr1wfbyas8zayza"; | ||
649 | type = "gem"; | ||
650 | }; | ||
651 | version = "1.3"; | ||
652 | }; | ||
653 | docile = { | ||
654 | groups = ["default" "test"]; | ||
655 | platforms = []; | ||
656 | source = { | ||
657 | remotes = ["https://rubygems.org"]; | ||
658 | sha256 = "0yyh4lr03q2vafzsfqy1xax7vr8zn7mbddz3ax3vnlm5fg0px6pn"; | ||
659 | type = "gem"; | ||
660 | }; | ||
661 | version = "1.3.0"; | ||
662 | }; | ||
663 | domain_name = { | ||
664 | dependencies = ["unf"]; | ||
665 | groups = ["default"]; | ||
666 | platforms = []; | ||
667 | source = { | ||
668 | remotes = ["https://rubygems.org"]; | ||
669 | sha256 = "0abdlwb64ns7ssmiqhdwgl27ly40x2l27l8hs8hn0z4kb3zd2x3v"; | ||
670 | type = "gem"; | ||
671 | }; | ||
672 | version = "0.5.20180417"; | ||
673 | }; | ||
674 | doorkeeper = { | ||
675 | dependencies = ["railties"]; | ||
676 | groups = ["default"]; | ||
677 | platforms = []; | ||
678 | source = { | ||
679 | remotes = ["https://rubygems.org"]; | ||
680 | sha256 = "0zz92d57v1gcvbch9s9dw33x7mklgp1m5h2bicnzcc329rsia5gz"; | ||
681 | type = "gem"; | ||
682 | }; | ||
683 | version = "5.1.0"; | ||
684 | }; | ||
685 | dotenv = { | ||
686 | groups = ["default"]; | ||
687 | platforms = []; | ||
688 | source = { | ||
689 | remotes = ["https://rubygems.org"]; | ||
690 | sha256 = "13cis6bf06hmz744xrsl163p6gb78xcm8g8q4pcabsy5ywyv6kag"; | ||
691 | type = "gem"; | ||
692 | }; | ||
693 | version = "2.7.2"; | ||
694 | }; | ||
695 | dotenv-rails = { | ||
696 | dependencies = ["dotenv" "railties"]; | ||
697 | groups = ["default"]; | ||
698 | platforms = []; | ||
699 | source = { | ||
700 | remotes = ["https://rubygems.org"]; | ||
701 | sha256 = "0ih7nx7byiaws3w4vsb82fcfkgw4z14y8rclhnxmpghj0kn4871s"; | ||
702 | type = "gem"; | ||
703 | }; | ||
704 | version = "2.7.2"; | ||
705 | }; | ||
706 | elasticsearch = { | ||
707 | dependencies = ["elasticsearch-api" "elasticsearch-transport"]; | ||
708 | groups = ["default"]; | ||
709 | platforms = []; | ||
710 | source = { | ||
711 | remotes = ["https://rubygems.org"]; | ||
712 | sha256 = "0a08ynvxz5clfm2ndqpgjrv4aiga9m2y1ab34s3qkihdfdzdzhj8"; | ||
713 | type = "gem"; | ||
714 | }; | ||
715 | version = "6.0.2"; | ||
716 | }; | ||
717 | elasticsearch-api = { | ||
718 | dependencies = ["multi_json"]; | ||
719 | groups = ["default"]; | ||
720 | platforms = []; | ||
721 | source = { | ||
722 | remotes = ["https://rubygems.org"]; | ||
723 | sha256 = "1vkahknqn85vvwr1gzh8jf3pvdial0c0d524icg8x06vibqgzd5h"; | ||
724 | type = "gem"; | ||
725 | }; | ||
726 | version = "6.0.2"; | ||
727 | }; | ||
728 | elasticsearch-dsl = { | ||
729 | groups = ["default"]; | ||
730 | platforms = []; | ||
731 | source = { | ||
732 | remotes = ["https://rubygems.org"]; | ||
733 | sha256 = "1mwn6hvkki560p7sfc841q15zzgldsk9lzm2mlvc2bra7x1yk2q8"; | ||
734 | type = "gem"; | ||
735 | }; | ||
736 | version = "0.1.5"; | ||
737 | }; | ||
738 | elasticsearch-transport = { | ||
739 | dependencies = ["faraday" "multi_json"]; | ||
740 | groups = ["default"]; | ||
741 | platforms = []; | ||
742 | source = { | ||
743 | remotes = ["https://rubygems.org"]; | ||
744 | sha256 = "0gpwbw70qisx681j1bw8xq6shg5kdxmcdzg6425af0b5881jg7iy"; | ||
745 | type = "gem"; | ||
746 | }; | ||
747 | version = "6.0.2"; | ||
748 | }; | ||
749 | encryptor = { | ||
750 | groups = ["default"]; | ||
751 | platforms = []; | ||
752 | source = { | ||
753 | remotes = ["https://rubygems.org"]; | ||
754 | sha256 = "0s8rvfl0vn8w7k1sgkc234060jh468s3zd45xa64p1jdmfa3zwmb"; | ||
755 | type = "gem"; | ||
756 | }; | ||
757 | version = "3.0.0"; | ||
758 | }; | ||
759 | equatable = { | ||
760 | groups = ["default"]; | ||
761 | platforms = []; | ||
762 | source = { | ||
763 | remotes = ["https://rubygems.org"]; | ||
764 | sha256 = "1sjm9zjakyixyvsqziikdrsqfzis6j3fq23crgjkp6fwkfgndj7x"; | ||
765 | type = "gem"; | ||
766 | }; | ||
767 | version = "0.5.0"; | ||
768 | }; | ||
769 | erubi = { | ||
770 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
771 | platforms = []; | ||
772 | source = { | ||
773 | remotes = ["https://rubygems.org"]; | ||
774 | sha256 = "1kagnf6ziahj0d781s6ryy6fwqwa3ad4xbzzj84p9m4nv4c2jir1"; | ||
775 | type = "gem"; | ||
776 | }; | ||
777 | version = "1.8.0"; | ||
778 | }; | ||
779 | et-orbi = { | ||
780 | dependencies = ["tzinfo"]; | ||
781 | groups = ["default"]; | ||
782 | platforms = []; | ||
783 | source = { | ||
784 | remotes = ["https://rubygems.org"]; | ||
785 | sha256 = "0wk7i0bmsy46la8gcvbmdns0ni8lmdqas838phj97bdwykxw8m4b"; | ||
786 | type = "gem"; | ||
787 | }; | ||
788 | version = "1.1.6"; | ||
789 | }; | ||
790 | excon = { | ||
791 | groups = ["default"]; | ||
792 | platforms = []; | ||
793 | source = { | ||
794 | remotes = ["https://rubygems.org"]; | ||
795 | sha256 = "15l9w0938c19nxmrp09n75qpmm64k12xj69h47yvxzcxcpbgnkb2"; | ||
796 | type = "gem"; | ||
797 | }; | ||
798 | version = "0.62.0"; | ||
799 | }; | ||
800 | fabrication = { | ||
801 | groups = ["development" "test"]; | ||
802 | platforms = []; | ||
803 | source = { | ||
804 | remotes = ["https://rubygems.org"]; | ||
805 | sha256 = "107jd1vwyg890xv9lvnyfnrx5pwqk38cx880m4pg7i98902y5796"; | ||
806 | type = "gem"; | ||
807 | }; | ||
808 | version = "2.20.2"; | ||
809 | }; | ||
810 | faker = { | ||
811 | dependencies = ["i18n"]; | ||
812 | groups = ["test"]; | ||
813 | platforms = []; | ||
814 | source = { | ||
815 | remotes = ["https://rubygems.org"]; | ||
816 | sha256 = "1vslyqmk9gjvp1ahyfqmwy1jcyv75rp88hxwpy7cdk2lpdb1jp3l"; | ||
817 | type = "gem"; | ||
818 | }; | ||
819 | version = "1.9.3"; | ||
820 | }; | ||
821 | faraday = { | ||
822 | dependencies = ["multipart-post"]; | ||
823 | groups = ["default"]; | ||
824 | platforms = []; | ||
825 | source = { | ||
826 | remotes = ["https://rubygems.org"]; | ||
827 | sha256 = "1dv1vcxxyw4vy0r2diiml0r8zqk1csrksfxv8nkrw61xlf2daaaa"; | ||
828 | type = "gem"; | ||
829 | }; | ||
830 | version = "0.15.0"; | ||
831 | }; | ||
832 | fast_blank = { | ||
833 | groups = ["default"]; | ||
834 | platforms = []; | ||
835 | source = { | ||
836 | remotes = ["https://rubygems.org"]; | ||
837 | sha256 = "16s1ilyvwzmkcgmklbrn0c2pch5n02vf921njx0bld4crgdr6z56"; | ||
838 | type = "gem"; | ||
839 | }; | ||
840 | version = "1.0.0"; | ||
841 | }; | ||
842 | fastimage = { | ||
843 | groups = ["default"]; | ||
844 | platforms = []; | ||
845 | source = { | ||
846 | remotes = ["https://rubygems.org"]; | ||
847 | sha256 = "1iy9jm13r2r4yz41xaivhxs8mvqn57fjwihxvazbip002mq6rxfz"; | ||
848 | type = "gem"; | ||
849 | }; | ||
850 | version = "2.1.5"; | ||
851 | }; | ||
852 | ffi = { | ||
853 | groups = ["default"]; | ||
854 | platforms = []; | ||
855 | source = { | ||
856 | remotes = ["https://rubygems.org"]; | ||
857 | sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p"; | ||
858 | type = "gem"; | ||
859 | }; | ||
860 | version = "1.10.0"; | ||
861 | }; | ||
862 | fog-core = { | ||
863 | dependencies = ["builder" "excon" "formatador" "mime-types"]; | ||
864 | groups = ["default"]; | ||
865 | platforms = []; | ||
866 | source = { | ||
867 | remotes = ["https://rubygems.org"]; | ||
868 | sha256 = "1agd6xgzk0rxrsjdpn94v4hy89s0nm2cs4zg2p880w2dan9xgrak"; | ||
869 | type = "gem"; | ||
870 | }; | ||
871 | version = "2.1.0"; | ||
872 | }; | ||
873 | fog-json = { | ||
874 | dependencies = ["fog-core" "multi_json"]; | ||
875 | groups = ["default"]; | ||
876 | platforms = []; | ||
877 | source = { | ||
878 | remotes = ["https://rubygems.org"]; | ||
879 | sha256 = "1zj8llzc119zafbmfa4ai3z5s7c4vp9akfs0f9l2piyvcarmlkyx"; | ||
880 | type = "gem"; | ||
881 | }; | ||
882 | version = "1.2.0"; | ||
883 | }; | ||
884 | fog-openstack = { | ||
885 | dependencies = ["fog-core" "fog-json" "ipaddress"]; | ||
886 | groups = ["default"]; | ||
887 | platforms = []; | ||
888 | source = { | ||
889 | remotes = ["https://rubygems.org"]; | ||
890 | sha256 = "0aphjrvmchmqbyxqq82yj0qngyvkmwdci9iqs8722fi23bk83gdl"; | ||
891 | type = "gem"; | ||
892 | }; | ||
893 | version = "0.3.7"; | ||
894 | }; | ||
895 | formatador = { | ||
896 | groups = ["default"]; | ||
897 | platforms = []; | ||
898 | source = { | ||
899 | remotes = ["https://rubygems.org"]; | ||
900 | sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; | ||
901 | type = "gem"; | ||
902 | }; | ||
903 | version = "0.2.5"; | ||
904 | }; | ||
905 | fugit = { | ||
906 | dependencies = ["et-orbi" "raabro"]; | ||
907 | groups = ["default"]; | ||
908 | platforms = []; | ||
909 | source = { | ||
910 | remotes = ["https://rubygems.org"]; | ||
911 | sha256 = "1szijawzdii668z5is9xi849399gy786951dx0l5r2z5mbfqvl9i"; | ||
912 | type = "gem"; | ||
913 | }; | ||
914 | version = "1.1.6"; | ||
915 | }; | ||
916 | fuubar = { | ||
917 | dependencies = ["rspec-core" "ruby-progressbar"]; | ||
918 | groups = ["development" "test"]; | ||
919 | platforms = []; | ||
920 | source = { | ||
921 | remotes = ["https://rubygems.org"]; | ||
922 | sha256 = "169nyc9yqdv8rjfc6g56d1arr0vrcbw4rn02m27g5v0n6405jp85"; | ||
923 | type = "gem"; | ||
924 | }; | ||
925 | version = "2.4.1"; | ||
926 | }; | ||
927 | get_process_mem = { | ||
928 | groups = ["default" "development"]; | ||
929 | platforms = []; | ||
930 | source = { | ||
931 | remotes = ["https://rubygems.org"]; | ||
932 | sha256 = "1bvfjdign16r0zwm2rlfrq0sk1licvmlgbnlpnyckniv5r7i080g"; | ||
933 | type = "gem"; | ||
934 | }; | ||
935 | version = "0.2.3"; | ||
936 | }; | ||
937 | globalid = { | ||
938 | dependencies = ["activesupport"]; | ||
939 | groups = ["default" "development"]; | ||
940 | platforms = []; | ||
941 | source = { | ||
942 | remotes = ["https://rubygems.org"]; | ||
943 | sha256 = "1zkxndvck72bfw235bd9nl2ii0lvs5z88q14706cmn702ww2mxv1"; | ||
944 | type = "gem"; | ||
945 | }; | ||
946 | version = "0.4.2"; | ||
947 | }; | ||
948 | goldfinger = { | ||
949 | dependencies = ["addressable" "http" "nokogiri" "oj"]; | ||
950 | groups = ["default"]; | ||
951 | platforms = []; | ||
952 | source = { | ||
953 | remotes = ["https://rubygems.org"]; | ||
954 | sha256 = "0n142035jhyqwczi52zjr07c8kygp9b9f158miaby3z5hygzjyzh"; | ||
955 | type = "gem"; | ||
956 | }; | ||
957 | version = "2.1.0"; | ||
958 | }; | ||
959 | hamlit = { | ||
960 | dependencies = ["temple" "thor" "tilt"]; | ||
961 | groups = ["default"]; | ||
962 | platforms = []; | ||
963 | source = { | ||
964 | remotes = ["https://rubygems.org"]; | ||
965 | sha256 = "17qn9w4100v9mkd4i8qbzs1d5ambdsqq0y1j6hhxbcldbqcznbvx"; | ||
966 | type = "gem"; | ||
967 | }; | ||
968 | version = "2.9.3"; | ||
969 | }; | ||
970 | hamlit-rails = { | ||
971 | dependencies = ["actionpack" "activesupport" "hamlit" "railties"]; | ||
972 | groups = ["default"]; | ||
973 | platforms = []; | ||
974 | source = { | ||
975 | remotes = ["https://rubygems.org"]; | ||
976 | sha256 = "0v75yd6x0nwky83smd9hw5ym9h0pi32jrzbnvq55pzj0rc95gg2p"; | ||
977 | type = "gem"; | ||
978 | }; | ||
979 | version = "0.2.3"; | ||
980 | }; | ||
981 | hamster = { | ||
982 | dependencies = ["concurrent-ruby"]; | ||
983 | groups = ["default"]; | ||
984 | platforms = []; | ||
985 | source = { | ||
986 | remotes = ["https://rubygems.org"]; | ||
987 | sha256 = "1n1lsh96vnyc1pnzyd30f9prcsclmvmkdb3nm5aahnyizyiy6lar"; | ||
988 | type = "gem"; | ||
989 | }; | ||
990 | version = "3.0.0"; | ||
991 | }; | ||
992 | hashdiff = { | ||
993 | groups = ["default" "test"]; | ||
994 | platforms = []; | ||
995 | source = { | ||
996 | remotes = ["https://rubygems.org"]; | ||
997 | sha256 = "1ncwxv7jbm3jj9phv6dd514463bkjwggxk10n2z100wf4cjcicrk"; | ||
998 | type = "gem"; | ||
999 | }; | ||
1000 | version = "0.4.0"; | ||
1001 | }; | ||
1002 | hashie = { | ||
1003 | groups = ["default"]; | ||
1004 | platforms = []; | ||
1005 | source = { | ||
1006 | remotes = ["https://rubygems.org"]; | ||
1007 | sha256 = "13bdzfp25c8k51ayzxqkbzag3wj5gc1jd8h7d985nsq6pn57g5xh"; | ||
1008 | type = "gem"; | ||
1009 | }; | ||
1010 | version = "3.6.0"; | ||
1011 | }; | ||
1012 | heapy = { | ||
1013 | groups = ["default" "development"]; | ||
1014 | platforms = []; | ||
1015 | source = { | ||
1016 | remotes = ["https://rubygems.org"]; | ||
1017 | sha256 = "1r9f38fpgjgaxskkwvsliijj6vfmgsff9pnranvvvzkdl67hk1hw"; | ||
1018 | type = "gem"; | ||
1019 | }; | ||
1020 | version = "0.1.4"; | ||
1021 | }; | ||
1022 | highline = { | ||
1023 | groups = ["default" "development" "test"]; | ||
1024 | platforms = []; | ||
1025 | source = { | ||
1026 | remotes = ["https://rubygems.org"]; | ||
1027 | sha256 = "0gr6pckj2jayxw1gdgh9193j5jag5zrrqqlrnl4jvcwpyd3sn2zc"; | ||
1028 | type = "gem"; | ||
1029 | }; | ||
1030 | version = "2.0.1"; | ||
1031 | }; | ||
1032 | hiredis = { | ||
1033 | groups = ["default"]; | ||
1034 | platforms = []; | ||
1035 | source = { | ||
1036 | remotes = ["https://rubygems.org"]; | ||
1037 | sha256 = "04jj8k7lxqxw24sp0jiravigdkgsyrpprxpxm71ba93x1wr2w1bz"; | ||
1038 | type = "gem"; | ||
1039 | }; | ||
1040 | version = "0.6.3"; | ||
1041 | }; | ||
1042 | hkdf = { | ||
1043 | groups = ["default"]; | ||
1044 | platforms = []; | ||
1045 | source = { | ||
1046 | remotes = ["https://rubygems.org"]; | ||
1047 | sha256 = "04fixg0a51n4vy0j6c1hvisa2yl33m3jrrpxpb5sq6j511vjriil"; | ||
1048 | type = "gem"; | ||
1049 | }; | ||
1050 | version = "0.3.0"; | ||
1051 | }; | ||
1052 | htmlentities = { | ||
1053 | groups = ["default"]; | ||
1054 | platforms = []; | ||
1055 | source = { | ||
1056 | remotes = ["https://rubygems.org"]; | ||
1057 | sha256 = "1nkklqsn8ir8wizzlakncfv42i32wc0w9hxp00hvdlgjr7376nhj"; | ||
1058 | type = "gem"; | ||
1059 | }; | ||
1060 | version = "4.3.4"; | ||
1061 | }; | ||
1062 | http = { | ||
1063 | dependencies = ["addressable" "http-cookie" "http-form_data" "http_parser.rb"]; | ||
1064 | groups = ["default"]; | ||
1065 | platforms = []; | ||
1066 | source = { | ||
1067 | remotes = ["https://rubygems.org"]; | ||
1068 | sha256 = "1jlm5prw437wqpfxcigh88lfap3m7g8mnmj5as7qw6dzqnvrxwmc"; | ||
1069 | type = "gem"; | ||
1070 | }; | ||
1071 | version = "3.3.0"; | ||
1072 | }; | ||
1073 | http-cookie = { | ||
1074 | dependencies = ["domain_name"]; | ||
1075 | groups = ["default"]; | ||
1076 | platforms = []; | ||
1077 | source = { | ||
1078 | remotes = ["https://rubygems.org"]; | ||
1079 | sha256 = "004cgs4xg5n6byjs7qld0xhsjq3n6ydfh897myr2mibvh6fjc49g"; | ||
1080 | type = "gem"; | ||
1081 | }; | ||
1082 | version = "1.0.3"; | ||
1083 | }; | ||
1084 | http-form_data = { | ||
1085 | groups = ["default"]; | ||
1086 | platforms = []; | ||
1087 | source = { | ||
1088 | remotes = ["https://rubygems.org"]; | ||
1089 | sha256 = "15lpn604byf7cyxnw949xz4rvpcknqp7a48q73nm630gqxsa76f3"; | ||
1090 | type = "gem"; | ||
1091 | }; | ||
1092 | version = "2.1.1"; | ||
1093 | }; | ||
1094 | http_accept_language = { | ||
1095 | groups = ["default"]; | ||
1096 | platforms = []; | ||
1097 | source = { | ||
1098 | remotes = ["https://rubygems.org"]; | ||
1099 | sha256 = "0d0nlfz9vm4jr1l6q0chx4rp2hrnrfbx3gadc1dz930lbbaz0hq0"; | ||
1100 | type = "gem"; | ||
1101 | }; | ||
1102 | version = "2.1.1"; | ||
1103 | }; | ||
1104 | "http_parser.rb" = { | ||
1105 | groups = ["default"]; | ||
1106 | platforms = []; | ||
1107 | source = { | ||
1108 | fetchSubmodules = true; | ||
1109 | rev = "54b17ba8c7d8d20a16dfc65d1775241833219cf2"; | ||
1110 | sha256 = "16ihplh821kjbck9kjvqr780qsx9wi9vyc6kpmydj44r2pq76v59"; | ||
1111 | type = "git"; | ||
1112 | url = "https://github.com/tmm1/http_parser.rb"; | ||
1113 | }; | ||
1114 | version = "0.6.1"; | ||
1115 | }; | ||
1116 | httplog = { | ||
1117 | dependencies = ["rack" "rainbow"]; | ||
1118 | groups = ["default"]; | ||
1119 | platforms = []; | ||
1120 | source = { | ||
1121 | remotes = ["https://rubygems.org"]; | ||
1122 | sha256 = "1s7g48hbzxabnf8i9gyw7q3710wnmni2lpqznnvpi8s4z7k58jdp"; | ||
1123 | type = "gem"; | ||
1124 | }; | ||
1125 | version = "1.3.1"; | ||
1126 | }; | ||
1127 | i18n = { | ||
1128 | dependencies = ["concurrent-ruby"]; | ||
1129 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1130 | platforms = []; | ||
1131 | source = { | ||
1132 | remotes = ["https://rubygems.org"]; | ||
1133 | sha256 = "1hfxnlyr618s25xpafw9mypa82qppjccbh292c4l3bj36az7f6wl"; | ||
1134 | type = "gem"; | ||
1135 | }; | ||
1136 | version = "1.6.0"; | ||
1137 | }; | ||
1138 | i18n-tasks = { | ||
1139 | dependencies = ["activesupport" "ast" "erubi" "highline" "i18n" "parser" "rails-i18n" "rainbow" "terminal-table"]; | ||
1140 | groups = ["development" "test"]; | ||
1141 | platforms = []; | ||
1142 | source = { | ||
1143 | remotes = ["https://rubygems.org"]; | ||
1144 | sha256 = "11h0chj0jpdfxpaglkr98l4qcwwpb8glh3dxar3inq9ccmsrdzaf"; | ||
1145 | type = "gem"; | ||
1146 | }; | ||
1147 | version = "0.9.29"; | ||
1148 | }; | ||
1149 | idn-ruby = { | ||
1150 | groups = ["default"]; | ||
1151 | platforms = []; | ||
1152 | source = { | ||
1153 | remotes = ["https://rubygems.org"]; | ||
1154 | sha256 = "07vblcyk3g72sbq12xz7xj28snpxnh3sbcnxy8bglqbfqqhvmawr"; | ||
1155 | type = "gem"; | ||
1156 | }; | ||
1157 | version = "0.1.0"; | ||
1158 | }; | ||
1159 | ipaddress = { | ||
1160 | groups = ["default"]; | ||
1161 | platforms = []; | ||
1162 | source = { | ||
1163 | remotes = ["https://rubygems.org"]; | ||
1164 | sha256 = "1x86s0s11w202j6ka40jbmywkrx8fhq8xiy8mwvnkhllj57hqr45"; | ||
1165 | type = "gem"; | ||
1166 | }; | ||
1167 | version = "0.8.3"; | ||
1168 | }; | ||
1169 | iso-639 = { | ||
1170 | groups = ["default"]; | ||
1171 | platforms = []; | ||
1172 | source = { | ||
1173 | remotes = ["https://rubygems.org"]; | ||
1174 | sha256 = "10k1gpkkbxbasgjzh4hd32ygxzjb5312rphipm46ryxkpx556zzz"; | ||
1175 | type = "gem"; | ||
1176 | }; | ||
1177 | version = "0.2.8"; | ||
1178 | }; | ||
1179 | jaro_winkler = { | ||
1180 | groups = ["default" "development"]; | ||
1181 | platforms = []; | ||
1182 | source = { | ||
1183 | remotes = ["https://rubygems.org"]; | ||
1184 | sha256 = "1zz27z88qznix4r65gd9h56gl177snlfpgv10b0s69vi8qpl909l"; | ||
1185 | type = "gem"; | ||
1186 | }; | ||
1187 | version = "1.5.2"; | ||
1188 | }; | ||
1189 | jmespath = { | ||
1190 | groups = ["default"]; | ||
1191 | platforms = []; | ||
1192 | source = { | ||
1193 | remotes = ["https://rubygems.org"]; | ||
1194 | sha256 = "1d4wac0dcd1jf6kc57891glih9w57552zgqswgy74d1xhgnk0ngf"; | ||
1195 | type = "gem"; | ||
1196 | }; | ||
1197 | version = "1.4.0"; | ||
1198 | }; | ||
1199 | json = { | ||
1200 | groups = ["default" "test"]; | ||
1201 | platforms = []; | ||
1202 | source = { | ||
1203 | remotes = ["https://rubygems.org"]; | ||
1204 | sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp"; | ||
1205 | type = "gem"; | ||
1206 | }; | ||
1207 | version = "2.1.0"; | ||
1208 | }; | ||
1209 | json-ld = { | ||
1210 | dependencies = ["multi_json" "rdf"]; | ||
1211 | groups = ["default"]; | ||
1212 | platforms = []; | ||
1213 | source = { | ||
1214 | remotes = ["https://rubygems.org"]; | ||
1215 | sha256 = "1yk4gnxzwlif9d0dy7csdb9ix60h69alk139aaip6304nx2yhdsk"; | ||
1216 | type = "gem"; | ||
1217 | }; | ||
1218 | version = "3.0.2"; | ||
1219 | }; | ||
1220 | json-ld-preloaded = { | ||
1221 | dependencies = ["json-ld" "multi_json" "rdf"]; | ||
1222 | groups = ["default"]; | ||
1223 | platforms = []; | ||
1224 | source = { | ||
1225 | remotes = ["https://rubygems.org"]; | ||
1226 | sha256 = "1c3yh5ayxvz33znbmzinigc5wivicib7nnykqjf00j2f9qag18pv"; | ||
1227 | type = "gem"; | ||
1228 | }; | ||
1229 | version = "3.0.2"; | ||
1230 | }; | ||
1231 | jsonapi-renderer = { | ||
1232 | groups = ["default"]; | ||
1233 | platforms = []; | ||
1234 | source = { | ||
1235 | remotes = ["https://rubygems.org"]; | ||
1236 | sha256 = "00ysmcv3nrccyimi334ida4axlfgir6cc2ryjxrf4xb97m1bfk5j"; | ||
1237 | type = "gem"; | ||
1238 | }; | ||
1239 | version = "0.2.0"; | ||
1240 | }; | ||
1241 | jwt = { | ||
1242 | groups = ["default"]; | ||
1243 | platforms = []; | ||
1244 | source = { | ||
1245 | remotes = ["https://rubygems.org"]; | ||
1246 | sha256 = "1w0kaqrbl71cq9sbnixc20x5lqah3hs2i93xmhlfdg2y3by7yzky"; | ||
1247 | type = "gem"; | ||
1248 | }; | ||
1249 | version = "2.1.0"; | ||
1250 | }; | ||
1251 | kaminari = { | ||
1252 | dependencies = ["activesupport" "kaminari-actionview" "kaminari-activerecord" "kaminari-core"]; | ||
1253 | groups = ["default"]; | ||
1254 | platforms = []; | ||
1255 | source = { | ||
1256 | remotes = ["https://rubygems.org"]; | ||
1257 | sha256 = "1j27y5phifwpggspglmg8pmlf6n4jblxwziix9am42661c770jlm"; | ||
1258 | type = "gem"; | ||
1259 | }; | ||
1260 | version = "1.1.1"; | ||
1261 | }; | ||
1262 | kaminari-actionview = { | ||
1263 | dependencies = ["actionview" "kaminari-core"]; | ||
1264 | groups = ["default"]; | ||
1265 | platforms = []; | ||
1266 | source = { | ||
1267 | remotes = ["https://rubygems.org"]; | ||
1268 | sha256 = "1386wshpy1ygbris0s7rv7lyzbs0v8dfqkzdwsrsgm9fd1ira640"; | ||
1269 | type = "gem"; | ||
1270 | }; | ||
1271 | version = "1.1.1"; | ||
1272 | }; | ||
1273 | kaminari-activerecord = { | ||
1274 | dependencies = ["activerecord" "kaminari-core"]; | ||
1275 | groups = ["default"]; | ||
1276 | platforms = []; | ||
1277 | source = { | ||
1278 | remotes = ["https://rubygems.org"]; | ||
1279 | sha256 = "0q31ik5648xi2hpy61knnjd0m7rvs17i93gzwcbh3ccj1y24gv2x"; | ||
1280 | type = "gem"; | ||
1281 | }; | ||
1282 | version = "1.1.1"; | ||
1283 | }; | ||
1284 | kaminari-core = { | ||
1285 | groups = ["default"]; | ||
1286 | platforms = []; | ||
1287 | source = { | ||
1288 | remotes = ["https://rubygems.org"]; | ||
1289 | sha256 = "1cfjrhvidvgdwp9ffsm9d4c2s18k2zp3gnya3f41qb3fc6bc2q2w"; | ||
1290 | type = "gem"; | ||
1291 | }; | ||
1292 | version = "1.1.1"; | ||
1293 | }; | ||
1294 | launchy = { | ||
1295 | dependencies = ["addressable"]; | ||
1296 | groups = ["default" "development"]; | ||
1297 | platforms = []; | ||
1298 | source = { | ||
1299 | remotes = ["https://rubygems.org"]; | ||
1300 | sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; | ||
1301 | type = "gem"; | ||
1302 | }; | ||
1303 | version = "2.4.3"; | ||
1304 | }; | ||
1305 | letter_opener = { | ||
1306 | dependencies = ["launchy"]; | ||
1307 | groups = ["development"]; | ||
1308 | platforms = []; | ||
1309 | source = { | ||
1310 | remotes = ["https://rubygems.org"]; | ||
1311 | sha256 = "09a7kgsmr10a0hrc9bwxglgqvppjxij9w8bxx91mnvh0ivaw0nq9"; | ||
1312 | type = "gem"; | ||
1313 | }; | ||
1314 | version = "1.7.0"; | ||
1315 | }; | ||
1316 | letter_opener_web = { | ||
1317 | dependencies = ["actionmailer" "letter_opener" "railties"]; | ||
1318 | groups = ["development"]; | ||
1319 | platforms = []; | ||
1320 | source = { | ||
1321 | remotes = ["https://rubygems.org"]; | ||
1322 | sha256 = "17qhwrkncrrp1bi2f7fbkm5lpnkdsiwy8jcvgr2wa97ck8y4x2bb"; | ||
1323 | type = "gem"; | ||
1324 | }; | ||
1325 | version = "1.3.4"; | ||
1326 | }; | ||
1327 | link_header = { | ||
1328 | groups = ["default"]; | ||
1329 | platforms = []; | ||
1330 | source = { | ||
1331 | remotes = ["https://rubygems.org"]; | ||
1332 | sha256 = "1yamrdq4rywmnpdhbygnkkl9fdy249fg5r851nrkkxr97gj5rihm"; | ||
1333 | type = "gem"; | ||
1334 | }; | ||
1335 | version = "0.0.8"; | ||
1336 | }; | ||
1337 | lograge = { | ||
1338 | dependencies = ["actionpack" "activesupport" "railties" "request_store"]; | ||
1339 | groups = ["production"]; | ||
1340 | platforms = []; | ||
1341 | source = { | ||
1342 | remotes = ["https://rubygems.org"]; | ||
1343 | sha256 = "1vrjm4yqn5l6q5gsl72fmk95fl6j9z1a05gzbrwmsm3gp1a1bgac"; | ||
1344 | type = "gem"; | ||
1345 | }; | ||
1346 | version = "0.11.2"; | ||
1347 | }; | ||
1348 | loofah = { | ||
1349 | dependencies = ["crass" "nokogiri"]; | ||
1350 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1351 | platforms = []; | ||
1352 | source = { | ||
1353 | remotes = ["https://rubygems.org"]; | ||
1354 | sha256 = "1ccsid33xjajd0im2xv941aywi58z7ihwkvaf1w2bv89vn5bhsjg"; | ||
1355 | type = "gem"; | ||
1356 | }; | ||
1357 | version = "2.2.3"; | ||
1358 | }; | ||
1359 | mail = { | ||
1360 | dependencies = ["mini_mime"]; | ||
1361 | groups = ["default" "development"]; | ||
1362 | platforms = []; | ||
1363 | source = { | ||
1364 | remotes = ["https://rubygems.org"]; | ||
1365 | sha256 = "00wwz6ys0502dpk8xprwcqfwyf3hmnx6lgxaiq6vj43mkx43sapc"; | ||
1366 | type = "gem"; | ||
1367 | }; | ||
1368 | version = "2.7.1"; | ||
1369 | }; | ||
1370 | makara = { | ||
1371 | dependencies = ["activerecord"]; | ||
1372 | groups = ["default"]; | ||
1373 | platforms = []; | ||
1374 | source = { | ||
1375 | remotes = ["https://rubygems.org"]; | ||
1376 | sha256 = "01n90s1jcc05dc9a70k3c3aa4gc9j49k9iv56n2k4jm949dacms6"; | ||
1377 | type = "gem"; | ||
1378 | }; | ||
1379 | version = "0.4.1"; | ||
1380 | }; | ||
1381 | marcel = { | ||
1382 | dependencies = ["mimemagic"]; | ||
1383 | groups = ["default"]; | ||
1384 | platforms = []; | ||
1385 | source = { | ||
1386 | remotes = ["https://rubygems.org"]; | ||
1387 | sha256 = "1nxbjmcyg8vlw6zwagf17l9y2mwkagmmkg95xybpn4bmf3rfnksx"; | ||
1388 | type = "gem"; | ||
1389 | }; | ||
1390 | version = "0.3.3"; | ||
1391 | }; | ||
1392 | mario-redis-lock = { | ||
1393 | dependencies = ["redis"]; | ||
1394 | groups = ["default"]; | ||
1395 | platforms = []; | ||
1396 | source = { | ||
1397 | remotes = ["https://rubygems.org"]; | ||
1398 | sha256 = "1v9wdjcjqzpns2migxp4a5b4w82mipi0fwihbqz3q2qj2qm7wc17"; | ||
1399 | type = "gem"; | ||
1400 | }; | ||
1401 | version = "1.2.1"; | ||
1402 | }; | ||
1403 | memory_profiler = { | ||
1404 | groups = ["development"]; | ||
1405 | platforms = []; | ||
1406 | source = { | ||
1407 | remotes = ["https://rubygems.org"]; | ||
1408 | sha256 = "1xki7jrbzylsmk1brjibmhifb0x70skr55pdq4rvxcyrlnrrvyxz"; | ||
1409 | type = "gem"; | ||
1410 | }; | ||
1411 | version = "0.9.13"; | ||
1412 | }; | ||
1413 | method_source = { | ||
1414 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1415 | platforms = []; | ||
1416 | source = { | ||
1417 | remotes = ["https://rubygems.org"]; | ||
1418 | sha256 = "1pviwzvdqd90gn6y7illcdd9adapw8fczml933p5vl739dkvl3lq"; | ||
1419 | type = "gem"; | ||
1420 | }; | ||
1421 | version = "0.9.2"; | ||
1422 | }; | ||
1423 | microformats = { | ||
1424 | dependencies = ["json" "nokogiri"]; | ||
1425 | groups = ["test"]; | ||
1426 | platforms = []; | ||
1427 | source = { | ||
1428 | remotes = ["https://rubygems.org"]; | ||
1429 | sha256 = "12wj9lydba2dz5pqd6ngklwnzhsg63kl3yhi9zm8h9hjg6dsw3nb"; | ||
1430 | type = "gem"; | ||
1431 | }; | ||
1432 | version = "4.1.0"; | ||
1433 | }; | ||
1434 | mime-types = { | ||
1435 | dependencies = ["mime-types-data"]; | ||
1436 | groups = ["default"]; | ||
1437 | platforms = []; | ||
1438 | source = { | ||
1439 | remotes = ["https://rubygems.org"]; | ||
1440 | sha256 = "0fjxy1jm52ixpnv3vg9ld9pr9f35gy0jp66i1njhqjvmnvq0iwwk"; | ||
1441 | type = "gem"; | ||
1442 | }; | ||
1443 | version = "3.2.2"; | ||
1444 | }; | ||
1445 | mime-types-data = { | ||
1446 | groups = ["default"]; | ||
1447 | platforms = []; | ||
1448 | source = { | ||
1449 | remotes = ["https://rubygems.org"]; | ||
1450 | sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; | ||
1451 | type = "gem"; | ||
1452 | }; | ||
1453 | version = "3.2018.0812"; | ||
1454 | }; | ||
1455 | mimemagic = { | ||
1456 | groups = ["default"]; | ||
1457 | platforms = []; | ||
1458 | source = { | ||
1459 | remotes = ["https://rubygems.org"]; | ||
1460 | sha256 = "04cp5sfbh1qx82yqxn0q75c7hlcx8y1dr5g3kyzwm4mx6wi2gifw"; | ||
1461 | type = "gem"; | ||
1462 | }; | ||
1463 | version = "0.3.3"; | ||
1464 | }; | ||
1465 | mini_mime = { | ||
1466 | groups = ["default" "development" "test"]; | ||
1467 | platforms = []; | ||
1468 | source = { | ||
1469 | remotes = ["https://rubygems.org"]; | ||
1470 | sha256 = "1q4pshq387lzv9m39jv32vwb8wrq3wc4jwgl4jk209r4l33v09d3"; | ||
1471 | type = "gem"; | ||
1472 | }; | ||
1473 | version = "1.0.1"; | ||
1474 | }; | ||
1475 | mini_portile2 = { | ||
1476 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1477 | platforms = []; | ||
1478 | source = { | ||
1479 | remotes = ["https://rubygems.org"]; | ||
1480 | sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy"; | ||
1481 | type = "gem"; | ||
1482 | }; | ||
1483 | version = "2.4.0"; | ||
1484 | }; | ||
1485 | minitest = { | ||
1486 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1487 | platforms = []; | ||
1488 | source = { | ||
1489 | remotes = ["https://rubygems.org"]; | ||
1490 | sha256 = "0icglrhghgwdlnzzp4jf76b0mbc71s80njn5afyfjn4wqji8mqbq"; | ||
1491 | type = "gem"; | ||
1492 | }; | ||
1493 | version = "5.11.3"; | ||
1494 | }; | ||
1495 | msgpack = { | ||
1496 | groups = ["default"]; | ||
1497 | platforms = []; | ||
1498 | source = { | ||
1499 | remotes = ["https://rubygems.org"]; | ||
1500 | sha256 = "1w38hilm3dk42dwk8ygiq49bl4in7y80hfqr63hk54mj4gmzi6ch"; | ||
1501 | type = "gem"; | ||
1502 | }; | ||
1503 | version = "1.2.10"; | ||
1504 | }; | ||
1505 | multi_json = { | ||
1506 | groups = ["default"]; | ||
1507 | platforms = []; | ||
1508 | source = { | ||
1509 | remotes = ["https://rubygems.org"]; | ||
1510 | sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv"; | ||
1511 | type = "gem"; | ||
1512 | }; | ||
1513 | version = "1.13.1"; | ||
1514 | }; | ||
1515 | multipart-post = { | ||
1516 | groups = ["default"]; | ||
1517 | platforms = []; | ||
1518 | source = { | ||
1519 | remotes = ["https://rubygems.org"]; | ||
1520 | sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; | ||
1521 | type = "gem"; | ||
1522 | }; | ||
1523 | version = "2.0.0"; | ||
1524 | }; | ||
1525 | necromancer = { | ||
1526 | groups = ["default"]; | ||
1527 | platforms = []; | ||
1528 | source = { | ||
1529 | remotes = ["https://rubygems.org"]; | ||
1530 | sha256 = "112dvp7fz2xmbn4njzjsgqf1psnxiybj4yk6qbd843hyapn7i1hm"; | ||
1531 | type = "gem"; | ||
1532 | }; | ||
1533 | version = "0.5.0"; | ||
1534 | }; | ||
1535 | net-ldap = { | ||
1536 | groups = ["default"]; | ||
1537 | platforms = []; | ||
1538 | source = { | ||
1539 | remotes = ["https://rubygems.org"]; | ||
1540 | sha256 = "016igqz81a8zcwqzp5bbhryqmb2skmyf57ij3nb5z8sxwhw22jgh"; | ||
1541 | type = "gem"; | ||
1542 | }; | ||
1543 | version = "0.16.1"; | ||
1544 | }; | ||
1545 | net-scp = { | ||
1546 | dependencies = ["net-ssh"]; | ||
1547 | groups = ["default" "development"]; | ||
1548 | platforms = []; | ||
1549 | source = { | ||
1550 | remotes = ["https://rubygems.org"]; | ||
1551 | sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j"; | ||
1552 | type = "gem"; | ||
1553 | }; | ||
1554 | version = "1.2.1"; | ||
1555 | }; | ||
1556 | net-ssh = { | ||
1557 | groups = ["default" "development"]; | ||
1558 | platforms = []; | ||
1559 | source = { | ||
1560 | remotes = ["https://rubygems.org"]; | ||
1561 | sha256 = "0qfanf71yv8w7yl9l9wqcy68i2x1ghvnf8m581yy4pl0anfdhqw8"; | ||
1562 | type = "gem"; | ||
1563 | }; | ||
1564 | version = "5.0.2"; | ||
1565 | }; | ||
1566 | nio4r = { | ||
1567 | groups = ["default"]; | ||
1568 | platforms = []; | ||
1569 | source = { | ||
1570 | remotes = ["https://rubygems.org"]; | ||
1571 | sha256 = "1a41ca1kpdmrypjp9xbgvckpy8g26zxphkja9vk7j5wl4n8yvlyr"; | ||
1572 | type = "gem"; | ||
1573 | }; | ||
1574 | version = "2.3.1"; | ||
1575 | }; | ||
1576 | nokogiri = { | ||
1577 | dependencies = ["mini_portile2"]; | ||
1578 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1579 | platforms = []; | ||
1580 | source = { | ||
1581 | remotes = ["https://rubygems.org"]; | ||
1582 | sha256 = "02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4"; | ||
1583 | type = "gem"; | ||
1584 | }; | ||
1585 | version = "1.10.3"; | ||
1586 | }; | ||
1587 | nokogumbo = { | ||
1588 | dependencies = ["nokogiri"]; | ||
1589 | groups = ["default"]; | ||
1590 | platforms = []; | ||
1591 | source = { | ||
1592 | remotes = ["https://rubygems.org"]; | ||
1593 | sha256 = "1qr7r2ysbp8b5q78yr8l5qpaxfqdw1i2yz6nsrbavdki8mqjgj24"; | ||
1594 | type = "gem"; | ||
1595 | }; | ||
1596 | version = "2.0.0"; | ||
1597 | }; | ||
1598 | nsa = { | ||
1599 | dependencies = ["activesupport" "concurrent-ruby" "sidekiq" "statsd-ruby"]; | ||
1600 | groups = ["default"]; | ||
1601 | platforms = []; | ||
1602 | source = { | ||
1603 | remotes = ["https://rubygems.org"]; | ||
1604 | sha256 = "1i1bhmvs49yv70pgl41lx1lr8x6whg52szb8ic1jb6wmmxr2ylcz"; | ||
1605 | type = "gem"; | ||
1606 | }; | ||
1607 | version = "0.2.7"; | ||
1608 | }; | ||
1609 | oj = { | ||
1610 | groups = ["default"]; | ||
1611 | platforms = []; | ||
1612 | source = { | ||
1613 | remotes = ["https://rubygems.org"]; | ||
1614 | sha256 = "0vd1270cg11nicr6d7ziizbphkp6bn5h55xp73gbnr5n7j11xy8a"; | ||
1615 | type = "gem"; | ||
1616 | }; | ||
1617 | version = "3.7.12"; | ||
1618 | }; | ||
1619 | omniauth = { | ||
1620 | dependencies = ["hashie" "rack"]; | ||
1621 | groups = ["default"]; | ||
1622 | platforms = []; | ||
1623 | source = { | ||
1624 | remotes = ["https://rubygems.org"]; | ||
1625 | sha256 = "1p16h1rp8by05k8gfw17xjhgwp60dk8qmj1xalv1n23kmxfsxb1x"; | ||
1626 | type = "gem"; | ||
1627 | }; | ||
1628 | version = "1.9.0"; | ||
1629 | }; | ||
1630 | omniauth-cas = { | ||
1631 | dependencies = ["addressable" "nokogiri" "omniauth"]; | ||
1632 | groups = ["default"]; | ||
1633 | platforms = []; | ||
1634 | source = { | ||
1635 | remotes = ["https://rubygems.org"]; | ||
1636 | sha256 = "1nnk7cr45aj7hj19zpky58yysvjg8mn5f45sj9knpn5f9kgld7p4"; | ||
1637 | type = "gem"; | ||
1638 | }; | ||
1639 | version = "1.1.1"; | ||
1640 | }; | ||
1641 | omniauth-saml = { | ||
1642 | dependencies = ["omniauth" "ruby-saml"]; | ||
1643 | groups = ["default"]; | ||
1644 | platforms = []; | ||
1645 | source = { | ||
1646 | remotes = ["https://rubygems.org"]; | ||
1647 | sha256 = "1pg3pw4yjd9w1rn3lkycllrvd767pydbhldgdcqbbcck01asfcfz"; | ||
1648 | type = "gem"; | ||
1649 | }; | ||
1650 | version = "1.10.1"; | ||
1651 | }; | ||
1652 | orm_adapter = { | ||
1653 | groups = ["default" "pam_authentication"]; | ||
1654 | platforms = []; | ||
1655 | source = { | ||
1656 | remotes = ["https://rubygems.org"]; | ||
1657 | sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; | ||
1658 | type = "gem"; | ||
1659 | }; | ||
1660 | version = "0.5.0"; | ||
1661 | }; | ||
1662 | ostatus2 = { | ||
1663 | dependencies = ["addressable" "http" "nokogiri"]; | ||
1664 | groups = ["default"]; | ||
1665 | platforms = []; | ||
1666 | source = { | ||
1667 | remotes = ["https://rubygems.org"]; | ||
1668 | sha256 = "0fj27nr38g5y52s755pmg5zifwc6n88bw2zmkc22kg4vrhs64k19"; | ||
1669 | type = "gem"; | ||
1670 | }; | ||
1671 | version = "2.0.3"; | ||
1672 | }; | ||
1673 | ox = { | ||
1674 | groups = ["default"]; | ||
1675 | platforms = []; | ||
1676 | source = { | ||
1677 | remotes = ["https://rubygems.org"]; | ||
1678 | sha256 = "03w4s8pa9j6rk6vb7vwicdr0c3k03ngcf1s8gp1q8qwyrgwspc4r"; | ||
1679 | type = "gem"; | ||
1680 | }; | ||
1681 | version = "2.11.0"; | ||
1682 | }; | ||
1683 | paperclip = { | ||
1684 | dependencies = ["activemodel" "activesupport" "mime-types" "mimemagic" "terrapin"]; | ||
1685 | groups = ["default"]; | ||
1686 | platforms = []; | ||
1687 | source = { | ||
1688 | remotes = ["https://rubygems.org"]; | ||
1689 | sha256 = "04mlw7aqj20ry0fy92gxnxg99hy5xczff7rhywfzz4mqlhc2wgg7"; | ||
1690 | type = "gem"; | ||
1691 | }; | ||
1692 | version = "6.0.0"; | ||
1693 | }; | ||
1694 | paperclip-av-transcoder = { | ||
1695 | dependencies = ["av" "paperclip"]; | ||
1696 | groups = ["default"]; | ||
1697 | platforms = []; | ||
1698 | source = { | ||
1699 | remotes = ["https://rubygems.org"]; | ||
1700 | sha256 = "1gcnp3fpdb5lqilcij4yqga6397nb7zyyf9lzxnqpbp7cvc18lhf"; | ||
1701 | type = "gem"; | ||
1702 | }; | ||
1703 | version = "0.6.4"; | ||
1704 | }; | ||
1705 | parallel = { | ||
1706 | groups = ["default" "development" "test"]; | ||
1707 | platforms = []; | ||
1708 | source = { | ||
1709 | remotes = ["https://rubygems.org"]; | ||
1710 | sha256 = "1x1gzgjrdlkm1aw0hfpyphsxcx90qgs3y4gmp9km3dvf4hc4qm8r"; | ||
1711 | type = "gem"; | ||
1712 | }; | ||
1713 | version = "1.17.0"; | ||
1714 | }; | ||
1715 | parallel_tests = { | ||
1716 | dependencies = ["parallel"]; | ||
1717 | groups = ["test"]; | ||
1718 | platforms = []; | ||
1719 | source = { | ||
1720 | remotes = ["https://rubygems.org"]; | ||
1721 | sha256 = "1rxp2v34z1w107hks3892v04pnzq5kj85xplks53z6kamn7p1knx"; | ||
1722 | type = "gem"; | ||
1723 | }; | ||
1724 | version = "2.29.0"; | ||
1725 | }; | ||
1726 | parser = { | ||
1727 | dependencies = ["ast"]; | ||
1728 | groups = ["default" "development" "test"]; | ||
1729 | platforms = []; | ||
1730 | source = { | ||
1731 | remotes = ["https://rubygems.org"]; | ||
1732 | sha256 = "1pnks149x0fzgqiw53qlmvcd8bi746cxdw03sjljby5s97p1fskn"; | ||
1733 | type = "gem"; | ||
1734 | }; | ||
1735 | version = "2.6.3.0"; | ||
1736 | }; | ||
1737 | pastel = { | ||
1738 | dependencies = ["equatable" "tty-color"]; | ||
1739 | groups = ["default"]; | ||
1740 | platforms = []; | ||
1741 | source = { | ||
1742 | remotes = ["https://rubygems.org"]; | ||
1743 | sha256 = "1yf30d9kzpm96gw9kwbv31p0qigwfykn8qdis5950plnzgc1vlp1"; | ||
1744 | type = "gem"; | ||
1745 | }; | ||
1746 | version = "0.7.2"; | ||
1747 | }; | ||
1748 | pg = { | ||
1749 | groups = ["default"]; | ||
1750 | platforms = []; | ||
1751 | source = { | ||
1752 | remotes = ["https://rubygems.org"]; | ||
1753 | sha256 = "0fmnyxcyrvgdbgq7m09whgn9i8rwfybk0w8aii1nc4g5kqw0k2jy"; | ||
1754 | type = "gem"; | ||
1755 | }; | ||
1756 | version = "1.1.4"; | ||
1757 | }; | ||
1758 | pghero = { | ||
1759 | dependencies = ["activerecord"]; | ||
1760 | groups = ["default"]; | ||
1761 | platforms = []; | ||
1762 | source = { | ||
1763 | remotes = ["https://rubygems.org"]; | ||
1764 | sha256 = "0phn9xayg6kgpgyzbpcknwkdv6qqzb21556hb4ikkln8sx711cq0"; | ||
1765 | type = "gem"; | ||
1766 | }; | ||
1767 | version = "2.2.1"; | ||
1768 | }; | ||
1769 | pkg-config = { | ||
1770 | groups = ["default"]; | ||
1771 | platforms = []; | ||
1772 | source = { | ||
1773 | remotes = ["https://rubygems.org"]; | ||
1774 | sha256 = "1s56ym0chq3fycl29vqabcalqdcf7y2f25pmihjwqgbmrmzdyvr1"; | ||
1775 | type = "gem"; | ||
1776 | }; | ||
1777 | version = "1.3.7"; | ||
1778 | }; | ||
1779 | posix-spawn = { | ||
1780 | groups = ["default"]; | ||
1781 | platforms = []; | ||
1782 | source = { | ||
1783 | fetchSubmodules = false; | ||
1784 | rev = "58465d2e213991f8afb13b984854a49fcdcc980c"; | ||
1785 | sha256 = "158m86k54i5cxzasrzp6q0cpvf6d4v91pjcd6kb0cvslfki1drn2"; | ||
1786 | type = "git"; | ||
1787 | url = "https://github.com/rtomayko/posix-spawn"; | ||
1788 | }; | ||
1789 | version = "0.3.13"; | ||
1790 | }; | ||
1791 | premailer = { | ||
1792 | dependencies = ["addressable" "css_parser" "htmlentities"]; | ||
1793 | groups = ["default"]; | ||
1794 | platforms = []; | ||
1795 | source = { | ||
1796 | remotes = ["https://rubygems.org"]; | ||
1797 | sha256 = "1xrhmialxn5vlp1nmf40a4db9gji4h2wbzd7f43sz64z8lvrjj6h"; | ||
1798 | type = "gem"; | ||
1799 | }; | ||
1800 | version = "1.11.1"; | ||
1801 | }; | ||
1802 | premailer-rails = { | ||
1803 | dependencies = ["actionmailer" "premailer"]; | ||
1804 | groups = ["default"]; | ||
1805 | platforms = []; | ||
1806 | source = { | ||
1807 | remotes = ["https://rubygems.org"]; | ||
1808 | sha256 = "1avh2bkhabicf1zxla8z6ig5192h3vdzli4d2y9wmxfwgh549lmx"; | ||
1809 | type = "gem"; | ||
1810 | }; | ||
1811 | version = "1.10.2"; | ||
1812 | }; | ||
1813 | private_address_check = { | ||
1814 | groups = ["production" "test"]; | ||
1815 | platforms = []; | ||
1816 | source = { | ||
1817 | remotes = ["https://rubygems.org"]; | ||
1818 | sha256 = "05phz0vscfh9chv90yc9091pifw3cpwkh76flnhrmvja1q3na4cy"; | ||
1819 | type = "gem"; | ||
1820 | }; | ||
1821 | version = "0.5.0"; | ||
1822 | }; | ||
1823 | pry = { | ||
1824 | dependencies = ["coderay" "method_source"]; | ||
1825 | groups = ["default" "development" "test"]; | ||
1826 | platforms = []; | ||
1827 | source = { | ||
1828 | remotes = ["https://rubygems.org"]; | ||
1829 | sha256 = "00rm71x0r1jdycwbs83lf9l6p494m99asakbvqxh8rz7zwnlzg69"; | ||
1830 | type = "gem"; | ||
1831 | }; | ||
1832 | version = "0.12.2"; | ||
1833 | }; | ||
1834 | pry-byebug = { | ||
1835 | dependencies = ["byebug" "pry"]; | ||
1836 | groups = ["development" "test"]; | ||
1837 | platforms = []; | ||
1838 | source = { | ||
1839 | remotes = ["https://rubygems.org"]; | ||
1840 | sha256 = "1aqz4gz8z44k6svpvcsfrqbigcpjd2kwvfm77yq3v8yzkhjrx0zi"; | ||
1841 | type = "gem"; | ||
1842 | }; | ||
1843 | version = "3.7.0"; | ||
1844 | }; | ||
1845 | pry-rails = { | ||
1846 | dependencies = ["pry"]; | ||
1847 | groups = ["development" "test"]; | ||
1848 | platforms = []; | ||
1849 | source = { | ||
1850 | remotes = ["https://rubygems.org"]; | ||
1851 | sha256 = "1cf4ii53w2hdh7fn8vhqpzkymmchjbwij4l3m7s6fsxvb9bn51j6"; | ||
1852 | type = "gem"; | ||
1853 | }; | ||
1854 | version = "0.3.9"; | ||
1855 | }; | ||
1856 | public_suffix = { | ||
1857 | groups = ["default" "development" "test"]; | ||
1858 | platforms = []; | ||
1859 | source = { | ||
1860 | remotes = ["https://rubygems.org"]; | ||
1861 | sha256 = "1c7c5xxkx91hwj4572hbnyvxmydb90q69wlpr2l0dxrmwx2p365l"; | ||
1862 | type = "gem"; | ||
1863 | }; | ||
1864 | version = "3.1.0"; | ||
1865 | }; | ||
1866 | puma = { | ||
1867 | groups = ["default"]; | ||
1868 | platforms = []; | ||
1869 | source = { | ||
1870 | remotes = ["https://rubygems.org"]; | ||
1871 | sha256 = "1pkrbvak6rlf147qpd4zss031qrwwh53g8s6017037iwg0436kv3"; | ||
1872 | type = "gem"; | ||
1873 | }; | ||
1874 | version = "3.12.1"; | ||
1875 | }; | ||
1876 | pundit = { | ||
1877 | dependencies = ["activesupport"]; | ||
1878 | groups = ["default"]; | ||
1879 | platforms = []; | ||
1880 | source = { | ||
1881 | remotes = ["https://rubygems.org"]; | ||
1882 | sha256 = "1rqnll033ya64qvknbmnq076q9mxaibvcd7q70jhkpjda1xi4703"; | ||
1883 | type = "gem"; | ||
1884 | }; | ||
1885 | version = "2.0.1"; | ||
1886 | }; | ||
1887 | raabro = { | ||
1888 | groups = ["default"]; | ||
1889 | platforms = []; | ||
1890 | source = { | ||
1891 | remotes = ["https://rubygems.org"]; | ||
1892 | sha256 = "0xzdmbn48753f6k0ckirp8ja5p0xn1a92wbwxfyggyhj0hza9ylq"; | ||
1893 | type = "gem"; | ||
1894 | }; | ||
1895 | version = "1.1.6"; | ||
1896 | }; | ||
1897 | rack = { | ||
1898 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1899 | platforms = []; | ||
1900 | source = { | ||
1901 | remotes = ["https://rubygems.org"]; | ||
1902 | sha256 = "0z90vflxbgjy2n84r7mbyax3i2vyvvrxxrf86ljzn5rw65jgnn2i"; | ||
1903 | type = "gem"; | ||
1904 | }; | ||
1905 | version = "2.0.7"; | ||
1906 | }; | ||
1907 | rack-attack = { | ||
1908 | dependencies = ["rack"]; | ||
1909 | groups = ["default"]; | ||
1910 | platforms = []; | ||
1911 | source = { | ||
1912 | remotes = ["https://rubygems.org"]; | ||
1913 | sha256 = "1hbg2imjfs305iv6wglwn7jscksblxbsh92kf6qlkv97bwq63rfi"; | ||
1914 | type = "gem"; | ||
1915 | }; | ||
1916 | version = "6.0.0"; | ||
1917 | }; | ||
1918 | rack-cors = { | ||
1919 | groups = ["default"]; | ||
1920 | platforms = []; | ||
1921 | source = { | ||
1922 | remotes = ["https://rubygems.org"]; | ||
1923 | sha256 = "1dmg0f7zdmcn321fr05g568slzf8cmqgccavyhvx7c37ir040k4l"; | ||
1924 | type = "gem"; | ||
1925 | }; | ||
1926 | version = "1.0.3"; | ||
1927 | }; | ||
1928 | rack-protection = { | ||
1929 | dependencies = ["rack"]; | ||
1930 | groups = ["default" "test"]; | ||
1931 | platforms = []; | ||
1932 | source = { | ||
1933 | remotes = ["https://rubygems.org"]; | ||
1934 | sha256 = "15167q25rmxipqwi6hjqj3i1byi9iwl3xq9b7mdar7qiz39pmjsk"; | ||
1935 | type = "gem"; | ||
1936 | }; | ||
1937 | version = "2.0.5"; | ||
1938 | }; | ||
1939 | rack-proxy = { | ||
1940 | dependencies = ["rack"]; | ||
1941 | groups = ["default"]; | ||
1942 | platforms = []; | ||
1943 | source = { | ||
1944 | remotes = ["https://rubygems.org"]; | ||
1945 | sha256 = "1v40xd3xhzhbdqfynd03gn88j1pga2zhrv58xs9fl4hzrlbp096s"; | ||
1946 | type = "gem"; | ||
1947 | }; | ||
1948 | version = "0.6.5"; | ||
1949 | }; | ||
1950 | rack-test = { | ||
1951 | dependencies = ["rack"]; | ||
1952 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1953 | platforms = []; | ||
1954 | source = { | ||
1955 | remotes = ["https://rubygems.org"]; | ||
1956 | sha256 = "0rh8h376mx71ci5yklnpqqn118z3bl67nnv5k801qaqn1zs62h8m"; | ||
1957 | type = "gem"; | ||
1958 | }; | ||
1959 | version = "1.1.0"; | ||
1960 | }; | ||
1961 | rails = { | ||
1962 | dependencies = ["actioncable" "actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activestorage" "activesupport" "railties" "sprockets-rails"]; | ||
1963 | groups = ["default"]; | ||
1964 | platforms = []; | ||
1965 | source = { | ||
1966 | remotes = ["https://rubygems.org"]; | ||
1967 | sha256 = "1p7cszi3n9ksxchxnccmz61pd1i3rjg4813dsdinsm8xm5k1pdgr"; | ||
1968 | type = "gem"; | ||
1969 | }; | ||
1970 | version = "5.2.3"; | ||
1971 | }; | ||
1972 | rails-controller-testing = { | ||
1973 | dependencies = ["actionpack" "actionview" "activesupport"]; | ||
1974 | groups = ["test"]; | ||
1975 | platforms = []; | ||
1976 | source = { | ||
1977 | remotes = ["https://rubygems.org"]; | ||
1978 | sha256 = "1m1rklj6pvzi4fydxcmcv4q0xd7913hhhw1hw530nfz1wkl7vjlf"; | ||
1979 | type = "gem"; | ||
1980 | }; | ||
1981 | version = "1.0.4"; | ||
1982 | }; | ||
1983 | rails-dom-testing = { | ||
1984 | dependencies = ["activesupport" "nokogiri"]; | ||
1985 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1986 | platforms = []; | ||
1987 | source = { | ||
1988 | remotes = ["https://rubygems.org"]; | ||
1989 | sha256 = "1lfq2a7kp2x64dzzi5p4cjcbiv62vxh9lyqk2f0rqq3fkzrw8h5i"; | ||
1990 | type = "gem"; | ||
1991 | }; | ||
1992 | version = "2.0.3"; | ||
1993 | }; | ||
1994 | rails-html-sanitizer = { | ||
1995 | dependencies = ["loofah"]; | ||
1996 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
1997 | platforms = []; | ||
1998 | source = { | ||
1999 | remotes = ["https://rubygems.org"]; | ||
2000 | sha256 = "1gv7vr5d9g2xmgpjfq4nxsqr70r9pr042r9ycqqnfvw5cz9c7jwr"; | ||
2001 | type = "gem"; | ||
2002 | }; | ||
2003 | version = "1.0.4"; | ||
2004 | }; | ||
2005 | rails-i18n = { | ||
2006 | dependencies = ["i18n" "railties"]; | ||
2007 | groups = ["default" "development" "test"]; | ||
2008 | platforms = []; | ||
2009 | source = { | ||
2010 | remotes = ["https://rubygems.org"]; | ||
2011 | sha256 = "02kdlm7jgwvwnnc1amy8md2vl0f2jkfr6rr36vybclr9qm4fb80f"; | ||
2012 | type = "gem"; | ||
2013 | }; | ||
2014 | version = "5.1.3"; | ||
2015 | }; | ||
2016 | rails-settings-cached = { | ||
2017 | dependencies = ["rails"]; | ||
2018 | groups = ["default"]; | ||
2019 | platforms = []; | ||
2020 | source = { | ||
2021 | remotes = ["https://rubygems.org"]; | ||
2022 | sha256 = "0wyhyls0aqb1iw7mnaldg39w3mnbi3anmpbvb52rjwkpj2mchhnc"; | ||
2023 | type = "gem"; | ||
2024 | }; | ||
2025 | version = "0.6.6"; | ||
2026 | }; | ||
2027 | railties = { | ||
2028 | dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor"]; | ||
2029 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
2030 | platforms = []; | ||
2031 | source = { | ||
2032 | remotes = ["https://rubygems.org"]; | ||
2033 | sha256 = "1gn9fwb5wm08fbj7zpilqgblfl315l5b7pg4jsvxlizvrzg8h8q4"; | ||
2034 | type = "gem"; | ||
2035 | }; | ||
2036 | version = "5.2.3"; | ||
2037 | }; | ||
2038 | rainbow = { | ||
2039 | groups = ["default" "development" "test"]; | ||
2040 | platforms = []; | ||
2041 | source = { | ||
2042 | remotes = ["https://rubygems.org"]; | ||
2043 | sha256 = "0bb2fpjspydr6x0s8pn1pqkzmxszvkfapv0p4627mywl7ky4zkhk"; | ||
2044 | type = "gem"; | ||
2045 | }; | ||
2046 | version = "3.0.0"; | ||
2047 | }; | ||
2048 | rake = { | ||
2049 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
2050 | platforms = []; | ||
2051 | source = { | ||
2052 | remotes = ["https://rubygems.org"]; | ||
2053 | sha256 = "1sy5a7nh6xjdc9yhcw31jji7ssrf9v5806hn95gbrzr998a2ydjn"; | ||
2054 | type = "gem"; | ||
2055 | }; | ||
2056 | version = "12.3.2"; | ||
2057 | }; | ||
2058 | rdf = { | ||
2059 | dependencies = ["hamster" "link_header"]; | ||
2060 | groups = ["default"]; | ||
2061 | platforms = []; | ||
2062 | source = { | ||
2063 | remotes = ["https://rubygems.org"]; | ||
2064 | sha256 = "1ylgsspdj2g0af0pgfi1ry50x8ng5069223238vg8kz0p7b24q79"; | ||
2065 | type = "gem"; | ||
2066 | }; | ||
2067 | version = "3.0.9"; | ||
2068 | }; | ||
2069 | rdf-normalize = { | ||
2070 | dependencies = ["rdf"]; | ||
2071 | groups = ["default"]; | ||
2072 | platforms = []; | ||
2073 | source = { | ||
2074 | remotes = ["https://rubygems.org"]; | ||
2075 | sha256 = "0h8qk3x5frqbgb4gj9ga75ddls47x8qhghscgz82gfq76m4r45g0"; | ||
2076 | type = "gem"; | ||
2077 | }; | ||
2078 | version = "0.3.3"; | ||
2079 | }; | ||
2080 | redis = { | ||
2081 | groups = ["default" "production" "test"]; | ||
2082 | platforms = []; | ||
2083 | source = { | ||
2084 | remotes = ["https://rubygems.org"]; | ||
2085 | sha256 = "1mymdx7s5sr4mablklaipz679ckczsiigswm1g2v5mc93yj5amw3"; | ||
2086 | type = "gem"; | ||
2087 | }; | ||
2088 | version = "4.1.2"; | ||
2089 | }; | ||
2090 | redis-actionpack = { | ||
2091 | dependencies = ["actionpack" "redis-rack" "redis-store"]; | ||
2092 | groups = ["default" "production"]; | ||
2093 | platforms = []; | ||
2094 | source = { | ||
2095 | remotes = ["https://rubygems.org"]; | ||
2096 | sha256 = "15k41gz7nygd4yydk2yd25gghya1j7q6zifk4mdrra6bwnwjbm63"; | ||
2097 | type = "gem"; | ||
2098 | }; | ||
2099 | version = "5.0.2"; | ||
2100 | }; | ||
2101 | redis-activesupport = { | ||
2102 | dependencies = ["activesupport" "redis-store"]; | ||
2103 | groups = ["default" "production"]; | ||
2104 | platforms = []; | ||
2105 | source = { | ||
2106 | remotes = ["https://rubygems.org"]; | ||
2107 | sha256 = "0rq5dhrzc1l8c7f5gx9r7mvnsk5206dfwih3yv5si5rf42nx2ay5"; | ||
2108 | type = "gem"; | ||
2109 | }; | ||
2110 | version = "5.0.4"; | ||
2111 | }; | ||
2112 | redis-namespace = { | ||
2113 | dependencies = ["redis"]; | ||
2114 | groups = ["default"]; | ||
2115 | platforms = []; | ||
2116 | source = { | ||
2117 | remotes = ["https://rubygems.org"]; | ||
2118 | sha256 = "0r7daagrjjribn098dxwbv9zivrbq2rsffbkj2ccxyn9lmjjbgah"; | ||
2119 | type = "gem"; | ||
2120 | }; | ||
2121 | version = "1.6.0"; | ||
2122 | }; | ||
2123 | redis-rack = { | ||
2124 | dependencies = ["rack" "redis-store"]; | ||
2125 | groups = ["default" "production"]; | ||
2126 | platforms = []; | ||
2127 | source = { | ||
2128 | remotes = ["https://rubygems.org"]; | ||
2129 | sha256 = "0px0wv8zripc6lrn3k0k61j6nlxda145q8sz50yvnig17wlk36gb"; | ||
2130 | type = "gem"; | ||
2131 | }; | ||
2132 | version = "2.0.4"; | ||
2133 | }; | ||
2134 | redis-rails = { | ||
2135 | dependencies = ["redis-actionpack" "redis-activesupport" "redis-store"]; | ||
2136 | groups = ["production"]; | ||
2137 | platforms = []; | ||
2138 | source = { | ||
2139 | remotes = ["https://rubygems.org"]; | ||
2140 | sha256 = "0hjvkyaw5hgz7v6fgwdk8pb966z44h1gv8jarmb0gwhkqmjnsh40"; | ||
2141 | type = "gem"; | ||
2142 | }; | ||
2143 | version = "5.0.2"; | ||
2144 | }; | ||
2145 | redis-store = { | ||
2146 | dependencies = ["redis"]; | ||
2147 | groups = ["default" "production"]; | ||
2148 | platforms = []; | ||
2149 | source = { | ||
2150 | remotes = ["https://rubygems.org"]; | ||
2151 | sha256 = "0cpg4fmqcyl8mm77l852xsidp8384a7s1mgbpki999swvq97svi4"; | ||
2152 | type = "gem"; | ||
2153 | }; | ||
2154 | version = "1.5.0"; | ||
2155 | }; | ||
2156 | regexp_parser = { | ||
2157 | groups = ["default" "test"]; | ||
2158 | platforms = []; | ||
2159 | source = { | ||
2160 | remotes = ["https://rubygems.org"]; | ||
2161 | sha256 = "0dsgjb3kszk6a82s6gl0h6a8vncjrxmcbk0r4mcxcdcad2b7vb2d"; | ||
2162 | type = "gem"; | ||
2163 | }; | ||
2164 | version = "1.5.1"; | ||
2165 | }; | ||
2166 | request_store = { | ||
2167 | dependencies = ["rack"]; | ||
2168 | groups = ["default" "production"]; | ||
2169 | platforms = []; | ||
2170 | source = { | ||
2171 | remotes = ["https://rubygems.org"]; | ||
2172 | sha256 = "1963330z03fk382fi8y231ygcbnh86m91dqlp5rh1mwy9ihzzl6d"; | ||
2173 | type = "gem"; | ||
2174 | }; | ||
2175 | version = "1.4.1"; | ||
2176 | }; | ||
2177 | responders = { | ||
2178 | dependencies = ["actionpack" "railties"]; | ||
2179 | groups = ["default" "pam_authentication"]; | ||
2180 | platforms = []; | ||
2181 | source = { | ||
2182 | remotes = ["https://rubygems.org"]; | ||
2183 | sha256 = "18lqbiyc7234vd6iwxia5yvvzg6bdvdwl2nm4a5y7ia5fxjl3kqm"; | ||
2184 | type = "gem"; | ||
2185 | }; | ||
2186 | version = "2.4.1"; | ||
2187 | }; | ||
2188 | rotp = { | ||
2189 | groups = ["default"]; | ||
2190 | platforms = []; | ||
2191 | source = { | ||
2192 | remotes = ["https://rubygems.org"]; | ||
2193 | sha256 = "1w8d6svhq3y9y952r8cqirxvdx12zlkb7zxjb44bcbidb2sisy4d"; | ||
2194 | type = "gem"; | ||
2195 | }; | ||
2196 | version = "2.1.2"; | ||
2197 | }; | ||
2198 | rpam2 = { | ||
2199 | groups = ["default" "pam_authentication"]; | ||
2200 | platforms = []; | ||
2201 | source = { | ||
2202 | remotes = ["https://rubygems.org"]; | ||
2203 | sha256 = "1zvli3s4z1hf2l7gyfickm5i3afjrnycc3ihbiax6ji6arpbyf33"; | ||
2204 | type = "gem"; | ||
2205 | }; | ||
2206 | version = "4.0.2"; | ||
2207 | }; | ||
2208 | rqrcode = { | ||
2209 | dependencies = ["chunky_png"]; | ||
2210 | groups = ["default"]; | ||
2211 | platforms = []; | ||
2212 | source = { | ||
2213 | remotes = ["https://rubygems.org"]; | ||
2214 | sha256 = "0h1pnnydgs032psakvg3l779w3ghbn08ajhhhw19hpmnfhrs8k0a"; | ||
2215 | type = "gem"; | ||
2216 | }; | ||
2217 | version = "0.10.1"; | ||
2218 | }; | ||
2219 | rspec-core = { | ||
2220 | dependencies = ["rspec-support"]; | ||
2221 | groups = ["default" "development" "test"]; | ||
2222 | platforms = []; | ||
2223 | source = { | ||
2224 | remotes = ["https://rubygems.org"]; | ||
2225 | sha256 = "1p1s5bnbqp3sxk67y0fh0x884jjym527r0vgmhbm81w7aq6b7l4p"; | ||
2226 | type = "gem"; | ||
2227 | }; | ||
2228 | version = "3.8.0"; | ||
2229 | }; | ||
2230 | rspec-expectations = { | ||
2231 | dependencies = ["diff-lcs" "rspec-support"]; | ||
2232 | groups = ["default" "development" "test"]; | ||
2233 | platforms = []; | ||
2234 | source = { | ||
2235 | remotes = ["https://rubygems.org"]; | ||
2236 | sha256 = "18l21hy1zdc2pgc2yb17k3n2al1khpfr0z6pijlm852iz6vj0dkm"; | ||
2237 | type = "gem"; | ||
2238 | }; | ||
2239 | version = "3.8.2"; | ||
2240 | }; | ||
2241 | rspec-mocks = { | ||
2242 | dependencies = ["diff-lcs" "rspec-support"]; | ||
2243 | groups = ["default" "development" "test"]; | ||
2244 | platforms = []; | ||
2245 | source = { | ||
2246 | remotes = ["https://rubygems.org"]; | ||
2247 | sha256 = "06y508cjqycb4yfhxmb3nxn0v9xqf17qbd46l1dh4xhncinr4fyp"; | ||
2248 | type = "gem"; | ||
2249 | }; | ||
2250 | version = "3.8.0"; | ||
2251 | }; | ||
2252 | rspec-rails = { | ||
2253 | dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; | ||
2254 | groups = ["development" "test"]; | ||
2255 | platforms = []; | ||
2256 | source = { | ||
2257 | remotes = ["https://rubygems.org"]; | ||
2258 | sha256 = "1pf6n9l4sw1arlax1bdbm1znsvl8cgna2n6k6yk1bi8vz2n73ls1"; | ||
2259 | type = "gem"; | ||
2260 | }; | ||
2261 | version = "3.8.2"; | ||
2262 | }; | ||
2263 | rspec-sidekiq = { | ||
2264 | dependencies = ["rspec-core" "sidekiq"]; | ||
2265 | groups = ["test"]; | ||
2266 | platforms = []; | ||
2267 | source = { | ||
2268 | remotes = ["https://rubygems.org"]; | ||
2269 | sha256 = "0y7pbqrbc8rjszc45vg4vz9qbn8aymgcc4ribrhvm76wrfz3ksfq"; | ||
2270 | type = "gem"; | ||
2271 | }; | ||
2272 | version = "3.0.3"; | ||
2273 | }; | ||
2274 | rspec-support = { | ||
2275 | groups = ["default" "development" "test"]; | ||
2276 | platforms = []; | ||
2277 | source = { | ||
2278 | remotes = ["https://rubygems.org"]; | ||
2279 | sha256 = "0p3m7drixrlhvj2zpc38b11x145bvm311x6f33jjcxmvcm0wq609"; | ||
2280 | type = "gem"; | ||
2281 | }; | ||
2282 | version = "3.8.0"; | ||
2283 | }; | ||
2284 | rubocop = { | ||
2285 | dependencies = ["jaro_winkler" "parallel" "parser" "rainbow" "ruby-progressbar" "unicode-display_width"]; | ||
2286 | groups = ["development"]; | ||
2287 | platforms = []; | ||
2288 | source = { | ||
2289 | remotes = ["https://rubygems.org"]; | ||
2290 | sha256 = "0mjyrf1dmf58i40izs8rp2j4mqnyd4qpah9svmkwhs33ckxsjh6b"; | ||
2291 | type = "gem"; | ||
2292 | }; | ||
2293 | version = "0.71.0"; | ||
2294 | }; | ||
2295 | rubocop-rails = { | ||
2296 | dependencies = ["rack" "rubocop"]; | ||
2297 | groups = ["development"]; | ||
2298 | platforms = []; | ||
2299 | source = { | ||
2300 | remotes = ["https://rubygems.org"]; | ||
2301 | sha256 = "133kf7zc03dgvday8p9m53kz4cqbp4i6w53ahqkfp88n3v5ji0ss"; | ||
2302 | type = "gem"; | ||
2303 | }; | ||
2304 | version = "2.0.1"; | ||
2305 | }; | ||
2306 | ruby-progressbar = { | ||
2307 | groups = ["default" "development" "test"]; | ||
2308 | platforms = []; | ||
2309 | source = { | ||
2310 | remotes = ["https://rubygems.org"]; | ||
2311 | sha256 = "1k77i0d4wsn23ggdd2msrcwfy0i376cglfqypkk2q77r2l3408zf"; | ||
2312 | type = "gem"; | ||
2313 | }; | ||
2314 | version = "1.10.1"; | ||
2315 | }; | ||
2316 | ruby-saml = { | ||
2317 | dependencies = ["nokogiri"]; | ||
2318 | groups = ["default"]; | ||
2319 | platforms = []; | ||
2320 | source = { | ||
2321 | remotes = ["https://rubygems.org"]; | ||
2322 | sha256 = "12f3mmyds4y8f7535p79xzx0wnp7rj02h1fp2x3j2hy5vrkmz2k4"; | ||
2323 | type = "gem"; | ||
2324 | }; | ||
2325 | version = "1.9.0"; | ||
2326 | }; | ||
2327 | rufus-scheduler = { | ||
2328 | dependencies = ["fugit"]; | ||
2329 | groups = ["default"]; | ||
2330 | platforms = []; | ||
2331 | source = { | ||
2332 | remotes = ["https://rubygems.org"]; | ||
2333 | sha256 = "074w41a88343cbv8ydkpl3firhvh3kbh8ppldhdmpvv2g569m32i"; | ||
2334 | type = "gem"; | ||
2335 | }; | ||
2336 | version = "3.5.2"; | ||
2337 | }; | ||
2338 | safe_yaml = { | ||
2339 | groups = ["default" "test"]; | ||
2340 | platforms = []; | ||
2341 | source = { | ||
2342 | remotes = ["https://rubygems.org"]; | ||
2343 | sha256 = "0j7qv63p0vqcd838i2iy2f76c3dgwzkiz1d1xkg7n0pbnxj2vb56"; | ||
2344 | type = "gem"; | ||
2345 | }; | ||
2346 | version = "1.0.5"; | ||
2347 | }; | ||
2348 | sanitize = { | ||
2349 | dependencies = ["crass" "nokogiri" "nokogumbo"]; | ||
2350 | groups = ["default"]; | ||
2351 | platforms = []; | ||
2352 | source = { | ||
2353 | remotes = ["https://rubygems.org"]; | ||
2354 | sha256 = "0rsb2gvqdh41miq7xjckidmgnjh3slvfqbp1hh4s6xfhc32r8g3s"; | ||
2355 | type = "gem"; | ||
2356 | }; | ||
2357 | version = "5.0.0"; | ||
2358 | }; | ||
2359 | sidekiq = { | ||
2360 | dependencies = ["connection_pool" "rack" "rack-protection" "redis"]; | ||
2361 | groups = ["default" "test"]; | ||
2362 | platforms = []; | ||
2363 | source = { | ||
2364 | remotes = ["https://rubygems.org"]; | ||
2365 | sha256 = "131zv8i341bkacxx7n1id2cmblkbs379farnibqg8c7bycd1iajq"; | ||
2366 | type = "gem"; | ||
2367 | }; | ||
2368 | version = "5.2.7"; | ||
2369 | }; | ||
2370 | sidekiq-bulk = { | ||
2371 | dependencies = ["sidekiq"]; | ||
2372 | groups = ["default"]; | ||
2373 | platforms = []; | ||
2374 | source = { | ||
2375 | remotes = ["https://rubygems.org"]; | ||
2376 | sha256 = "08nyxzmgf742irafy3l4fj09d4s5pyvsh0dzlh8y4hl51rgkh4xv"; | ||
2377 | type = "gem"; | ||
2378 | }; | ||
2379 | version = "0.2.0"; | ||
2380 | }; | ||
2381 | sidekiq-scheduler = { | ||
2382 | dependencies = ["redis" "rufus-scheduler" "sidekiq" "tilt"]; | ||
2383 | groups = ["default"]; | ||
2384 | platforms = []; | ||
2385 | source = { | ||
2386 | remotes = ["https://rubygems.org"]; | ||
2387 | sha256 = "1n38p1ig8rx4ndqxcsc2gyzbaaax6r16b1xkn9mgcwwfx8qd5dbw"; | ||
2388 | type = "gem"; | ||
2389 | }; | ||
2390 | version = "3.0.0"; | ||
2391 | }; | ||
2392 | sidekiq-unique-jobs = { | ||
2393 | dependencies = ["concurrent-ruby" "sidekiq" "thor"]; | ||
2394 | groups = ["default"]; | ||
2395 | platforms = []; | ||
2396 | source = { | ||
2397 | remotes = ["https://rubygems.org"]; | ||
2398 | sha256 = "14b6hiz41zhnn8mq2fyg8axdw6kzfqaybiyqqniprjgxm88md6xf"; | ||
2399 | type = "gem"; | ||
2400 | }; | ||
2401 | version = "6.0.13"; | ||
2402 | }; | ||
2403 | simple-navigation = { | ||
2404 | dependencies = ["activesupport"]; | ||
2405 | groups = ["default"]; | ||
2406 | platforms = []; | ||
2407 | source = { | ||
2408 | remotes = ["https://rubygems.org"]; | ||
2409 | sha256 = "08a2s18an3br3xj5j86r33q0hrkai0y157xg67h1khdskb08yylk"; | ||
2410 | type = "gem"; | ||
2411 | }; | ||
2412 | version = "4.0.5"; | ||
2413 | }; | ||
2414 | simple_form = { | ||
2415 | dependencies = ["actionpack" "activemodel"]; | ||
2416 | groups = ["default"]; | ||
2417 | platforms = []; | ||
2418 | source = { | ||
2419 | remotes = ["https://rubygems.org"]; | ||
2420 | sha256 = "1221bf6glwinknrnp3pa2676ayg1yxyfa6l6lbajc72950v5mzm6"; | ||
2421 | type = "gem"; | ||
2422 | }; | ||
2423 | version = "4.1.0"; | ||
2424 | }; | ||
2425 | simplecov = { | ||
2426 | dependencies = ["docile" "json" "simplecov-html"]; | ||
2427 | groups = ["test"]; | ||
2428 | platforms = []; | ||
2429 | source = { | ||
2430 | remotes = ["https://rubygems.org"]; | ||
2431 | sha256 = "1sfyfgf7zrp2n42v7rswkqgk3bbwk1bnsphm24y7laxv3f8z0947"; | ||
2432 | type = "gem"; | ||
2433 | }; | ||
2434 | version = "0.16.1"; | ||
2435 | }; | ||
2436 | simplecov-html = { | ||
2437 | groups = ["default" "test"]; | ||
2438 | platforms = []; | ||
2439 | source = { | ||
2440 | remotes = ["https://rubygems.org"]; | ||
2441 | sha256 = "1lihraa4rgxk8wbfl77fy9sf0ypk31iivly8vl3w04srd7i0clzn"; | ||
2442 | type = "gem"; | ||
2443 | }; | ||
2444 | version = "0.10.2"; | ||
2445 | }; | ||
2446 | sprockets = { | ||
2447 | dependencies = ["concurrent-ruby" "rack"]; | ||
2448 | groups = ["default"]; | ||
2449 | platforms = []; | ||
2450 | source = { | ||
2451 | remotes = ["https://rubygems.org"]; | ||
2452 | sha256 = "182jw5a0fbqah5w9jancvfmjbk88h8bxdbwnl4d3q809rpxdg8ay"; | ||
2453 | type = "gem"; | ||
2454 | }; | ||
2455 | version = "3.7.2"; | ||
2456 | }; | ||
2457 | sprockets-rails = { | ||
2458 | dependencies = ["actionpack" "activesupport" "sprockets"]; | ||
2459 | groups = ["default"]; | ||
2460 | platforms = []; | ||
2461 | source = { | ||
2462 | remotes = ["https://rubygems.org"]; | ||
2463 | sha256 = "0ab42pm8p5zxpv3sfraq45b9lj39cz9mrpdirm30vywzrwwkm5p1"; | ||
2464 | type = "gem"; | ||
2465 | }; | ||
2466 | version = "3.2.1"; | ||
2467 | }; | ||
2468 | sshkit = { | ||
2469 | dependencies = ["net-scp" "net-ssh"]; | ||
2470 | groups = ["default" "development"]; | ||
2471 | platforms = []; | ||
2472 | source = { | ||
2473 | remotes = ["https://rubygems.org"]; | ||
2474 | sha256 = "1982pcckxy811gm6z9h8brkds13mrgrx8sgmdz8dq5rg1h91y0yw"; | ||
2475 | type = "gem"; | ||
2476 | }; | ||
2477 | version = "1.17.0"; | ||
2478 | }; | ||
2479 | stackprof = { | ||
2480 | groups = ["development"]; | ||
2481 | platforms = []; | ||
2482 | source = { | ||
2483 | remotes = ["https://rubygems.org"]; | ||
2484 | sha256 = "1v7mkl4ng2is5h0glivhcjjkkj2shq1qzx9sg9shw9nn8xvg7i4w"; | ||
2485 | type = "gem"; | ||
2486 | }; | ||
2487 | version = "0.2.12"; | ||
2488 | }; | ||
2489 | statsd-ruby = { | ||
2490 | groups = ["default"]; | ||
2491 | platforms = []; | ||
2492 | source = { | ||
2493 | remotes = ["https://rubygems.org"]; | ||
2494 | sha256 = "0djig5dnqjgww6wrw3f1mvnnjllznahlchvk4lvs4wx9qjsqpysr"; | ||
2495 | type = "gem"; | ||
2496 | }; | ||
2497 | version = "1.4.0"; | ||
2498 | }; | ||
2499 | stoplight = { | ||
2500 | groups = ["default"]; | ||
2501 | platforms = []; | ||
2502 | source = { | ||
2503 | remotes = ["https://rubygems.org"]; | ||
2504 | sha256 = "1c55ar2chyivz8n6xkhyq36hgpb0b7cfqfjrcyyv9sjiyrbqyhic"; | ||
2505 | type = "gem"; | ||
2506 | }; | ||
2507 | version = "2.1.3"; | ||
2508 | }; | ||
2509 | streamio-ffmpeg = { | ||
2510 | dependencies = ["multi_json"]; | ||
2511 | groups = ["default"]; | ||
2512 | platforms = []; | ||
2513 | source = { | ||
2514 | remotes = ["https://rubygems.org"]; | ||
2515 | sha256 = "1nnxizc0371vwh0k6gqjj1b7fjszydpqfz549n6qn2q1pza3894z"; | ||
2516 | type = "gem"; | ||
2517 | }; | ||
2518 | version = "3.0.2"; | ||
2519 | }; | ||
2520 | strong_migrations = { | ||
2521 | dependencies = ["activerecord"]; | ||
2522 | groups = ["default"]; | ||
2523 | platforms = []; | ||
2524 | source = { | ||
2525 | remotes = ["https://rubygems.org"]; | ||
2526 | sha256 = "0767m9qm0k2xqp4z3cyy5mh3639cbfp0b43b6kk6w85zyi6w4dpq"; | ||
2527 | type = "gem"; | ||
2528 | }; | ||
2529 | version = "0.4.0"; | ||
2530 | }; | ||
2531 | temple = { | ||
2532 | groups = ["default"]; | ||
2533 | platforms = []; | ||
2534 | source = { | ||
2535 | remotes = ["https://rubygems.org"]; | ||
2536 | sha256 = "158d7ygbwcifqnvrph219p7m78yjdjazhykv5darbkms7bxm5y09"; | ||
2537 | type = "gem"; | ||
2538 | }; | ||
2539 | version = "0.8.1"; | ||
2540 | }; | ||
2541 | terminal-table = { | ||
2542 | dependencies = ["unicode-display_width"]; | ||
2543 | groups = ["default" "development" "test"]; | ||
2544 | platforms = []; | ||
2545 | source = { | ||
2546 | remotes = ["https://rubygems.org"]; | ||
2547 | sha256 = "1512cngw35hsmhvw4c05rscihc59mnj09m249sm9p3pik831ydqk"; | ||
2548 | type = "gem"; | ||
2549 | }; | ||
2550 | version = "1.8.0"; | ||
2551 | }; | ||
2552 | terrapin = { | ||
2553 | dependencies = ["climate_control"]; | ||
2554 | groups = ["default"]; | ||
2555 | platforms = []; | ||
2556 | source = { | ||
2557 | remotes = ["https://rubygems.org"]; | ||
2558 | sha256 = "0p18f05r0c5s70571gqig3z2ym74wx79s6rd45sprp207bqskzn9"; | ||
2559 | type = "gem"; | ||
2560 | }; | ||
2561 | version = "0.6.0"; | ||
2562 | }; | ||
2563 | thor = { | ||
2564 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
2565 | platforms = []; | ||
2566 | source = { | ||
2567 | remotes = ["https://rubygems.org"]; | ||
2568 | sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29"; | ||
2569 | type = "gem"; | ||
2570 | }; | ||
2571 | version = "0.20.3"; | ||
2572 | }; | ||
2573 | thread_safe = { | ||
2574 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
2575 | platforms = []; | ||
2576 | source = { | ||
2577 | remotes = ["https://rubygems.org"]; | ||
2578 | sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy"; | ||
2579 | type = "gem"; | ||
2580 | }; | ||
2581 | version = "0.3.6"; | ||
2582 | }; | ||
2583 | tilt = { | ||
2584 | groups = ["default"]; | ||
2585 | platforms = []; | ||
2586 | source = { | ||
2587 | remotes = ["https://rubygems.org"]; | ||
2588 | sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz"; | ||
2589 | type = "gem"; | ||
2590 | }; | ||
2591 | version = "2.0.9"; | ||
2592 | }; | ||
2593 | tty-color = { | ||
2594 | groups = ["default"]; | ||
2595 | platforms = []; | ||
2596 | source = { | ||
2597 | remotes = ["https://rubygems.org"]; | ||
2598 | sha256 = "0zz5xa6xbrj69h334d8nx7z732fz80s1a0b02b53mim95p80s7bk"; | ||
2599 | type = "gem"; | ||
2600 | }; | ||
2601 | version = "0.4.3"; | ||
2602 | }; | ||
2603 | tty-command = { | ||
2604 | dependencies = ["pastel"]; | ||
2605 | groups = ["default"]; | ||
2606 | platforms = []; | ||
2607 | source = { | ||
2608 | remotes = ["https://rubygems.org"]; | ||
2609 | sha256 = "1d1fghdvnlc8m5i36h7gswn21232k2f9z5ls73fhs9p5ryfs4vz7"; | ||
2610 | type = "gem"; | ||
2611 | }; | ||
2612 | version = "0.8.2"; | ||
2613 | }; | ||
2614 | tty-cursor = { | ||
2615 | groups = ["default"]; | ||
2616 | platforms = []; | ||
2617 | source = { | ||
2618 | remotes = ["https://rubygems.org"]; | ||
2619 | sha256 = "0prcxdy6qhqba4cv7hsy503b3bjciqk3j3hhzvcbij1kj2gh31c9"; | ||
2620 | type = "gem"; | ||
2621 | }; | ||
2622 | version = "0.7.0"; | ||
2623 | }; | ||
2624 | tty-prompt = { | ||
2625 | dependencies = ["necromancer" "pastel" "tty-reader"]; | ||
2626 | groups = ["default"]; | ||
2627 | platforms = []; | ||
2628 | source = { | ||
2629 | remotes = ["https://rubygems.org"]; | ||
2630 | sha256 = "0mz1v299m6nx6fvlj5jv6h5pvrrwa9pr7c2j5sap3gdab99x6irk"; | ||
2631 | type = "gem"; | ||
2632 | }; | ||
2633 | version = "0.19.0"; | ||
2634 | }; | ||
2635 | tty-reader = { | ||
2636 | dependencies = ["tty-cursor" "tty-screen" "wisper"]; | ||
2637 | groups = ["default"]; | ||
2638 | platforms = []; | ||
2639 | source = { | ||
2640 | remotes = ["https://rubygems.org"]; | ||
2641 | sha256 = "028b7ig858av4xwvvbzd96x52myn1a42b2abczjjwvhz6b1j94bn"; | ||
2642 | type = "gem"; | ||
2643 | }; | ||
2644 | version = "0.6.0"; | ||
2645 | }; | ||
2646 | tty-screen = { | ||
2647 | groups = ["default"]; | ||
2648 | platforms = []; | ||
2649 | source = { | ||
2650 | remotes = ["https://rubygems.org"]; | ||
2651 | sha256 = "1143g05fs28ssgimaph6sdnsndd1wrpax9kjypvd2ripa1adm4kx"; | ||
2652 | type = "gem"; | ||
2653 | }; | ||
2654 | version = "0.7.0"; | ||
2655 | }; | ||
2656 | twitter-text = { | ||
2657 | dependencies = ["unf"]; | ||
2658 | groups = ["default"]; | ||
2659 | platforms = []; | ||
2660 | source = { | ||
2661 | remotes = ["https://rubygems.org"]; | ||
2662 | sha256 = "1732h7hy1k152w8wfvjsx7b79alk45i5imwd37ia4qcx8hfm3gvg"; | ||
2663 | type = "gem"; | ||
2664 | }; | ||
2665 | version = "1.14.7"; | ||
2666 | }; | ||
2667 | tzinfo = { | ||
2668 | dependencies = ["thread_safe"]; | ||
2669 | groups = ["default" "development" "pam_authentication" "production" "test"]; | ||
2670 | platforms = []; | ||
2671 | source = { | ||
2672 | remotes = ["https://rubygems.org"]; | ||
2673 | sha256 = "1fjx9j327xpkkdlxwmkl3a8wqj7i4l4jwlrv3z13mg95z9wl253z"; | ||
2674 | type = "gem"; | ||
2675 | }; | ||
2676 | version = "1.2.5"; | ||
2677 | }; | ||
2678 | tzinfo-data = { | ||
2679 | dependencies = ["tzinfo"]; | ||
2680 | groups = ["default"]; | ||
2681 | platforms = []; | ||
2682 | source = { | ||
2683 | remotes = ["https://rubygems.org"]; | ||
2684 | sha256 = "1105fp27d527k7rrq1yx1ikbzf1sra046ndayxikkjvay9ql61jz"; | ||
2685 | type = "gem"; | ||
2686 | }; | ||
2687 | version = "1.2019.1"; | ||
2688 | }; | ||
2689 | unf = { | ||
2690 | dependencies = ["unf_ext"]; | ||
2691 | groups = ["default"]; | ||
2692 | platforms = []; | ||
2693 | source = { | ||
2694 | remotes = ["https://rubygems.org"]; | ||
2695 | sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; | ||
2696 | type = "gem"; | ||
2697 | }; | ||
2698 | version = "0.1.4"; | ||
2699 | }; | ||
2700 | unf_ext = { | ||
2701 | groups = ["default"]; | ||
2702 | platforms = []; | ||
2703 | source = { | ||
2704 | remotes = ["https://rubygems.org"]; | ||
2705 | sha256 = "06p1i6qhy34bpb8q8ms88y6f2kz86azwm098yvcc0nyqk9y729j1"; | ||
2706 | type = "gem"; | ||
2707 | }; | ||
2708 | version = "0.0.7.5"; | ||
2709 | }; | ||
2710 | unicode-display_width = { | ||
2711 | groups = ["default" "development" "test"]; | ||
2712 | platforms = []; | ||
2713 | source = { | ||
2714 | remotes = ["https://rubygems.org"]; | ||
2715 | sha256 = "08kfiniak1pvg3gn5k6snpigzvhvhyg7slmm0s2qx5zkj62c1z2w"; | ||
2716 | type = "gem"; | ||
2717 | }; | ||
2718 | version = "1.6.0"; | ||
2719 | }; | ||
2720 | uniform_notifier = { | ||
2721 | groups = ["default" "development"]; | ||
2722 | platforms = []; | ||
2723 | source = { | ||
2724 | remotes = ["https://rubygems.org"]; | ||
2725 | sha256 = "0mb0pq99zm17qnz2czmad5b3z0ivzkf6493afj3n550kd56z18s3"; | ||
2726 | type = "gem"; | ||
2727 | }; | ||
2728 | version = "1.12.1"; | ||
2729 | }; | ||
2730 | warden = { | ||
2731 | dependencies = ["rack"]; | ||
2732 | groups = ["default" "pam_authentication"]; | ||
2733 | platforms = []; | ||
2734 | source = { | ||
2735 | remotes = ["https://rubygems.org"]; | ||
2736 | sha256 = "1fr9n9i9r82xb6i61fdw4xgc7zjv7fsdrr4k0njchy87iw9fl454"; | ||
2737 | type = "gem"; | ||
2738 | }; | ||
2739 | version = "1.2.8"; | ||
2740 | }; | ||
2741 | webmock = { | ||
2742 | dependencies = ["addressable" "crack" "hashdiff"]; | ||
2743 | groups = ["test"]; | ||
2744 | platforms = []; | ||
2745 | source = { | ||
2746 | remotes = ["https://rubygems.org"]; | ||
2747 | sha256 = "0anvrh9si2myf1k8p0rxh8pvmv6ldxd5gmk24ss3kvybmjqrcpwv"; | ||
2748 | type = "gem"; | ||
2749 | }; | ||
2750 | version = "3.6.0"; | ||
2751 | }; | ||
2752 | webpacker = { | ||
2753 | dependencies = ["activesupport" "rack-proxy" "railties"]; | ||
2754 | groups = ["default"]; | ||
2755 | platforms = []; | ||
2756 | source = { | ||
2757 | remotes = ["https://rubygems.org"]; | ||
2758 | sha256 = "08jd55y3kihsacgp4l0gvb64m9xixc7dpzjnyr40d6dy98bppz9y"; | ||
2759 | type = "gem"; | ||
2760 | }; | ||
2761 | version = "4.0.7"; | ||
2762 | }; | ||
2763 | webpush = { | ||
2764 | dependencies = ["hkdf" "jwt"]; | ||
2765 | groups = ["default"]; | ||
2766 | platforms = []; | ||
2767 | source = { | ||
2768 | remotes = ["https://rubygems.org"]; | ||
2769 | sha256 = "0gi7aircw2bizk08pihr9srncjy9x9iy0ymp1qgchni639k1k05s"; | ||
2770 | type = "gem"; | ||
2771 | }; | ||
2772 | version = "0.3.8"; | ||
2773 | }; | ||
2774 | websocket-driver = { | ||
2775 | dependencies = ["websocket-extensions"]; | ||
2776 | groups = ["default"]; | ||
2777 | platforms = []; | ||
2778 | source = { | ||
2779 | remotes = ["https://rubygems.org"]; | ||
2780 | sha256 = "1551k3fs3kkb3ghqfj3n5lps0ikb9pyrdnzmvgfdxy8574n4g1dn"; | ||
2781 | type = "gem"; | ||
2782 | }; | ||
2783 | version = "0.7.0"; | ||
2784 | }; | ||
2785 | websocket-extensions = { | ||
2786 | groups = ["default"]; | ||
2787 | platforms = []; | ||
2788 | source = { | ||
2789 | remotes = ["https://rubygems.org"]; | ||
2790 | sha256 = "034sdr7fd34yag5l6y156rkbhiqgmy395m231dwhlpcswhs6d270"; | ||
2791 | type = "gem"; | ||
2792 | }; | ||
2793 | version = "0.1.3"; | ||
2794 | }; | ||
2795 | wisper = { | ||
2796 | groups = ["default"]; | ||
2797 | platforms = []; | ||
2798 | source = { | ||
2799 | remotes = ["https://rubygems.org"]; | ||
2800 | sha256 = "0ar2wn3pxnffyzcmf67y67b8lnhgn9zayqhqp26jwqa3d73j71kd"; | ||
2801 | type = "gem"; | ||
2802 | }; | ||
2803 | version = "2.0.0"; | ||
2804 | }; | ||
2805 | xpath = { | ||
2806 | dependencies = ["nokogiri"]; | ||
2807 | groups = ["default" "test"]; | ||
2808 | platforms = []; | ||
2809 | source = { | ||
2810 | remotes = ["https://rubygems.org"]; | ||
2811 | sha256 = "0bh8lk9hvlpn7vmi6h4hkcwjzvs2y0cmkk3yjjdr8fxvj6fsgzbd"; | ||
2812 | type = "gem"; | ||
2813 | }; | ||
2814 | version = "3.2.0"; | ||
2815 | }; | ||
2816 | } | ||
diff --git a/pkgs/webapps/mastodon/mastodon.json b/pkgs/webapps/mastodon/mastodon.json deleted file mode 100644 index a0a6cfd..0000000 --- a/pkgs/webapps/mastodon/mastodon.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "v2.9.4", | ||
3 | "meta": { | ||
4 | "name": "mastodon", | ||
5 | "url": "https://github.com/tootsuite/mastodon", | ||
6 | "branch": "refs/tags/v2.9.4" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "tootsuite", | ||
10 | "repo": "mastodon", | ||
11 | "rev": "9bace2dd88d127d396794375c8fcb2132619a799", | ||
12 | "sha256": "1x9pai1q73lsq1i685w7z4v3w478iyij65mar13k4hq9zdz9d2b0", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/mastodon/yarn-packages.nix b/pkgs/webapps/mastodon/yarn-packages.nix deleted file mode 100644 index cca2efb..0000000 --- a/pkgs/webapps/mastodon/yarn-packages.nix +++ /dev/null | |||
@@ -1,12344 +0,0 @@ | |||
1 | {fetchurl, linkFarm}: rec { | ||
2 | offline_cache = linkFarm "offline" packages; | ||
3 | packages = [ | ||
4 | |||
5 | { | ||
6 | name = "_babel_code_frame___code_frame_7.0.0.tgz"; | ||
7 | path = fetchurl { | ||
8 | name = "_babel_code_frame___code_frame_7.0.0.tgz"; | ||
9 | url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz"; | ||
10 | sha1 = "06e2ab19bdb535385559aabb5ba59729482800f8"; | ||
11 | }; | ||
12 | } | ||
13 | |||
14 | { | ||
15 | name = "_babel_core___core_7.3.4.tgz"; | ||
16 | path = fetchurl { | ||
17 | name = "_babel_core___core_7.3.4.tgz"; | ||
18 | url = "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz"; | ||
19 | sha1 = "921a5a13746c21e32445bf0798680e9d11a6530b"; | ||
20 | }; | ||
21 | } | ||
22 | |||
23 | { | ||
24 | name = "_babel_core___core_7.4.5.tgz"; | ||
25 | path = fetchurl { | ||
26 | name = "_babel_core___core_7.4.5.tgz"; | ||
27 | url = "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz"; | ||
28 | sha1 = "081f97e8ffca65a9b4b0fdc7e274e703f000c06a"; | ||
29 | }; | ||
30 | } | ||
31 | |||
32 | { | ||
33 | name = "_babel_generator___generator_7.3.4.tgz"; | ||
34 | path = fetchurl { | ||
35 | name = "_babel_generator___generator_7.3.4.tgz"; | ||
36 | url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz"; | ||
37 | sha1 = "9aa48c1989257877a9d971296e5b73bfe72e446e"; | ||
38 | }; | ||
39 | } | ||
40 | |||
41 | { | ||
42 | name = "_babel_generator___generator_7.4.4.tgz"; | ||
43 | path = fetchurl { | ||
44 | name = "_babel_generator___generator_7.4.4.tgz"; | ||
45 | url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz"; | ||
46 | sha1 = "174a215eb843fc392c7edcaabeaa873de6e8f041"; | ||
47 | }; | ||
48 | } | ||
49 | |||
50 | { | ||
51 | name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.0.0.tgz"; | ||
52 | path = fetchurl { | ||
53 | name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.0.0.tgz"; | ||
54 | url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz"; | ||
55 | sha1 = "323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"; | ||
56 | }; | ||
57 | } | ||
58 | |||
59 | { | ||
60 | name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.1.0.tgz"; | ||
61 | path = fetchurl { | ||
62 | name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.1.0.tgz"; | ||
63 | url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz"; | ||
64 | sha1 = "6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f"; | ||
65 | }; | ||
66 | } | ||
67 | |||
68 | { | ||
69 | name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.0.0.tgz"; | ||
70 | path = fetchurl { | ||
71 | name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.0.0.tgz"; | ||
72 | url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0.tgz"; | ||
73 | sha1 = "fa154cb53eb918cf2a9a7ce928e29eb649c5acdb"; | ||
74 | }; | ||
75 | } | ||
76 | |||
77 | { | ||
78 | name = "_babel_helper_call_delegate___helper_call_delegate_7.4.4.tgz"; | ||
79 | path = fetchurl { | ||
80 | name = "_babel_helper_call_delegate___helper_call_delegate_7.4.4.tgz"; | ||
81 | url = "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz"; | ||
82 | sha1 = "87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43"; | ||
83 | }; | ||
84 | } | ||
85 | |||
86 | { | ||
87 | name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.4.4.tgz"; | ||
88 | path = fetchurl { | ||
89 | name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.4.4.tgz"; | ||
90 | url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz"; | ||
91 | sha1 = "fc3d690af6554cc9efc607364a82d48f58736dba"; | ||
92 | }; | ||
93 | } | ||
94 | |||
95 | { | ||
96 | name = "_babel_helper_define_map___helper_define_map_7.4.4.tgz"; | ||
97 | path = fetchurl { | ||
98 | name = "_babel_helper_define_map___helper_define_map_7.4.4.tgz"; | ||
99 | url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz"; | ||
100 | sha1 = "6969d1f570b46bdc900d1eba8e5d59c48ba2c12a"; | ||
101 | }; | ||
102 | } | ||
103 | |||
104 | { | ||
105 | name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.1.0.tgz"; | ||
106 | path = fetchurl { | ||
107 | name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.1.0.tgz"; | ||
108 | url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz"; | ||
109 | sha1 = "537fa13f6f1674df745b0c00ec8fe4e99681c8f6"; | ||
110 | }; | ||
111 | } | ||
112 | |||
113 | { | ||
114 | name = "_babel_helper_function_name___helper_function_name_7.1.0.tgz"; | ||
115 | path = fetchurl { | ||
116 | name = "_babel_helper_function_name___helper_function_name_7.1.0.tgz"; | ||
117 | url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz"; | ||
118 | sha1 = "a0ceb01685f73355d4360c1247f582bfafc8ff53"; | ||
119 | }; | ||
120 | } | ||
121 | |||
122 | { | ||
123 | name = "_babel_helper_get_function_arity___helper_get_function_arity_7.0.0.tgz"; | ||
124 | path = fetchurl { | ||
125 | name = "_babel_helper_get_function_arity___helper_get_function_arity_7.0.0.tgz"; | ||
126 | url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz"; | ||
127 | sha1 = "83572d4320e2a4657263734113c42868b64e49c3"; | ||
128 | }; | ||
129 | } | ||
130 | |||
131 | { | ||
132 | name = "_babel_helper_hoist_variables___helper_hoist_variables_7.4.4.tgz"; | ||
133 | path = fetchurl { | ||
134 | name = "_babel_helper_hoist_variables___helper_hoist_variables_7.4.4.tgz"; | ||
135 | url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz"; | ||
136 | sha1 = "0298b5f25c8c09c53102d52ac4a98f773eb2850a"; | ||
137 | }; | ||
138 | } | ||
139 | |||
140 | { | ||
141 | name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.0.0.tgz"; | ||
142 | path = fetchurl { | ||
143 | name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.0.0.tgz"; | ||
144 | url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz"; | ||
145 | sha1 = "8cd14b0a0df7ff00f009e7d7a436945f47c7a16f"; | ||
146 | }; | ||
147 | } | ||
148 | |||
149 | { | ||
150 | name = "_babel_helper_module_imports___helper_module_imports_7.0.0.tgz"; | ||
151 | path = fetchurl { | ||
152 | name = "_babel_helper_module_imports___helper_module_imports_7.0.0.tgz"; | ||
153 | url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz"; | ||
154 | sha1 = "96081b7111e486da4d2cd971ad1a4fe216cc2e3d"; | ||
155 | }; | ||
156 | } | ||
157 | |||
158 | { | ||
159 | name = "_babel_helper_module_transforms___helper_module_transforms_7.4.4.tgz"; | ||
160 | path = fetchurl { | ||
161 | name = "_babel_helper_module_transforms___helper_module_transforms_7.4.4.tgz"; | ||
162 | url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz"; | ||
163 | sha1 = "96115ea42a2f139e619e98ed46df6019b94414b8"; | ||
164 | }; | ||
165 | } | ||
166 | |||
167 | { | ||
168 | name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.0.0.tgz"; | ||
169 | path = fetchurl { | ||
170 | name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.0.0.tgz"; | ||
171 | url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz"; | ||
172 | sha1 = "a2920c5702b073c15de51106200aa8cad20497d5"; | ||
173 | }; | ||
174 | } | ||
175 | |||
176 | { | ||
177 | name = "_babel_helper_plugin_utils___helper_plugin_utils_7.0.0.tgz"; | ||
178 | path = fetchurl { | ||
179 | name = "_babel_helper_plugin_utils___helper_plugin_utils_7.0.0.tgz"; | ||
180 | url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz"; | ||
181 | sha1 = "bbb3fbee98661c569034237cc03967ba99b4f250"; | ||
182 | }; | ||
183 | } | ||
184 | |||
185 | { | ||
186 | name = "_babel_helper_regex___helper_regex_7.4.4.tgz"; | ||
187 | path = fetchurl { | ||
188 | name = "_babel_helper_regex___helper_regex_7.4.4.tgz"; | ||
189 | url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz"; | ||
190 | sha1 = "a47e02bc91fb259d2e6727c2a30013e3ac13c4a2"; | ||
191 | }; | ||
192 | } | ||
193 | |||
194 | { | ||
195 | name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.1.0.tgz"; | ||
196 | path = fetchurl { | ||
197 | name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.1.0.tgz"; | ||
198 | url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz"; | ||
199 | sha1 = "361d80821b6f38da75bd3f0785ece20a88c5fe7f"; | ||
200 | }; | ||
201 | } | ||
202 | |||
203 | { | ||
204 | name = "_babel_helper_replace_supers___helper_replace_supers_7.4.4.tgz"; | ||
205 | path = fetchurl { | ||
206 | name = "_babel_helper_replace_supers___helper_replace_supers_7.4.4.tgz"; | ||
207 | url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz"; | ||
208 | sha1 = "aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27"; | ||
209 | }; | ||
210 | } | ||
211 | |||
212 | { | ||
213 | name = "_babel_helper_simple_access___helper_simple_access_7.1.0.tgz"; | ||
214 | path = fetchurl { | ||
215 | name = "_babel_helper_simple_access___helper_simple_access_7.1.0.tgz"; | ||
216 | url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz"; | ||
217 | sha1 = "65eeb954c8c245beaa4e859da6188f39d71e585c"; | ||
218 | }; | ||
219 | } | ||
220 | |||
221 | { | ||
222 | name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.4.4.tgz"; | ||
223 | path = fetchurl { | ||
224 | name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.4.4.tgz"; | ||
225 | url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz"; | ||
226 | sha1 = "ff94894a340be78f53f06af038b205c49d993677"; | ||
227 | }; | ||
228 | } | ||
229 | |||
230 | { | ||
231 | name = "_babel_helper_wrap_function___helper_wrap_function_7.2.0.tgz"; | ||
232 | path = fetchurl { | ||
233 | name = "_babel_helper_wrap_function___helper_wrap_function_7.2.0.tgz"; | ||
234 | url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz"; | ||
235 | sha1 = "c4e0012445769e2815b55296ead43a958549f6fa"; | ||
236 | }; | ||
237 | } | ||
238 | |||
239 | { | ||
240 | name = "_babel_helpers___helpers_7.2.0.tgz"; | ||
241 | path = fetchurl { | ||
242 | name = "_babel_helpers___helpers_7.2.0.tgz"; | ||
243 | url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.2.0.tgz"; | ||
244 | sha1 = "8335f3140f3144270dc63c4732a4f8b0a50b7a21"; | ||
245 | }; | ||
246 | } | ||
247 | |||
248 | { | ||
249 | name = "_babel_helpers___helpers_7.4.4.tgz"; | ||
250 | path = fetchurl { | ||
251 | name = "_babel_helpers___helpers_7.4.4.tgz"; | ||
252 | url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz"; | ||
253 | sha1 = "868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5"; | ||
254 | }; | ||
255 | } | ||
256 | |||
257 | { | ||
258 | name = "_babel_highlight___highlight_7.0.0.tgz"; | ||
259 | path = fetchurl { | ||
260 | name = "_babel_highlight___highlight_7.0.0.tgz"; | ||
261 | url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz"; | ||
262 | sha1 = "f710c38c8d458e6dd9a201afb637fcb781ce99e4"; | ||
263 | }; | ||
264 | } | ||
265 | |||
266 | { | ||
267 | name = "_babel_parser___parser_7.2.3.tgz"; | ||
268 | path = fetchurl { | ||
269 | name = "_babel_parser___parser_7.2.3.tgz"; | ||
270 | url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.3.tgz"; | ||
271 | sha1 = "32f5df65744b70888d17872ec106b02434ba1489"; | ||
272 | }; | ||
273 | } | ||
274 | |||
275 | { | ||
276 | name = "_babel_parser___parser_7.3.4.tgz"; | ||
277 | path = fetchurl { | ||
278 | name = "_babel_parser___parser_7.3.4.tgz"; | ||
279 | url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz"; | ||
280 | sha1 = "a43357e4bbf4b92a437fb9e465c192848287f27c"; | ||
281 | }; | ||
282 | } | ||
283 | |||
284 | { | ||
285 | name = "_babel_parser___parser_7.4.5.tgz"; | ||
286 | path = fetchurl { | ||
287 | name = "_babel_parser___parser_7.4.5.tgz"; | ||
288 | url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz"; | ||
289 | sha1 = "04af8d5d5a2b044a2a1bffacc1e5e6673544e872"; | ||
290 | }; | ||
291 | } | ||
292 | |||
293 | { | ||
294 | name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.2.0.tgz"; | ||
295 | path = fetchurl { | ||
296 | name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.2.0.tgz"; | ||
297 | url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz"; | ||
298 | sha1 = "b289b306669dce4ad20b0252889a15768c9d417e"; | ||
299 | }; | ||
300 | } | ||
301 | |||
302 | { | ||
303 | name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.4.4.tgz"; | ||
304 | path = fetchurl { | ||
305 | name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.4.4.tgz"; | ||
306 | url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz"; | ||
307 | sha1 = "93a6486eed86d53452ab9bab35e368e9461198ce"; | ||
308 | }; | ||
309 | } | ||
310 | |||
311 | { | ||
312 | name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.4.4.tgz"; | ||
313 | path = fetchurl { | ||
314 | name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.4.4.tgz"; | ||
315 | url = "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz"; | ||
316 | sha1 = "de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0"; | ||
317 | }; | ||
318 | } | ||
319 | |||
320 | { | ||
321 | name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.2.0.tgz"; | ||
322 | path = fetchurl { | ||
323 | name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.2.0.tgz"; | ||
324 | url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz"; | ||
325 | sha1 = "568ecc446c6148ae6b267f02551130891e29f317"; | ||
326 | }; | ||
327 | } | ||
328 | |||
329 | { | ||
330 | name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.4.4.tgz"; | ||
331 | path = fetchurl { | ||
332 | name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.4.4.tgz"; | ||
333 | url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz"; | ||
334 | sha1 = "1ef173fcf24b3e2df92a678f027673b55e7e3005"; | ||
335 | }; | ||
336 | } | ||
337 | |||
338 | { | ||
339 | name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.2.0.tgz"; | ||
340 | path = fetchurl { | ||
341 | name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.2.0.tgz"; | ||
342 | url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz"; | ||
343 | sha1 = "135d81edb68a081e55e56ec48541ece8065c38f5"; | ||
344 | }; | ||
345 | } | ||
346 | |||
347 | { | ||
348 | name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.4.4.tgz"; | ||
349 | path = fetchurl { | ||
350 | name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.4.4.tgz"; | ||
351 | url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz"; | ||
352 | sha1 = "501ffd9826c0b91da22690720722ac7cb1ca9c78"; | ||
353 | }; | ||
354 | } | ||
355 | |||
356 | { | ||
357 | name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.2.0.tgz"; | ||
358 | path = fetchurl { | ||
359 | name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.2.0.tgz"; | ||
360 | url = "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz"; | ||
361 | sha1 = "69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f"; | ||
362 | }; | ||
363 | } | ||
364 | |||
365 | { | ||
366 | name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.2.0.tgz"; | ||
367 | path = fetchurl { | ||
368 | name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.2.0.tgz"; | ||
369 | url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz"; | ||
370 | sha1 = "c50b1b957dcc69e4b1127b65e1c33eef61570c1b"; | ||
371 | }; | ||
372 | } | ||
373 | |||
374 | { | ||
375 | name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.2.0.tgz"; | ||
376 | path = fetchurl { | ||
377 | name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.2.0.tgz"; | ||
378 | url = "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz"; | ||
379 | sha1 = "69c159ffaf4998122161ad8ebc5e6d1f55df8612"; | ||
380 | }; | ||
381 | } | ||
382 | |||
383 | { | ||
384 | name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.2.0.tgz"; | ||
385 | path = fetchurl { | ||
386 | name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.2.0.tgz"; | ||
387 | url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz"; | ||
388 | sha1 = "72bd13f6ffe1d25938129d2a186b11fd62951470"; | ||
389 | }; | ||
390 | } | ||
391 | |||
392 | { | ||
393 | name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.2.0.tgz"; | ||
394 | path = fetchurl { | ||
395 | name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.2.0.tgz"; | ||
396 | url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz"; | ||
397 | sha1 = "0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7"; | ||
398 | }; | ||
399 | } | ||
400 | |||
401 | { | ||
402 | name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.2.0.tgz"; | ||
403 | path = fetchurl { | ||
404 | name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.2.0.tgz"; | ||
405 | url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz"; | ||
406 | sha1 = "3b7a3e733510c57e820b9142a6579ac8b0dfad2e"; | ||
407 | }; | ||
408 | } | ||
409 | |||
410 | { | ||
411 | name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.2.0.tgz"; | ||
412 | path = fetchurl { | ||
413 | name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.2.0.tgz"; | ||
414 | url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz"; | ||
415 | sha1 = "a94013d6eda8908dfe6a477e7f9eda85656ecf5c"; | ||
416 | }; | ||
417 | } | ||
418 | |||
419 | { | ||
420 | name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.2.0.tgz"; | ||
421 | path = fetchurl { | ||
422 | name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.2.0.tgz"; | ||
423 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz"; | ||
424 | sha1 = "9aeafbe4d6ffc6563bf8f8372091628f00779550"; | ||
425 | }; | ||
426 | } | ||
427 | |||
428 | { | ||
429 | name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.4.4.tgz"; | ||
430 | path = fetchurl { | ||
431 | name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.4.4.tgz"; | ||
432 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz"; | ||
433 | sha1 = "a3f1d01f2f21cadab20b33a82133116f14fb5894"; | ||
434 | }; | ||
435 | } | ||
436 | |||
437 | { | ||
438 | name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.2.0.tgz"; | ||
439 | path = fetchurl { | ||
440 | name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.2.0.tgz"; | ||
441 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz"; | ||
442 | sha1 = "5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190"; | ||
443 | }; | ||
444 | } | ||
445 | |||
446 | { | ||
447 | name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.4.4.tgz"; | ||
448 | path = fetchurl { | ||
449 | name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.4.4.tgz"; | ||
450 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz"; | ||
451 | sha1 = "c13279fabf6b916661531841a23c4b7dae29646d"; | ||
452 | }; | ||
453 | } | ||
454 | |||
455 | { | ||
456 | name = "_babel_plugin_transform_classes___plugin_transform_classes_7.4.4.tgz"; | ||
457 | path = fetchurl { | ||
458 | name = "_babel_plugin_transform_classes___plugin_transform_classes_7.4.4.tgz"; | ||
459 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz"; | ||
460 | sha1 = "0ce4094cdafd709721076d3b9c38ad31ca715eb6"; | ||
461 | }; | ||
462 | } | ||
463 | |||
464 | { | ||
465 | name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.2.0.tgz"; | ||
466 | path = fetchurl { | ||
467 | name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.2.0.tgz"; | ||
468 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz"; | ||
469 | sha1 = "83a7df6a658865b1c8f641d510c6f3af220216da"; | ||
470 | }; | ||
471 | } | ||
472 | |||
473 | { | ||
474 | name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.4.4.tgz"; | ||
475 | path = fetchurl { | ||
476 | name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.4.4.tgz"; | ||
477 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz"; | ||
478 | sha1 = "9d964717829cc9e4b601fc82a26a71a4d8faf20f"; | ||
479 | }; | ||
480 | } | ||
481 | |||
482 | { | ||
483 | name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.4.4.tgz"; | ||
484 | path = fetchurl { | ||
485 | name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.4.4.tgz"; | ||
486 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz"; | ||
487 | sha1 = "361a148bc951444312c69446d76ed1ea8e4450c3"; | ||
488 | }; | ||
489 | } | ||
490 | |||
491 | { | ||
492 | name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.2.0.tgz"; | ||
493 | path = fetchurl { | ||
494 | name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.2.0.tgz"; | ||
495 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz"; | ||
496 | sha1 = "d952c4930f312a4dbfff18f0b2914e60c35530b3"; | ||
497 | }; | ||
498 | } | ||
499 | |||
500 | { | ||
501 | name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.2.0.tgz"; | ||
502 | path = fetchurl { | ||
503 | name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.2.0.tgz"; | ||
504 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz"; | ||
505 | sha1 = "a63868289e5b4007f7054d46491af51435766008"; | ||
506 | }; | ||
507 | } | ||
508 | |||
509 | { | ||
510 | name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.4.4.tgz"; | ||
511 | path = fetchurl { | ||
512 | name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.4.4.tgz"; | ||
513 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz"; | ||
514 | sha1 = "0267fc735e24c808ba173866c6c4d1440fc3c556"; | ||
515 | }; | ||
516 | } | ||
517 | |||
518 | { | ||
519 | name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.4.4.tgz"; | ||
520 | path = fetchurl { | ||
521 | name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.4.4.tgz"; | ||
522 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz"; | ||
523 | sha1 = "e1436116abb0610c2259094848754ac5230922ad"; | ||
524 | }; | ||
525 | } | ||
526 | |||
527 | { | ||
528 | name = "_babel_plugin_transform_literals___plugin_transform_literals_7.2.0.tgz"; | ||
529 | path = fetchurl { | ||
530 | name = "_babel_plugin_transform_literals___plugin_transform_literals_7.2.0.tgz"; | ||
531 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz"; | ||
532 | sha1 = "690353e81f9267dad4fd8cfd77eafa86aba53ea1"; | ||
533 | }; | ||
534 | } | ||
535 | |||
536 | { | ||
537 | name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.2.0.tgz"; | ||
538 | path = fetchurl { | ||
539 | name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.2.0.tgz"; | ||
540 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz"; | ||
541 | sha1 = "fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d"; | ||
542 | }; | ||
543 | } | ||
544 | |||
545 | { | ||
546 | name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.2.0.tgz"; | ||
547 | path = fetchurl { | ||
548 | name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.2.0.tgz"; | ||
549 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz"; | ||
550 | sha1 = "82a9bce45b95441f617a24011dc89d12da7f4ee6"; | ||
551 | }; | ||
552 | } | ||
553 | |||
554 | { | ||
555 | name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.4.4.tgz"; | ||
556 | path = fetchurl { | ||
557 | name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.4.4.tgz"; | ||
558 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz"; | ||
559 | sha1 = "0bef4713d30f1d78c2e59b3d6db40e60192cac1e"; | ||
560 | }; | ||
561 | } | ||
562 | |||
563 | { | ||
564 | name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.4.4.tgz"; | ||
565 | path = fetchurl { | ||
566 | name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.4.4.tgz"; | ||
567 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz"; | ||
568 | sha1 = "dc83c5665b07d6c2a7b224c00ac63659ea36a405"; | ||
569 | }; | ||
570 | } | ||
571 | |||
572 | { | ||
573 | name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.2.0.tgz"; | ||
574 | path = fetchurl { | ||
575 | name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.2.0.tgz"; | ||
576 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz"; | ||
577 | sha1 = "7678ce75169f0877b8eb2235538c074268dd01ae"; | ||
578 | }; | ||
579 | } | ||
580 | |||
581 | { | ||
582 | name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.4.5.tgz"; | ||
583 | path = fetchurl { | ||
584 | name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.4.5.tgz"; | ||
585 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz"; | ||
586 | sha1 = "9d269fd28a370258199b4294736813a60bbdd106"; | ||
587 | }; | ||
588 | } | ||
589 | |||
590 | { | ||
591 | name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.4.4.tgz"; | ||
592 | path = fetchurl { | ||
593 | name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.4.4.tgz"; | ||
594 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz"; | ||
595 | sha1 = "18d120438b0cc9ee95a47f2c72bc9768fbed60a5"; | ||
596 | }; | ||
597 | } | ||
598 | |||
599 | { | ||
600 | name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.2.0.tgz"; | ||
601 | path = fetchurl { | ||
602 | name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.2.0.tgz"; | ||
603 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz"; | ||
604 | sha1 = "b35d4c10f56bab5d650047dad0f1d8e8814b6598"; | ||
605 | }; | ||
606 | } | ||
607 | |||
608 | { | ||
609 | name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.4.4.tgz"; | ||
610 | path = fetchurl { | ||
611 | name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.4.4.tgz"; | ||
612 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz"; | ||
613 | sha1 = "7556cf03f318bd2719fe4c922d2d808be5571e16"; | ||
614 | }; | ||
615 | } | ||
616 | |||
617 | { | ||
618 | name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.2.0.tgz"; | ||
619 | path = fetchurl { | ||
620 | name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.2.0.tgz"; | ||
621 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz"; | ||
622 | sha1 = "03e33f653f5b25c4eb572c98b9485055b389e905"; | ||
623 | }; | ||
624 | } | ||
625 | |||
626 | { | ||
627 | name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.2.0.tgz"; | ||
628 | path = fetchurl { | ||
629 | name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.2.0.tgz"; | ||
630 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz"; | ||
631 | sha1 = "ebfaed87834ce8dc4279609a4f0c324c156e3eb0"; | ||
632 | }; | ||
633 | } | ||
634 | |||
635 | { | ||
636 | name = "_babel_plugin_transform_react_inline_elements___plugin_transform_react_inline_elements_7.2.0.tgz"; | ||
637 | path = fetchurl { | ||
638 | name = "_babel_plugin_transform_react_inline_elements___plugin_transform_react_inline_elements_7.2.0.tgz"; | ||
639 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-inline-elements/-/plugin-transform-react-inline-elements-7.2.0.tgz"; | ||
640 | sha1 = "3e36e7c47f1c21f52b2b0090d5cd83ceb19a4770"; | ||
641 | }; | ||
642 | } | ||
643 | |||
644 | { | ||
645 | name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.2.0.tgz"; | ||
646 | path = fetchurl { | ||
647 | name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.2.0.tgz"; | ||
648 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz"; | ||
649 | sha1 = "461e21ad9478f1031dd5e276108d027f1b5240ba"; | ||
650 | }; | ||
651 | } | ||
652 | |||
653 | { | ||
654 | name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.2.0.tgz"; | ||
655 | path = fetchurl { | ||
656 | name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.2.0.tgz"; | ||
657 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz"; | ||
658 | sha1 = "20c8c60f0140f5dd3cd63418d452801cf3f7180f"; | ||
659 | }; | ||
660 | } | ||
661 | |||
662 | { | ||
663 | name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.2.0.tgz"; | ||
664 | path = fetchurl { | ||
665 | name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.2.0.tgz"; | ||
666 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.2.0.tgz"; | ||
667 | sha1 = "ca36b6561c4d3b45524f8efb6f0fbc9a0d1d622f"; | ||
668 | }; | ||
669 | } | ||
670 | |||
671 | { | ||
672 | name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.4.5.tgz"; | ||
673 | path = fetchurl { | ||
674 | name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.4.5.tgz"; | ||
675 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz"; | ||
676 | sha1 = "629dc82512c55cee01341fb27bdfcb210354680f"; | ||
677 | }; | ||
678 | } | ||
679 | |||
680 | { | ||
681 | name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.2.0.tgz"; | ||
682 | path = fetchurl { | ||
683 | name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.2.0.tgz"; | ||
684 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz"; | ||
685 | sha1 = "4792af87c998a49367597d07fedf02636d2e1634"; | ||
686 | }; | ||
687 | } | ||
688 | |||
689 | { | ||
690 | name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.4.4.tgz"; | ||
691 | path = fetchurl { | ||
692 | name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.4.4.tgz"; | ||
693 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.4.tgz"; | ||
694 | sha1 = "a50f5d16e9c3a4ac18a1a9f9803c107c380bce08"; | ||
695 | }; | ||
696 | } | ||
697 | |||
698 | { | ||
699 | name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.2.0.tgz"; | ||
700 | path = fetchurl { | ||
701 | name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.2.0.tgz"; | ||
702 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz"; | ||
703 | sha1 = "6333aee2f8d6ee7e28615457298934a3b46198f0"; | ||
704 | }; | ||
705 | } | ||
706 | |||
707 | { | ||
708 | name = "_babel_plugin_transform_spread___plugin_transform_spread_7.2.2.tgz"; | ||
709 | path = fetchurl { | ||
710 | name = "_babel_plugin_transform_spread___plugin_transform_spread_7.2.2.tgz"; | ||
711 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz"; | ||
712 | sha1 = "3103a9abe22f742b6d406ecd3cd49b774919b406"; | ||
713 | }; | ||
714 | } | ||
715 | |||
716 | { | ||
717 | name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.2.0.tgz"; | ||
718 | path = fetchurl { | ||
719 | name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.2.0.tgz"; | ||
720 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz"; | ||
721 | sha1 = "a1e454b5995560a9c1e0d537dfc15061fd2687e1"; | ||
722 | }; | ||
723 | } | ||
724 | |||
725 | { | ||
726 | name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.4.4.tgz"; | ||
727 | path = fetchurl { | ||
728 | name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.4.4.tgz"; | ||
729 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz"; | ||
730 | sha1 = "9d28fea7bbce637fb7612a0750989d8321d4bcb0"; | ||
731 | }; | ||
732 | } | ||
733 | |||
734 | { | ||
735 | name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.2.0.tgz"; | ||
736 | path = fetchurl { | ||
737 | name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.2.0.tgz"; | ||
738 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz"; | ||
739 | sha1 = "117d2bcec2fbf64b4b59d1f9819894682d29f2b2"; | ||
740 | }; | ||
741 | } | ||
742 | |||
743 | { | ||
744 | name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.4.4.tgz"; | ||
745 | path = fetchurl { | ||
746 | name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.4.4.tgz"; | ||
747 | url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz"; | ||
748 | sha1 = "ab4634bb4f14d36728bf5978322b35587787970f"; | ||
749 | }; | ||
750 | } | ||
751 | |||
752 | { | ||
753 | name = "_babel_preset_env___preset_env_7.4.5.tgz"; | ||
754 | path = fetchurl { | ||
755 | name = "_babel_preset_env___preset_env_7.4.5.tgz"; | ||
756 | url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.5.tgz"; | ||
757 | sha1 = "2fad7f62983d5af563b5f3139242755884998a58"; | ||
758 | }; | ||
759 | } | ||
760 | |||
761 | { | ||
762 | name = "_babel_preset_react___preset_react_7.0.0.tgz"; | ||
763 | path = fetchurl { | ||
764 | name = "_babel_preset_react___preset_react_7.0.0.tgz"; | ||
765 | url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz"; | ||
766 | sha1 = "e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"; | ||
767 | }; | ||
768 | } | ||
769 | |||
770 | { | ||
771 | name = "_babel_runtime___runtime_7.0.0.tgz"; | ||
772 | path = fetchurl { | ||
773 | name = "_babel_runtime___runtime_7.0.0.tgz"; | ||
774 | url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.0.0.tgz"; | ||
775 | sha1 = "adeb78fedfc855aa05bc041640f3f6f98e85424c"; | ||
776 | }; | ||
777 | } | ||
778 | |||
779 | { | ||
780 | name = "_babel_runtime___runtime_7.2.0.tgz"; | ||
781 | path = fetchurl { | ||
782 | name = "_babel_runtime___runtime_7.2.0.tgz"; | ||
783 | url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.2.0.tgz"; | ||
784 | sha1 = "b03e42eeddf5898e00646e4c840fa07ba8dcad7f"; | ||
785 | }; | ||
786 | } | ||
787 | |||
788 | { | ||
789 | name = "_babel_runtime___runtime_7.4.5.tgz"; | ||
790 | path = fetchurl { | ||
791 | name = "_babel_runtime___runtime_7.4.5.tgz"; | ||
792 | url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.5.tgz"; | ||
793 | sha1 = "582bb531f5f9dc67d2fcb682979894f75e253f12"; | ||
794 | }; | ||
795 | } | ||
796 | |||
797 | { | ||
798 | name = "_babel_template___template_7.2.2.tgz"; | ||
799 | path = fetchurl { | ||
800 | name = "_babel_template___template_7.2.2.tgz"; | ||
801 | url = "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz"; | ||
802 | sha1 = "005b3fdf0ed96e88041330379e0da9a708eb2907"; | ||
803 | }; | ||
804 | } | ||
805 | |||
806 | { | ||
807 | name = "_babel_template___template_7.4.4.tgz"; | ||
808 | path = fetchurl { | ||
809 | name = "_babel_template___template_7.4.4.tgz"; | ||
810 | url = "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz"; | ||
811 | sha1 = "f4b88d1225689a08f5bc3a17483545be9e4ed237"; | ||
812 | }; | ||
813 | } | ||
814 | |||
815 | { | ||
816 | name = "_babel_traverse___traverse_7.2.3.tgz"; | ||
817 | path = fetchurl { | ||
818 | name = "_babel_traverse___traverse_7.2.3.tgz"; | ||
819 | url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz"; | ||
820 | sha1 = "7ff50cefa9c7c0bd2d81231fdac122f3957748d8"; | ||
821 | }; | ||
822 | } | ||
823 | |||
824 | { | ||
825 | name = "_babel_traverse___traverse_7.4.5.tgz"; | ||
826 | path = fetchurl { | ||
827 | name = "_babel_traverse___traverse_7.4.5.tgz"; | ||
828 | url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz"; | ||
829 | sha1 = "4e92d1728fd2f1897dafdd321efbff92156c3216"; | ||
830 | }; | ||
831 | } | ||
832 | |||
833 | { | ||
834 | name = "_babel_traverse___traverse_7.3.4.tgz"; | ||
835 | path = fetchurl { | ||
836 | name = "_babel_traverse___traverse_7.3.4.tgz"; | ||
837 | url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz"; | ||
838 | sha1 = "1330aab72234f8dea091b08c4f8b9d05c7119e06"; | ||
839 | }; | ||
840 | } | ||
841 | |||
842 | { | ||
843 | name = "_babel_types___types_7.4.4.tgz"; | ||
844 | path = fetchurl { | ||
845 | name = "_babel_types___types_7.4.4.tgz"; | ||
846 | url = "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz"; | ||
847 | sha1 = "8db9e9a629bb7c29370009b4b779ed93fe57d5f0"; | ||
848 | }; | ||
849 | } | ||
850 | |||
851 | { | ||
852 | name = "_babel_types___types_7.2.2.tgz"; | ||
853 | path = fetchurl { | ||
854 | name = "_babel_types___types_7.2.2.tgz"; | ||
855 | url = "https://registry.yarnpkg.com/@babel/types/-/types-7.2.2.tgz"; | ||
856 | sha1 = "44e10fc24e33af524488b716cdaee5360ea8ed1e"; | ||
857 | }; | ||
858 | } | ||
859 | |||
860 | { | ||
861 | name = "_babel_types___types_7.3.4.tgz"; | ||
862 | path = fetchurl { | ||
863 | name = "_babel_types___types_7.3.4.tgz"; | ||
864 | url = "https://registry.yarnpkg.com/@babel/types/-/types-7.3.4.tgz"; | ||
865 | sha1 = "bf482eaeaffb367a28abbf9357a94963235d90ed"; | ||
866 | }; | ||
867 | } | ||
868 | |||
869 | { | ||
870 | name = "_clusterws_cws___cws_0.14.0.tgz"; | ||
871 | path = fetchurl { | ||
872 | name = "_clusterws_cws___cws_0.14.0.tgz"; | ||
873 | url = "https://registry.yarnpkg.com/@clusterws/cws/-/cws-0.14.0.tgz"; | ||
874 | sha1 = "242824b6884454001340222a836db6f6c5e62bfb"; | ||
875 | }; | ||
876 | } | ||
877 | |||
878 | { | ||
879 | name = "_cnakazawa_watch___watch_1.0.3.tgz"; | ||
880 | path = fetchurl { | ||
881 | name = "_cnakazawa_watch___watch_1.0.3.tgz"; | ||
882 | url = "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz"; | ||
883 | sha1 = "099139eaec7ebf07a27c1786a3ff64f39464d2ef"; | ||
884 | }; | ||
885 | } | ||
886 | |||
887 | { | ||
888 | name = "_emotion_babel_utils___babel_utils_0.6.10.tgz"; | ||
889 | path = fetchurl { | ||
890 | name = "_emotion_babel_utils___babel_utils_0.6.10.tgz"; | ||
891 | url = "https://registry.yarnpkg.com/@emotion/babel-utils/-/babel-utils-0.6.10.tgz"; | ||
892 | sha1 = "83dbf3dfa933fae9fc566e54fbb45f14674c6ccc"; | ||
893 | }; | ||
894 | } | ||
895 | |||
896 | { | ||
897 | name = "_emotion_hash___hash_0.6.6.tgz"; | ||
898 | path = fetchurl { | ||
899 | name = "_emotion_hash___hash_0.6.6.tgz"; | ||
900 | url = "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.6.6.tgz"; | ||
901 | sha1 = "62266c5f0eac6941fece302abad69f2ee7e25e44"; | ||
902 | }; | ||
903 | } | ||
904 | |||
905 | { | ||
906 | name = "_emotion_memoize___memoize_0.6.6.tgz"; | ||
907 | path = fetchurl { | ||
908 | name = "_emotion_memoize___memoize_0.6.6.tgz"; | ||
909 | url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz"; | ||
910 | sha1 = "004b98298d04c7ca3b4f50ca2035d4f60d2eed1b"; | ||
911 | }; | ||
912 | } | ||
913 | |||
914 | { | ||
915 | name = "_emotion_serialize___serialize_0.9.1.tgz"; | ||
916 | path = fetchurl { | ||
917 | name = "_emotion_serialize___serialize_0.9.1.tgz"; | ||
918 | url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.9.1.tgz"; | ||
919 | sha1 = "a494982a6920730dba6303eb018220a2b629c145"; | ||
920 | }; | ||
921 | } | ||
922 | |||
923 | { | ||
924 | name = "_emotion_stylis___stylis_0.7.1.tgz"; | ||
925 | path = fetchurl { | ||
926 | name = "_emotion_stylis___stylis_0.7.1.tgz"; | ||
927 | url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.7.1.tgz"; | ||
928 | sha1 = "50f63225e712d99e2b2b39c19c70fff023793ca5"; | ||
929 | }; | ||
930 | } | ||
931 | |||
932 | { | ||
933 | name = "_emotion_unitless___unitless_0.6.7.tgz"; | ||
934 | path = fetchurl { | ||
935 | name = "_emotion_unitless___unitless_0.6.7.tgz"; | ||
936 | url = "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.6.7.tgz"; | ||
937 | sha1 = "53e9f1892f725b194d5e6a1684a7b394df592397"; | ||
938 | }; | ||
939 | } | ||
940 | |||
941 | { | ||
942 | name = "_emotion_utils___utils_0.8.2.tgz"; | ||
943 | path = fetchurl { | ||
944 | name = "_emotion_utils___utils_0.8.2.tgz"; | ||
945 | url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz"; | ||
946 | sha1 = "576ff7fb1230185b619a75d258cbc98f0867a8dc"; | ||
947 | }; | ||
948 | } | ||
949 | |||
950 | { | ||
951 | name = "_jest_console___console_24.7.1.tgz"; | ||
952 | path = fetchurl { | ||
953 | name = "_jest_console___console_24.7.1.tgz"; | ||
954 | url = "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz"; | ||
955 | sha1 = "32a9e42535a97aedfe037e725bd67e954b459545"; | ||
956 | }; | ||
957 | } | ||
958 | |||
959 | { | ||
960 | name = "_jest_core___core_24.8.0.tgz"; | ||
961 | path = fetchurl { | ||
962 | name = "_jest_core___core_24.8.0.tgz"; | ||
963 | url = "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz"; | ||
964 | sha1 = "fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b"; | ||
965 | }; | ||
966 | } | ||
967 | |||
968 | { | ||
969 | name = "_jest_environment___environment_24.8.0.tgz"; | ||
970 | path = fetchurl { | ||
971 | name = "_jest_environment___environment_24.8.0.tgz"; | ||
972 | url = "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz"; | ||
973 | sha1 = "0342261383c776bdd652168f68065ef144af0eac"; | ||
974 | }; | ||
975 | } | ||
976 | |||
977 | { | ||
978 | name = "_jest_fake_timers___fake_timers_24.8.0.tgz"; | ||
979 | path = fetchurl { | ||
980 | name = "_jest_fake_timers___fake_timers_24.8.0.tgz"; | ||
981 | url = "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz"; | ||
982 | sha1 = "2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1"; | ||
983 | }; | ||
984 | } | ||
985 | |||
986 | { | ||
987 | name = "_jest_reporters___reporters_24.8.0.tgz"; | ||
988 | path = fetchurl { | ||
989 | name = "_jest_reporters___reporters_24.8.0.tgz"; | ||
990 | url = "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz"; | ||
991 | sha1 = "075169cd029bddec54b8f2c0fc489fd0b9e05729"; | ||
992 | }; | ||
993 | } | ||
994 | |||
995 | { | ||
996 | name = "_jest_source_map___source_map_24.3.0.tgz"; | ||
997 | path = fetchurl { | ||
998 | name = "_jest_source_map___source_map_24.3.0.tgz"; | ||
999 | url = "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz"; | ||
1000 | sha1 = "563be3aa4d224caf65ff77edc95cd1ca4da67f28"; | ||
1001 | }; | ||
1002 | } | ||
1003 | |||
1004 | { | ||
1005 | name = "_jest_test_result___test_result_24.8.0.tgz"; | ||
1006 | path = fetchurl { | ||
1007 | name = "_jest_test_result___test_result_24.8.0.tgz"; | ||
1008 | url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz"; | ||
1009 | sha1 = "7675d0aaf9d2484caa65e048d9b467d160f8e9d3"; | ||
1010 | }; | ||
1011 | } | ||
1012 | |||
1013 | { | ||
1014 | name = "_jest_test_sequencer___test_sequencer_24.8.0.tgz"; | ||
1015 | path = fetchurl { | ||
1016 | name = "_jest_test_sequencer___test_sequencer_24.8.0.tgz"; | ||
1017 | url = "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz"; | ||
1018 | sha1 = "2f993bcf6ef5eb4e65e8233a95a3320248cf994b"; | ||
1019 | }; | ||
1020 | } | ||
1021 | |||
1022 | { | ||
1023 | name = "_jest_transform___transform_24.8.0.tgz"; | ||
1024 | path = fetchurl { | ||
1025 | name = "_jest_transform___transform_24.8.0.tgz"; | ||
1026 | url = "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz"; | ||
1027 | sha1 = "628fb99dce4f9d254c6fd9341e3eea262e06fef5"; | ||
1028 | }; | ||
1029 | } | ||
1030 | |||
1031 | { | ||
1032 | name = "_jest_types___types_24.8.0.tgz"; | ||
1033 | path = fetchurl { | ||
1034 | name = "_jest_types___types_24.8.0.tgz"; | ||
1035 | url = "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz"; | ||
1036 | sha1 = "f31e25948c58f0abd8c845ae26fcea1491dea7ad"; | ||
1037 | }; | ||
1038 | } | ||
1039 | |||
1040 | { | ||
1041 | name = "_types_babel__core___babel__core_7.1.0.tgz"; | ||
1042 | path = fetchurl { | ||
1043 | name = "_types_babel__core___babel__core_7.1.0.tgz"; | ||
1044 | url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.0.tgz"; | ||
1045 | sha1 = "710f2487dda4dcfd010ca6abb2b4dc7394365c51"; | ||
1046 | }; | ||
1047 | } | ||
1048 | |||
1049 | { | ||
1050 | name = "_types_babel__generator___babel__generator_7.0.2.tgz"; | ||
1051 | path = fetchurl { | ||
1052 | name = "_types_babel__generator___babel__generator_7.0.2.tgz"; | ||
1053 | url = "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz"; | ||
1054 | sha1 = "d2112a6b21fad600d7674274293c85dce0cb47fc"; | ||
1055 | }; | ||
1056 | } | ||
1057 | |||
1058 | { | ||
1059 | name = "_types_babel__template___babel__template_7.0.2.tgz"; | ||
1060 | path = fetchurl { | ||
1061 | name = "_types_babel__template___babel__template_7.0.2.tgz"; | ||
1062 | url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz"; | ||
1063 | sha1 = "4ff63d6b52eddac1de7b975a5223ed32ecea9307"; | ||
1064 | }; | ||
1065 | } | ||
1066 | |||
1067 | { | ||
1068 | name = "_types_babel__traverse___babel__traverse_7.0.6.tgz"; | ||
1069 | path = fetchurl { | ||
1070 | name = "_types_babel__traverse___babel__traverse_7.0.6.tgz"; | ||
1071 | url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.6.tgz"; | ||
1072 | sha1 = "328dd1a8fc4cfe3c8458be9477b219ea158fd7b2"; | ||
1073 | }; | ||
1074 | } | ||
1075 | |||
1076 | { | ||
1077 | name = "_types_events___events_3.0.0.tgz"; | ||
1078 | path = fetchurl { | ||
1079 | name = "_types_events___events_3.0.0.tgz"; | ||
1080 | url = "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz"; | ||
1081 | sha1 = "2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7"; | ||
1082 | }; | ||
1083 | } | ||
1084 | |||
1085 | { | ||
1086 | name = "_types_glob___glob_7.1.1.tgz"; | ||
1087 | path = fetchurl { | ||
1088 | name = "_types_glob___glob_7.1.1.tgz"; | ||
1089 | url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz"; | ||
1090 | sha1 = "aa59a1c6e3fbc421e07ccd31a944c30eba521575"; | ||
1091 | }; | ||
1092 | } | ||
1093 | |||
1094 | { | ||
1095 | name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.1.tgz"; | ||
1096 | path = fetchurl { | ||
1097 | name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.1.tgz"; | ||
1098 | url = "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz"; | ||
1099 | sha1 = "42995b446db9a48a11a07ec083499a860e9138ff"; | ||
1100 | }; | ||
1101 | } | ||
1102 | |||
1103 | { | ||
1104 | name = "_types_istanbul_lib_report___istanbul_lib_report_1.1.1.tgz"; | ||
1105 | path = fetchurl { | ||
1106 | name = "_types_istanbul_lib_report___istanbul_lib_report_1.1.1.tgz"; | ||
1107 | url = "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz"; | ||
1108 | sha1 = "e5471e7fa33c61358dd38426189c037a58433b8c"; | ||
1109 | }; | ||
1110 | } | ||
1111 | |||
1112 | { | ||
1113 | name = "_types_istanbul_reports___istanbul_reports_1.1.1.tgz"; | ||
1114 | path = fetchurl { | ||
1115 | name = "_types_istanbul_reports___istanbul_reports_1.1.1.tgz"; | ||
1116 | url = "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz"; | ||
1117 | sha1 = "7a8cbf6a406f36c8add871625b278eaf0b0d255a"; | ||
1118 | }; | ||
1119 | } | ||
1120 | |||
1121 | { | ||
1122 | name = "_types_minimatch___minimatch_3.0.3.tgz"; | ||
1123 | path = fetchurl { | ||
1124 | name = "_types_minimatch___minimatch_3.0.3.tgz"; | ||
1125 | url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz"; | ||
1126 | sha1 = "3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"; | ||
1127 | }; | ||
1128 | } | ||
1129 | |||
1130 | { | ||
1131 | name = "_types_node___node_10.12.18.tgz"; | ||
1132 | path = fetchurl { | ||
1133 | name = "_types_node___node_10.12.18.tgz"; | ||
1134 | url = "https://registry.yarnpkg.com/@types/node/-/node-10.12.18.tgz"; | ||
1135 | sha1 = "1d3ca764718915584fcd9f6344621b7672665c67"; | ||
1136 | }; | ||
1137 | } | ||
1138 | |||
1139 | { | ||
1140 | name = "_types_q___q_1.5.1.tgz"; | ||
1141 | path = fetchurl { | ||
1142 | name = "_types_q___q_1.5.1.tgz"; | ||
1143 | url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.1.tgz"; | ||
1144 | sha1 = "48fd98c1561fe718b61733daed46ff115b496e18"; | ||
1145 | }; | ||
1146 | } | ||
1147 | |||
1148 | { | ||
1149 | name = "_types_react___react_16.4.6.tgz"; | ||
1150 | path = fetchurl { | ||
1151 | name = "_types_react___react_16.4.6.tgz"; | ||
1152 | url = "https://registry.yarnpkg.com/@types/react/-/react-16.4.6.tgz"; | ||
1153 | sha1 = "5024957c6bcef4f02823accf5974faba2e54fada"; | ||
1154 | }; | ||
1155 | } | ||
1156 | |||
1157 | { | ||
1158 | name = "_types_stack_utils___stack_utils_1.0.1.tgz"; | ||
1159 | path = fetchurl { | ||
1160 | name = "_types_stack_utils___stack_utils_1.0.1.tgz"; | ||
1161 | url = "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz"; | ||
1162 | sha1 = "0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"; | ||
1163 | }; | ||
1164 | } | ||
1165 | |||
1166 | { | ||
1167 | name = "_types_yargs___yargs_12.0.9.tgz"; | ||
1168 | path = fetchurl { | ||
1169 | name = "_types_yargs___yargs_12.0.9.tgz"; | ||
1170 | url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.9.tgz"; | ||
1171 | sha1 = "693e76a52f61a2f1e7fb48c0eef167b95ea4ffd0"; | ||
1172 | }; | ||
1173 | } | ||
1174 | |||
1175 | { | ||
1176 | name = "_webassemblyjs_ast___ast_1.8.5.tgz"; | ||
1177 | path = fetchurl { | ||
1178 | name = "_webassemblyjs_ast___ast_1.8.5.tgz"; | ||
1179 | url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz"; | ||
1180 | sha1 = "51b1c5fe6576a34953bf4b253df9f0d490d9e359"; | ||
1181 | }; | ||
1182 | } | ||
1183 | |||
1184 | { | ||
1185 | name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz"; | ||
1186 | path = fetchurl { | ||
1187 | name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz"; | ||
1188 | url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz"; | ||
1189 | sha1 = "1ba926a2923613edce496fd5b02e8ce8a5f49721"; | ||
1190 | }; | ||
1191 | } | ||
1192 | |||
1193 | { | ||
1194 | name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz"; | ||
1195 | path = fetchurl { | ||
1196 | name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz"; | ||
1197 | url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz"; | ||
1198 | sha1 = "c49dad22f645227c5edb610bdb9697f1aab721f7"; | ||
1199 | }; | ||
1200 | } | ||
1201 | |||
1202 | { | ||
1203 | name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz"; | ||
1204 | path = fetchurl { | ||
1205 | name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz"; | ||
1206 | url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz"; | ||
1207 | sha1 = "fea93e429863dd5e4338555f42292385a653f204"; | ||
1208 | }; | ||
1209 | } | ||
1210 | |||
1211 | { | ||
1212 | name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz"; | ||
1213 | path = fetchurl { | ||
1214 | name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz"; | ||
1215 | url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz"; | ||
1216 | sha1 = "9a740ff48e3faa3022b1dff54423df9aa293c25e"; | ||
1217 | }; | ||
1218 | } | ||
1219 | |||
1220 | { | ||
1221 | name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz"; | ||
1222 | path = fetchurl { | ||
1223 | name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz"; | ||
1224 | url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz"; | ||
1225 | sha1 = "ba0b7d3b3f7e4733da6059c9332275d860702452"; | ||
1226 | }; | ||
1227 | } | ||
1228 | |||
1229 | { | ||
1230 | name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz"; | ||
1231 | path = fetchurl { | ||
1232 | name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz"; | ||
1233 | url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz"; | ||
1234 | sha1 = "def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245"; | ||
1235 | }; | ||
1236 | } | ||
1237 | |||
1238 | { | ||
1239 | name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz"; | ||
1240 | path = fetchurl { | ||
1241 | name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz"; | ||
1242 | url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz"; | ||
1243 | sha1 = "537a750eddf5c1e932f3744206551c91c1b93e61"; | ||
1244 | }; | ||
1245 | } | ||
1246 | |||
1247 | { | ||
1248 | name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz"; | ||
1249 | path = fetchurl { | ||
1250 | name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz"; | ||
1251 | url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz"; | ||
1252 | sha1 = "74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf"; | ||
1253 | }; | ||
1254 | } | ||
1255 | |||
1256 | { | ||
1257 | name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz"; | ||
1258 | path = fetchurl { | ||
1259 | name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz"; | ||
1260 | url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz"; | ||
1261 | sha1 = "712329dbef240f36bf57bd2f7b8fb9bf4154421e"; | ||
1262 | }; | ||
1263 | } | ||
1264 | |||
1265 | { | ||
1266 | name = "_webassemblyjs_leb128___leb128_1.8.5.tgz"; | ||
1267 | path = fetchurl { | ||
1268 | name = "_webassemblyjs_leb128___leb128_1.8.5.tgz"; | ||
1269 | url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz"; | ||
1270 | sha1 = "044edeb34ea679f3e04cd4fd9824d5e35767ae10"; | ||
1271 | }; | ||
1272 | } | ||
1273 | |||
1274 | { | ||
1275 | name = "_webassemblyjs_utf8___utf8_1.8.5.tgz"; | ||
1276 | path = fetchurl { | ||
1277 | name = "_webassemblyjs_utf8___utf8_1.8.5.tgz"; | ||
1278 | url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz"; | ||
1279 | sha1 = "a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc"; | ||
1280 | }; | ||
1281 | } | ||
1282 | |||
1283 | { | ||
1284 | name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz"; | ||
1285 | path = fetchurl { | ||
1286 | name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz"; | ||
1287 | url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz"; | ||
1288 | sha1 = "962da12aa5acc1c131c81c4232991c82ce56e01a"; | ||
1289 | }; | ||
1290 | } | ||
1291 | |||
1292 | { | ||
1293 | name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz"; | ||
1294 | path = fetchurl { | ||
1295 | name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz"; | ||
1296 | url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz"; | ||
1297 | sha1 = "54840766c2c1002eb64ed1abe720aded714f98bc"; | ||
1298 | }; | ||
1299 | } | ||
1300 | |||
1301 | { | ||
1302 | name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz"; | ||
1303 | path = fetchurl { | ||
1304 | name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz"; | ||
1305 | url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz"; | ||
1306 | sha1 = "b24d9f6ba50394af1349f510afa8ffcb8a63d264"; | ||
1307 | }; | ||
1308 | } | ||
1309 | |||
1310 | { | ||
1311 | name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz"; | ||
1312 | path = fetchurl { | ||
1313 | name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz"; | ||
1314 | url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz"; | ||
1315 | sha1 = "21576f0ec88b91427357b8536383668ef7c66b8d"; | ||
1316 | }; | ||
1317 | } | ||
1318 | |||
1319 | { | ||
1320 | name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz"; | ||
1321 | path = fetchurl { | ||
1322 | name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz"; | ||
1323 | url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz"; | ||
1324 | sha1 = "e10eecd542d0e7bd394f6827c49f3df6d4eefb8c"; | ||
1325 | }; | ||
1326 | } | ||
1327 | |||
1328 | { | ||
1329 | name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz"; | ||
1330 | path = fetchurl { | ||
1331 | name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz"; | ||
1332 | url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz"; | ||
1333 | sha1 = "114bbc481fd10ca0e23b3560fa812748b0bae5bc"; | ||
1334 | }; | ||
1335 | } | ||
1336 | |||
1337 | { | ||
1338 | name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; | ||
1339 | path = fetchurl { | ||
1340 | name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; | ||
1341 | url = "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz"; | ||
1342 | sha1 = "eef014a3145ae477a1cbc00cd1e552336dceb790"; | ||
1343 | }; | ||
1344 | } | ||
1345 | |||
1346 | { | ||
1347 | name = "_xtuc_long___long_4.2.2.tgz"; | ||
1348 | path = fetchurl { | ||
1349 | name = "_xtuc_long___long_4.2.2.tgz"; | ||
1350 | url = "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz"; | ||
1351 | sha1 = "d291c6a4e97989b5c61d9acf396ae4fe133a718d"; | ||
1352 | }; | ||
1353 | } | ||
1354 | |||
1355 | { | ||
1356 | name = "abab___abab_2.0.0.tgz"; | ||
1357 | path = fetchurl { | ||
1358 | name = "abab___abab_2.0.0.tgz"; | ||
1359 | url = "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz"; | ||
1360 | sha1 = "aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f"; | ||
1361 | }; | ||
1362 | } | ||
1363 | |||
1364 | { | ||
1365 | name = "abbrev___abbrev_1.1.1.tgz"; | ||
1366 | path = fetchurl { | ||
1367 | name = "abbrev___abbrev_1.1.1.tgz"; | ||
1368 | url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; | ||
1369 | sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; | ||
1370 | }; | ||
1371 | } | ||
1372 | |||
1373 | { | ||
1374 | name = "accepts___accepts_1.3.7.tgz"; | ||
1375 | path = fetchurl { | ||
1376 | name = "accepts___accepts_1.3.7.tgz"; | ||
1377 | url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz"; | ||
1378 | sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd"; | ||
1379 | }; | ||
1380 | } | ||
1381 | |||
1382 | { | ||
1383 | name = "acorn_dynamic_import___acorn_dynamic_import_4.0.0.tgz"; | ||
1384 | path = fetchurl { | ||
1385 | name = "acorn_dynamic_import___acorn_dynamic_import_4.0.0.tgz"; | ||
1386 | url = "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz"; | ||
1387 | sha1 = "482210140582a36b83c3e342e1cfebcaa9240948"; | ||
1388 | }; | ||
1389 | } | ||
1390 | |||
1391 | { | ||
1392 | name = "acorn_globals___acorn_globals_4.3.0.tgz"; | ||
1393 | path = fetchurl { | ||
1394 | name = "acorn_globals___acorn_globals_4.3.0.tgz"; | ||
1395 | url = "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.0.tgz"; | ||
1396 | sha1 = "e3b6f8da3c1552a95ae627571f7dd6923bb54103"; | ||
1397 | }; | ||
1398 | } | ||
1399 | |||
1400 | { | ||
1401 | name = "acorn_jsx___acorn_jsx_3.0.1.tgz"; | ||
1402 | path = fetchurl { | ||
1403 | name = "acorn_jsx___acorn_jsx_3.0.1.tgz"; | ||
1404 | url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; | ||
1405 | sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b"; | ||
1406 | }; | ||
1407 | } | ||
1408 | |||
1409 | { | ||
1410 | name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; | ||
1411 | path = fetchurl { | ||
1412 | name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; | ||
1413 | url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz"; | ||
1414 | sha1 = "32a064fd925429216a09b141102bfdd185fae40e"; | ||
1415 | }; | ||
1416 | } | ||
1417 | |||
1418 | { | ||
1419 | name = "acorn_walk___acorn_walk_6.1.1.tgz"; | ||
1420 | path = fetchurl { | ||
1421 | name = "acorn_walk___acorn_walk_6.1.1.tgz"; | ||
1422 | url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz"; | ||
1423 | sha1 = "d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913"; | ||
1424 | }; | ||
1425 | } | ||
1426 | |||
1427 | { | ||
1428 | name = "acorn___acorn_3.3.0.tgz"; | ||
1429 | path = fetchurl { | ||
1430 | name = "acorn___acorn_3.3.0.tgz"; | ||
1431 | url = "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz"; | ||
1432 | sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a"; | ||
1433 | }; | ||
1434 | } | ||
1435 | |||
1436 | { | ||
1437 | name = "acorn___acorn_5.7.3.tgz"; | ||
1438 | path = fetchurl { | ||
1439 | name = "acorn___acorn_5.7.3.tgz"; | ||
1440 | url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz"; | ||
1441 | sha1 = "67aa231bf8812974b85235a96771eb6bd07ea279"; | ||
1442 | }; | ||
1443 | } | ||
1444 | |||
1445 | { | ||
1446 | name = "acorn___acorn_6.1.1.tgz"; | ||
1447 | path = fetchurl { | ||
1448 | name = "acorn___acorn_6.1.1.tgz"; | ||
1449 | url = "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz"; | ||
1450 | sha1 = "7d25ae05bb8ad1f9b699108e1094ecd7884adc1f"; | ||
1451 | }; | ||
1452 | } | ||
1453 | |||
1454 | { | ||
1455 | name = "airbnb_prop_types___airbnb_prop_types_2.13.2.tgz"; | ||
1456 | path = fetchurl { | ||
1457 | name = "airbnb_prop_types___airbnb_prop_types_2.13.2.tgz"; | ||
1458 | url = "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.13.2.tgz"; | ||
1459 | sha1 = "43147a5062dd2a4a5600e748a47b64004cc5f7fc"; | ||
1460 | }; | ||
1461 | } | ||
1462 | |||
1463 | { | ||
1464 | name = "ajv_errors___ajv_errors_1.0.1.tgz"; | ||
1465 | path = fetchurl { | ||
1466 | name = "ajv_errors___ajv_errors_1.0.1.tgz"; | ||
1467 | url = "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz"; | ||
1468 | sha1 = "f35986aceb91afadec4102fbd85014950cefa64d"; | ||
1469 | }; | ||
1470 | } | ||
1471 | |||
1472 | { | ||
1473 | name = "ajv_keywords___ajv_keywords_1.5.1.tgz"; | ||
1474 | path = fetchurl { | ||
1475 | name = "ajv_keywords___ajv_keywords_1.5.1.tgz"; | ||
1476 | url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz"; | ||
1477 | sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c"; | ||
1478 | }; | ||
1479 | } | ||
1480 | |||
1481 | { | ||
1482 | name = "ajv_keywords___ajv_keywords_3.2.0.tgz"; | ||
1483 | path = fetchurl { | ||
1484 | name = "ajv_keywords___ajv_keywords_3.2.0.tgz"; | ||
1485 | url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz"; | ||
1486 | sha1 = "e86b819c602cf8821ad637413698f1dec021847a"; | ||
1487 | }; | ||
1488 | } | ||
1489 | |||
1490 | { | ||
1491 | name = "ajv___ajv_4.11.8.tgz"; | ||
1492 | path = fetchurl { | ||
1493 | name = "ajv___ajv_4.11.8.tgz"; | ||
1494 | url = "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz"; | ||
1495 | sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; | ||
1496 | }; | ||
1497 | } | ||
1498 | |||
1499 | { | ||
1500 | name = "ajv___ajv_6.6.2.tgz"; | ||
1501 | path = fetchurl { | ||
1502 | name = "ajv___ajv_6.6.2.tgz"; | ||
1503 | url = "https://registry.yarnpkg.com/ajv/-/ajv-6.6.2.tgz"; | ||
1504 | sha1 = "caceccf474bf3fc3ce3b147443711a24063cc30d"; | ||
1505 | }; | ||
1506 | } | ||
1507 | |||
1508 | { | ||
1509 | name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; | ||
1510 | path = fetchurl { | ||
1511 | name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; | ||
1512 | url = "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz"; | ||
1513 | sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3"; | ||
1514 | }; | ||
1515 | } | ||
1516 | |||
1517 | { | ||
1518 | name = "ansi_colors___ansi_colors_3.2.3.tgz"; | ||
1519 | path = fetchurl { | ||
1520 | name = "ansi_colors___ansi_colors_3.2.3.tgz"; | ||
1521 | url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz"; | ||
1522 | sha1 = "57d35b8686e851e2cc04c403f1c00203976a1813"; | ||
1523 | }; | ||
1524 | } | ||
1525 | |||
1526 | { | ||
1527 | name = "ansi_escapes___ansi_escapes_1.4.0.tgz"; | ||
1528 | path = fetchurl { | ||
1529 | name = "ansi_escapes___ansi_escapes_1.4.0.tgz"; | ||
1530 | url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz"; | ||
1531 | sha1 = "d3a8a83b319aa67793662b13e761c7911422306e"; | ||
1532 | }; | ||
1533 | } | ||
1534 | |||
1535 | { | ||
1536 | name = "ansi_escapes___ansi_escapes_3.1.0.tgz"; | ||
1537 | path = fetchurl { | ||
1538 | name = "ansi_escapes___ansi_escapes_3.1.0.tgz"; | ||
1539 | url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz"; | ||
1540 | sha1 = "f73207bb81207d75fd6c83f125af26eea378ca30"; | ||
1541 | }; | ||
1542 | } | ||
1543 | |||
1544 | { | ||
1545 | name = "ansi_html___ansi_html_0.0.7.tgz"; | ||
1546 | path = fetchurl { | ||
1547 | name = "ansi_html___ansi_html_0.0.7.tgz"; | ||
1548 | url = "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz"; | ||
1549 | sha1 = "813584021962a9e9e6fd039f940d12f56ca7859e"; | ||
1550 | }; | ||
1551 | } | ||
1552 | |||
1553 | { | ||
1554 | name = "ansi_regex___ansi_regex_2.1.1.tgz"; | ||
1555 | path = fetchurl { | ||
1556 | name = "ansi_regex___ansi_regex_2.1.1.tgz"; | ||
1557 | url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz"; | ||
1558 | sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; | ||
1559 | }; | ||
1560 | } | ||
1561 | |||
1562 | { | ||
1563 | name = "ansi_regex___ansi_regex_3.0.0.tgz"; | ||
1564 | path = fetchurl { | ||
1565 | name = "ansi_regex___ansi_regex_3.0.0.tgz"; | ||
1566 | url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; | ||
1567 | sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; | ||
1568 | }; | ||
1569 | } | ||
1570 | |||
1571 | { | ||
1572 | name = "ansi_regex___ansi_regex_4.0.0.tgz"; | ||
1573 | path = fetchurl { | ||
1574 | name = "ansi_regex___ansi_regex_4.0.0.tgz"; | ||
1575 | url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz"; | ||
1576 | sha1 = "70de791edf021404c3fd615aa89118ae0432e5a9"; | ||
1577 | }; | ||
1578 | } | ||
1579 | |||
1580 | { | ||
1581 | name = "ansi_styles___ansi_styles_2.2.1.tgz"; | ||
1582 | path = fetchurl { | ||
1583 | name = "ansi_styles___ansi_styles_2.2.1.tgz"; | ||
1584 | url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz"; | ||
1585 | sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; | ||
1586 | }; | ||
1587 | } | ||
1588 | |||
1589 | { | ||
1590 | name = "ansi_styles___ansi_styles_3.2.1.tgz"; | ||
1591 | path = fetchurl { | ||
1592 | name = "ansi_styles___ansi_styles_3.2.1.tgz"; | ||
1593 | url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; | ||
1594 | sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; | ||
1595 | }; | ||
1596 | } | ||
1597 | |||
1598 | { | ||
1599 | name = "anymatch___anymatch_2.0.0.tgz"; | ||
1600 | path = fetchurl { | ||
1601 | name = "anymatch___anymatch_2.0.0.tgz"; | ||
1602 | url = "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz"; | ||
1603 | sha1 = "bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"; | ||
1604 | }; | ||
1605 | } | ||
1606 | |||
1607 | { | ||
1608 | name = "aproba___aproba_1.2.0.tgz"; | ||
1609 | path = fetchurl { | ||
1610 | name = "aproba___aproba_1.2.0.tgz"; | ||
1611 | url = "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz"; | ||
1612 | sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a"; | ||
1613 | }; | ||
1614 | } | ||
1615 | |||
1616 | { | ||
1617 | name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; | ||
1618 | path = fetchurl { | ||
1619 | name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; | ||
1620 | url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; | ||
1621 | sha1 = "4b35c2944f062a8bfcda66410760350fe9ddfc21"; | ||
1622 | }; | ||
1623 | } | ||
1624 | |||
1625 | { | ||
1626 | name = "argparse___argparse_1.0.10.tgz"; | ||
1627 | path = fetchurl { | ||
1628 | name = "argparse___argparse_1.0.10.tgz"; | ||
1629 | url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; | ||
1630 | sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; | ||
1631 | }; | ||
1632 | } | ||
1633 | |||
1634 | { | ||
1635 | name = "aria_query___aria_query_3.0.0.tgz"; | ||
1636 | path = fetchurl { | ||
1637 | name = "aria_query___aria_query_3.0.0.tgz"; | ||
1638 | url = "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz"; | ||
1639 | sha1 = "65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc"; | ||
1640 | }; | ||
1641 | } | ||
1642 | |||
1643 | { | ||
1644 | name = "arr_diff___arr_diff_4.0.0.tgz"; | ||
1645 | path = fetchurl { | ||
1646 | name = "arr_diff___arr_diff_4.0.0.tgz"; | ||
1647 | url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz"; | ||
1648 | sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; | ||
1649 | }; | ||
1650 | } | ||
1651 | |||
1652 | { | ||
1653 | name = "arr_flatten___arr_flatten_1.1.0.tgz"; | ||
1654 | path = fetchurl { | ||
1655 | name = "arr_flatten___arr_flatten_1.1.0.tgz"; | ||
1656 | url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz"; | ||
1657 | sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1"; | ||
1658 | }; | ||
1659 | } | ||
1660 | |||
1661 | { | ||
1662 | name = "arr_union___arr_union_3.1.0.tgz"; | ||
1663 | path = fetchurl { | ||
1664 | name = "arr_union___arr_union_3.1.0.tgz"; | ||
1665 | url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz"; | ||
1666 | sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; | ||
1667 | }; | ||
1668 | } | ||
1669 | |||
1670 | { | ||
1671 | name = "array_equal___array_equal_1.0.0.tgz"; | ||
1672 | path = fetchurl { | ||
1673 | name = "array_equal___array_equal_1.0.0.tgz"; | ||
1674 | url = "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz"; | ||
1675 | sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93"; | ||
1676 | }; | ||
1677 | } | ||
1678 | |||
1679 | { | ||
1680 | name = "array_filter___array_filter_1.0.0.tgz"; | ||
1681 | path = fetchurl { | ||
1682 | name = "array_filter___array_filter_1.0.0.tgz"; | ||
1683 | url = "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz"; | ||
1684 | sha1 = "baf79e62e6ef4c2a4c0b831232daffec251f9d83"; | ||
1685 | }; | ||
1686 | } | ||
1687 | |||
1688 | { | ||
1689 | name = "array_flatten___array_flatten_1.1.1.tgz"; | ||
1690 | path = fetchurl { | ||
1691 | name = "array_flatten___array_flatten_1.1.1.tgz"; | ||
1692 | url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz"; | ||
1693 | sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; | ||
1694 | }; | ||
1695 | } | ||
1696 | |||
1697 | { | ||
1698 | name = "array_flatten___array_flatten_2.1.2.tgz"; | ||
1699 | path = fetchurl { | ||
1700 | name = "array_flatten___array_flatten_2.1.2.tgz"; | ||
1701 | url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz"; | ||
1702 | sha1 = "24ef80a28c1a893617e2149b0c6d0d788293b099"; | ||
1703 | }; | ||
1704 | } | ||
1705 | |||
1706 | { | ||
1707 | name = "array_includes___array_includes_3.0.3.tgz"; | ||
1708 | path = fetchurl { | ||
1709 | name = "array_includes___array_includes_3.0.3.tgz"; | ||
1710 | url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz"; | ||
1711 | sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d"; | ||
1712 | }; | ||
1713 | } | ||
1714 | |||
1715 | { | ||
1716 | name = "array_union___array_union_1.0.2.tgz"; | ||
1717 | path = fetchurl { | ||
1718 | name = "array_union___array_union_1.0.2.tgz"; | ||
1719 | url = "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz"; | ||
1720 | sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; | ||
1721 | }; | ||
1722 | } | ||
1723 | |||
1724 | { | ||
1725 | name = "array_uniq___array_uniq_1.0.3.tgz"; | ||
1726 | path = fetchurl { | ||
1727 | name = "array_uniq___array_uniq_1.0.3.tgz"; | ||
1728 | url = "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz"; | ||
1729 | sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; | ||
1730 | }; | ||
1731 | } | ||
1732 | |||
1733 | { | ||
1734 | name = "array_unique___array_unique_0.3.2.tgz"; | ||
1735 | path = fetchurl { | ||
1736 | name = "array_unique___array_unique_0.3.2.tgz"; | ||
1737 | url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; | ||
1738 | sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; | ||
1739 | }; | ||
1740 | } | ||
1741 | |||
1742 | { | ||
1743 | name = "array.prototype.find___array.prototype.find_2.1.0.tgz"; | ||
1744 | path = fetchurl { | ||
1745 | name = "array.prototype.find___array.prototype.find_2.1.0.tgz"; | ||
1746 | url = "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.0.tgz"; | ||
1747 | sha1 = "630f2eaf70a39e608ac3573e45cf8ccd0ede9ad7"; | ||
1748 | }; | ||
1749 | } | ||
1750 | |||
1751 | { | ||
1752 | name = "array.prototype.flat___array.prototype.flat_1.2.1.tgz"; | ||
1753 | path = fetchurl { | ||
1754 | name = "array.prototype.flat___array.prototype.flat_1.2.1.tgz"; | ||
1755 | url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.1.tgz"; | ||
1756 | sha1 = "812db8f02cad24d3fab65dd67eabe3b8903494a4"; | ||
1757 | }; | ||
1758 | } | ||
1759 | |||
1760 | { | ||
1761 | name = "arrify___arrify_1.0.1.tgz"; | ||
1762 | path = fetchurl { | ||
1763 | name = "arrify___arrify_1.0.1.tgz"; | ||
1764 | url = "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz"; | ||
1765 | sha1 = "898508da2226f380df904728456849c1501a4b0d"; | ||
1766 | }; | ||
1767 | } | ||
1768 | |||
1769 | { | ||
1770 | name = "asap___asap_2.0.6.tgz"; | ||
1771 | path = fetchurl { | ||
1772 | name = "asap___asap_2.0.6.tgz"; | ||
1773 | url = "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz"; | ||
1774 | sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; | ||
1775 | }; | ||
1776 | } | ||
1777 | |||
1778 | { | ||
1779 | name = "asn1.js___asn1.js_4.10.1.tgz"; | ||
1780 | path = fetchurl { | ||
1781 | name = "asn1.js___asn1.js_4.10.1.tgz"; | ||
1782 | url = "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz"; | ||
1783 | sha1 = "b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"; | ||
1784 | }; | ||
1785 | } | ||
1786 | |||
1787 | { | ||
1788 | name = "asn1___asn1_0.2.4.tgz"; | ||
1789 | path = fetchurl { | ||
1790 | name = "asn1___asn1_0.2.4.tgz"; | ||
1791 | url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; | ||
1792 | sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; | ||
1793 | }; | ||
1794 | } | ||
1795 | |||
1796 | { | ||
1797 | name = "assert_plus___assert_plus_1.0.0.tgz"; | ||
1798 | path = fetchurl { | ||
1799 | name = "assert_plus___assert_plus_1.0.0.tgz"; | ||
1800 | url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; | ||
1801 | sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; | ||
1802 | }; | ||
1803 | } | ||
1804 | |||
1805 | { | ||
1806 | name = "assert___assert_1.4.1.tgz"; | ||
1807 | path = fetchurl { | ||
1808 | name = "assert___assert_1.4.1.tgz"; | ||
1809 | url = "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz"; | ||
1810 | sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91"; | ||
1811 | }; | ||
1812 | } | ||
1813 | |||
1814 | { | ||
1815 | name = "assign_symbols___assign_symbols_1.0.0.tgz"; | ||
1816 | path = fetchurl { | ||
1817 | name = "assign_symbols___assign_symbols_1.0.0.tgz"; | ||
1818 | url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; | ||
1819 | sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; | ||
1820 | }; | ||
1821 | } | ||
1822 | |||
1823 | { | ||
1824 | name = "ast_types_flow___ast_types_flow_0.0.7.tgz"; | ||
1825 | path = fetchurl { | ||
1826 | name = "ast_types_flow___ast_types_flow_0.0.7.tgz"; | ||
1827 | url = "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz"; | ||
1828 | sha1 = "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"; | ||
1829 | }; | ||
1830 | } | ||
1831 | |||
1832 | { | ||
1833 | name = "astral_regex___astral_regex_1.0.0.tgz"; | ||
1834 | path = fetchurl { | ||
1835 | name = "astral_regex___astral_regex_1.0.0.tgz"; | ||
1836 | url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; | ||
1837 | sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; | ||
1838 | }; | ||
1839 | } | ||
1840 | |||
1841 | { | ||
1842 | name = "async_each___async_each_1.0.3.tgz"; | ||
1843 | path = fetchurl { | ||
1844 | name = "async_each___async_each_1.0.3.tgz"; | ||
1845 | url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz"; | ||
1846 | sha1 = "b727dbf87d7651602f06f4d4ac387f47d91b0cbf"; | ||
1847 | }; | ||
1848 | } | ||
1849 | |||
1850 | { | ||
1851 | name = "async_limiter___async_limiter_1.0.0.tgz"; | ||
1852 | path = fetchurl { | ||
1853 | name = "async_limiter___async_limiter_1.0.0.tgz"; | ||
1854 | url = "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz"; | ||
1855 | sha1 = "78faed8c3d074ab81f22b4e985d79e8738f720f8"; | ||
1856 | }; | ||
1857 | } | ||
1858 | |||
1859 | { | ||
1860 | name = "async___async_1.5.2.tgz"; | ||
1861 | path = fetchurl { | ||
1862 | name = "async___async_1.5.2.tgz"; | ||
1863 | url = "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz"; | ||
1864 | sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; | ||
1865 | }; | ||
1866 | } | ||
1867 | |||
1868 | { | ||
1869 | name = "async___async_2.6.1.tgz"; | ||
1870 | path = fetchurl { | ||
1871 | name = "async___async_2.6.1.tgz"; | ||
1872 | url = "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz"; | ||
1873 | sha1 = "b245a23ca71930044ec53fa46aa00a3e87c6a610"; | ||
1874 | }; | ||
1875 | } | ||
1876 | |||
1877 | { | ||
1878 | name = "asynckit___asynckit_0.4.0.tgz"; | ||
1879 | path = fetchurl { | ||
1880 | name = "asynckit___asynckit_0.4.0.tgz"; | ||
1881 | url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; | ||
1882 | sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; | ||
1883 | }; | ||
1884 | } | ||
1885 | |||
1886 | { | ||
1887 | name = "atob___atob_2.1.2.tgz"; | ||
1888 | path = fetchurl { | ||
1889 | name = "atob___atob_2.1.2.tgz"; | ||
1890 | url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz"; | ||
1891 | sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9"; | ||
1892 | }; | ||
1893 | } | ||
1894 | |||
1895 | { | ||
1896 | name = "autoprefixer___autoprefixer_9.6.0.tgz"; | ||
1897 | path = fetchurl { | ||
1898 | name = "autoprefixer___autoprefixer_9.6.0.tgz"; | ||
1899 | url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.0.tgz"; | ||
1900 | sha1 = "0111c6bde2ad20c6f17995a33fad7cf6854b4c87"; | ||
1901 | }; | ||
1902 | } | ||
1903 | |||
1904 | { | ||
1905 | name = "aws_sign2___aws_sign2_0.7.0.tgz"; | ||
1906 | path = fetchurl { | ||
1907 | name = "aws_sign2___aws_sign2_0.7.0.tgz"; | ||
1908 | url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz"; | ||
1909 | sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; | ||
1910 | }; | ||
1911 | } | ||
1912 | |||
1913 | { | ||
1914 | name = "aws4___aws4_1.8.0.tgz"; | ||
1915 | path = fetchurl { | ||
1916 | name = "aws4___aws4_1.8.0.tgz"; | ||
1917 | url = "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz"; | ||
1918 | sha1 = "f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"; | ||
1919 | }; | ||
1920 | } | ||
1921 | |||
1922 | { | ||
1923 | name = "axios___axios_0.19.0.tgz"; | ||
1924 | path = fetchurl { | ||
1925 | name = "axios___axios_0.19.0.tgz"; | ||
1926 | url = "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz"; | ||
1927 | sha1 = "8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8"; | ||
1928 | }; | ||
1929 | } | ||
1930 | |||
1931 | { | ||
1932 | name = "axobject_query___axobject_query_2.0.2.tgz"; | ||
1933 | path = fetchurl { | ||
1934 | name = "axobject_query___axobject_query_2.0.2.tgz"; | ||
1935 | url = "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz"; | ||
1936 | sha1 = "ea187abe5b9002b377f925d8bf7d1c561adf38f9"; | ||
1937 | }; | ||
1938 | } | ||
1939 | |||
1940 | { | ||
1941 | name = "babel_eslint___babel_eslint_10.0.1.tgz"; | ||
1942 | path = fetchurl { | ||
1943 | name = "babel_eslint___babel_eslint_10.0.1.tgz"; | ||
1944 | url = "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz"; | ||
1945 | sha1 = "919681dc099614cd7d31d45c8908695092a1faed"; | ||
1946 | }; | ||
1947 | } | ||
1948 | |||
1949 | { | ||
1950 | name = "babel_jest___babel_jest_24.8.0.tgz"; | ||
1951 | path = fetchurl { | ||
1952 | name = "babel_jest___babel_jest_24.8.0.tgz"; | ||
1953 | url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz"; | ||
1954 | sha1 = "5c15ff2b28e20b0f45df43fe6b7f2aae93dba589"; | ||
1955 | }; | ||
1956 | } | ||
1957 | |||
1958 | { | ||
1959 | name = "babel_loader___babel_loader_8.0.5.tgz"; | ||
1960 | path = fetchurl { | ||
1961 | name = "babel_loader___babel_loader_8.0.5.tgz"; | ||
1962 | url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.5.tgz"; | ||
1963 | sha1 = "225322d7509c2157655840bba52e46b6c2f2fe33"; | ||
1964 | }; | ||
1965 | } | ||
1966 | |||
1967 | { | ||
1968 | name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz"; | ||
1969 | path = fetchurl { | ||
1970 | name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz"; | ||
1971 | url = "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz"; | ||
1972 | sha1 = "319c005a9ee1d15bb447f59fe504c35fd5807728"; | ||
1973 | }; | ||
1974 | } | ||
1975 | |||
1976 | { | ||
1977 | name = "babel_plugin_istanbul___babel_plugin_istanbul_5.1.1.tgz"; | ||
1978 | path = fetchurl { | ||
1979 | name = "babel_plugin_istanbul___babel_plugin_istanbul_5.1.1.tgz"; | ||
1980 | url = "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz"; | ||
1981 | sha1 = "7981590f1956d75d67630ba46f0c22493588c893"; | ||
1982 | }; | ||
1983 | } | ||
1984 | |||
1985 | { | ||
1986 | name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_24.6.0.tgz"; | ||
1987 | path = fetchurl { | ||
1988 | name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_24.6.0.tgz"; | ||
1989 | url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz"; | ||
1990 | sha1 = "f7f7f7ad150ee96d7a5e8e2c5da8319579e78019"; | ||
1991 | }; | ||
1992 | } | ||
1993 | |||
1994 | { | ||
1995 | name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz"; | ||
1996 | path = fetchurl { | ||
1997 | name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz"; | ||
1998 | url = "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz"; | ||
1999 | sha1 = "4f6844358a1340baed182adbeffa8df9967bc196"; | ||
2000 | }; | ||
2001 | } | ||
2002 | |||
2003 | { | ||
2004 | name = "babel_plugin_macros___babel_plugin_macros_2.5.1.tgz"; | ||
2005 | path = fetchurl { | ||
2006 | name = "babel_plugin_macros___babel_plugin_macros_2.5.1.tgz"; | ||
2007 | url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.5.1.tgz"; | ||
2008 | sha1 = "4a119ac2c2e19b458c259b9accd7ee34fd57ec6f"; | ||
2009 | }; | ||
2010 | } | ||
2011 | |||
2012 | { | ||
2013 | name = "babel_plugin_macros___babel_plugin_macros_2.4.3.tgz"; | ||
2014 | path = fetchurl { | ||
2015 | name = "babel_plugin_macros___babel_plugin_macros_2.4.3.tgz"; | ||
2016 | url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.4.3.tgz"; | ||
2017 | sha1 = "870345aa538d85f04b4614fea5922b55c45dd551"; | ||
2018 | }; | ||
2019 | } | ||
2020 | |||
2021 | { | ||
2022 | name = "babel_plugin_preval___babel_plugin_preval_3.0.1.tgz"; | ||
2023 | path = fetchurl { | ||
2024 | name = "babel_plugin_preval___babel_plugin_preval_3.0.1.tgz"; | ||
2025 | url = "https://registry.yarnpkg.com/babel-plugin-preval/-/babel-plugin-preval-3.0.1.tgz"; | ||
2026 | sha1 = "a26f9690114a864a54a5cbdf865496ebf541a9c3"; | ||
2027 | }; | ||
2028 | } | ||
2029 | |||
2030 | { | ||
2031 | name = "babel_plugin_react_intl___babel_plugin_react_intl_3.1.3.tgz"; | ||
2032 | path = fetchurl { | ||
2033 | name = "babel_plugin_react_intl___babel_plugin_react_intl_3.1.3.tgz"; | ||
2034 | url = "https://registry.yarnpkg.com/babel-plugin-react-intl/-/babel-plugin-react-intl-3.1.3.tgz"; | ||
2035 | sha1 = "2a28cd43cbba1ed092c7e3376bf8f02b0f72acb8"; | ||
2036 | }; | ||
2037 | } | ||
2038 | |||
2039 | { | ||
2040 | name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; | ||
2041 | path = fetchurl { | ||
2042 | name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz"; | ||
2043 | url = "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz"; | ||
2044 | sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; | ||
2045 | }; | ||
2046 | } | ||
2047 | |||
2048 | { | ||
2049 | name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.24.tgz"; | ||
2050 | path = fetchurl { | ||
2051 | name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.24.tgz"; | ||
2052 | url = "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz"; | ||
2053 | sha1 = "f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a"; | ||
2054 | }; | ||
2055 | } | ||
2056 | |||
2057 | { | ||
2058 | name = "babel_preset_jest___babel_preset_jest_24.6.0.tgz"; | ||
2059 | path = fetchurl { | ||
2060 | name = "babel_preset_jest___babel_preset_jest_24.6.0.tgz"; | ||
2061 | url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz"; | ||
2062 | sha1 = "66f06136eefce87797539c0d63f1769cc3915984"; | ||
2063 | }; | ||
2064 | } | ||
2065 | |||
2066 | { | ||
2067 | name = "babel_runtime___babel_runtime_6.26.0.tgz"; | ||
2068 | path = fetchurl { | ||
2069 | name = "babel_runtime___babel_runtime_6.26.0.tgz"; | ||
2070 | url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz"; | ||
2071 | sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; | ||
2072 | }; | ||
2073 | } | ||
2074 | |||
2075 | { | ||
2076 | name = "backoff___backoff_2.5.0.tgz"; | ||
2077 | path = fetchurl { | ||
2078 | name = "backoff___backoff_2.5.0.tgz"; | ||
2079 | url = "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz"; | ||
2080 | sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; | ||
2081 | }; | ||
2082 | } | ||
2083 | |||
2084 | { | ||
2085 | name = "balanced_match___balanced_match_1.0.0.tgz"; | ||
2086 | path = fetchurl { | ||
2087 | name = "balanced_match___balanced_match_1.0.0.tgz"; | ||
2088 | url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; | ||
2089 | sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; | ||
2090 | }; | ||
2091 | } | ||
2092 | |||
2093 | { | ||
2094 | name = "base64_js___base64_js_1.3.0.tgz"; | ||
2095 | path = fetchurl { | ||
2096 | name = "base64_js___base64_js_1.3.0.tgz"; | ||
2097 | url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz"; | ||
2098 | sha1 = "cab1e6118f051095e58b5281aea8c1cd22bfc0e3"; | ||
2099 | }; | ||
2100 | } | ||
2101 | |||
2102 | { | ||
2103 | name = "base___base_0.11.2.tgz"; | ||
2104 | path = fetchurl { | ||
2105 | name = "base___base_0.11.2.tgz"; | ||
2106 | url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz"; | ||
2107 | sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f"; | ||
2108 | }; | ||
2109 | } | ||
2110 | |||
2111 | { | ||
2112 | name = "batch___batch_0.6.1.tgz"; | ||
2113 | path = fetchurl { | ||
2114 | name = "batch___batch_0.6.1.tgz"; | ||
2115 | url = "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz"; | ||
2116 | sha1 = "dc34314f4e679318093fc760272525f94bf25c16"; | ||
2117 | }; | ||
2118 | } | ||
2119 | |||
2120 | { | ||
2121 | name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; | ||
2122 | path = fetchurl { | ||
2123 | name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; | ||
2124 | url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; | ||
2125 | sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; | ||
2126 | }; | ||
2127 | } | ||
2128 | |||
2129 | { | ||
2130 | name = "bfj___bfj_6.1.1.tgz"; | ||
2131 | path = fetchurl { | ||
2132 | name = "bfj___bfj_6.1.1.tgz"; | ||
2133 | url = "https://registry.yarnpkg.com/bfj/-/bfj-6.1.1.tgz"; | ||
2134 | sha1 = "05a3b7784fbd72cfa3c22e56002ef99336516c48"; | ||
2135 | }; | ||
2136 | } | ||
2137 | |||
2138 | { | ||
2139 | name = "big.js___big.js_3.2.0.tgz"; | ||
2140 | path = fetchurl { | ||
2141 | name = "big.js___big.js_3.2.0.tgz"; | ||
2142 | url = "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz"; | ||
2143 | sha1 = "a5fc298b81b9e0dca2e458824784b65c52ba588e"; | ||
2144 | }; | ||
2145 | } | ||
2146 | |||
2147 | { | ||
2148 | name = "big.js___big.js_5.2.2.tgz"; | ||
2149 | path = fetchurl { | ||
2150 | name = "big.js___big.js_5.2.2.tgz"; | ||
2151 | url = "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz"; | ||
2152 | sha1 = "65f0af382f578bcdc742bd9c281e9cb2d7768328"; | ||
2153 | }; | ||
2154 | } | ||
2155 | |||
2156 | { | ||
2157 | name = "binary_extensions___binary_extensions_1.12.0.tgz"; | ||
2158 | path = fetchurl { | ||
2159 | name = "binary_extensions___binary_extensions_1.12.0.tgz"; | ||
2160 | url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.12.0.tgz"; | ||
2161 | sha1 = "c2d780f53d45bba8317a8902d4ceeaf3a6385b14"; | ||
2162 | }; | ||
2163 | } | ||
2164 | |||
2165 | { | ||
2166 | name = "bluebird___bluebird_3.5.3.tgz"; | ||
2167 | path = fetchurl { | ||
2168 | name = "bluebird___bluebird_3.5.3.tgz"; | ||
2169 | url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz"; | ||
2170 | sha1 = "7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7"; | ||
2171 | }; | ||
2172 | } | ||
2173 | |||
2174 | { | ||
2175 | name = "blurhash___blurhash_1.0.0.tgz"; | ||
2176 | path = fetchurl { | ||
2177 | name = "blurhash___blurhash_1.0.0.tgz"; | ||
2178 | url = "https://registry.yarnpkg.com/blurhash/-/blurhash-1.0.0.tgz"; | ||
2179 | sha1 = "9087bc5cc4d482f1305059d7410df4133adcab2e"; | ||
2180 | }; | ||
2181 | } | ||
2182 | |||
2183 | { | ||
2184 | name = "bn.js___bn.js_4.11.8.tgz"; | ||
2185 | path = fetchurl { | ||
2186 | name = "bn.js___bn.js_4.11.8.tgz"; | ||
2187 | url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz"; | ||
2188 | sha1 = "2cde09eb5ee341f484746bb0309b3253b1b1442f"; | ||
2189 | }; | ||
2190 | } | ||
2191 | |||
2192 | { | ||
2193 | name = "body_parser___body_parser_1.19.0.tgz"; | ||
2194 | path = fetchurl { | ||
2195 | name = "body_parser___body_parser_1.19.0.tgz"; | ||
2196 | url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz"; | ||
2197 | sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a"; | ||
2198 | }; | ||
2199 | } | ||
2200 | |||
2201 | { | ||
2202 | name = "bonjour___bonjour_3.5.0.tgz"; | ||
2203 | path = fetchurl { | ||
2204 | name = "bonjour___bonjour_3.5.0.tgz"; | ||
2205 | url = "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz"; | ||
2206 | sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"; | ||
2207 | }; | ||
2208 | } | ||
2209 | |||
2210 | { | ||
2211 | name = "boolbase___boolbase_1.0.0.tgz"; | ||
2212 | path = fetchurl { | ||
2213 | name = "boolbase___boolbase_1.0.0.tgz"; | ||
2214 | url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz"; | ||
2215 | sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; | ||
2216 | }; | ||
2217 | } | ||
2218 | |||
2219 | { | ||
2220 | name = "brace_expansion___brace_expansion_1.1.11.tgz"; | ||
2221 | path = fetchurl { | ||
2222 | name = "brace_expansion___brace_expansion_1.1.11.tgz"; | ||
2223 | url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; | ||
2224 | sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; | ||
2225 | }; | ||
2226 | } | ||
2227 | |||
2228 | { | ||
2229 | name = "braces___braces_2.3.2.tgz"; | ||
2230 | path = fetchurl { | ||
2231 | name = "braces___braces_2.3.2.tgz"; | ||
2232 | url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz"; | ||
2233 | sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729"; | ||
2234 | }; | ||
2235 | } | ||
2236 | |||
2237 | { | ||
2238 | name = "bricks.js___bricks.js_1.8.0.tgz"; | ||
2239 | path = fetchurl { | ||
2240 | name = "bricks.js___bricks.js_1.8.0.tgz"; | ||
2241 | url = "https://registry.yarnpkg.com/bricks.js/-/bricks.js-1.8.0.tgz"; | ||
2242 | sha1 = "8fdeb3c0226af251f4d5727a7df7f9ac0092b4b2"; | ||
2243 | }; | ||
2244 | } | ||
2245 | |||
2246 | { | ||
2247 | name = "brorand___brorand_1.1.0.tgz"; | ||
2248 | path = fetchurl { | ||
2249 | name = "brorand___brorand_1.1.0.tgz"; | ||
2250 | url = "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz"; | ||
2251 | sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f"; | ||
2252 | }; | ||
2253 | } | ||
2254 | |||
2255 | { | ||
2256 | name = "browser_process_hrtime___browser_process_hrtime_0.1.3.tgz"; | ||
2257 | path = fetchurl { | ||
2258 | name = "browser_process_hrtime___browser_process_hrtime_0.1.3.tgz"; | ||
2259 | url = "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz"; | ||
2260 | sha1 = "616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4"; | ||
2261 | }; | ||
2262 | } | ||
2263 | |||
2264 | { | ||
2265 | name = "browser_resolve___browser_resolve_1.11.3.tgz"; | ||
2266 | path = fetchurl { | ||
2267 | name = "browser_resolve___browser_resolve_1.11.3.tgz"; | ||
2268 | url = "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz"; | ||
2269 | sha1 = "9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"; | ||
2270 | }; | ||
2271 | } | ||
2272 | |||
2273 | { | ||
2274 | name = "browserify_aes___browserify_aes_1.2.0.tgz"; | ||
2275 | path = fetchurl { | ||
2276 | name = "browserify_aes___browserify_aes_1.2.0.tgz"; | ||
2277 | url = "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz"; | ||
2278 | sha1 = "326734642f403dabc3003209853bb70ad428ef48"; | ||
2279 | }; | ||
2280 | } | ||
2281 | |||
2282 | { | ||
2283 | name = "browserify_cipher___browserify_cipher_1.0.1.tgz"; | ||
2284 | path = fetchurl { | ||
2285 | name = "browserify_cipher___browserify_cipher_1.0.1.tgz"; | ||
2286 | url = "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz"; | ||
2287 | sha1 = "8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"; | ||
2288 | }; | ||
2289 | } | ||
2290 | |||
2291 | { | ||
2292 | name = "browserify_des___browserify_des_1.0.2.tgz"; | ||
2293 | path = fetchurl { | ||
2294 | name = "browserify_des___browserify_des_1.0.2.tgz"; | ||
2295 | url = "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz"; | ||
2296 | sha1 = "3af4f1f59839403572f1c66204375f7a7f703e9c"; | ||
2297 | }; | ||
2298 | } | ||
2299 | |||
2300 | { | ||
2301 | name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; | ||
2302 | path = fetchurl { | ||
2303 | name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; | ||
2304 | url = "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz"; | ||
2305 | sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524"; | ||
2306 | }; | ||
2307 | } | ||
2308 | |||
2309 | { | ||
2310 | name = "browserify_sign___browserify_sign_4.0.4.tgz"; | ||
2311 | path = fetchurl { | ||
2312 | name = "browserify_sign___browserify_sign_4.0.4.tgz"; | ||
2313 | url = "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz"; | ||
2314 | sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"; | ||
2315 | }; | ||
2316 | } | ||
2317 | |||
2318 | { | ||
2319 | name = "browserify_zlib___browserify_zlib_0.2.0.tgz"; | ||
2320 | path = fetchurl { | ||
2321 | name = "browserify_zlib___browserify_zlib_0.2.0.tgz"; | ||
2322 | url = "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz"; | ||
2323 | sha1 = "2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"; | ||
2324 | }; | ||
2325 | } | ||
2326 | |||
2327 | { | ||
2328 | name = "browserslist___browserslist_4.6.2.tgz"; | ||
2329 | path = fetchurl { | ||
2330 | name = "browserslist___browserslist_4.6.2.tgz"; | ||
2331 | url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.2.tgz"; | ||
2332 | sha1 = "574c665950915c2ac73a4594b8537a9eba26203f"; | ||
2333 | }; | ||
2334 | } | ||
2335 | |||
2336 | { | ||
2337 | name = "bser___bser_2.0.0.tgz"; | ||
2338 | path = fetchurl { | ||
2339 | name = "bser___bser_2.0.0.tgz"; | ||
2340 | url = "https://registry.yarnpkg.com/bser/-/bser-2.0.0.tgz"; | ||
2341 | sha1 = "9ac78d3ed5d915804fd87acb158bc797147a1719"; | ||
2342 | }; | ||
2343 | } | ||
2344 | |||
2345 | { | ||
2346 | name = "buffer_from___buffer_from_1.1.1.tgz"; | ||
2347 | path = fetchurl { | ||
2348 | name = "buffer_from___buffer_from_1.1.1.tgz"; | ||
2349 | url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; | ||
2350 | sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; | ||
2351 | }; | ||
2352 | } | ||
2353 | |||
2354 | { | ||
2355 | name = "buffer_indexof___buffer_indexof_1.1.1.tgz"; | ||
2356 | path = fetchurl { | ||
2357 | name = "buffer_indexof___buffer_indexof_1.1.1.tgz"; | ||
2358 | url = "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz"; | ||
2359 | sha1 = "52fabcc6a606d1a00302802648ef68f639da268c"; | ||
2360 | }; | ||
2361 | } | ||
2362 | |||
2363 | { | ||
2364 | name = "buffer_writer___buffer_writer_1.0.1.tgz"; | ||
2365 | path = fetchurl { | ||
2366 | name = "buffer_writer___buffer_writer_1.0.1.tgz"; | ||
2367 | url = "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-1.0.1.tgz"; | ||
2368 | sha1 = "22a936901e3029afcd7547eb4487ceb697a3bf08"; | ||
2369 | }; | ||
2370 | } | ||
2371 | |||
2372 | { | ||
2373 | name = "buffer_xor___buffer_xor_1.0.3.tgz"; | ||
2374 | path = fetchurl { | ||
2375 | name = "buffer_xor___buffer_xor_1.0.3.tgz"; | ||
2376 | url = "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz"; | ||
2377 | sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9"; | ||
2378 | }; | ||
2379 | } | ||
2380 | |||
2381 | { | ||
2382 | name = "buffer___buffer_4.9.1.tgz"; | ||
2383 | path = fetchurl { | ||
2384 | name = "buffer___buffer_4.9.1.tgz"; | ||
2385 | url = "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz"; | ||
2386 | sha1 = "6d1bb601b07a4efced97094132093027c95bc298"; | ||
2387 | }; | ||
2388 | } | ||
2389 | |||
2390 | { | ||
2391 | name = "builtin_modules___builtin_modules_1.1.1.tgz"; | ||
2392 | path = fetchurl { | ||
2393 | name = "builtin_modules___builtin_modules_1.1.1.tgz"; | ||
2394 | url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz"; | ||
2395 | sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; | ||
2396 | }; | ||
2397 | } | ||
2398 | |||
2399 | { | ||
2400 | name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz"; | ||
2401 | path = fetchurl { | ||
2402 | name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz"; | ||
2403 | url = "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; | ||
2404 | sha1 = "85982878e21b98e1c66425e03d0174788f569ee8"; | ||
2405 | }; | ||
2406 | } | ||
2407 | |||
2408 | { | ||
2409 | name = "bytes___bytes_3.0.0.tgz"; | ||
2410 | path = fetchurl { | ||
2411 | name = "bytes___bytes_3.0.0.tgz"; | ||
2412 | url = "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz"; | ||
2413 | sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; | ||
2414 | }; | ||
2415 | } | ||
2416 | |||
2417 | { | ||
2418 | name = "bytes___bytes_3.1.0.tgz"; | ||
2419 | path = fetchurl { | ||
2420 | name = "bytes___bytes_3.1.0.tgz"; | ||
2421 | url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz"; | ||
2422 | sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6"; | ||
2423 | }; | ||
2424 | } | ||
2425 | |||
2426 | { | ||
2427 | name = "cacache___cacache_11.3.2.tgz"; | ||
2428 | path = fetchurl { | ||
2429 | name = "cacache___cacache_11.3.2.tgz"; | ||
2430 | url = "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz"; | ||
2431 | sha1 = "2d81e308e3d258ca38125b676b98b2ac9ce69bfa"; | ||
2432 | }; | ||
2433 | } | ||
2434 | |||
2435 | { | ||
2436 | name = "cache_base___cache_base_1.0.1.tgz"; | ||
2437 | path = fetchurl { | ||
2438 | name = "cache_base___cache_base_1.0.1.tgz"; | ||
2439 | url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; | ||
2440 | sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; | ||
2441 | }; | ||
2442 | } | ||
2443 | |||
2444 | { | ||
2445 | name = "caller_callsite___caller_callsite_2.0.0.tgz"; | ||
2446 | path = fetchurl { | ||
2447 | name = "caller_callsite___caller_callsite_2.0.0.tgz"; | ||
2448 | url = "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz"; | ||
2449 | sha1 = "847e0fce0a223750a9a027c54b33731ad3154134"; | ||
2450 | }; | ||
2451 | } | ||
2452 | |||
2453 | { | ||
2454 | name = "caller_path___caller_path_0.1.0.tgz"; | ||
2455 | path = fetchurl { | ||
2456 | name = "caller_path___caller_path_0.1.0.tgz"; | ||
2457 | url = "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz"; | ||
2458 | sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f"; | ||
2459 | }; | ||
2460 | } | ||
2461 | |||
2462 | { | ||
2463 | name = "caller_path___caller_path_2.0.0.tgz"; | ||
2464 | path = fetchurl { | ||
2465 | name = "caller_path___caller_path_2.0.0.tgz"; | ||
2466 | url = "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz"; | ||
2467 | sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4"; | ||
2468 | }; | ||
2469 | } | ||
2470 | |||
2471 | { | ||
2472 | name = "callsites___callsites_0.2.0.tgz"; | ||
2473 | path = fetchurl { | ||
2474 | name = "callsites___callsites_0.2.0.tgz"; | ||
2475 | url = "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz"; | ||
2476 | sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; | ||
2477 | }; | ||
2478 | } | ||
2479 | |||
2480 | { | ||
2481 | name = "callsites___callsites_2.0.0.tgz"; | ||
2482 | path = fetchurl { | ||
2483 | name = "callsites___callsites_2.0.0.tgz"; | ||
2484 | url = "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz"; | ||
2485 | sha1 = "06eb84f00eea413da86affefacbffb36093b3c50"; | ||
2486 | }; | ||
2487 | } | ||
2488 | |||
2489 | { | ||
2490 | name = "callsites___callsites_3.0.0.tgz"; | ||
2491 | path = fetchurl { | ||
2492 | name = "callsites___callsites_3.0.0.tgz"; | ||
2493 | url = "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz"; | ||
2494 | sha1 = "fb7eb569b72ad7a45812f93fd9430a3e410b3dd3"; | ||
2495 | }; | ||
2496 | } | ||
2497 | |||
2498 | { | ||
2499 | name = "camelcase___camelcase_5.0.0.tgz"; | ||
2500 | path = fetchurl { | ||
2501 | name = "camelcase___camelcase_5.0.0.tgz"; | ||
2502 | url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz"; | ||
2503 | sha1 = "03295527d58bd3cd4aa75363f35b2e8d97be2f42"; | ||
2504 | }; | ||
2505 | } | ||
2506 | |||
2507 | { | ||
2508 | name = "camelcase___camelcase_5.2.0.tgz"; | ||
2509 | path = fetchurl { | ||
2510 | name = "camelcase___camelcase_5.2.0.tgz"; | ||
2511 | url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.2.0.tgz"; | ||
2512 | sha1 = "e7522abda5ed94cc0489e1b8466610e88404cf45"; | ||
2513 | }; | ||
2514 | } | ||
2515 | |||
2516 | { | ||
2517 | name = "caniuse_api___caniuse_api_3.0.0.tgz"; | ||
2518 | path = fetchurl { | ||
2519 | name = "caniuse_api___caniuse_api_3.0.0.tgz"; | ||
2520 | url = "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz"; | ||
2521 | sha1 = "5e4d90e2274961d46291997df599e3ed008ee4c0"; | ||
2522 | }; | ||
2523 | } | ||
2524 | |||
2525 | { | ||
2526 | name = "caniuse_lite___caniuse_lite_1.0.30000974.tgz"; | ||
2527 | path = fetchurl { | ||
2528 | name = "caniuse_lite___caniuse_lite_1.0.30000974.tgz"; | ||
2529 | url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000974.tgz"; | ||
2530 | sha1 = "b7afe14ee004e97ce6dc73e3f878290a12928ad8"; | ||
2531 | }; | ||
2532 | } | ||
2533 | |||
2534 | { | ||
2535 | name = "capture_exit___capture_exit_1.2.0.tgz"; | ||
2536 | path = fetchurl { | ||
2537 | name = "capture_exit___capture_exit_1.2.0.tgz"; | ||
2538 | url = "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz"; | ||
2539 | sha1 = "1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f"; | ||
2540 | }; | ||
2541 | } | ||
2542 | |||
2543 | { | ||
2544 | name = "caseless___caseless_0.12.0.tgz"; | ||
2545 | path = fetchurl { | ||
2546 | name = "caseless___caseless_0.12.0.tgz"; | ||
2547 | url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; | ||
2548 | sha1 = "1b681c21ff84033c826543090689420d187151dc"; | ||
2549 | }; | ||
2550 | } | ||
2551 | |||
2552 | { | ||
2553 | name = "chalk___chalk_1.1.3.tgz"; | ||
2554 | path = fetchurl { | ||
2555 | name = "chalk___chalk_1.1.3.tgz"; | ||
2556 | url = "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz"; | ||
2557 | sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; | ||
2558 | }; | ||
2559 | } | ||
2560 | |||
2561 | { | ||
2562 | name = "chalk___chalk_2.4.2.tgz"; | ||
2563 | path = fetchurl { | ||
2564 | name = "chalk___chalk_2.4.2.tgz"; | ||
2565 | url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; | ||
2566 | sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; | ||
2567 | }; | ||
2568 | } | ||
2569 | |||
2570 | { | ||
2571 | name = "chardet___chardet_0.7.0.tgz"; | ||
2572 | path = fetchurl { | ||
2573 | name = "chardet___chardet_0.7.0.tgz"; | ||
2574 | url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; | ||
2575 | sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; | ||
2576 | }; | ||
2577 | } | ||
2578 | |||
2579 | { | ||
2580 | name = "check_types___check_types_7.4.0.tgz"; | ||
2581 | path = fetchurl { | ||
2582 | name = "check_types___check_types_7.4.0.tgz"; | ||
2583 | url = "https://registry.yarnpkg.com/check-types/-/check-types-7.4.0.tgz"; | ||
2584 | sha1 = "0378ec1b9616ec71f774931a3c6516fad8c152f4"; | ||
2585 | }; | ||
2586 | } | ||
2587 | |||
2588 | { | ||
2589 | name = "cheerio___cheerio_1.0.0_rc.2.tgz"; | ||
2590 | path = fetchurl { | ||
2591 | name = "cheerio___cheerio_1.0.0_rc.2.tgz"; | ||
2592 | url = "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.2.tgz"; | ||
2593 | sha1 = "4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db"; | ||
2594 | }; | ||
2595 | } | ||
2596 | |||
2597 | { | ||
2598 | name = "chokidar___chokidar_2.1.6.tgz"; | ||
2599 | path = fetchurl { | ||
2600 | name = "chokidar___chokidar_2.1.6.tgz"; | ||
2601 | url = "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz"; | ||
2602 | sha1 = "b6cad653a929e244ce8a834244164d241fa954c5"; | ||
2603 | }; | ||
2604 | } | ||
2605 | |||
2606 | { | ||
2607 | name = "chownr___chownr_1.1.1.tgz"; | ||
2608 | path = fetchurl { | ||
2609 | name = "chownr___chownr_1.1.1.tgz"; | ||
2610 | url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz"; | ||
2611 | sha1 = "54726b8b8fff4df053c42187e801fb4412df1494"; | ||
2612 | }; | ||
2613 | } | ||
2614 | |||
2615 | { | ||
2616 | name = "chrome_trace_event___chrome_trace_event_1.0.0.tgz"; | ||
2617 | path = fetchurl { | ||
2618 | name = "chrome_trace_event___chrome_trace_event_1.0.0.tgz"; | ||
2619 | url = "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz"; | ||
2620 | sha1 = "45a91bd2c20c9411f0963b5aaeb9a1b95e09cc48"; | ||
2621 | }; | ||
2622 | } | ||
2623 | |||
2624 | { | ||
2625 | name = "ci_info___ci_info_2.0.0.tgz"; | ||
2626 | path = fetchurl { | ||
2627 | name = "ci_info___ci_info_2.0.0.tgz"; | ||
2628 | url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz"; | ||
2629 | sha1 = "67a9e964be31a51e15e5010d58e6f12834002f46"; | ||
2630 | }; | ||
2631 | } | ||
2632 | |||
2633 | { | ||
2634 | name = "cipher_base___cipher_base_1.0.4.tgz"; | ||
2635 | path = fetchurl { | ||
2636 | name = "cipher_base___cipher_base_1.0.4.tgz"; | ||
2637 | url = "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz"; | ||
2638 | sha1 = "8760e4ecc272f4c363532f926d874aae2c1397de"; | ||
2639 | }; | ||
2640 | } | ||
2641 | |||
2642 | { | ||
2643 | name = "circular_json___circular_json_0.3.3.tgz"; | ||
2644 | path = fetchurl { | ||
2645 | name = "circular_json___circular_json_0.3.3.tgz"; | ||
2646 | url = "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz"; | ||
2647 | sha1 = "815c99ea84f6809529d2f45791bdf82711352d66"; | ||
2648 | }; | ||
2649 | } | ||
2650 | |||
2651 | { | ||
2652 | name = "class_utils___class_utils_0.3.6.tgz"; | ||
2653 | path = fetchurl { | ||
2654 | name = "class_utils___class_utils_0.3.6.tgz"; | ||
2655 | url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz"; | ||
2656 | sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463"; | ||
2657 | }; | ||
2658 | } | ||
2659 | |||
2660 | { | ||
2661 | name = "classnames___classnames_2.2.6.tgz"; | ||
2662 | path = fetchurl { | ||
2663 | name = "classnames___classnames_2.2.6.tgz"; | ||
2664 | url = "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz"; | ||
2665 | sha1 = "43935bffdd291f326dad0a205309b38d00f650ce"; | ||
2666 | }; | ||
2667 | } | ||
2668 | |||
2669 | { | ||
2670 | name = "cli_cursor___cli_cursor_1.0.2.tgz"; | ||
2671 | path = fetchurl { | ||
2672 | name = "cli_cursor___cli_cursor_1.0.2.tgz"; | ||
2673 | url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz"; | ||
2674 | sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987"; | ||
2675 | }; | ||
2676 | } | ||
2677 | |||
2678 | { | ||
2679 | name = "cli_cursor___cli_cursor_2.1.0.tgz"; | ||
2680 | path = fetchurl { | ||
2681 | name = "cli_cursor___cli_cursor_2.1.0.tgz"; | ||
2682 | url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; | ||
2683 | sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; | ||
2684 | }; | ||
2685 | } | ||
2686 | |||
2687 | { | ||
2688 | name = "cli_width___cli_width_2.2.0.tgz"; | ||
2689 | path = fetchurl { | ||
2690 | name = "cli_width___cli_width_2.2.0.tgz"; | ||
2691 | url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz"; | ||
2692 | sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; | ||
2693 | }; | ||
2694 | } | ||
2695 | |||
2696 | { | ||
2697 | name = "cliui___cliui_4.1.0.tgz"; | ||
2698 | path = fetchurl { | ||
2699 | name = "cliui___cliui_4.1.0.tgz"; | ||
2700 | url = "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz"; | ||
2701 | sha1 = "348422dbe82d800b3022eef4f6ac10bf2e4d1b49"; | ||
2702 | }; | ||
2703 | } | ||
2704 | |||
2705 | { | ||
2706 | name = "clone_deep___clone_deep_2.0.2.tgz"; | ||
2707 | path = fetchurl { | ||
2708 | name = "clone_deep___clone_deep_2.0.2.tgz"; | ||
2709 | url = "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz"; | ||
2710 | sha1 = "00db3a1e173656730d1188c3d6aced6d7ea97713"; | ||
2711 | }; | ||
2712 | } | ||
2713 | |||
2714 | { | ||
2715 | name = "co___co_4.6.0.tgz"; | ||
2716 | path = fetchurl { | ||
2717 | name = "co___co_4.6.0.tgz"; | ||
2718 | url = "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz"; | ||
2719 | sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; | ||
2720 | }; | ||
2721 | } | ||
2722 | |||
2723 | { | ||
2724 | name = "coa___coa_2.0.2.tgz"; | ||
2725 | path = fetchurl { | ||
2726 | name = "coa___coa_2.0.2.tgz"; | ||
2727 | url = "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz"; | ||
2728 | sha1 = "43f6c21151b4ef2bf57187db0d73de229e3e7ec3"; | ||
2729 | }; | ||
2730 | } | ||
2731 | |||
2732 | { | ||
2733 | name = "code_point_at___code_point_at_1.1.0.tgz"; | ||
2734 | path = fetchurl { | ||
2735 | name = "code_point_at___code_point_at_1.1.0.tgz"; | ||
2736 | url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz"; | ||
2737 | sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; | ||
2738 | }; | ||
2739 | } | ||
2740 | |||
2741 | { | ||
2742 | name = "collection_visit___collection_visit_1.0.0.tgz"; | ||
2743 | path = fetchurl { | ||
2744 | name = "collection_visit___collection_visit_1.0.0.tgz"; | ||
2745 | url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz"; | ||
2746 | sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; | ||
2747 | }; | ||
2748 | } | ||
2749 | |||
2750 | { | ||
2751 | name = "color_convert___color_convert_1.9.3.tgz"; | ||
2752 | path = fetchurl { | ||
2753 | name = "color_convert___color_convert_1.9.3.tgz"; | ||
2754 | url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; | ||
2755 | sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; | ||
2756 | }; | ||
2757 | } | ||
2758 | |||
2759 | { | ||
2760 | name = "color_name___color_name_1.1.3.tgz"; | ||
2761 | path = fetchurl { | ||
2762 | name = "color_name___color_name_1.1.3.tgz"; | ||
2763 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; | ||
2764 | sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; | ||
2765 | }; | ||
2766 | } | ||
2767 | |||
2768 | { | ||
2769 | name = "color_name___color_name_1.1.4.tgz"; | ||
2770 | path = fetchurl { | ||
2771 | name = "color_name___color_name_1.1.4.tgz"; | ||
2772 | url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; | ||
2773 | sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2"; | ||
2774 | }; | ||
2775 | } | ||
2776 | |||
2777 | { | ||
2778 | name = "color_string___color_string_1.5.3.tgz"; | ||
2779 | path = fetchurl { | ||
2780 | name = "color_string___color_string_1.5.3.tgz"; | ||
2781 | url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz"; | ||
2782 | sha1 = "c9bbc5f01b58b5492f3d6857459cb6590ce204cc"; | ||
2783 | }; | ||
2784 | } | ||
2785 | |||
2786 | { | ||
2787 | name = "color___color_3.1.0.tgz"; | ||
2788 | path = fetchurl { | ||
2789 | name = "color___color_3.1.0.tgz"; | ||
2790 | url = "https://registry.yarnpkg.com/color/-/color-3.1.0.tgz"; | ||
2791 | sha1 = "d8e9fb096732875774c84bf922815df0308d0ffc"; | ||
2792 | }; | ||
2793 | } | ||
2794 | |||
2795 | { | ||
2796 | name = "colors___colors_1.1.2.tgz"; | ||
2797 | path = fetchurl { | ||
2798 | name = "colors___colors_1.1.2.tgz"; | ||
2799 | url = "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz"; | ||
2800 | sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; | ||
2801 | }; | ||
2802 | } | ||
2803 | |||
2804 | { | ||
2805 | name = "combined_stream___combined_stream_1.0.7.tgz"; | ||
2806 | path = fetchurl { | ||
2807 | name = "combined_stream___combined_stream_1.0.7.tgz"; | ||
2808 | url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz"; | ||
2809 | sha1 = "2d1d24317afb8abe95d6d2c0b07b57813539d828"; | ||
2810 | }; | ||
2811 | } | ||
2812 | |||
2813 | { | ||
2814 | name = "commander___commander_2.20.0.tgz"; | ||
2815 | path = fetchurl { | ||
2816 | name = "commander___commander_2.20.0.tgz"; | ||
2817 | url = "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz"; | ||
2818 | sha1 = "d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"; | ||
2819 | }; | ||
2820 | } | ||
2821 | |||
2822 | { | ||
2823 | name = "commander___commander_2.17.1.tgz"; | ||
2824 | path = fetchurl { | ||
2825 | name = "commander___commander_2.17.1.tgz"; | ||
2826 | url = "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz"; | ||
2827 | sha1 = "bd77ab7de6de94205ceacc72f1716d29f20a77bf"; | ||
2828 | }; | ||
2829 | } | ||
2830 | |||
2831 | { | ||
2832 | name = "commondir___commondir_1.0.1.tgz"; | ||
2833 | path = fetchurl { | ||
2834 | name = "commondir___commondir_1.0.1.tgz"; | ||
2835 | url = "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz"; | ||
2836 | sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; | ||
2837 | }; | ||
2838 | } | ||
2839 | |||
2840 | { | ||
2841 | name = "component_emitter___component_emitter_1.2.1.tgz"; | ||
2842 | path = fetchurl { | ||
2843 | name = "component_emitter___component_emitter_1.2.1.tgz"; | ||
2844 | url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz"; | ||
2845 | sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; | ||
2846 | }; | ||
2847 | } | ||
2848 | |||
2849 | { | ||
2850 | name = "compressible___compressible_2.0.17.tgz"; | ||
2851 | path = fetchurl { | ||
2852 | name = "compressible___compressible_2.0.17.tgz"; | ||
2853 | url = "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz"; | ||
2854 | sha1 = "6e8c108a16ad58384a977f3a482ca20bff2f38c1"; | ||
2855 | }; | ||
2856 | } | ||
2857 | |||
2858 | { | ||
2859 | name = "compression_webpack_plugin___compression_webpack_plugin_2.0.0.tgz"; | ||
2860 | path = fetchurl { | ||
2861 | name = "compression_webpack_plugin___compression_webpack_plugin_2.0.0.tgz"; | ||
2862 | url = "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-2.0.0.tgz"; | ||
2863 | sha1 = "46476350c1eb27f783dccc79ac2f709baa2cffbc"; | ||
2864 | }; | ||
2865 | } | ||
2866 | |||
2867 | { | ||
2868 | name = "compression___compression_1.7.4.tgz"; | ||
2869 | path = fetchurl { | ||
2870 | name = "compression___compression_1.7.4.tgz"; | ||
2871 | url = "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz"; | ||
2872 | sha1 = "95523eff170ca57c29a0ca41e6fe131f41e5bb8f"; | ||
2873 | }; | ||
2874 | } | ||
2875 | |||
2876 | { | ||
2877 | name = "concat_map___concat_map_0.0.1.tgz"; | ||
2878 | path = fetchurl { | ||
2879 | name = "concat_map___concat_map_0.0.1.tgz"; | ||
2880 | url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; | ||
2881 | sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; | ||
2882 | }; | ||
2883 | } | ||
2884 | |||
2885 | { | ||
2886 | name = "concat_stream___concat_stream_1.6.2.tgz"; | ||
2887 | path = fetchurl { | ||
2888 | name = "concat_stream___concat_stream_1.6.2.tgz"; | ||
2889 | url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; | ||
2890 | sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; | ||
2891 | }; | ||
2892 | } | ||
2893 | |||
2894 | { | ||
2895 | name = "connect_history_api_fallback___connect_history_api_fallback_1.6.0.tgz"; | ||
2896 | path = fetchurl { | ||
2897 | name = "connect_history_api_fallback___connect_history_api_fallback_1.6.0.tgz"; | ||
2898 | url = "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz"; | ||
2899 | sha1 = "8b32089359308d111115d81cad3fceab888f97bc"; | ||
2900 | }; | ||
2901 | } | ||
2902 | |||
2903 | { | ||
2904 | name = "console_browserify___console_browserify_1.1.0.tgz"; | ||
2905 | path = fetchurl { | ||
2906 | name = "console_browserify___console_browserify_1.1.0.tgz"; | ||
2907 | url = "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz"; | ||
2908 | sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10"; | ||
2909 | }; | ||
2910 | } | ||
2911 | |||
2912 | { | ||
2913 | name = "console_control_strings___console_control_strings_1.1.0.tgz"; | ||
2914 | path = fetchurl { | ||
2915 | name = "console_control_strings___console_control_strings_1.1.0.tgz"; | ||
2916 | url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz"; | ||
2917 | sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; | ||
2918 | }; | ||
2919 | } | ||
2920 | |||
2921 | { | ||
2922 | name = "constants_browserify___constants_browserify_1.0.0.tgz"; | ||
2923 | path = fetchurl { | ||
2924 | name = "constants_browserify___constants_browserify_1.0.0.tgz"; | ||
2925 | url = "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz"; | ||
2926 | sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; | ||
2927 | }; | ||
2928 | } | ||
2929 | |||
2930 | { | ||
2931 | name = "contains_path___contains_path_0.1.0.tgz"; | ||
2932 | path = fetchurl { | ||
2933 | name = "contains_path___contains_path_0.1.0.tgz"; | ||
2934 | url = "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz"; | ||
2935 | sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a"; | ||
2936 | }; | ||
2937 | } | ||
2938 | |||
2939 | { | ||
2940 | name = "content_disposition___content_disposition_0.5.3.tgz"; | ||
2941 | path = fetchurl { | ||
2942 | name = "content_disposition___content_disposition_0.5.3.tgz"; | ||
2943 | url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz"; | ||
2944 | sha1 = "e130caf7e7279087c5616c2007d0485698984fbd"; | ||
2945 | }; | ||
2946 | } | ||
2947 | |||
2948 | { | ||
2949 | name = "content_type___content_type_1.0.4.tgz"; | ||
2950 | path = fetchurl { | ||
2951 | name = "content_type___content_type_1.0.4.tgz"; | ||
2952 | url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz"; | ||
2953 | sha1 = "e138cc75e040c727b1966fe5e5f8c9aee256fe3b"; | ||
2954 | }; | ||
2955 | } | ||
2956 | |||
2957 | { | ||
2958 | name = "convert_source_map___convert_source_map_1.6.0.tgz"; | ||
2959 | path = fetchurl { | ||
2960 | name = "convert_source_map___convert_source_map_1.6.0.tgz"; | ||
2961 | url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz"; | ||
2962 | sha1 = "51b537a8c43e0f04dec1993bffcdd504e758ac20"; | ||
2963 | }; | ||
2964 | } | ||
2965 | |||
2966 | { | ||
2967 | name = "cookie_signature___cookie_signature_1.0.6.tgz"; | ||
2968 | path = fetchurl { | ||
2969 | name = "cookie_signature___cookie_signature_1.0.6.tgz"; | ||
2970 | url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz"; | ||
2971 | sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; | ||
2972 | }; | ||
2973 | } | ||
2974 | |||
2975 | { | ||
2976 | name = "cookie___cookie_0.4.0.tgz"; | ||
2977 | path = fetchurl { | ||
2978 | name = "cookie___cookie_0.4.0.tgz"; | ||
2979 | url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz"; | ||
2980 | sha1 = "beb437e7022b3b6d49019d088665303ebe9c14ba"; | ||
2981 | }; | ||
2982 | } | ||
2983 | |||
2984 | { | ||
2985 | name = "copy_concurrently___copy_concurrently_1.0.5.tgz"; | ||
2986 | path = fetchurl { | ||
2987 | name = "copy_concurrently___copy_concurrently_1.0.5.tgz"; | ||
2988 | url = "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz"; | ||
2989 | sha1 = "92297398cae34937fcafd6ec8139c18051f0b5e0"; | ||
2990 | }; | ||
2991 | } | ||
2992 | |||
2993 | { | ||
2994 | name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; | ||
2995 | path = fetchurl { | ||
2996 | name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; | ||
2997 | url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; | ||
2998 | sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; | ||
2999 | }; | ||
3000 | } | ||
3001 | |||
3002 | { | ||
3003 | name = "core_js_compat___core_js_compat_3.1.3.tgz"; | ||
3004 | path = fetchurl { | ||
3005 | name = "core_js_compat___core_js_compat_3.1.3.tgz"; | ||
3006 | url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.3.tgz"; | ||
3007 | sha1 = "0cc3ba4c7f62928c2837e1cffbe8dc78b4f1ae14"; | ||
3008 | }; | ||
3009 | } | ||
3010 | |||
3011 | { | ||
3012 | name = "core_js_pure___core_js_pure_3.1.3.tgz"; | ||
3013 | path = fetchurl { | ||
3014 | name = "core_js_pure___core_js_pure_3.1.3.tgz"; | ||
3015 | url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.3.tgz"; | ||
3016 | sha1 = "4c90752d5b9471f641514f3728f51c1e0783d0b5"; | ||
3017 | }; | ||
3018 | } | ||
3019 | |||
3020 | { | ||
3021 | name = "core_js___core_js_1.2.7.tgz"; | ||
3022 | path = fetchurl { | ||
3023 | name = "core_js___core_js_1.2.7.tgz"; | ||
3024 | url = "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz"; | ||
3025 | sha1 = "652294c14651db28fa93bd2d5ff2983a4f08c636"; | ||
3026 | }; | ||
3027 | } | ||
3028 | |||
3029 | { | ||
3030 | name = "core_js___core_js_2.6.1.tgz"; | ||
3031 | path = fetchurl { | ||
3032 | name = "core_js___core_js_2.6.1.tgz"; | ||
3033 | url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.1.tgz"; | ||
3034 | sha1 = "87416ae817de957a3f249b3b5ca475d4aaed6042"; | ||
3035 | }; | ||
3036 | } | ||
3037 | |||
3038 | { | ||
3039 | name = "core_util_is___core_util_is_1.0.2.tgz"; | ||
3040 | path = fetchurl { | ||
3041 | name = "core_util_is___core_util_is_1.0.2.tgz"; | ||
3042 | url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; | ||
3043 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; | ||
3044 | }; | ||
3045 | } | ||
3046 | |||
3047 | { | ||
3048 | name = "cosmiconfig___cosmiconfig_4.0.0.tgz"; | ||
3049 | path = fetchurl { | ||
3050 | name = "cosmiconfig___cosmiconfig_4.0.0.tgz"; | ||
3051 | url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-4.0.0.tgz"; | ||
3052 | sha1 = "760391549580bbd2df1e562bc177b13c290972dc"; | ||
3053 | }; | ||
3054 | } | ||
3055 | |||
3056 | { | ||
3057 | name = "cosmiconfig___cosmiconfig_5.0.7.tgz"; | ||
3058 | path = fetchurl { | ||
3059 | name = "cosmiconfig___cosmiconfig_5.0.7.tgz"; | ||
3060 | url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz"; | ||
3061 | sha1 = "39826b292ee0d78eda137dfa3173bd1c21a43b04"; | ||
3062 | }; | ||
3063 | } | ||
3064 | |||
3065 | { | ||
3066 | name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; | ||
3067 | path = fetchurl { | ||
3068 | name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; | ||
3069 | url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz"; | ||
3070 | sha1 = "040f726809c591e77a17c0a3626ca45b4f168b1a"; | ||
3071 | }; | ||
3072 | } | ||
3073 | |||
3074 | { | ||
3075 | name = "create_ecdh___create_ecdh_4.0.3.tgz"; | ||
3076 | path = fetchurl { | ||
3077 | name = "create_ecdh___create_ecdh_4.0.3.tgz"; | ||
3078 | url = "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz"; | ||
3079 | sha1 = "c9111b6f33045c4697f144787f9254cdc77c45ff"; | ||
3080 | }; | ||
3081 | } | ||
3082 | |||
3083 | { | ||
3084 | name = "create_emotion___create_emotion_9.2.12.tgz"; | ||
3085 | path = fetchurl { | ||
3086 | name = "create_emotion___create_emotion_9.2.12.tgz"; | ||
3087 | url = "https://registry.yarnpkg.com/create-emotion/-/create-emotion-9.2.12.tgz"; | ||
3088 | sha1 = "0fc8e7f92c4f8bb924b0fef6781f66b1d07cb26f"; | ||
3089 | }; | ||
3090 | } | ||
3091 | |||
3092 | { | ||
3093 | name = "create_hash___create_hash_1.2.0.tgz"; | ||
3094 | path = fetchurl { | ||
3095 | name = "create_hash___create_hash_1.2.0.tgz"; | ||
3096 | url = "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz"; | ||
3097 | sha1 = "889078af11a63756bcfb59bd221996be3a9ef196"; | ||
3098 | }; | ||
3099 | } | ||
3100 | |||
3101 | { | ||
3102 | name = "create_hmac___create_hmac_1.1.7.tgz"; | ||
3103 | path = fetchurl { | ||
3104 | name = "create_hmac___create_hmac_1.1.7.tgz"; | ||
3105 | url = "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz"; | ||
3106 | sha1 = "69170c78b3ab957147b2b8b04572e47ead2243ff"; | ||
3107 | }; | ||
3108 | } | ||
3109 | |||
3110 | { | ||
3111 | name = "cross_env___cross_env_5.2.0.tgz"; | ||
3112 | path = fetchurl { | ||
3113 | name = "cross_env___cross_env_5.2.0.tgz"; | ||
3114 | url = "https://registry.yarnpkg.com/cross-env/-/cross-env-5.2.0.tgz"; | ||
3115 | sha1 = "6ecd4c015d5773e614039ee529076669b9d126f2"; | ||
3116 | }; | ||
3117 | } | ||
3118 | |||
3119 | { | ||
3120 | name = "cross_spawn___cross_spawn_6.0.5.tgz"; | ||
3121 | path = fetchurl { | ||
3122 | name = "cross_spawn___cross_spawn_6.0.5.tgz"; | ||
3123 | url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; | ||
3124 | sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; | ||
3125 | }; | ||
3126 | } | ||
3127 | |||
3128 | { | ||
3129 | name = "crypto_browserify___crypto_browserify_3.12.0.tgz"; | ||
3130 | path = fetchurl { | ||
3131 | name = "crypto_browserify___crypto_browserify_3.12.0.tgz"; | ||
3132 | url = "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz"; | ||
3133 | sha1 = "396cf9f3137f03e4b8e532c58f698254e00f80ec"; | ||
3134 | }; | ||
3135 | } | ||
3136 | |||
3137 | { | ||
3138 | name = "css_color_names___css_color_names_0.0.4.tgz"; | ||
3139 | path = fetchurl { | ||
3140 | name = "css_color_names___css_color_names_0.0.4.tgz"; | ||
3141 | url = "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz"; | ||
3142 | sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0"; | ||
3143 | }; | ||
3144 | } | ||
3145 | |||
3146 | { | ||
3147 | name = "css_declaration_sorter___css_declaration_sorter_4.0.1.tgz"; | ||
3148 | path = fetchurl { | ||
3149 | name = "css_declaration_sorter___css_declaration_sorter_4.0.1.tgz"; | ||
3150 | url = "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz"; | ||
3151 | sha1 = "c198940f63a76d7e36c1e71018b001721054cb22"; | ||
3152 | }; | ||
3153 | } | ||
3154 | |||
3155 | { | ||
3156 | name = "css_font_size_keywords___css_font_size_keywords_1.0.0.tgz"; | ||
3157 | path = fetchurl { | ||
3158 | name = "css_font_size_keywords___css_font_size_keywords_1.0.0.tgz"; | ||
3159 | url = "https://registry.yarnpkg.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz"; | ||
3160 | sha1 = "854875ace9aca6a8d2ee0d345a44aae9bb6db6cb"; | ||
3161 | }; | ||
3162 | } | ||
3163 | |||
3164 | { | ||
3165 | name = "css_font_stretch_keywords___css_font_stretch_keywords_1.0.1.tgz"; | ||
3166 | path = fetchurl { | ||
3167 | name = "css_font_stretch_keywords___css_font_stretch_keywords_1.0.1.tgz"; | ||
3168 | url = "https://registry.yarnpkg.com/css-font-stretch-keywords/-/css-font-stretch-keywords-1.0.1.tgz"; | ||
3169 | sha1 = "50cee9b9ba031fb5c952d4723139f1e107b54b10"; | ||
3170 | }; | ||
3171 | } | ||
3172 | |||
3173 | { | ||
3174 | name = "css_font_style_keywords___css_font_style_keywords_1.0.1.tgz"; | ||
3175 | path = fetchurl { | ||
3176 | name = "css_font_style_keywords___css_font_style_keywords_1.0.1.tgz"; | ||
3177 | url = "https://registry.yarnpkg.com/css-font-style-keywords/-/css-font-style-keywords-1.0.1.tgz"; | ||
3178 | sha1 = "5c3532813f63b4a1de954d13cea86ab4333409e4"; | ||
3179 | }; | ||
3180 | } | ||
3181 | |||
3182 | { | ||
3183 | name = "css_font_weight_keywords___css_font_weight_keywords_1.0.0.tgz"; | ||
3184 | path = fetchurl { | ||
3185 | name = "css_font_weight_keywords___css_font_weight_keywords_1.0.0.tgz"; | ||
3186 | url = "https://registry.yarnpkg.com/css-font-weight-keywords/-/css-font-weight-keywords-1.0.0.tgz"; | ||
3187 | sha1 = "9bc04671ac85bc724b574ef5d3ac96b0d604fd97"; | ||
3188 | }; | ||
3189 | } | ||
3190 | |||
3191 | { | ||
3192 | name = "css_global_keywords___css_global_keywords_1.0.1.tgz"; | ||
3193 | path = fetchurl { | ||
3194 | name = "css_global_keywords___css_global_keywords_1.0.1.tgz"; | ||
3195 | url = "https://registry.yarnpkg.com/css-global-keywords/-/css-global-keywords-1.0.1.tgz"; | ||
3196 | sha1 = "72a9aea72796d019b1d2a3252de4e5aaa37e4a69"; | ||
3197 | }; | ||
3198 | } | ||
3199 | |||
3200 | { | ||
3201 | name = "css_list_helpers___css_list_helpers_1.0.1.tgz"; | ||
3202 | path = fetchurl { | ||
3203 | name = "css_list_helpers___css_list_helpers_1.0.1.tgz"; | ||
3204 | url = "https://registry.yarnpkg.com/css-list-helpers/-/css-list-helpers-1.0.1.tgz"; | ||
3205 | sha1 = "fff57192202db83240c41686f919e449a7024f7d"; | ||
3206 | }; | ||
3207 | } | ||
3208 | |||
3209 | { | ||
3210 | name = "css_loader___css_loader_2.1.1.tgz"; | ||
3211 | path = fetchurl { | ||
3212 | name = "css_loader___css_loader_2.1.1.tgz"; | ||
3213 | url = "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz"; | ||
3214 | sha1 = "d8254f72e412bb2238bb44dd674ffbef497333ea"; | ||
3215 | }; | ||
3216 | } | ||
3217 | |||
3218 | { | ||
3219 | name = "css_select_base_adapter___css_select_base_adapter_0.1.1.tgz"; | ||
3220 | path = fetchurl { | ||
3221 | name = "css_select_base_adapter___css_select_base_adapter_0.1.1.tgz"; | ||
3222 | url = "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz"; | ||
3223 | sha1 = "3b2ff4972cc362ab88561507a95408a1432135d7"; | ||
3224 | }; | ||
3225 | } | ||
3226 | |||
3227 | { | ||
3228 | name = "css_select___css_select_2.0.2.tgz"; | ||
3229 | path = fetchurl { | ||
3230 | name = "css_select___css_select_2.0.2.tgz"; | ||
3231 | url = "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz"; | ||
3232 | sha1 = "ab4386cec9e1f668855564b17c3733b43b2a5ede"; | ||
3233 | }; | ||
3234 | } | ||
3235 | |||
3236 | { | ||
3237 | name = "css_select___css_select_1.2.0.tgz"; | ||
3238 | path = fetchurl { | ||
3239 | name = "css_select___css_select_1.2.0.tgz"; | ||
3240 | url = "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz"; | ||
3241 | sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858"; | ||
3242 | }; | ||
3243 | } | ||
3244 | |||
3245 | { | ||
3246 | name = "css_system_font_keywords___css_system_font_keywords_1.0.0.tgz"; | ||
3247 | path = fetchurl { | ||
3248 | name = "css_system_font_keywords___css_system_font_keywords_1.0.0.tgz"; | ||
3249 | url = "https://registry.yarnpkg.com/css-system-font-keywords/-/css-system-font-keywords-1.0.0.tgz"; | ||
3250 | sha1 = "85c6f086aba4eb32c571a3086affc434b84823ed"; | ||
3251 | }; | ||
3252 | } | ||
3253 | |||
3254 | { | ||
3255 | name = "css_tree___css_tree_1.0.0_alpha.28.tgz"; | ||
3256 | path = fetchurl { | ||
3257 | name = "css_tree___css_tree_1.0.0_alpha.28.tgz"; | ||
3258 | url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz"; | ||
3259 | sha1 = "8e8968190d886c9477bc8d61e96f61af3f7ffa7f"; | ||
3260 | }; | ||
3261 | } | ||
3262 | |||
3263 | { | ||
3264 | name = "css_tree___css_tree_1.0.0_alpha.29.tgz"; | ||
3265 | path = fetchurl { | ||
3266 | name = "css_tree___css_tree_1.0.0_alpha.29.tgz"; | ||
3267 | url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz"; | ||
3268 | sha1 = "3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"; | ||
3269 | }; | ||
3270 | } | ||
3271 | |||
3272 | { | ||
3273 | name = "css_unit_converter___css_unit_converter_1.1.1.tgz"; | ||
3274 | path = fetchurl { | ||
3275 | name = "css_unit_converter___css_unit_converter_1.1.1.tgz"; | ||
3276 | url = "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz"; | ||
3277 | sha1 = "d9b9281adcfd8ced935bdbaba83786897f64e996"; | ||
3278 | }; | ||
3279 | } | ||
3280 | |||
3281 | { | ||
3282 | name = "css_url_regex___css_url_regex_1.1.0.tgz"; | ||
3283 | path = fetchurl { | ||
3284 | name = "css_url_regex___css_url_regex_1.1.0.tgz"; | ||
3285 | url = "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz"; | ||
3286 | sha1 = "83834230cc9f74c457de59eebd1543feeb83b7ec"; | ||
3287 | }; | ||
3288 | } | ||
3289 | |||
3290 | { | ||
3291 | name = "css_what___css_what_2.1.2.tgz"; | ||
3292 | path = fetchurl { | ||
3293 | name = "css_what___css_what_2.1.2.tgz"; | ||
3294 | url = "https://registry.yarnpkg.com/css-what/-/css-what-2.1.2.tgz"; | ||
3295 | sha1 = "c0876d9d0480927d7d4920dcd72af3595649554d"; | ||
3296 | }; | ||
3297 | } | ||
3298 | |||
3299 | { | ||
3300 | name = "cssesc___cssesc_2.0.0.tgz"; | ||
3301 | path = fetchurl { | ||
3302 | name = "cssesc___cssesc_2.0.0.tgz"; | ||
3303 | url = "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz"; | ||
3304 | sha1 = "3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"; | ||
3305 | }; | ||
3306 | } | ||
3307 | |||
3308 | { | ||
3309 | name = "cssesc___cssesc_3.0.0.tgz"; | ||
3310 | path = fetchurl { | ||
3311 | name = "cssesc___cssesc_3.0.0.tgz"; | ||
3312 | url = "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz"; | ||
3313 | sha1 = "37741919903b868565e1c09ea747445cd18983ee"; | ||
3314 | }; | ||
3315 | } | ||
3316 | |||
3317 | { | ||
3318 | name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz"; | ||
3319 | path = fetchurl { | ||
3320 | name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz"; | ||
3321 | url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz"; | ||
3322 | sha1 = "51ec662ccfca0f88b396dcd9679cdb931be17f76"; | ||
3323 | }; | ||
3324 | } | ||
3325 | |||
3326 | { | ||
3327 | name = "cssnano_util_get_arguments___cssnano_util_get_arguments_4.0.0.tgz"; | ||
3328 | path = fetchurl { | ||
3329 | name = "cssnano_util_get_arguments___cssnano_util_get_arguments_4.0.0.tgz"; | ||
3330 | url = "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz"; | ||
3331 | sha1 = "ed3a08299f21d75741b20f3b81f194ed49cc150f"; | ||
3332 | }; | ||
3333 | } | ||
3334 | |||
3335 | { | ||
3336 | name = "cssnano_util_get_match___cssnano_util_get_match_4.0.0.tgz"; | ||
3337 | path = fetchurl { | ||
3338 | name = "cssnano_util_get_match___cssnano_util_get_match_4.0.0.tgz"; | ||
3339 | url = "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz"; | ||
3340 | sha1 = "c0e4ca07f5386bb17ec5e52250b4f5961365156d"; | ||
3341 | }; | ||
3342 | } | ||
3343 | |||
3344 | { | ||
3345 | name = "cssnano_util_raw_cache___cssnano_util_raw_cache_4.0.1.tgz"; | ||
3346 | path = fetchurl { | ||
3347 | name = "cssnano_util_raw_cache___cssnano_util_raw_cache_4.0.1.tgz"; | ||
3348 | url = "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz"; | ||
3349 | sha1 = "b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"; | ||
3350 | }; | ||
3351 | } | ||
3352 | |||
3353 | { | ||
3354 | name = "cssnano_util_same_parent___cssnano_util_same_parent_4.0.1.tgz"; | ||
3355 | path = fetchurl { | ||
3356 | name = "cssnano_util_same_parent___cssnano_util_same_parent_4.0.1.tgz"; | ||
3357 | url = "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz"; | ||
3358 | sha1 = "574082fb2859d2db433855835d9a8456ea18bbf3"; | ||
3359 | }; | ||
3360 | } | ||
3361 | |||
3362 | { | ||
3363 | name = "cssnano___cssnano_4.1.10.tgz"; | ||
3364 | path = fetchurl { | ||
3365 | name = "cssnano___cssnano_4.1.10.tgz"; | ||
3366 | url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz"; | ||
3367 | sha1 = "0ac41f0b13d13d465487e111b778d42da631b8b2"; | ||
3368 | }; | ||
3369 | } | ||
3370 | |||
3371 | { | ||
3372 | name = "csso___csso_3.5.1.tgz"; | ||
3373 | path = fetchurl { | ||
3374 | name = "csso___csso_3.5.1.tgz"; | ||
3375 | url = "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz"; | ||
3376 | sha1 = "7b9eb8be61628973c1b261e169d2f024008e758b"; | ||
3377 | }; | ||
3378 | } | ||
3379 | |||
3380 | { | ||
3381 | name = "cssom___cssom_0.3.4.tgz"; | ||
3382 | path = fetchurl { | ||
3383 | name = "cssom___cssom_0.3.4.tgz"; | ||
3384 | url = "https://registry.yarnpkg.com/cssom/-/cssom-0.3.4.tgz"; | ||
3385 | sha1 = "8cd52e8a3acfd68d3aed38ee0a640177d2f9d797"; | ||
3386 | }; | ||
3387 | } | ||
3388 | |||
3389 | { | ||
3390 | name = "cssstyle___cssstyle_1.1.1.tgz"; | ||
3391 | path = fetchurl { | ||
3392 | name = "cssstyle___cssstyle_1.1.1.tgz"; | ||
3393 | url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz"; | ||
3394 | sha1 = "18b038a9c44d65f7a8e428a653b9f6fe42faf5fb"; | ||
3395 | }; | ||
3396 | } | ||
3397 | |||
3398 | { | ||
3399 | name = "csstype___csstype_2.6.0.tgz"; | ||
3400 | path = fetchurl { | ||
3401 | name = "csstype___csstype_2.6.0.tgz"; | ||
3402 | url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.0.tgz"; | ||
3403 | sha1 = "6cf7b2fa7fc32aab3d746802c244d4eda71371a2"; | ||
3404 | }; | ||
3405 | } | ||
3406 | |||
3407 | { | ||
3408 | name = "csstype___csstype_2.6.5.tgz"; | ||
3409 | path = fetchurl { | ||
3410 | name = "csstype___csstype_2.6.5.tgz"; | ||
3411 | url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.5.tgz"; | ||
3412 | sha1 = "1cd1dff742ebf4d7c991470ae71e12bb6751e034"; | ||
3413 | }; | ||
3414 | } | ||
3415 | |||
3416 | { | ||
3417 | name = "cyclist___cyclist_0.2.2.tgz"; | ||
3418 | path = fetchurl { | ||
3419 | name = "cyclist___cyclist_0.2.2.tgz"; | ||
3420 | url = "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz"; | ||
3421 | sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640"; | ||
3422 | }; | ||
3423 | } | ||
3424 | |||
3425 | { | ||
3426 | name = "d___d_1.0.0.tgz"; | ||
3427 | path = fetchurl { | ||
3428 | name = "d___d_1.0.0.tgz"; | ||
3429 | url = "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz"; | ||
3430 | sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f"; | ||
3431 | }; | ||
3432 | } | ||
3433 | |||
3434 | { | ||
3435 | name = "damerau_levenshtein___damerau_levenshtein_1.0.4.tgz"; | ||
3436 | path = fetchurl { | ||
3437 | name = "damerau_levenshtein___damerau_levenshtein_1.0.4.tgz"; | ||
3438 | url = "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz"; | ||
3439 | sha1 = "03191c432cb6eea168bb77f3a55ffdccb8978514"; | ||
3440 | }; | ||
3441 | } | ||
3442 | |||
3443 | { | ||
3444 | name = "dashdash___dashdash_1.14.1.tgz"; | ||
3445 | path = fetchurl { | ||
3446 | name = "dashdash___dashdash_1.14.1.tgz"; | ||
3447 | url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz"; | ||
3448 | sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; | ||
3449 | }; | ||
3450 | } | ||
3451 | |||
3452 | { | ||
3453 | name = "data_urls___data_urls_1.1.0.tgz"; | ||
3454 | path = fetchurl { | ||
3455 | name = "data_urls___data_urls_1.1.0.tgz"; | ||
3456 | url = "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz"; | ||
3457 | sha1 = "15ee0582baa5e22bb59c77140da8f9c76963bbfe"; | ||
3458 | }; | ||
3459 | } | ||
3460 | |||
3461 | { | ||
3462 | name = "date_now___date_now_0.1.4.tgz"; | ||
3463 | path = fetchurl { | ||
3464 | name = "date_now___date_now_0.1.4.tgz"; | ||
3465 | url = "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz"; | ||
3466 | sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b"; | ||
3467 | }; | ||
3468 | } | ||
3469 | |||
3470 | { | ||
3471 | name = "debug___debug_2.6.9.tgz"; | ||
3472 | path = fetchurl { | ||
3473 | name = "debug___debug_2.6.9.tgz"; | ||
3474 | url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; | ||
3475 | sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; | ||
3476 | }; | ||
3477 | } | ||
3478 | |||
3479 | { | ||
3480 | name = "debug___debug_3.1.0.tgz"; | ||
3481 | path = fetchurl { | ||
3482 | name = "debug___debug_3.1.0.tgz"; | ||
3483 | url = "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz"; | ||
3484 | sha1 = "5bb5a0672628b64149566ba16819e61518c67261"; | ||
3485 | }; | ||
3486 | } | ||
3487 | |||
3488 | { | ||
3489 | name = "debug___debug_3.2.6.tgz"; | ||
3490 | path = fetchurl { | ||
3491 | name = "debug___debug_3.2.6.tgz"; | ||
3492 | url = "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz"; | ||
3493 | sha1 = "e83d17de16d8a7efb7717edbe5fb10135eee629b"; | ||
3494 | }; | ||
3495 | } | ||
3496 | |||
3497 | { | ||
3498 | name = "debug___debug_4.1.1.tgz"; | ||
3499 | path = fetchurl { | ||
3500 | name = "debug___debug_4.1.1.tgz"; | ||
3501 | url = "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz"; | ||
3502 | sha1 = "3b72260255109c6b589cee050f1d516139664791"; | ||
3503 | }; | ||
3504 | } | ||
3505 | |||
3506 | { | ||
3507 | name = "decamelize___decamelize_1.2.0.tgz"; | ||
3508 | path = fetchurl { | ||
3509 | name = "decamelize___decamelize_1.2.0.tgz"; | ||
3510 | url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz"; | ||
3511 | sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; | ||
3512 | }; | ||
3513 | } | ||
3514 | |||
3515 | { | ||
3516 | name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; | ||
3517 | path = fetchurl { | ||
3518 | name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; | ||
3519 | url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; | ||
3520 | sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; | ||
3521 | }; | ||
3522 | } | ||
3523 | |||
3524 | { | ||
3525 | name = "deep_equal___deep_equal_1.0.1.tgz"; | ||
3526 | path = fetchurl { | ||
3527 | name = "deep_equal___deep_equal_1.0.1.tgz"; | ||
3528 | url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz"; | ||
3529 | sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; | ||
3530 | }; | ||
3531 | } | ||
3532 | |||
3533 | { | ||
3534 | name = "deep_extend___deep_extend_0.5.1.tgz"; | ||
3535 | path = fetchurl { | ||
3536 | name = "deep_extend___deep_extend_0.5.1.tgz"; | ||
3537 | url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz"; | ||
3538 | sha1 = "b894a9dd90d3023fbf1c55a394fb858eb2066f1f"; | ||
3539 | }; | ||
3540 | } | ||
3541 | |||
3542 | { | ||
3543 | name = "deep_extend___deep_extend_0.6.0.tgz"; | ||
3544 | path = fetchurl { | ||
3545 | name = "deep_extend___deep_extend_0.6.0.tgz"; | ||
3546 | url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz"; | ||
3547 | sha1 = "c4fa7c95404a17a9c3e8ca7e1537312b736330ac"; | ||
3548 | }; | ||
3549 | } | ||
3550 | |||
3551 | { | ||
3552 | name = "deep_is___deep_is_0.1.3.tgz"; | ||
3553 | path = fetchurl { | ||
3554 | name = "deep_is___deep_is_0.1.3.tgz"; | ||
3555 | url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; | ||
3556 | sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; | ||
3557 | }; | ||
3558 | } | ||
3559 | |||
3560 | { | ||
3561 | name = "default_gateway___default_gateway_4.2.0.tgz"; | ||
3562 | path = fetchurl { | ||
3563 | name = "default_gateway___default_gateway_4.2.0.tgz"; | ||
3564 | url = "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz"; | ||
3565 | sha1 = "167104c7500c2115f6dd69b0a536bb8ed720552b"; | ||
3566 | }; | ||
3567 | } | ||
3568 | |||
3569 | { | ||
3570 | name = "define_properties___define_properties_1.1.3.tgz"; | ||
3571 | path = fetchurl { | ||
3572 | name = "define_properties___define_properties_1.1.3.tgz"; | ||
3573 | url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; | ||
3574 | sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1"; | ||
3575 | }; | ||
3576 | } | ||
3577 | |||
3578 | { | ||
3579 | name = "define_property___define_property_0.2.5.tgz"; | ||
3580 | path = fetchurl { | ||
3581 | name = "define_property___define_property_0.2.5.tgz"; | ||
3582 | url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz"; | ||
3583 | sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; | ||
3584 | }; | ||
3585 | } | ||
3586 | |||
3587 | { | ||
3588 | name = "define_property___define_property_1.0.0.tgz"; | ||
3589 | path = fetchurl { | ||
3590 | name = "define_property___define_property_1.0.0.tgz"; | ||
3591 | url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz"; | ||
3592 | sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; | ||
3593 | }; | ||
3594 | } | ||
3595 | |||
3596 | { | ||
3597 | name = "define_property___define_property_2.0.2.tgz"; | ||
3598 | path = fetchurl { | ||
3599 | name = "define_property___define_property_2.0.2.tgz"; | ||
3600 | url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz"; | ||
3601 | sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d"; | ||
3602 | }; | ||
3603 | } | ||
3604 | |||
3605 | { | ||
3606 | name = "del___del_4.1.1.tgz"; | ||
3607 | path = fetchurl { | ||
3608 | name = "del___del_4.1.1.tgz"; | ||
3609 | url = "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz"; | ||
3610 | sha1 = "9e8f117222ea44a31ff3a156c049b99052a9f0b4"; | ||
3611 | }; | ||
3612 | } | ||
3613 | |||
3614 | { | ||
3615 | name = "delayed_stream___delayed_stream_1.0.0.tgz"; | ||
3616 | path = fetchurl { | ||
3617 | name = "delayed_stream___delayed_stream_1.0.0.tgz"; | ||
3618 | url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; | ||
3619 | sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; | ||
3620 | }; | ||
3621 | } | ||
3622 | |||
3623 | { | ||
3624 | name = "delegates___delegates_1.0.0.tgz"; | ||
3625 | path = fetchurl { | ||
3626 | name = "delegates___delegates_1.0.0.tgz"; | ||
3627 | url = "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz"; | ||
3628 | sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; | ||
3629 | }; | ||
3630 | } | ||
3631 | |||
3632 | { | ||
3633 | name = "depd___depd_1.1.2.tgz"; | ||
3634 | path = fetchurl { | ||
3635 | name = "depd___depd_1.1.2.tgz"; | ||
3636 | url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz"; | ||
3637 | sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; | ||
3638 | }; | ||
3639 | } | ||
3640 | |||
3641 | { | ||
3642 | name = "des.js___des.js_1.0.0.tgz"; | ||
3643 | path = fetchurl { | ||
3644 | name = "des.js___des.js_1.0.0.tgz"; | ||
3645 | url = "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz"; | ||
3646 | sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"; | ||
3647 | }; | ||
3648 | } | ||
3649 | |||
3650 | { | ||
3651 | name = "destroy___destroy_1.0.4.tgz"; | ||
3652 | path = fetchurl { | ||
3653 | name = "destroy___destroy_1.0.4.tgz"; | ||
3654 | url = "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz"; | ||
3655 | sha1 = "978857442c44749e4206613e37946205826abd80"; | ||
3656 | }; | ||
3657 | } | ||
3658 | |||
3659 | { | ||
3660 | name = "detect_file___detect_file_1.0.0.tgz"; | ||
3661 | path = fetchurl { | ||
3662 | name = "detect_file___detect_file_1.0.0.tgz"; | ||
3663 | url = "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz"; | ||
3664 | sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; | ||
3665 | }; | ||
3666 | } | ||
3667 | |||
3668 | { | ||
3669 | name = "detect_libc___detect_libc_1.0.3.tgz"; | ||
3670 | path = fetchurl { | ||
3671 | name = "detect_libc___detect_libc_1.0.3.tgz"; | ||
3672 | url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz"; | ||
3673 | sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; | ||
3674 | }; | ||
3675 | } | ||
3676 | |||
3677 | { | ||
3678 | name = "detect_newline___detect_newline_2.1.0.tgz"; | ||
3679 | path = fetchurl { | ||
3680 | name = "detect_newline___detect_newline_2.1.0.tgz"; | ||
3681 | url = "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz"; | ||
3682 | sha1 = "f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"; | ||
3683 | }; | ||
3684 | } | ||
3685 | |||
3686 | { | ||
3687 | name = "detect_node___detect_node_2.0.4.tgz"; | ||
3688 | path = fetchurl { | ||
3689 | name = "detect_node___detect_node_2.0.4.tgz"; | ||
3690 | url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz"; | ||
3691 | sha1 = "014ee8f8f669c5c58023da64b8179c083a28c46c"; | ||
3692 | }; | ||
3693 | } | ||
3694 | |||
3695 | { | ||
3696 | name = "detect_passive_events___detect_passive_events_1.0.4.tgz"; | ||
3697 | path = fetchurl { | ||
3698 | name = "detect_passive_events___detect_passive_events_1.0.4.tgz"; | ||
3699 | url = "https://registry.yarnpkg.com/detect-passive-events/-/detect-passive-events-1.0.4.tgz"; | ||
3700 | sha1 = "6ed477e6e5bceb79079735dcd357789d37f9a91a"; | ||
3701 | }; | ||
3702 | } | ||
3703 | |||
3704 | { | ||
3705 | name = "diff_sequences___diff_sequences_24.3.0.tgz"; | ||
3706 | path = fetchurl { | ||
3707 | name = "diff_sequences___diff_sequences_24.3.0.tgz"; | ||
3708 | url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz"; | ||
3709 | sha1 = "0f20e8a1df1abddaf4d9c226680952e64118b975"; | ||
3710 | }; | ||
3711 | } | ||
3712 | |||
3713 | { | ||
3714 | name = "diffie_hellman___diffie_hellman_5.0.3.tgz"; | ||
3715 | path = fetchurl { | ||
3716 | name = "diffie_hellman___diffie_hellman_5.0.3.tgz"; | ||
3717 | url = "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz"; | ||
3718 | sha1 = "40e8ee98f55a2149607146921c63e1ae5f3d2875"; | ||
3719 | }; | ||
3720 | } | ||
3721 | |||
3722 | { | ||
3723 | name = "discontinuous_range___discontinuous_range_1.0.0.tgz"; | ||
3724 | path = fetchurl { | ||
3725 | name = "discontinuous_range___discontinuous_range_1.0.0.tgz"; | ||
3726 | url = "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz"; | ||
3727 | sha1 = "e38331f0844bba49b9a9cb71c771585aab1bc65a"; | ||
3728 | }; | ||
3729 | } | ||
3730 | |||
3731 | { | ||
3732 | name = "dns_equal___dns_equal_1.0.0.tgz"; | ||
3733 | path = fetchurl { | ||
3734 | name = "dns_equal___dns_equal_1.0.0.tgz"; | ||
3735 | url = "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz"; | ||
3736 | sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d"; | ||
3737 | }; | ||
3738 | } | ||
3739 | |||
3740 | { | ||
3741 | name = "dns_packet___dns_packet_1.3.1.tgz"; | ||
3742 | path = fetchurl { | ||
3743 | name = "dns_packet___dns_packet_1.3.1.tgz"; | ||
3744 | url = "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz"; | ||
3745 | sha1 = "12aa426981075be500b910eedcd0b47dd7deda5a"; | ||
3746 | }; | ||
3747 | } | ||
3748 | |||
3749 | { | ||
3750 | name = "dns_txt___dns_txt_2.0.2.tgz"; | ||
3751 | path = fetchurl { | ||
3752 | name = "dns_txt___dns_txt_2.0.2.tgz"; | ||
3753 | url = "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz"; | ||
3754 | sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6"; | ||
3755 | }; | ||
3756 | } | ||
3757 | |||
3758 | { | ||
3759 | name = "doctrine___doctrine_1.5.0.tgz"; | ||
3760 | path = fetchurl { | ||
3761 | name = "doctrine___doctrine_1.5.0.tgz"; | ||
3762 | url = "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz"; | ||
3763 | sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; | ||
3764 | }; | ||
3765 | } | ||
3766 | |||
3767 | { | ||
3768 | name = "doctrine___doctrine_2.1.0.tgz"; | ||
3769 | path = fetchurl { | ||
3770 | name = "doctrine___doctrine_2.1.0.tgz"; | ||
3771 | url = "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz"; | ||
3772 | sha1 = "5cd01fc101621b42c4cd7f5d1a66243716d3f39d"; | ||
3773 | }; | ||
3774 | } | ||
3775 | |||
3776 | { | ||
3777 | name = "dom_helpers___dom_helpers_3.4.0.tgz"; | ||
3778 | path = fetchurl { | ||
3779 | name = "dom_helpers___dom_helpers_3.4.0.tgz"; | ||
3780 | url = "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz"; | ||
3781 | sha1 = "e9b369700f959f62ecde5a6babde4bccd9169af8"; | ||
3782 | }; | ||
3783 | } | ||
3784 | |||
3785 | { | ||
3786 | name = "dom_serializer___dom_serializer_0.1.0.tgz"; | ||
3787 | path = fetchurl { | ||
3788 | name = "dom_serializer___dom_serializer_0.1.0.tgz"; | ||
3789 | url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz"; | ||
3790 | sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82"; | ||
3791 | }; | ||
3792 | } | ||
3793 | |||
3794 | { | ||
3795 | name = "domain_browser___domain_browser_1.2.0.tgz"; | ||
3796 | path = fetchurl { | ||
3797 | name = "domain_browser___domain_browser_1.2.0.tgz"; | ||
3798 | url = "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz"; | ||
3799 | sha1 = "3d31f50191a6749dd1375a7f522e823d42e54eda"; | ||
3800 | }; | ||
3801 | } | ||
3802 | |||
3803 | { | ||
3804 | name = "domelementtype___domelementtype_1.3.1.tgz"; | ||
3805 | path = fetchurl { | ||
3806 | name = "domelementtype___domelementtype_1.3.1.tgz"; | ||
3807 | url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz"; | ||
3808 | sha1 = "d048c44b37b0d10a7f2a3d5fee3f4333d790481f"; | ||
3809 | }; | ||
3810 | } | ||
3811 | |||
3812 | { | ||
3813 | name = "domelementtype___domelementtype_1.1.3.tgz"; | ||
3814 | path = fetchurl { | ||
3815 | name = "domelementtype___domelementtype_1.1.3.tgz"; | ||
3816 | url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz"; | ||
3817 | sha1 = "bd28773e2642881aec51544924299c5cd822185b"; | ||
3818 | }; | ||
3819 | } | ||
3820 | |||
3821 | { | ||
3822 | name = "domexception___domexception_1.0.1.tgz"; | ||
3823 | path = fetchurl { | ||
3824 | name = "domexception___domexception_1.0.1.tgz"; | ||
3825 | url = "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz"; | ||
3826 | sha1 = "937442644ca6a31261ef36e3ec677fe805582c90"; | ||
3827 | }; | ||
3828 | } | ||
3829 | |||
3830 | { | ||
3831 | name = "domhandler___domhandler_2.4.2.tgz"; | ||
3832 | path = fetchurl { | ||
3833 | name = "domhandler___domhandler_2.4.2.tgz"; | ||
3834 | url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz"; | ||
3835 | sha1 = "8805097e933d65e85546f726d60f5eb88b44f803"; | ||
3836 | }; | ||
3837 | } | ||
3838 | |||
3839 | { | ||
3840 | name = "domutils___domutils_1.5.1.tgz"; | ||
3841 | path = fetchurl { | ||
3842 | name = "domutils___domutils_1.5.1.tgz"; | ||
3843 | url = "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz"; | ||
3844 | sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; | ||
3845 | }; | ||
3846 | } | ||
3847 | |||
3848 | { | ||
3849 | name = "domutils___domutils_1.7.0.tgz"; | ||
3850 | path = fetchurl { | ||
3851 | name = "domutils___domutils_1.7.0.tgz"; | ||
3852 | url = "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz"; | ||
3853 | sha1 = "56ea341e834e06e6748af7a1cb25da67ea9f8c2a"; | ||
3854 | }; | ||
3855 | } | ||
3856 | |||
3857 | { | ||
3858 | name = "dot_prop___dot_prop_4.2.0.tgz"; | ||
3859 | path = fetchurl { | ||
3860 | name = "dot_prop___dot_prop_4.2.0.tgz"; | ||
3861 | url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz"; | ||
3862 | sha1 = "1f19e0c2e1aa0e32797c49799f2837ac6af69c57"; | ||
3863 | }; | ||
3864 | } | ||
3865 | |||
3866 | { | ||
3867 | name = "dotenv___dotenv_8.0.0.tgz"; | ||
3868 | path = fetchurl { | ||
3869 | name = "dotenv___dotenv_8.0.0.tgz"; | ||
3870 | url = "https://registry.yarnpkg.com/dotenv/-/dotenv-8.0.0.tgz"; | ||
3871 | sha1 = "ed310c165b4e8a97bb745b0a9d99c31bda566440"; | ||
3872 | }; | ||
3873 | } | ||
3874 | |||
3875 | { | ||
3876 | name = "double_ended_queue___double_ended_queue_2.1.0_0.tgz"; | ||
3877 | path = fetchurl { | ||
3878 | name = "double_ended_queue___double_ended_queue_2.1.0_0.tgz"; | ||
3879 | url = "https://registry.yarnpkg.com/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz"; | ||
3880 | sha1 = "103d3527fd31528f40188130c841efdd78264e5c"; | ||
3881 | }; | ||
3882 | } | ||
3883 | |||
3884 | { | ||
3885 | name = "duplexer___duplexer_0.1.1.tgz"; | ||
3886 | path = fetchurl { | ||
3887 | name = "duplexer___duplexer_0.1.1.tgz"; | ||
3888 | url = "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz"; | ||
3889 | sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; | ||
3890 | }; | ||
3891 | } | ||
3892 | |||
3893 | { | ||
3894 | name = "duplexify___duplexify_3.6.1.tgz"; | ||
3895 | path = fetchurl { | ||
3896 | name = "duplexify___duplexify_3.6.1.tgz"; | ||
3897 | url = "https://registry.yarnpkg.com/duplexify/-/duplexify-3.6.1.tgz"; | ||
3898 | sha1 = "b1a7a29c4abfd639585efaecce80d666b1e34125"; | ||
3899 | }; | ||
3900 | } | ||
3901 | |||
3902 | { | ||
3903 | name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; | ||
3904 | path = fetchurl { | ||
3905 | name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; | ||
3906 | url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; | ||
3907 | sha1 = "3a83a904e54353287874c564b7549386849a98c9"; | ||
3908 | }; | ||
3909 | } | ||
3910 | |||
3911 | { | ||
3912 | name = "ee_first___ee_first_1.1.1.tgz"; | ||
3913 | path = fetchurl { | ||
3914 | name = "ee_first___ee_first_1.1.1.tgz"; | ||
3915 | url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz"; | ||
3916 | sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; | ||
3917 | }; | ||
3918 | } | ||
3919 | |||
3920 | { | ||
3921 | name = "ejs___ejs_2.6.1.tgz"; | ||
3922 | path = fetchurl { | ||
3923 | name = "ejs___ejs_2.6.1.tgz"; | ||
3924 | url = "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz"; | ||
3925 | sha1 = "498ec0d495655abc6f23cd61868d926464071aa0"; | ||
3926 | }; | ||
3927 | } | ||
3928 | |||
3929 | { | ||
3930 | name = "electron_to_chromium___electron_to_chromium_1.3.163.tgz"; | ||
3931 | path = fetchurl { | ||
3932 | name = "electron_to_chromium___electron_to_chromium_1.3.163.tgz"; | ||
3933 | url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.163.tgz"; | ||
3934 | sha1 = "7fc3d637f5d8fa4ca4a052cad0de7675bd98b911"; | ||
3935 | }; | ||
3936 | } | ||
3937 | |||
3938 | { | ||
3939 | name = "elliptic___elliptic_6.4.1.tgz"; | ||
3940 | path = fetchurl { | ||
3941 | name = "elliptic___elliptic_6.4.1.tgz"; | ||
3942 | url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz"; | ||
3943 | sha1 = "c2d0b7776911b86722c632c3c06c60f2f819939a"; | ||
3944 | }; | ||
3945 | } | ||
3946 | |||
3947 | { | ||
3948 | name = "https___codeload.github.com_Gargron_emoji_mart_tar.gz_ff00dc470b5b2d9f145a6d6e977a54de5df2b4c9"; | ||
3949 | path = fetchurl { | ||
3950 | name = "https___codeload.github.com_Gargron_emoji_mart_tar.gz_ff00dc470b5b2d9f145a6d6e977a54de5df2b4c9"; | ||
3951 | url = "https://codeload.github.com/Gargron/emoji-mart/tar.gz/ff00dc470b5b2d9f145a6d6e977a54de5df2b4c9"; | ||
3952 | sha1 = "4255dc41fa7df9c3a02c1595f058e248bc37b784"; | ||
3953 | }; | ||
3954 | } | ||
3955 | |||
3956 | { | ||
3957 | name = "emoji_regex___emoji_regex_7.0.3.tgz"; | ||
3958 | path = fetchurl { | ||
3959 | name = "emoji_regex___emoji_regex_7.0.3.tgz"; | ||
3960 | url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz"; | ||
3961 | sha1 = "933a04052860c85e83c122479c4748a8e4c72156"; | ||
3962 | }; | ||
3963 | } | ||
3964 | |||
3965 | { | ||
3966 | name = "emojis_list___emojis_list_2.1.0.tgz"; | ||
3967 | path = fetchurl { | ||
3968 | name = "emojis_list___emojis_list_2.1.0.tgz"; | ||
3969 | url = "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz"; | ||
3970 | sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389"; | ||
3971 | }; | ||
3972 | } | ||
3973 | |||
3974 | { | ||
3975 | name = "emotion___emotion_9.2.12.tgz"; | ||
3976 | path = fetchurl { | ||
3977 | name = "emotion___emotion_9.2.12.tgz"; | ||
3978 | url = "https://registry.yarnpkg.com/emotion/-/emotion-9.2.12.tgz"; | ||
3979 | sha1 = "53925aaa005614e65c6e43db8243c843574d1ea9"; | ||
3980 | }; | ||
3981 | } | ||
3982 | |||
3983 | { | ||
3984 | name = "encodeurl___encodeurl_1.0.2.tgz"; | ||
3985 | path = fetchurl { | ||
3986 | name = "encodeurl___encodeurl_1.0.2.tgz"; | ||
3987 | url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz"; | ||
3988 | sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; | ||
3989 | }; | ||
3990 | } | ||
3991 | |||
3992 | { | ||
3993 | name = "encoding___encoding_0.1.12.tgz"; | ||
3994 | path = fetchurl { | ||
3995 | name = "encoding___encoding_0.1.12.tgz"; | ||
3996 | url = "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz"; | ||
3997 | sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb"; | ||
3998 | }; | ||
3999 | } | ||
4000 | |||
4001 | { | ||
4002 | name = "end_of_stream___end_of_stream_1.4.1.tgz"; | ||
4003 | path = fetchurl { | ||
4004 | name = "end_of_stream___end_of_stream_1.4.1.tgz"; | ||
4005 | url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz"; | ||
4006 | sha1 = "ed29634d19baba463b6ce6b80a37213eab71ec43"; | ||
4007 | }; | ||
4008 | } | ||
4009 | |||
4010 | { | ||
4011 | name = "enhanced_resolve___enhanced_resolve_4.1.0.tgz"; | ||
4012 | path = fetchurl { | ||
4013 | name = "enhanced_resolve___enhanced_resolve_4.1.0.tgz"; | ||
4014 | url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz"; | ||
4015 | sha1 = "41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f"; | ||
4016 | }; | ||
4017 | } | ||
4018 | |||
4019 | { | ||
4020 | name = "entities___entities_1.1.2.tgz"; | ||
4021 | path = fetchurl { | ||
4022 | name = "entities___entities_1.1.2.tgz"; | ||
4023 | url = "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz"; | ||
4024 | sha1 = "bdfa735299664dfafd34529ed4f8522a275fea56"; | ||
4025 | }; | ||
4026 | } | ||
4027 | |||
4028 | { | ||
4029 | name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.14.0.tgz"; | ||
4030 | path = fetchurl { | ||
4031 | name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.14.0.tgz"; | ||
4032 | url = "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.14.0.tgz"; | ||
4033 | sha1 = "204722b769172bcf096cb250d33e6795c1f1858f"; | ||
4034 | }; | ||
4035 | } | ||
4036 | |||
4037 | { | ||
4038 | name = "enzyme_adapter_utils___enzyme_adapter_utils_1.12.0.tgz"; | ||
4039 | path = fetchurl { | ||
4040 | name = "enzyme_adapter_utils___enzyme_adapter_utils_1.12.0.tgz"; | ||
4041 | url = "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.0.tgz"; | ||
4042 | sha1 = "96e3730d76b872f593e54ce1c51fa3a451422d93"; | ||
4043 | }; | ||
4044 | } | ||
4045 | |||
4046 | { | ||
4047 | name = "enzyme___enzyme_3.10.0.tgz"; | ||
4048 | path = fetchurl { | ||
4049 | name = "enzyme___enzyme_3.10.0.tgz"; | ||
4050 | url = "https://registry.yarnpkg.com/enzyme/-/enzyme-3.10.0.tgz"; | ||
4051 | sha1 = "7218e347c4a7746e133f8e964aada4a3523452f6"; | ||
4052 | }; | ||
4053 | } | ||
4054 | |||
4055 | { | ||
4056 | name = "errno___errno_0.1.7.tgz"; | ||
4057 | path = fetchurl { | ||
4058 | name = "errno___errno_0.1.7.tgz"; | ||
4059 | url = "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz"; | ||
4060 | sha1 = "4684d71779ad39af177e3f007996f7c67c852618"; | ||
4061 | }; | ||
4062 | } | ||
4063 | |||
4064 | { | ||
4065 | name = "error_ex___error_ex_1.3.2.tgz"; | ||
4066 | path = fetchurl { | ||
4067 | name = "error_ex___error_ex_1.3.2.tgz"; | ||
4068 | url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; | ||
4069 | sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; | ||
4070 | }; | ||
4071 | } | ||
4072 | |||
4073 | { | ||
4074 | name = "es_abstract___es_abstract_1.12.0.tgz"; | ||
4075 | path = fetchurl { | ||
4076 | name = "es_abstract___es_abstract_1.12.0.tgz"; | ||
4077 | url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz"; | ||
4078 | sha1 = "9dbbdd27c6856f0001421ca18782d786bf8a6165"; | ||
4079 | }; | ||
4080 | } | ||
4081 | |||
4082 | { | ||
4083 | name = "es_abstract___es_abstract_1.13.0.tgz"; | ||
4084 | path = fetchurl { | ||
4085 | name = "es_abstract___es_abstract_1.13.0.tgz"; | ||
4086 | url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz"; | ||
4087 | sha1 = "ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"; | ||
4088 | }; | ||
4089 | } | ||
4090 | |||
4091 | { | ||
4092 | name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; | ||
4093 | path = fetchurl { | ||
4094 | name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; | ||
4095 | url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz"; | ||
4096 | sha1 = "edf72478033456e8dda8ef09e00ad9650707f377"; | ||
4097 | }; | ||
4098 | } | ||
4099 | |||
4100 | { | ||
4101 | name = "es5_ext___es5_ext_0.10.50.tgz"; | ||
4102 | path = fetchurl { | ||
4103 | name = "es5_ext___es5_ext_0.10.50.tgz"; | ||
4104 | url = "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.50.tgz"; | ||
4105 | sha1 = "6d0e23a0abdb27018e5ac4fd09b412bc5517a778"; | ||
4106 | }; | ||
4107 | } | ||
4108 | |||
4109 | { | ||
4110 | name = "es5_ext___es5_ext_0.10.46.tgz"; | ||
4111 | path = fetchurl { | ||
4112 | name = "es5_ext___es5_ext_0.10.46.tgz"; | ||
4113 | url = "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.46.tgz"; | ||
4114 | sha1 = "efd99f67c5a7ec789baa3daa7f79870388f7f572"; | ||
4115 | }; | ||
4116 | } | ||
4117 | |||
4118 | { | ||
4119 | name = "es6_iterator___es6_iterator_2.0.3.tgz"; | ||
4120 | path = fetchurl { | ||
4121 | name = "es6_iterator___es6_iterator_2.0.3.tgz"; | ||
4122 | url = "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz"; | ||
4123 | sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7"; | ||
4124 | }; | ||
4125 | } | ||
4126 | |||
4127 | { | ||
4128 | name = "es6_map___es6_map_0.1.5.tgz"; | ||
4129 | path = fetchurl { | ||
4130 | name = "es6_map___es6_map_0.1.5.tgz"; | ||
4131 | url = "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz"; | ||
4132 | sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0"; | ||
4133 | }; | ||
4134 | } | ||
4135 | |||
4136 | { | ||
4137 | name = "es6_set___es6_set_0.1.5.tgz"; | ||
4138 | path = fetchurl { | ||
4139 | name = "es6_set___es6_set_0.1.5.tgz"; | ||
4140 | url = "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz"; | ||
4141 | sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1"; | ||
4142 | }; | ||
4143 | } | ||
4144 | |||
4145 | { | ||
4146 | name = "es6_symbol___es6_symbol_3.1.1.tgz"; | ||
4147 | path = fetchurl { | ||
4148 | name = "es6_symbol___es6_symbol_3.1.1.tgz"; | ||
4149 | url = "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz"; | ||
4150 | sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"; | ||
4151 | }; | ||
4152 | } | ||
4153 | |||
4154 | { | ||
4155 | name = "es6_weak_map___es6_weak_map_2.0.2.tgz"; | ||
4156 | path = fetchurl { | ||
4157 | name = "es6_weak_map___es6_weak_map_2.0.2.tgz"; | ||
4158 | url = "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz"; | ||
4159 | sha1 = "5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"; | ||
4160 | }; | ||
4161 | } | ||
4162 | |||
4163 | { | ||
4164 | name = "escape_html___escape_html_1.0.3.tgz"; | ||
4165 | path = fetchurl { | ||
4166 | name = "escape_html___escape_html_1.0.3.tgz"; | ||
4167 | url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz"; | ||
4168 | sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; | ||
4169 | }; | ||
4170 | } | ||
4171 | |||
4172 | { | ||
4173 | name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; | ||
4174 | path = fetchurl { | ||
4175 | name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; | ||
4176 | url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; | ||
4177 | sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; | ||
4178 | }; | ||
4179 | } | ||
4180 | |||
4181 | { | ||
4182 | name = "escodegen___escodegen_1.11.0.tgz"; | ||
4183 | path = fetchurl { | ||
4184 | name = "escodegen___escodegen_1.11.0.tgz"; | ||
4185 | url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz"; | ||
4186 | sha1 = "b27a9389481d5bfd5bec76f7bb1eb3f8f4556589"; | ||
4187 | }; | ||
4188 | } | ||
4189 | |||
4190 | { | ||
4191 | name = "escope___escope_3.6.0.tgz"; | ||
4192 | path = fetchurl { | ||
4193 | name = "escope___escope_3.6.0.tgz"; | ||
4194 | url = "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz"; | ||
4195 | sha1 = "e01975e812781a163a6dadfdd80398dc64c889c3"; | ||
4196 | }; | ||
4197 | } | ||
4198 | |||
4199 | { | ||
4200 | name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; | ||
4201 | path = fetchurl { | ||
4202 | name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; | ||
4203 | url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz"; | ||
4204 | sha1 = "58f15fb839b8d0576ca980413476aab2472db66a"; | ||
4205 | }; | ||
4206 | } | ||
4207 | |||
4208 | { | ||
4209 | name = "eslint_module_utils___eslint_module_utils_2.4.0.tgz"; | ||
4210 | path = fetchurl { | ||
4211 | name = "eslint_module_utils___eslint_module_utils_2.4.0.tgz"; | ||
4212 | url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz"; | ||
4213 | sha1 = "8b93499e9b00eab80ccb6614e69f03678e84e09a"; | ||
4214 | }; | ||
4215 | } | ||
4216 | |||
4217 | { | ||
4218 | name = "eslint_plugin_import___eslint_plugin_import_2.17.3.tgz"; | ||
4219 | path = fetchurl { | ||
4220 | name = "eslint_plugin_import___eslint_plugin_import_2.17.3.tgz"; | ||
4221 | url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.17.3.tgz"; | ||
4222 | sha1 = "00548b4434c18faebaba04b24ae6198f280de189"; | ||
4223 | }; | ||
4224 | } | ||
4225 | |||
4226 | { | ||
4227 | name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.2.1.tgz"; | ||
4228 | path = fetchurl { | ||
4229 | name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.2.1.tgz"; | ||
4230 | url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.1.tgz"; | ||
4231 | sha1 = "4ebba9f339b600ff415ae4166e3e2e008831cf0c"; | ||
4232 | }; | ||
4233 | } | ||
4234 | |||
4235 | { | ||
4236 | name = "eslint_plugin_promise___eslint_plugin_promise_4.1.1.tgz"; | ||
4237 | path = fetchurl { | ||
4238 | name = "eslint_plugin_promise___eslint_plugin_promise_4.1.1.tgz"; | ||
4239 | url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.1.1.tgz"; | ||
4240 | sha1 = "1e08cb68b5b2cd8839f8d5864c796f56d82746db"; | ||
4241 | }; | ||
4242 | } | ||
4243 | |||
4244 | { | ||
4245 | name = "eslint_plugin_react___eslint_plugin_react_7.12.1.tgz"; | ||
4246 | path = fetchurl { | ||
4247 | name = "eslint_plugin_react___eslint_plugin_react_7.12.1.tgz"; | ||
4248 | url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.1.tgz"; | ||
4249 | sha1 = "b9c4639f72469ff317ac31e3bd630d22d0dbf8f4"; | ||
4250 | }; | ||
4251 | } | ||
4252 | |||
4253 | { | ||
4254 | name = "eslint_scope___eslint_scope_3.7.1.tgz"; | ||
4255 | path = fetchurl { | ||
4256 | name = "eslint_scope___eslint_scope_3.7.1.tgz"; | ||
4257 | url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz"; | ||
4258 | sha1 = "3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"; | ||
4259 | }; | ||
4260 | } | ||
4261 | |||
4262 | { | ||
4263 | name = "eslint_scope___eslint_scope_4.0.0.tgz"; | ||
4264 | path = fetchurl { | ||
4265 | name = "eslint_scope___eslint_scope_4.0.0.tgz"; | ||
4266 | url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz"; | ||
4267 | sha1 = "50bf3071e9338bcdc43331794a0cb533f0136172"; | ||
4268 | }; | ||
4269 | } | ||
4270 | |||
4271 | { | ||
4272 | name = "eslint_utils___eslint_utils_1.3.1.tgz"; | ||
4273 | path = fetchurl { | ||
4274 | name = "eslint_utils___eslint_utils_1.3.1.tgz"; | ||
4275 | url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz"; | ||
4276 | sha1 = "9a851ba89ee7c460346f97cf8939c7298827e512"; | ||
4277 | }; | ||
4278 | } | ||
4279 | |||
4280 | { | ||
4281 | name = "eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; | ||
4282 | path = fetchurl { | ||
4283 | name = "eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; | ||
4284 | url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"; | ||
4285 | sha1 = "3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"; | ||
4286 | }; | ||
4287 | } | ||
4288 | |||
4289 | { | ||
4290 | name = "eslint___eslint_2.13.1.tgz"; | ||
4291 | path = fetchurl { | ||
4292 | name = "eslint___eslint_2.13.1.tgz"; | ||
4293 | url = "https://registry.yarnpkg.com/eslint/-/eslint-2.13.1.tgz"; | ||
4294 | sha1 = "e4cc8fa0f009fb829aaae23855a29360be1f6c11"; | ||
4295 | }; | ||
4296 | } | ||
4297 | |||
4298 | { | ||
4299 | name = "eslint___eslint_5.11.1.tgz"; | ||
4300 | path = fetchurl { | ||
4301 | name = "eslint___eslint_5.11.1.tgz"; | ||
4302 | url = "https://registry.yarnpkg.com/eslint/-/eslint-5.11.1.tgz"; | ||
4303 | sha1 = "8deda83db9f354bf9d3f53f9677af7e0e13eadda"; | ||
4304 | }; | ||
4305 | } | ||
4306 | |||
4307 | { | ||
4308 | name = "espree___espree_3.5.4.tgz"; | ||
4309 | path = fetchurl { | ||
4310 | name = "espree___espree_3.5.4.tgz"; | ||
4311 | url = "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz"; | ||
4312 | sha1 = "b0f447187c8a8bed944b815a660bddf5deb5d1a7"; | ||
4313 | }; | ||
4314 | } | ||
4315 | |||
4316 | { | ||
4317 | name = "espree___espree_5.0.0.tgz"; | ||
4318 | path = fetchurl { | ||
4319 | name = "espree___espree_5.0.0.tgz"; | ||
4320 | url = "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz"; | ||
4321 | sha1 = "fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c"; | ||
4322 | }; | ||
4323 | } | ||
4324 | |||
4325 | { | ||
4326 | name = "esprima___esprima_3.1.3.tgz"; | ||
4327 | path = fetchurl { | ||
4328 | name = "esprima___esprima_3.1.3.tgz"; | ||
4329 | url = "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz"; | ||
4330 | sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633"; | ||
4331 | }; | ||
4332 | } | ||
4333 | |||
4334 | { | ||
4335 | name = "esprima___esprima_4.0.1.tgz"; | ||
4336 | path = fetchurl { | ||
4337 | name = "esprima___esprima_4.0.1.tgz"; | ||
4338 | url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; | ||
4339 | sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; | ||
4340 | }; | ||
4341 | } | ||
4342 | |||
4343 | { | ||
4344 | name = "esquery___esquery_1.0.1.tgz"; | ||
4345 | path = fetchurl { | ||
4346 | name = "esquery___esquery_1.0.1.tgz"; | ||
4347 | url = "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz"; | ||
4348 | sha1 = "406c51658b1f5991a5f9b62b1dc25b00e3e5c708"; | ||
4349 | }; | ||
4350 | } | ||
4351 | |||
4352 | { | ||
4353 | name = "esrecurse___esrecurse_4.2.1.tgz"; | ||
4354 | path = fetchurl { | ||
4355 | name = "esrecurse___esrecurse_4.2.1.tgz"; | ||
4356 | url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz"; | ||
4357 | sha1 = "007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"; | ||
4358 | }; | ||
4359 | } | ||
4360 | |||
4361 | { | ||
4362 | name = "estraverse___estraverse_4.2.0.tgz"; | ||
4363 | path = fetchurl { | ||
4364 | name = "estraverse___estraverse_4.2.0.tgz"; | ||
4365 | url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz"; | ||
4366 | sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; | ||
4367 | }; | ||
4368 | } | ||
4369 | |||
4370 | { | ||
4371 | name = "esutils___esutils_2.0.2.tgz"; | ||
4372 | path = fetchurl { | ||
4373 | name = "esutils___esutils_2.0.2.tgz"; | ||
4374 | url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz"; | ||
4375 | sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; | ||
4376 | }; | ||
4377 | } | ||
4378 | |||
4379 | { | ||
4380 | name = "etag___etag_1.8.1.tgz"; | ||
4381 | path = fetchurl { | ||
4382 | name = "etag___etag_1.8.1.tgz"; | ||
4383 | url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz"; | ||
4384 | sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; | ||
4385 | }; | ||
4386 | } | ||
4387 | |||
4388 | { | ||
4389 | name = "event_emitter___event_emitter_0.3.5.tgz"; | ||
4390 | path = fetchurl { | ||
4391 | name = "event_emitter___event_emitter_0.3.5.tgz"; | ||
4392 | url = "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz"; | ||
4393 | sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39"; | ||
4394 | }; | ||
4395 | } | ||
4396 | |||
4397 | { | ||
4398 | name = "eventemitter3___eventemitter3_3.1.0.tgz"; | ||
4399 | path = fetchurl { | ||
4400 | name = "eventemitter3___eventemitter3_3.1.0.tgz"; | ||
4401 | url = "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz"; | ||
4402 | sha1 = "090b4d6cdbd645ed10bf750d4b5407942d7ba163"; | ||
4403 | }; | ||
4404 | } | ||
4405 | |||
4406 | { | ||
4407 | name = "events___events_1.1.1.tgz"; | ||
4408 | path = fetchurl { | ||
4409 | name = "events___events_1.1.1.tgz"; | ||
4410 | url = "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz"; | ||
4411 | sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"; | ||
4412 | }; | ||
4413 | } | ||
4414 | |||
4415 | { | ||
4416 | name = "eventsource___eventsource_1.0.7.tgz"; | ||
4417 | path = fetchurl { | ||
4418 | name = "eventsource___eventsource_1.0.7.tgz"; | ||
4419 | url = "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz"; | ||
4420 | sha1 = "8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0"; | ||
4421 | }; | ||
4422 | } | ||
4423 | |||
4424 | { | ||
4425 | name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; | ||
4426 | path = fetchurl { | ||
4427 | name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; | ||
4428 | url = "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"; | ||
4429 | sha1 = "7fcbdb198dc71959432efe13842684e0525acb02"; | ||
4430 | }; | ||
4431 | } | ||
4432 | |||
4433 | { | ||
4434 | name = "exec_sh___exec_sh_0.3.2.tgz"; | ||
4435 | path = fetchurl { | ||
4436 | name = "exec_sh___exec_sh_0.3.2.tgz"; | ||
4437 | url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz"; | ||
4438 | sha1 = "6738de2eb7c8e671d0366aea0b0db8c6f7d7391b"; | ||
4439 | }; | ||
4440 | } | ||
4441 | |||
4442 | { | ||
4443 | name = "execa___execa_1.0.0.tgz"; | ||
4444 | path = fetchurl { | ||
4445 | name = "execa___execa_1.0.0.tgz"; | ||
4446 | url = "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz"; | ||
4447 | sha1 = "c6236a5bb4df6d6f15e88e7f017798216749ddd8"; | ||
4448 | }; | ||
4449 | } | ||
4450 | |||
4451 | { | ||
4452 | name = "exif_js___exif_js_2.3.0.tgz"; | ||
4453 | path = fetchurl { | ||
4454 | name = "exif_js___exif_js_2.3.0.tgz"; | ||
4455 | url = "https://registry.yarnpkg.com/exif-js/-/exif-js-2.3.0.tgz"; | ||
4456 | sha1 = "9d10819bf571f873813e7640241255ab9ce1a814"; | ||
4457 | }; | ||
4458 | } | ||
4459 | |||
4460 | { | ||
4461 | name = "exit_hook___exit_hook_1.1.1.tgz"; | ||
4462 | path = fetchurl { | ||
4463 | name = "exit_hook___exit_hook_1.1.1.tgz"; | ||
4464 | url = "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz"; | ||
4465 | sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8"; | ||
4466 | }; | ||
4467 | } | ||
4468 | |||
4469 | { | ||
4470 | name = "exit___exit_0.1.2.tgz"; | ||
4471 | path = fetchurl { | ||
4472 | name = "exit___exit_0.1.2.tgz"; | ||
4473 | url = "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz"; | ||
4474 | sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c"; | ||
4475 | }; | ||
4476 | } | ||
4477 | |||
4478 | { | ||
4479 | name = "expand_brackets___expand_brackets_2.1.4.tgz"; | ||
4480 | path = fetchurl { | ||
4481 | name = "expand_brackets___expand_brackets_2.1.4.tgz"; | ||
4482 | url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz"; | ||
4483 | sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; | ||
4484 | }; | ||
4485 | } | ||
4486 | |||
4487 | { | ||
4488 | name = "expand_tilde___expand_tilde_2.0.2.tgz"; | ||
4489 | path = fetchurl { | ||
4490 | name = "expand_tilde___expand_tilde_2.0.2.tgz"; | ||
4491 | url = "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz"; | ||
4492 | sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; | ||
4493 | }; | ||
4494 | } | ||
4495 | |||
4496 | { | ||
4497 | name = "expect___expect_24.8.0.tgz"; | ||
4498 | path = fetchurl { | ||
4499 | name = "expect___expect_24.8.0.tgz"; | ||
4500 | url = "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz"; | ||
4501 | sha1 = "471f8ec256b7b6129ca2524b2a62f030df38718d"; | ||
4502 | }; | ||
4503 | } | ||
4504 | |||
4505 | { | ||
4506 | name = "express___express_4.17.1.tgz"; | ||
4507 | path = fetchurl { | ||
4508 | name = "express___express_4.17.1.tgz"; | ||
4509 | url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz"; | ||
4510 | sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134"; | ||
4511 | }; | ||
4512 | } | ||
4513 | |||
4514 | { | ||
4515 | name = "extend_shallow___extend_shallow_2.0.1.tgz"; | ||
4516 | path = fetchurl { | ||
4517 | name = "extend_shallow___extend_shallow_2.0.1.tgz"; | ||
4518 | url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz"; | ||
4519 | sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; | ||
4520 | }; | ||
4521 | } | ||
4522 | |||
4523 | { | ||
4524 | name = "extend_shallow___extend_shallow_3.0.2.tgz"; | ||
4525 | path = fetchurl { | ||
4526 | name = "extend_shallow___extend_shallow_3.0.2.tgz"; | ||
4527 | url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz"; | ||
4528 | sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; | ||
4529 | }; | ||
4530 | } | ||
4531 | |||
4532 | { | ||
4533 | name = "extend___extend_3.0.2.tgz"; | ||
4534 | path = fetchurl { | ||
4535 | name = "extend___extend_3.0.2.tgz"; | ||
4536 | url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; | ||
4537 | sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; | ||
4538 | }; | ||
4539 | } | ||
4540 | |||
4541 | { | ||
4542 | name = "external_editor___external_editor_3.0.3.tgz"; | ||
4543 | path = fetchurl { | ||
4544 | name = "external_editor___external_editor_3.0.3.tgz"; | ||
4545 | url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz"; | ||
4546 | sha1 = "5866db29a97826dbe4bf3afd24070ead9ea43a27"; | ||
4547 | }; | ||
4548 | } | ||
4549 | |||
4550 | { | ||
4551 | name = "extglob___extglob_2.0.4.tgz"; | ||
4552 | path = fetchurl { | ||
4553 | name = "extglob___extglob_2.0.4.tgz"; | ||
4554 | url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; | ||
4555 | sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; | ||
4556 | }; | ||
4557 | } | ||
4558 | |||
4559 | { | ||
4560 | name = "extsprintf___extsprintf_1.3.0.tgz"; | ||
4561 | path = fetchurl { | ||
4562 | name = "extsprintf___extsprintf_1.3.0.tgz"; | ||
4563 | url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz"; | ||
4564 | sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; | ||
4565 | }; | ||
4566 | } | ||
4567 | |||
4568 | { | ||
4569 | name = "extsprintf___extsprintf_1.4.0.tgz"; | ||
4570 | path = fetchurl { | ||
4571 | name = "extsprintf___extsprintf_1.4.0.tgz"; | ||
4572 | url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz"; | ||
4573 | sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f"; | ||
4574 | }; | ||
4575 | } | ||
4576 | |||
4577 | { | ||
4578 | name = "fast_deep_equal___fast_deep_equal_2.0.1.tgz"; | ||
4579 | path = fetchurl { | ||
4580 | name = "fast_deep_equal___fast_deep_equal_2.0.1.tgz"; | ||
4581 | url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; | ||
4582 | sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"; | ||
4583 | }; | ||
4584 | } | ||
4585 | |||
4586 | { | ||
4587 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz"; | ||
4588 | path = fetchurl { | ||
4589 | name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz"; | ||
4590 | url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; | ||
4591 | sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; | ||
4592 | }; | ||
4593 | } | ||
4594 | |||
4595 | { | ||
4596 | name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; | ||
4597 | path = fetchurl { | ||
4598 | name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; | ||
4599 | url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; | ||
4600 | sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; | ||
4601 | }; | ||
4602 | } | ||
4603 | |||
4604 | { | ||
4605 | name = "faye_websocket___faye_websocket_0.10.0.tgz"; | ||
4606 | path = fetchurl { | ||
4607 | name = "faye_websocket___faye_websocket_0.10.0.tgz"; | ||
4608 | url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz"; | ||
4609 | sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"; | ||
4610 | }; | ||
4611 | } | ||
4612 | |||
4613 | { | ||
4614 | name = "faye_websocket___faye_websocket_0.11.1.tgz"; | ||
4615 | path = fetchurl { | ||
4616 | name = "faye_websocket___faye_websocket_0.11.1.tgz"; | ||
4617 | url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz"; | ||
4618 | sha1 = "f0efe18c4f56e4f40afc7e06c719fd5ee6188f38"; | ||
4619 | }; | ||
4620 | } | ||
4621 | |||
4622 | { | ||
4623 | name = "fb_watchman___fb_watchman_2.0.0.tgz"; | ||
4624 | path = fetchurl { | ||
4625 | name = "fb_watchman___fb_watchman_2.0.0.tgz"; | ||
4626 | url = "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz"; | ||
4627 | sha1 = "54e9abf7dfa2f26cd9b1636c588c1afc05de5d58"; | ||
4628 | }; | ||
4629 | } | ||
4630 | |||
4631 | { | ||
4632 | name = "fbjs___fbjs_0.8.17.tgz"; | ||
4633 | path = fetchurl { | ||
4634 | name = "fbjs___fbjs_0.8.17.tgz"; | ||
4635 | url = "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz"; | ||
4636 | sha1 = "c4d598ead6949112653d6588b01a5cdcd9f90fdd"; | ||
4637 | }; | ||
4638 | } | ||
4639 | |||
4640 | { | ||
4641 | name = "figgy_pudding___figgy_pudding_3.5.1.tgz"; | ||
4642 | path = fetchurl { | ||
4643 | name = "figgy_pudding___figgy_pudding_3.5.1.tgz"; | ||
4644 | url = "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz"; | ||
4645 | sha1 = "862470112901c727a0e495a80744bd5baa1d6790"; | ||
4646 | }; | ||
4647 | } | ||
4648 | |||
4649 | { | ||
4650 | name = "figures___figures_1.7.0.tgz"; | ||
4651 | path = fetchurl { | ||
4652 | name = "figures___figures_1.7.0.tgz"; | ||
4653 | url = "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz"; | ||
4654 | sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"; | ||
4655 | }; | ||
4656 | } | ||
4657 | |||
4658 | { | ||
4659 | name = "figures___figures_2.0.0.tgz"; | ||
4660 | path = fetchurl { | ||
4661 | name = "figures___figures_2.0.0.tgz"; | ||
4662 | url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; | ||
4663 | sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; | ||
4664 | }; | ||
4665 | } | ||
4666 | |||
4667 | { | ||
4668 | name = "file_entry_cache___file_entry_cache_1.3.1.tgz"; | ||
4669 | path = fetchurl { | ||
4670 | name = "file_entry_cache___file_entry_cache_1.3.1.tgz"; | ||
4671 | url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz"; | ||
4672 | sha1 = "44c61ea607ae4be9c1402f41f44270cbfe334ff8"; | ||
4673 | }; | ||
4674 | } | ||
4675 | |||
4676 | { | ||
4677 | name = "file_entry_cache___file_entry_cache_2.0.0.tgz"; | ||
4678 | path = fetchurl { | ||
4679 | name = "file_entry_cache___file_entry_cache_2.0.0.tgz"; | ||
4680 | url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz"; | ||
4681 | sha1 = "c392990c3e684783d838b8c84a45d8a048458361"; | ||
4682 | }; | ||
4683 | } | ||
4684 | |||
4685 | { | ||
4686 | name = "file_loader___file_loader_4.0.0.tgz"; | ||
4687 | path = fetchurl { | ||
4688 | name = "file_loader___file_loader_4.0.0.tgz"; | ||
4689 | url = "https://registry.yarnpkg.com/file-loader/-/file-loader-4.0.0.tgz"; | ||
4690 | sha1 = "c3570783fefb6e1bc0978a856f4bf5825b966c2a"; | ||
4691 | }; | ||
4692 | } | ||
4693 | |||
4694 | { | ||
4695 | name = "filesize___filesize_3.6.1.tgz"; | ||
4696 | path = fetchurl { | ||
4697 | name = "filesize___filesize_3.6.1.tgz"; | ||
4698 | url = "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz"; | ||
4699 | sha1 = "090bb3ee01b6f801a8a8be99d31710b3422bb317"; | ||
4700 | }; | ||
4701 | } | ||
4702 | |||
4703 | { | ||
4704 | name = "fill_range___fill_range_4.0.0.tgz"; | ||
4705 | path = fetchurl { | ||
4706 | name = "fill_range___fill_range_4.0.0.tgz"; | ||
4707 | url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz"; | ||
4708 | sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; | ||
4709 | }; | ||
4710 | } | ||
4711 | |||
4712 | { | ||
4713 | name = "finalhandler___finalhandler_1.1.2.tgz"; | ||
4714 | path = fetchurl { | ||
4715 | name = "finalhandler___finalhandler_1.1.2.tgz"; | ||
4716 | url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz"; | ||
4717 | sha1 = "b7e7d000ffd11938d0fdb053506f6ebabe9f587d"; | ||
4718 | }; | ||
4719 | } | ||
4720 | |||
4721 | { | ||
4722 | name = "find_cache_dir___find_cache_dir_2.0.0.tgz"; | ||
4723 | path = fetchurl { | ||
4724 | name = "find_cache_dir___find_cache_dir_2.0.0.tgz"; | ||
4725 | url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.0.0.tgz"; | ||
4726 | sha1 = "4c1faed59f45184530fb9d7fa123a4d04a98472d"; | ||
4727 | }; | ||
4728 | } | ||
4729 | |||
4730 | { | ||
4731 | name = "find_root___find_root_1.1.0.tgz"; | ||
4732 | path = fetchurl { | ||
4733 | name = "find_root___find_root_1.1.0.tgz"; | ||
4734 | url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz"; | ||
4735 | sha1 = "abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"; | ||
4736 | }; | ||
4737 | } | ||
4738 | |||
4739 | { | ||
4740 | name = "find_up___find_up_2.1.0.tgz"; | ||
4741 | path = fetchurl { | ||
4742 | name = "find_up___find_up_2.1.0.tgz"; | ||
4743 | url = "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz"; | ||
4744 | sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; | ||
4745 | }; | ||
4746 | } | ||
4747 | |||
4748 | { | ||
4749 | name = "find_up___find_up_3.0.0.tgz"; | ||
4750 | path = fetchurl { | ||
4751 | name = "find_up___find_up_3.0.0.tgz"; | ||
4752 | url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz"; | ||
4753 | sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73"; | ||
4754 | }; | ||
4755 | } | ||
4756 | |||
4757 | { | ||
4758 | name = "findup_sync___findup_sync_2.0.0.tgz"; | ||
4759 | path = fetchurl { | ||
4760 | name = "findup_sync___findup_sync_2.0.0.tgz"; | ||
4761 | url = "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz"; | ||
4762 | sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc"; | ||
4763 | }; | ||
4764 | } | ||
4765 | |||
4766 | { | ||
4767 | name = "flat_cache___flat_cache_1.3.4.tgz"; | ||
4768 | path = fetchurl { | ||
4769 | name = "flat_cache___flat_cache_1.3.4.tgz"; | ||
4770 | url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz"; | ||
4771 | sha1 = "2c2ef77525cc2929007dfffa1dd314aa9c9dee6f"; | ||
4772 | }; | ||
4773 | } | ||
4774 | |||
4775 | { | ||
4776 | name = "flush_write_stream___flush_write_stream_1.0.3.tgz"; | ||
4777 | path = fetchurl { | ||
4778 | name = "flush_write_stream___flush_write_stream_1.0.3.tgz"; | ||
4779 | url = "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz"; | ||
4780 | sha1 = "c5d586ef38af6097650b49bc41b55fabb19f35bd"; | ||
4781 | }; | ||
4782 | } | ||
4783 | |||
4784 | { | ||
4785 | name = "follow_redirects___follow_redirects_1.5.10.tgz"; | ||
4786 | path = fetchurl { | ||
4787 | name = "follow_redirects___follow_redirects_1.5.10.tgz"; | ||
4788 | url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz"; | ||
4789 | sha1 = "7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a"; | ||
4790 | }; | ||
4791 | } | ||
4792 | |||
4793 | { | ||
4794 | name = "follow_redirects___follow_redirects_1.6.0.tgz"; | ||
4795 | path = fetchurl { | ||
4796 | name = "follow_redirects___follow_redirects_1.6.0.tgz"; | ||
4797 | url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.6.0.tgz"; | ||
4798 | sha1 = "d12452c031e8c67eb6637d861bfc7a8090167933"; | ||
4799 | }; | ||
4800 | } | ||
4801 | |||
4802 | { | ||
4803 | name = "font_awesome___font_awesome_4.7.0.tgz"; | ||
4804 | path = fetchurl { | ||
4805 | name = "font_awesome___font_awesome_4.7.0.tgz"; | ||
4806 | url = "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz"; | ||
4807 | sha1 = "8fa8cf0411a1a31afd07b06d2902bb9fc815a133"; | ||
4808 | }; | ||
4809 | } | ||
4810 | |||
4811 | { | ||
4812 | name = "for_in___for_in_0.1.8.tgz"; | ||
4813 | path = fetchurl { | ||
4814 | name = "for_in___for_in_0.1.8.tgz"; | ||
4815 | url = "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz"; | ||
4816 | sha1 = "d8773908e31256109952b1fdb9b3fa867d2775e1"; | ||
4817 | }; | ||
4818 | } | ||
4819 | |||
4820 | { | ||
4821 | name = "for_in___for_in_1.0.2.tgz"; | ||
4822 | path = fetchurl { | ||
4823 | name = "for_in___for_in_1.0.2.tgz"; | ||
4824 | url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz"; | ||
4825 | sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; | ||
4826 | }; | ||
4827 | } | ||
4828 | |||
4829 | { | ||
4830 | name = "for_own___for_own_1.0.0.tgz"; | ||
4831 | path = fetchurl { | ||
4832 | name = "for_own___for_own_1.0.0.tgz"; | ||
4833 | url = "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz"; | ||
4834 | sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b"; | ||
4835 | }; | ||
4836 | } | ||
4837 | |||
4838 | { | ||
4839 | name = "forever_agent___forever_agent_0.6.1.tgz"; | ||
4840 | path = fetchurl { | ||
4841 | name = "forever_agent___forever_agent_0.6.1.tgz"; | ||
4842 | url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz"; | ||
4843 | sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; | ||
4844 | }; | ||
4845 | } | ||
4846 | |||
4847 | { | ||
4848 | name = "form_data___form_data_2.3.3.tgz"; | ||
4849 | path = fetchurl { | ||
4850 | name = "form_data___form_data_2.3.3.tgz"; | ||
4851 | url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz"; | ||
4852 | sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6"; | ||
4853 | }; | ||
4854 | } | ||
4855 | |||
4856 | { | ||
4857 | name = "forwarded___forwarded_0.1.2.tgz"; | ||
4858 | path = fetchurl { | ||
4859 | name = "forwarded___forwarded_0.1.2.tgz"; | ||
4860 | url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz"; | ||
4861 | sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; | ||
4862 | }; | ||
4863 | } | ||
4864 | |||
4865 | { | ||
4866 | name = "fragment_cache___fragment_cache_0.2.1.tgz"; | ||
4867 | path = fetchurl { | ||
4868 | name = "fragment_cache___fragment_cache_0.2.1.tgz"; | ||
4869 | url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz"; | ||
4870 | sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; | ||
4871 | }; | ||
4872 | } | ||
4873 | |||
4874 | { | ||
4875 | name = "fresh___fresh_0.5.2.tgz"; | ||
4876 | path = fetchurl { | ||
4877 | name = "fresh___fresh_0.5.2.tgz"; | ||
4878 | url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz"; | ||
4879 | sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; | ||
4880 | }; | ||
4881 | } | ||
4882 | |||
4883 | { | ||
4884 | name = "from2___from2_2.3.0.tgz"; | ||
4885 | path = fetchurl { | ||
4886 | name = "from2___from2_2.3.0.tgz"; | ||
4887 | url = "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz"; | ||
4888 | sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; | ||
4889 | }; | ||
4890 | } | ||
4891 | |||
4892 | { | ||
4893 | name = "front_matter___front_matter_2.1.2.tgz"; | ||
4894 | path = fetchurl { | ||
4895 | name = "front_matter___front_matter_2.1.2.tgz"; | ||
4896 | url = "https://registry.yarnpkg.com/front-matter/-/front-matter-2.1.2.tgz"; | ||
4897 | sha1 = "f75983b9f2f413be658c93dfd7bd8ce4078f5cdb"; | ||
4898 | }; | ||
4899 | } | ||
4900 | |||
4901 | { | ||
4902 | name = "fs_extra___fs_extra_3.0.1.tgz"; | ||
4903 | path = fetchurl { | ||
4904 | name = "fs_extra___fs_extra_3.0.1.tgz"; | ||
4905 | url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz"; | ||
4906 | sha1 = "3794f378c58b342ea7dbbb23095109c4b3b62291"; | ||
4907 | }; | ||
4908 | } | ||
4909 | |||
4910 | { | ||
4911 | name = "fs_extra___fs_extra_8.0.1.tgz"; | ||
4912 | path = fetchurl { | ||
4913 | name = "fs_extra___fs_extra_8.0.1.tgz"; | ||
4914 | url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.0.1.tgz"; | ||
4915 | sha1 = "90294081f978b1f182f347a440a209154344285b"; | ||
4916 | }; | ||
4917 | } | ||
4918 | |||
4919 | { | ||
4920 | name = "fs_minipass___fs_minipass_1.2.5.tgz"; | ||
4921 | path = fetchurl { | ||
4922 | name = "fs_minipass___fs_minipass_1.2.5.tgz"; | ||
4923 | url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz"; | ||
4924 | sha1 = "06c277218454ec288df77ada54a03b8702aacb9d"; | ||
4925 | }; | ||
4926 | } | ||
4927 | |||
4928 | { | ||
4929 | name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz"; | ||
4930 | path = fetchurl { | ||
4931 | name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz"; | ||
4932 | url = "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz"; | ||
4933 | sha1 = "b47df53493ef911df75731e70a9ded0189db40c9"; | ||
4934 | }; | ||
4935 | } | ||
4936 | |||
4937 | { | ||
4938 | name = "fs.realpath___fs.realpath_1.0.0.tgz"; | ||
4939 | path = fetchurl { | ||
4940 | name = "fs.realpath___fs.realpath_1.0.0.tgz"; | ||
4941 | url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; | ||
4942 | sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; | ||
4943 | }; | ||
4944 | } | ||
4945 | |||
4946 | { | ||
4947 | name = "fsevents___fsevents_1.2.9.tgz"; | ||
4948 | path = fetchurl { | ||
4949 | name = "fsevents___fsevents_1.2.9.tgz"; | ||
4950 | url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz"; | ||
4951 | sha1 = "3f5ed66583ccd6f400b5a00db6f7e861363e388f"; | ||
4952 | }; | ||
4953 | } | ||
4954 | |||
4955 | { | ||
4956 | name = "function_bind___function_bind_1.1.1.tgz"; | ||
4957 | path = fetchurl { | ||
4958 | name = "function_bind___function_bind_1.1.1.tgz"; | ||
4959 | url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; | ||
4960 | sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; | ||
4961 | }; | ||
4962 | } | ||
4963 | |||
4964 | { | ||
4965 | name = "function.prototype.name___function.prototype.name_1.1.0.tgz"; | ||
4966 | path = fetchurl { | ||
4967 | name = "function.prototype.name___function.prototype.name_1.1.0.tgz"; | ||
4968 | url = "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.0.tgz"; | ||
4969 | sha1 = "8bd763cc0af860a859cc5d49384d74b932cd2327"; | ||
4970 | }; | ||
4971 | } | ||
4972 | |||
4973 | { | ||
4974 | name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; | ||
4975 | path = fetchurl { | ||
4976 | name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; | ||
4977 | url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; | ||
4978 | sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; | ||
4979 | }; | ||
4980 | } | ||
4981 | |||
4982 | { | ||
4983 | name = "gauge___gauge_2.7.4.tgz"; | ||
4984 | path = fetchurl { | ||
4985 | name = "gauge___gauge_2.7.4.tgz"; | ||
4986 | url = "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz"; | ||
4987 | sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; | ||
4988 | }; | ||
4989 | } | ||
4990 | |||
4991 | { | ||
4992 | name = "generate_function___generate_function_2.3.1.tgz"; | ||
4993 | path = fetchurl { | ||
4994 | name = "generate_function___generate_function_2.3.1.tgz"; | ||
4995 | url = "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz"; | ||
4996 | sha1 = "f069617690c10c868e73b8465746764f97c3479f"; | ||
4997 | }; | ||
4998 | } | ||
4999 | |||
5000 | { | ||
5001 | name = "generate_object_property___generate_object_property_1.2.0.tgz"; | ||
5002 | path = fetchurl { | ||
5003 | name = "generate_object_property___generate_object_property_1.2.0.tgz"; | ||
5004 | url = "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz"; | ||
5005 | sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; | ||
5006 | }; | ||
5007 | } | ||
5008 | |||
5009 | { | ||
5010 | name = "generic_pool___generic_pool_2.4.3.tgz"; | ||
5011 | path = fetchurl { | ||
5012 | name = "generic_pool___generic_pool_2.4.3.tgz"; | ||
5013 | url = "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.3.tgz"; | ||
5014 | sha1 = "780c36f69dfad05a5a045dd37be7adca11a4f6ff"; | ||
5015 | }; | ||
5016 | } | ||
5017 | |||
5018 | { | ||
5019 | name = "get_caller_file___get_caller_file_1.0.3.tgz"; | ||
5020 | path = fetchurl { | ||
5021 | name = "get_caller_file___get_caller_file_1.0.3.tgz"; | ||
5022 | url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; | ||
5023 | sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"; | ||
5024 | }; | ||
5025 | } | ||
5026 | |||
5027 | { | ||
5028 | name = "get_stream___get_stream_4.1.0.tgz"; | ||
5029 | path = fetchurl { | ||
5030 | name = "get_stream___get_stream_4.1.0.tgz"; | ||
5031 | url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz"; | ||
5032 | sha1 = "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"; | ||
5033 | }; | ||
5034 | } | ||
5035 | |||
5036 | { | ||
5037 | name = "get_value___get_value_2.0.6.tgz"; | ||
5038 | path = fetchurl { | ||
5039 | name = "get_value___get_value_2.0.6.tgz"; | ||
5040 | url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz"; | ||
5041 | sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; | ||
5042 | }; | ||
5043 | } | ||
5044 | |||
5045 | { | ||
5046 | name = "getpass___getpass_0.1.7.tgz"; | ||
5047 | path = fetchurl { | ||
5048 | name = "getpass___getpass_0.1.7.tgz"; | ||
5049 | url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz"; | ||
5050 | sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; | ||
5051 | }; | ||
5052 | } | ||
5053 | |||
5054 | { | ||
5055 | name = "glob_parent___glob_parent_3.1.0.tgz"; | ||
5056 | path = fetchurl { | ||
5057 | name = "glob_parent___glob_parent_3.1.0.tgz"; | ||
5058 | url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz"; | ||
5059 | sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; | ||
5060 | }; | ||
5061 | } | ||
5062 | |||
5063 | { | ||
5064 | name = "glob___glob_7.1.4.tgz"; | ||
5065 | path = fetchurl { | ||
5066 | name = "glob___glob_7.1.4.tgz"; | ||
5067 | url = "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz"; | ||
5068 | sha1 = "aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"; | ||
5069 | }; | ||
5070 | } | ||
5071 | |||
5072 | { | ||
5073 | name = "glob___glob_7.1.3.tgz"; | ||
5074 | path = fetchurl { | ||
5075 | name = "glob___glob_7.1.3.tgz"; | ||
5076 | url = "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz"; | ||
5077 | sha1 = "3960832d3f1574108342dafd3a67b332c0969df1"; | ||
5078 | }; | ||
5079 | } | ||
5080 | |||
5081 | { | ||
5082 | name = "global_modules___global_modules_1.0.0.tgz"; | ||
5083 | path = fetchurl { | ||
5084 | name = "global_modules___global_modules_1.0.0.tgz"; | ||
5085 | url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz"; | ||
5086 | sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea"; | ||
5087 | }; | ||
5088 | } | ||
5089 | |||
5090 | { | ||
5091 | name = "global_prefix___global_prefix_1.0.2.tgz"; | ||
5092 | path = fetchurl { | ||
5093 | name = "global_prefix___global_prefix_1.0.2.tgz"; | ||
5094 | url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz"; | ||
5095 | sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; | ||
5096 | }; | ||
5097 | } | ||
5098 | |||
5099 | { | ||
5100 | name = "globals___globals_11.12.0.tgz"; | ||
5101 | path = fetchurl { | ||
5102 | name = "globals___globals_11.12.0.tgz"; | ||
5103 | url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz"; | ||
5104 | sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e"; | ||
5105 | }; | ||
5106 | } | ||
5107 | |||
5108 | { | ||
5109 | name = "globals___globals_11.9.0.tgz"; | ||
5110 | path = fetchurl { | ||
5111 | name = "globals___globals_11.9.0.tgz"; | ||
5112 | url = "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz"; | ||
5113 | sha1 = "bde236808e987f290768a93d065060d78e6ab249"; | ||
5114 | }; | ||
5115 | } | ||
5116 | |||
5117 | { | ||
5118 | name = "globals___globals_9.18.0.tgz"; | ||
5119 | path = fetchurl { | ||
5120 | name = "globals___globals_9.18.0.tgz"; | ||
5121 | url = "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz"; | ||
5122 | sha1 = "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"; | ||
5123 | }; | ||
5124 | } | ||
5125 | |||
5126 | { | ||
5127 | name = "globby___globby_6.1.0.tgz"; | ||
5128 | path = fetchurl { | ||
5129 | name = "globby___globby_6.1.0.tgz"; | ||
5130 | url = "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz"; | ||
5131 | sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; | ||
5132 | }; | ||
5133 | } | ||
5134 | |||
5135 | { | ||
5136 | name = "globule___globule_1.2.1.tgz"; | ||
5137 | path = fetchurl { | ||
5138 | name = "globule___globule_1.2.1.tgz"; | ||
5139 | url = "https://registry.yarnpkg.com/globule/-/globule-1.2.1.tgz"; | ||
5140 | sha1 = "5dffb1b191f22d20797a9369b49eab4e9839696d"; | ||
5141 | }; | ||
5142 | } | ||
5143 | |||
5144 | { | ||
5145 | name = "gonzales_pe_sl___gonzales_pe_sl_4.2.3.tgz"; | ||
5146 | path = fetchurl { | ||
5147 | name = "gonzales_pe_sl___gonzales_pe_sl_4.2.3.tgz"; | ||
5148 | url = "https://registry.yarnpkg.com/gonzales-pe-sl/-/gonzales-pe-sl-4.2.3.tgz"; | ||
5149 | sha1 = "6a868bc380645f141feeb042c6f97fcc71b59fe6"; | ||
5150 | }; | ||
5151 | } | ||
5152 | |||
5153 | { | ||
5154 | name = "graceful_fs___graceful_fs_4.1.15.tgz"; | ||
5155 | path = fetchurl { | ||
5156 | name = "graceful_fs___graceful_fs_4.1.15.tgz"; | ||
5157 | url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz"; | ||
5158 | sha1 = "ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"; | ||
5159 | }; | ||
5160 | } | ||
5161 | |||
5162 | { | ||
5163 | name = "growly___growly_1.3.0.tgz"; | ||
5164 | path = fetchurl { | ||
5165 | name = "growly___growly_1.3.0.tgz"; | ||
5166 | url = "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz"; | ||
5167 | sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081"; | ||
5168 | }; | ||
5169 | } | ||
5170 | |||
5171 | { | ||
5172 | name = "gzip_size___gzip_size_5.0.0.tgz"; | ||
5173 | path = fetchurl { | ||
5174 | name = "gzip_size___gzip_size_5.0.0.tgz"; | ||
5175 | url = "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.0.0.tgz"; | ||
5176 | sha1 = "a55ecd99222f4c48fd8c01c625ce3b349d0a0e80"; | ||
5177 | }; | ||
5178 | } | ||
5179 | |||
5180 | { | ||
5181 | name = "handle_thing___handle_thing_2.0.0.tgz"; | ||
5182 | path = fetchurl { | ||
5183 | name = "handle_thing___handle_thing_2.0.0.tgz"; | ||
5184 | url = "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.0.tgz"; | ||
5185 | sha1 = "0e039695ff50c93fc288557d696f3c1dc6776754"; | ||
5186 | }; | ||
5187 | } | ||
5188 | |||
5189 | { | ||
5190 | name = "handlebars___handlebars_4.1.0.tgz"; | ||
5191 | path = fetchurl { | ||
5192 | name = "handlebars___handlebars_4.1.0.tgz"; | ||
5193 | url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.0.tgz"; | ||
5194 | sha1 = "0d6a6f34ff1f63cecec8423aa4169827bf787c3a"; | ||
5195 | }; | ||
5196 | } | ||
5197 | |||
5198 | { | ||
5199 | name = "har_schema___har_schema_2.0.0.tgz"; | ||
5200 | path = fetchurl { | ||
5201 | name = "har_schema___har_schema_2.0.0.tgz"; | ||
5202 | url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz"; | ||
5203 | sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; | ||
5204 | }; | ||
5205 | } | ||
5206 | |||
5207 | { | ||
5208 | name = "har_validator___har_validator_5.1.3.tgz"; | ||
5209 | path = fetchurl { | ||
5210 | name = "har_validator___har_validator_5.1.3.tgz"; | ||
5211 | url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz"; | ||
5212 | sha1 = "1ef89ebd3e4996557675eed9893110dc350fa080"; | ||
5213 | }; | ||
5214 | } | ||
5215 | |||
5216 | { | ||
5217 | name = "has_ansi___has_ansi_2.0.0.tgz"; | ||
5218 | path = fetchurl { | ||
5219 | name = "has_ansi___has_ansi_2.0.0.tgz"; | ||
5220 | url = "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz"; | ||
5221 | sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; | ||
5222 | }; | ||
5223 | } | ||
5224 | |||
5225 | { | ||
5226 | name = "has_flag___has_flag_1.0.0.tgz"; | ||
5227 | path = fetchurl { | ||
5228 | name = "has_flag___has_flag_1.0.0.tgz"; | ||
5229 | url = "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz"; | ||
5230 | sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa"; | ||
5231 | }; | ||
5232 | } | ||
5233 | |||
5234 | { | ||
5235 | name = "has_flag___has_flag_3.0.0.tgz"; | ||
5236 | path = fetchurl { | ||
5237 | name = "has_flag___has_flag_3.0.0.tgz"; | ||
5238 | url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; | ||
5239 | sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; | ||
5240 | }; | ||
5241 | } | ||
5242 | |||
5243 | { | ||
5244 | name = "has_symbols___has_symbols_1.0.0.tgz"; | ||
5245 | path = fetchurl { | ||
5246 | name = "has_symbols___has_symbols_1.0.0.tgz"; | ||
5247 | url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz"; | ||
5248 | sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44"; | ||
5249 | }; | ||
5250 | } | ||
5251 | |||
5252 | { | ||
5253 | name = "has_unicode___has_unicode_2.0.1.tgz"; | ||
5254 | path = fetchurl { | ||
5255 | name = "has_unicode___has_unicode_2.0.1.tgz"; | ||
5256 | url = "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz"; | ||
5257 | sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9"; | ||
5258 | }; | ||
5259 | } | ||
5260 | |||
5261 | { | ||
5262 | name = "has_value___has_value_0.3.1.tgz"; | ||
5263 | path = fetchurl { | ||
5264 | name = "has_value___has_value_0.3.1.tgz"; | ||
5265 | url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz"; | ||
5266 | sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; | ||
5267 | }; | ||
5268 | } | ||
5269 | |||
5270 | { | ||
5271 | name = "has_value___has_value_1.0.0.tgz"; | ||
5272 | path = fetchurl { | ||
5273 | name = "has_value___has_value_1.0.0.tgz"; | ||
5274 | url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz"; | ||
5275 | sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; | ||
5276 | }; | ||
5277 | } | ||
5278 | |||
5279 | { | ||
5280 | name = "has_values___has_values_0.1.4.tgz"; | ||
5281 | path = fetchurl { | ||
5282 | name = "has_values___has_values_0.1.4.tgz"; | ||
5283 | url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz"; | ||
5284 | sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; | ||
5285 | }; | ||
5286 | } | ||
5287 | |||
5288 | { | ||
5289 | name = "has_values___has_values_1.0.0.tgz"; | ||
5290 | path = fetchurl { | ||
5291 | name = "has_values___has_values_1.0.0.tgz"; | ||
5292 | url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz"; | ||
5293 | sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; | ||
5294 | }; | ||
5295 | } | ||
5296 | |||
5297 | { | ||
5298 | name = "has___has_1.0.3.tgz"; | ||
5299 | path = fetchurl { | ||
5300 | name = "has___has_1.0.3.tgz"; | ||
5301 | url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; | ||
5302 | sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; | ||
5303 | }; | ||
5304 | } | ||
5305 | |||
5306 | { | ||
5307 | name = "hash_base___hash_base_3.0.4.tgz"; | ||
5308 | path = fetchurl { | ||
5309 | name = "hash_base___hash_base_3.0.4.tgz"; | ||
5310 | url = "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz"; | ||
5311 | sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918"; | ||
5312 | }; | ||
5313 | } | ||
5314 | |||
5315 | { | ||
5316 | name = "hash.js___hash.js_1.1.7.tgz"; | ||
5317 | path = fetchurl { | ||
5318 | name = "hash.js___hash.js_1.1.7.tgz"; | ||
5319 | url = "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz"; | ||
5320 | sha1 = "0babca538e8d4ee4a0f8988d68866537a003cf42"; | ||
5321 | }; | ||
5322 | } | ||
5323 | |||
5324 | { | ||
5325 | name = "hex_color_regex___hex_color_regex_1.1.0.tgz"; | ||
5326 | path = fetchurl { | ||
5327 | name = "hex_color_regex___hex_color_regex_1.1.0.tgz"; | ||
5328 | url = "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz"; | ||
5329 | sha1 = "4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"; | ||
5330 | }; | ||
5331 | } | ||
5332 | |||
5333 | { | ||
5334 | name = "history___history_4.7.2.tgz"; | ||
5335 | path = fetchurl { | ||
5336 | name = "history___history_4.7.2.tgz"; | ||
5337 | url = "https://registry.yarnpkg.com/history/-/history-4.7.2.tgz"; | ||
5338 | sha1 = "22b5c7f31633c5b8021c7f4a8a954ac139ee8d5b"; | ||
5339 | }; | ||
5340 | } | ||
5341 | |||
5342 | { | ||
5343 | name = "hmac_drbg___hmac_drbg_1.0.1.tgz"; | ||
5344 | path = fetchurl { | ||
5345 | name = "hmac_drbg___hmac_drbg_1.0.1.tgz"; | ||
5346 | url = "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz"; | ||
5347 | sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1"; | ||
5348 | }; | ||
5349 | } | ||
5350 | |||
5351 | { | ||
5352 | name = "hoist_non_react_statics___hoist_non_react_statics_2.5.5.tgz"; | ||
5353 | path = fetchurl { | ||
5354 | name = "hoist_non_react_statics___hoist_non_react_statics_2.5.5.tgz"; | ||
5355 | url = "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz"; | ||
5356 | sha1 = "c5903cf409c0dfd908f388e619d86b9c1174cb47"; | ||
5357 | }; | ||
5358 | } | ||
5359 | |||
5360 | { | ||
5361 | name = "hoist_non_react_statics___hoist_non_react_statics_3.3.0.tgz"; | ||
5362 | path = fetchurl { | ||
5363 | name = "hoist_non_react_statics___hoist_non_react_statics_3.3.0.tgz"; | ||
5364 | url = "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz"; | ||
5365 | sha1 = "b09178f0122184fb95acf525daaecb4d8f45958b"; | ||
5366 | }; | ||
5367 | } | ||
5368 | |||
5369 | { | ||
5370 | name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz"; | ||
5371 | path = fetchurl { | ||
5372 | name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz"; | ||
5373 | url = "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"; | ||
5374 | sha1 = "743298cef4e5af3e194161fbadcc2151d3a058e8"; | ||
5375 | }; | ||
5376 | } | ||
5377 | |||
5378 | { | ||
5379 | name = "hoopy___hoopy_0.1.4.tgz"; | ||
5380 | path = fetchurl { | ||
5381 | name = "hoopy___hoopy_0.1.4.tgz"; | ||
5382 | url = "https://registry.yarnpkg.com/hoopy/-/hoopy-0.1.4.tgz"; | ||
5383 | sha1 = "609207d661100033a9a9402ad3dea677381c1b1d"; | ||
5384 | }; | ||
5385 | } | ||
5386 | |||
5387 | { | ||
5388 | name = "hosted_git_info___hosted_git_info_2.7.1.tgz"; | ||
5389 | path = fetchurl { | ||
5390 | name = "hosted_git_info___hosted_git_info_2.7.1.tgz"; | ||
5391 | url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz"; | ||
5392 | sha1 = "97f236977bd6e125408930ff6de3eec6281ec047"; | ||
5393 | }; | ||
5394 | } | ||
5395 | |||
5396 | { | ||
5397 | name = "hpack.js___hpack.js_2.1.6.tgz"; | ||
5398 | path = fetchurl { | ||
5399 | name = "hpack.js___hpack.js_2.1.6.tgz"; | ||
5400 | url = "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz"; | ||
5401 | sha1 = "87774c0949e513f42e84575b3c45681fade2a0b2"; | ||
5402 | }; | ||
5403 | } | ||
5404 | |||
5405 | { | ||
5406 | name = "hsl_regex___hsl_regex_1.0.0.tgz"; | ||
5407 | path = fetchurl { | ||
5408 | name = "hsl_regex___hsl_regex_1.0.0.tgz"; | ||
5409 | url = "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz"; | ||
5410 | sha1 = "d49330c789ed819e276a4c0d272dffa30b18fe6e"; | ||
5411 | }; | ||
5412 | } | ||
5413 | |||
5414 | { | ||
5415 | name = "hsla_regex___hsla_regex_1.0.0.tgz"; | ||
5416 | path = fetchurl { | ||
5417 | name = "hsla_regex___hsla_regex_1.0.0.tgz"; | ||
5418 | url = "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz"; | ||
5419 | sha1 = "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"; | ||
5420 | }; | ||
5421 | } | ||
5422 | |||
5423 | { | ||
5424 | name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; | ||
5425 | path = fetchurl { | ||
5426 | name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; | ||
5427 | url = "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz"; | ||
5428 | sha1 = "97d4688aeb5c81886a364faa0cad1dda14d433a7"; | ||
5429 | }; | ||
5430 | } | ||
5431 | |||
5432 | { | ||
5433 | name = "html_element_map___html_element_map_1.0.1.tgz"; | ||
5434 | path = fetchurl { | ||
5435 | name = "html_element_map___html_element_map_1.0.1.tgz"; | ||
5436 | url = "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.0.1.tgz"; | ||
5437 | sha1 = "3c4fcb4874ebddfe4283b51c8994e7713782b592"; | ||
5438 | }; | ||
5439 | } | ||
5440 | |||
5441 | { | ||
5442 | name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; | ||
5443 | path = fetchurl { | ||
5444 | name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; | ||
5445 | url = "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz"; | ||
5446 | sha1 = "e70d84b94da53aa375e11fe3a351be6642ca46f8"; | ||
5447 | }; | ||
5448 | } | ||
5449 | |||
5450 | { | ||
5451 | name = "html_entities___html_entities_1.2.1.tgz"; | ||
5452 | path = fetchurl { | ||
5453 | name = "html_entities___html_entities_1.2.1.tgz"; | ||
5454 | url = "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz"; | ||
5455 | sha1 = "0df29351f0721163515dfb9e5543e5f6eed5162f"; | ||
5456 | }; | ||
5457 | } | ||
5458 | |||
5459 | { | ||
5460 | name = "htmlparser2___htmlparser2_3.10.0.tgz"; | ||
5461 | path = fetchurl { | ||
5462 | name = "htmlparser2___htmlparser2_3.10.0.tgz"; | ||
5463 | url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.0.tgz"; | ||
5464 | sha1 = "5f5e422dcf6119c0d983ed36260ce9ded0bee464"; | ||
5465 | }; | ||
5466 | } | ||
5467 | |||
5468 | { | ||
5469 | name = "http_deceiver___http_deceiver_1.2.7.tgz"; | ||
5470 | path = fetchurl { | ||
5471 | name = "http_deceiver___http_deceiver_1.2.7.tgz"; | ||
5472 | url = "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz"; | ||
5473 | sha1 = "fa7168944ab9a519d337cb0bec7284dc3e723d87"; | ||
5474 | }; | ||
5475 | } | ||
5476 | |||
5477 | { | ||
5478 | name = "http_errors___http_errors_1.7.2.tgz"; | ||
5479 | path = fetchurl { | ||
5480 | name = "http_errors___http_errors_1.7.2.tgz"; | ||
5481 | url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz"; | ||
5482 | sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f"; | ||
5483 | }; | ||
5484 | } | ||
5485 | |||
5486 | { | ||
5487 | name = "http_errors___http_errors_1.6.3.tgz"; | ||
5488 | path = fetchurl { | ||
5489 | name = "http_errors___http_errors_1.6.3.tgz"; | ||
5490 | url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz"; | ||
5491 | sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d"; | ||
5492 | }; | ||
5493 | } | ||
5494 | |||
5495 | { | ||
5496 | name = "http_link_header___http_link_header_1.0.2.tgz"; | ||
5497 | path = fetchurl { | ||
5498 | name = "http_link_header___http_link_header_1.0.2.tgz"; | ||
5499 | url = "https://registry.yarnpkg.com/http-link-header/-/http-link-header-1.0.2.tgz"; | ||
5500 | sha1 = "bea50f02e1c7996021f1013b428c63f77e0f4e11"; | ||
5501 | }; | ||
5502 | } | ||
5503 | |||
5504 | { | ||
5505 | name = "http_parser_js___http_parser_js_0.5.0.tgz"; | ||
5506 | path = fetchurl { | ||
5507 | name = "http_parser_js___http_parser_js_0.5.0.tgz"; | ||
5508 | url = "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.0.tgz"; | ||
5509 | sha1 = "d65edbede84349d0dc30320815a15d39cc3cbbd8"; | ||
5510 | }; | ||
5511 | } | ||
5512 | |||
5513 | { | ||
5514 | name = "http_proxy_middleware___http_proxy_middleware_0.19.1.tgz"; | ||
5515 | path = fetchurl { | ||
5516 | name = "http_proxy_middleware___http_proxy_middleware_0.19.1.tgz"; | ||
5517 | url = "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz"; | ||
5518 | sha1 = "183c7dc4aa1479150306498c210cdaf96080a43a"; | ||
5519 | }; | ||
5520 | } | ||
5521 | |||
5522 | { | ||
5523 | name = "http_proxy___http_proxy_1.17.0.tgz"; | ||
5524 | path = fetchurl { | ||
5525 | name = "http_proxy___http_proxy_1.17.0.tgz"; | ||
5526 | url = "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.17.0.tgz"; | ||
5527 | sha1 = "7ad38494658f84605e2f6db4436df410f4e5be9a"; | ||
5528 | }; | ||
5529 | } | ||
5530 | |||
5531 | { | ||
5532 | name = "http_signature___http_signature_1.2.0.tgz"; | ||
5533 | path = fetchurl { | ||
5534 | name = "http_signature___http_signature_1.2.0.tgz"; | ||
5535 | url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz"; | ||
5536 | sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; | ||
5537 | }; | ||
5538 | } | ||
5539 | |||
5540 | { | ||
5541 | name = "https_browserify___https_browserify_1.0.0.tgz"; | ||
5542 | path = fetchurl { | ||
5543 | name = "https_browserify___https_browserify_1.0.0.tgz"; | ||
5544 | url = "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz"; | ||
5545 | sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"; | ||
5546 | }; | ||
5547 | } | ||
5548 | |||
5549 | { | ||
5550 | name = "iconv_lite___iconv_lite_0.4.24.tgz"; | ||
5551 | path = fetchurl { | ||
5552 | name = "iconv_lite___iconv_lite_0.4.24.tgz"; | ||
5553 | url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; | ||
5554 | sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; | ||
5555 | }; | ||
5556 | } | ||
5557 | |||
5558 | { | ||
5559 | name = "icss_replace_symbols___icss_replace_symbols_1.1.0.tgz"; | ||
5560 | path = fetchurl { | ||
5561 | name = "icss_replace_symbols___icss_replace_symbols_1.1.0.tgz"; | ||
5562 | url = "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz"; | ||
5563 | sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded"; | ||
5564 | }; | ||
5565 | } | ||
5566 | |||
5567 | { | ||
5568 | name = "icss_utils___icss_utils_4.1.0.tgz"; | ||
5569 | path = fetchurl { | ||
5570 | name = "icss_utils___icss_utils_4.1.0.tgz"; | ||
5571 | url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.0.tgz"; | ||
5572 | sha1 = "339dbbffb9f8729a243b701e1c29d4cc58c52f0e"; | ||
5573 | }; | ||
5574 | } | ||
5575 | |||
5576 | { | ||
5577 | name = "ieee754___ieee754_1.1.12.tgz"; | ||
5578 | path = fetchurl { | ||
5579 | name = "ieee754___ieee754_1.1.12.tgz"; | ||
5580 | url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz"; | ||
5581 | sha1 = "50bf24e5b9c8bb98af4964c941cdb0918da7b60b"; | ||
5582 | }; | ||
5583 | } | ||
5584 | |||
5585 | { | ||
5586 | name = "iferr___iferr_0.1.5.tgz"; | ||
5587 | path = fetchurl { | ||
5588 | name = "iferr___iferr_0.1.5.tgz"; | ||
5589 | url = "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz"; | ||
5590 | sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"; | ||
5591 | }; | ||
5592 | } | ||
5593 | |||
5594 | { | ||
5595 | name = "ignore_walk___ignore_walk_3.0.1.tgz"; | ||
5596 | path = fetchurl { | ||
5597 | name = "ignore_walk___ignore_walk_3.0.1.tgz"; | ||
5598 | url = "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz"; | ||
5599 | sha1 = "a83e62e7d272ac0e3b551aaa82831a19b69f82f8"; | ||
5600 | }; | ||
5601 | } | ||
5602 | |||
5603 | { | ||
5604 | name = "ignore___ignore_3.3.10.tgz"; | ||
5605 | path = fetchurl { | ||
5606 | name = "ignore___ignore_3.3.10.tgz"; | ||
5607 | url = "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz"; | ||
5608 | sha1 = "0a97fb876986e8081c631160f8f9f389157f0043"; | ||
5609 | }; | ||
5610 | } | ||
5611 | |||
5612 | { | ||
5613 | name = "ignore___ignore_4.0.6.tgz"; | ||
5614 | path = fetchurl { | ||
5615 | name = "ignore___ignore_4.0.6.tgz"; | ||
5616 | url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz"; | ||
5617 | sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc"; | ||
5618 | }; | ||
5619 | } | ||
5620 | |||
5621 | { | ||
5622 | name = "immutable___immutable_3.8.2.tgz"; | ||
5623 | path = fetchurl { | ||
5624 | name = "immutable___immutable_3.8.2.tgz"; | ||
5625 | url = "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz"; | ||
5626 | sha1 = "c2439951455bb39913daf281376f1530e104adf3"; | ||
5627 | }; | ||
5628 | } | ||
5629 | |||
5630 | { | ||
5631 | name = "import_cwd___import_cwd_2.1.0.tgz"; | ||
5632 | path = fetchurl { | ||
5633 | name = "import_cwd___import_cwd_2.1.0.tgz"; | ||
5634 | url = "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz"; | ||
5635 | sha1 = "aa6cf36e722761285cb371ec6519f53e2435b0a9"; | ||
5636 | }; | ||
5637 | } | ||
5638 | |||
5639 | { | ||
5640 | name = "import_fresh___import_fresh_2.0.0.tgz"; | ||
5641 | path = fetchurl { | ||
5642 | name = "import_fresh___import_fresh_2.0.0.tgz"; | ||
5643 | url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz"; | ||
5644 | sha1 = "d81355c15612d386c61f9ddd3922d4304822a546"; | ||
5645 | }; | ||
5646 | } | ||
5647 | |||
5648 | { | ||
5649 | name = "import_from___import_from_2.1.0.tgz"; | ||
5650 | path = fetchurl { | ||
5651 | name = "import_from___import_from_2.1.0.tgz"; | ||
5652 | url = "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz"; | ||
5653 | sha1 = "335db7f2a7affd53aaa471d4b8021dee36b7f3b1"; | ||
5654 | }; | ||
5655 | } | ||
5656 | |||
5657 | { | ||
5658 | name = "import_local___import_local_2.0.0.tgz"; | ||
5659 | path = fetchurl { | ||
5660 | name = "import_local___import_local_2.0.0.tgz"; | ||
5661 | url = "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz"; | ||
5662 | sha1 = "55070be38a5993cf18ef6db7e961f5bee5c5a09d"; | ||
5663 | }; | ||
5664 | } | ||
5665 | |||
5666 | { | ||
5667 | name = "imports_loader___imports_loader_0.8.0.tgz"; | ||
5668 | path = fetchurl { | ||
5669 | name = "imports_loader___imports_loader_0.8.0.tgz"; | ||
5670 | url = "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.8.0.tgz"; | ||
5671 | sha1 = "030ea51b8ca05977c40a3abfd9b4088fe0be9a69"; | ||
5672 | }; | ||
5673 | } | ||
5674 | |||
5675 | { | ||
5676 | name = "imurmurhash___imurmurhash_0.1.4.tgz"; | ||
5677 | path = fetchurl { | ||
5678 | name = "imurmurhash___imurmurhash_0.1.4.tgz"; | ||
5679 | url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; | ||
5680 | sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; | ||
5681 | }; | ||
5682 | } | ||
5683 | |||
5684 | { | ||
5685 | name = "indexes_of___indexes_of_1.0.1.tgz"; | ||
5686 | path = fetchurl { | ||
5687 | name = "indexes_of___indexes_of_1.0.1.tgz"; | ||
5688 | url = "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz"; | ||
5689 | sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607"; | ||
5690 | }; | ||
5691 | } | ||
5692 | |||
5693 | { | ||
5694 | name = "indexof___indexof_0.0.1.tgz"; | ||
5695 | path = fetchurl { | ||
5696 | name = "indexof___indexof_0.0.1.tgz"; | ||
5697 | url = "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz"; | ||
5698 | sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; | ||
5699 | }; | ||
5700 | } | ||
5701 | |||
5702 | { | ||
5703 | name = "inflight___inflight_1.0.6.tgz"; | ||
5704 | path = fetchurl { | ||
5705 | name = "inflight___inflight_1.0.6.tgz"; | ||
5706 | url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; | ||
5707 | sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; | ||
5708 | }; | ||
5709 | } | ||
5710 | |||
5711 | { | ||
5712 | name = "inherits___inherits_2.0.3.tgz"; | ||
5713 | path = fetchurl { | ||
5714 | name = "inherits___inherits_2.0.3.tgz"; | ||
5715 | url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; | ||
5716 | sha1 = "633c2c83e3da42a502f52466022480f4208261de"; | ||
5717 | }; | ||
5718 | } | ||
5719 | |||
5720 | { | ||
5721 | name = "inherits___inherits_2.0.1.tgz"; | ||
5722 | path = fetchurl { | ||
5723 | name = "inherits___inherits_2.0.1.tgz"; | ||
5724 | url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz"; | ||
5725 | sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; | ||
5726 | }; | ||
5727 | } | ||
5728 | |||
5729 | { | ||
5730 | name = "ini___ini_1.3.5.tgz"; | ||
5731 | path = fetchurl { | ||
5732 | name = "ini___ini_1.3.5.tgz"; | ||
5733 | url = "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz"; | ||
5734 | sha1 = "eee25f56db1c9ec6085e0c22778083f596abf927"; | ||
5735 | }; | ||
5736 | } | ||
5737 | |||
5738 | { | ||
5739 | name = "inquirer___inquirer_0.12.0.tgz"; | ||
5740 | path = fetchurl { | ||
5741 | name = "inquirer___inquirer_0.12.0.tgz"; | ||
5742 | url = "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz"; | ||
5743 | sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e"; | ||
5744 | }; | ||
5745 | } | ||
5746 | |||
5747 | { | ||
5748 | name = "inquirer___inquirer_6.2.1.tgz"; | ||
5749 | path = fetchurl { | ||
5750 | name = "inquirer___inquirer_6.2.1.tgz"; | ||
5751 | url = "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz"; | ||
5752 | sha1 = "9943fc4882161bdb0b0c9276769c75b32dbfcd52"; | ||
5753 | }; | ||
5754 | } | ||
5755 | |||
5756 | { | ||
5757 | name = "internal_ip___internal_ip_4.3.0.tgz"; | ||
5758 | path = fetchurl { | ||
5759 | name = "internal_ip___internal_ip_4.3.0.tgz"; | ||
5760 | url = "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz"; | ||
5761 | sha1 = "845452baad9d2ca3b69c635a137acb9a0dad0907"; | ||
5762 | }; | ||
5763 | } | ||
5764 | |||
5765 | { | ||
5766 | name = "interpret___interpret_1.2.0.tgz"; | ||
5767 | path = fetchurl { | ||
5768 | name = "interpret___interpret_1.2.0.tgz"; | ||
5769 | url = "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz"; | ||
5770 | sha1 = "d5061a6224be58e8083985f5014d844359576296"; | ||
5771 | }; | ||
5772 | } | ||
5773 | |||
5774 | { | ||
5775 | name = "intersection_observer___intersection_observer_0.7.0.tgz"; | ||
5776 | path = fetchurl { | ||
5777 | name = "intersection_observer___intersection_observer_0.7.0.tgz"; | ||
5778 | url = "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.7.0.tgz"; | ||
5779 | sha1 = "ee16bee978db53516ead2f0a8154b09b400bbdc9"; | ||
5780 | }; | ||
5781 | } | ||
5782 | |||
5783 | { | ||
5784 | name = "intl_format_cache___intl_format_cache_2.1.0.tgz"; | ||
5785 | path = fetchurl { | ||
5786 | name = "intl_format_cache___intl_format_cache_2.1.0.tgz"; | ||
5787 | url = "https://registry.yarnpkg.com/intl-format-cache/-/intl-format-cache-2.1.0.tgz"; | ||
5788 | sha1 = "04a369fecbfad6da6005bae1f14333332dcf9316"; | ||
5789 | }; | ||
5790 | } | ||
5791 | |||
5792 | { | ||
5793 | name = "intl_messageformat_parser___intl_messageformat_parser_1.4.0.tgz"; | ||
5794 | path = fetchurl { | ||
5795 | name = "intl_messageformat_parser___intl_messageformat_parser_1.4.0.tgz"; | ||
5796 | url = "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.4.0.tgz"; | ||
5797 | sha1 = "b43d45a97468cadbe44331d74bb1e8dea44fc075"; | ||
5798 | }; | ||
5799 | } | ||
5800 | |||
5801 | { | ||
5802 | name = "intl_messageformat_parser___intl_messageformat_parser_1.6.5.tgz"; | ||
5803 | path = fetchurl { | ||
5804 | name = "intl_messageformat_parser___intl_messageformat_parser_1.6.5.tgz"; | ||
5805 | url = "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.6.5.tgz"; | ||
5806 | sha1 = "40f5fc19855f203389a3fc926cc3c88d7a573496"; | ||
5807 | }; | ||
5808 | } | ||
5809 | |||
5810 | { | ||
5811 | name = "intl_messageformat___intl_messageformat_2.2.0.tgz"; | ||
5812 | path = fetchurl { | ||
5813 | name = "intl_messageformat___intl_messageformat_2.2.0.tgz"; | ||
5814 | url = "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-2.2.0.tgz"; | ||
5815 | sha1 = "345bcd46de630b7683330c2e52177ff5eab484fc"; | ||
5816 | }; | ||
5817 | } | ||
5818 | |||
5819 | { | ||
5820 | name = "intl_relativeformat___intl_relativeformat_2.2.0.tgz"; | ||
5821 | path = fetchurl { | ||
5822 | name = "intl_relativeformat___intl_relativeformat_2.2.0.tgz"; | ||
5823 | url = "https://registry.yarnpkg.com/intl-relativeformat/-/intl-relativeformat-2.2.0.tgz"; | ||
5824 | sha1 = "6aca95d019ec8d30b6c5653b6629f9983ea5b6c5"; | ||
5825 | }; | ||
5826 | } | ||
5827 | |||
5828 | { | ||
5829 | name = "intl___intl_1.2.5.tgz"; | ||
5830 | path = fetchurl { | ||
5831 | name = "intl___intl_1.2.5.tgz"; | ||
5832 | url = "https://registry.yarnpkg.com/intl/-/intl-1.2.5.tgz"; | ||
5833 | sha1 = "82244a2190c4e419f8371f5aa34daa3420e2abde"; | ||
5834 | }; | ||
5835 | } | ||
5836 | |||
5837 | { | ||
5838 | name = "invariant___invariant_2.2.4.tgz"; | ||
5839 | path = fetchurl { | ||
5840 | name = "invariant___invariant_2.2.4.tgz"; | ||
5841 | url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz"; | ||
5842 | sha1 = "610f3c92c9359ce1db616e538008d23ff35158e6"; | ||
5843 | }; | ||
5844 | } | ||
5845 | |||
5846 | { | ||
5847 | name = "invert_kv___invert_kv_2.0.0.tgz"; | ||
5848 | path = fetchurl { | ||
5849 | name = "invert_kv___invert_kv_2.0.0.tgz"; | ||
5850 | url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz"; | ||
5851 | sha1 = "7393f5afa59ec9ff5f67a27620d11c226e3eec02"; | ||
5852 | }; | ||
5853 | } | ||
5854 | |||
5855 | { | ||
5856 | name = "ip_regex___ip_regex_2.1.0.tgz"; | ||
5857 | path = fetchurl { | ||
5858 | name = "ip_regex___ip_regex_2.1.0.tgz"; | ||
5859 | url = "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz"; | ||
5860 | sha1 = "fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"; | ||
5861 | }; | ||
5862 | } | ||
5863 | |||
5864 | { | ||
5865 | name = "ip___ip_1.1.5.tgz"; | ||
5866 | path = fetchurl { | ||
5867 | name = "ip___ip_1.1.5.tgz"; | ||
5868 | url = "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz"; | ||
5869 | sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a"; | ||
5870 | }; | ||
5871 | } | ||
5872 | |||
5873 | { | ||
5874 | name = "ipaddr.js___ipaddr.js_1.9.0.tgz"; | ||
5875 | path = fetchurl { | ||
5876 | name = "ipaddr.js___ipaddr.js_1.9.0.tgz"; | ||
5877 | url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz"; | ||
5878 | sha1 = "37df74e430a0e47550fe54a2defe30d8acd95f65"; | ||
5879 | }; | ||
5880 | } | ||
5881 | |||
5882 | { | ||
5883 | name = "is_absolute_url___is_absolute_url_2.1.0.tgz"; | ||
5884 | path = fetchurl { | ||
5885 | name = "is_absolute_url___is_absolute_url_2.1.0.tgz"; | ||
5886 | url = "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz"; | ||
5887 | sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"; | ||
5888 | }; | ||
5889 | } | ||
5890 | |||
5891 | { | ||
5892 | name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; | ||
5893 | path = fetchurl { | ||
5894 | name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; | ||
5895 | url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; | ||
5896 | sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; | ||
5897 | }; | ||
5898 | } | ||
5899 | |||
5900 | { | ||
5901 | name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; | ||
5902 | path = fetchurl { | ||
5903 | name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; | ||
5904 | url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; | ||
5905 | sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656"; | ||
5906 | }; | ||
5907 | } | ||
5908 | |||
5909 | { | ||
5910 | name = "is_arrayish___is_arrayish_0.2.1.tgz"; | ||
5911 | path = fetchurl { | ||
5912 | name = "is_arrayish___is_arrayish_0.2.1.tgz"; | ||
5913 | url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; | ||
5914 | sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; | ||
5915 | }; | ||
5916 | } | ||
5917 | |||
5918 | { | ||
5919 | name = "is_arrayish___is_arrayish_0.3.2.tgz"; | ||
5920 | path = fetchurl { | ||
5921 | name = "is_arrayish___is_arrayish_0.3.2.tgz"; | ||
5922 | url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz"; | ||
5923 | sha1 = "4574a2ae56f7ab206896fb431eaeed066fdf8f03"; | ||
5924 | }; | ||
5925 | } | ||
5926 | |||
5927 | { | ||
5928 | name = "is_binary_path___is_binary_path_1.0.1.tgz"; | ||
5929 | path = fetchurl { | ||
5930 | name = "is_binary_path___is_binary_path_1.0.1.tgz"; | ||
5931 | url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz"; | ||
5932 | sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; | ||
5933 | }; | ||
5934 | } | ||
5935 | |||
5936 | { | ||
5937 | name = "is_boolean_object___is_boolean_object_1.0.0.tgz"; | ||
5938 | path = fetchurl { | ||
5939 | name = "is_boolean_object___is_boolean_object_1.0.0.tgz"; | ||
5940 | url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz"; | ||
5941 | sha1 = "98f8b28030684219a95f375cfbd88ce3405dff93"; | ||
5942 | }; | ||
5943 | } | ||
5944 | |||
5945 | { | ||
5946 | name = "is_buffer___is_buffer_1.1.6.tgz"; | ||
5947 | path = fetchurl { | ||
5948 | name = "is_buffer___is_buffer_1.1.6.tgz"; | ||
5949 | url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; | ||
5950 | sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; | ||
5951 | }; | ||
5952 | } | ||
5953 | |||
5954 | { | ||
5955 | name = "is_buffer___is_buffer_2.0.3.tgz"; | ||
5956 | path = fetchurl { | ||
5957 | name = "is_buffer___is_buffer_2.0.3.tgz"; | ||
5958 | url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz"; | ||
5959 | sha1 = "4ecf3fcf749cbd1e472689e109ac66261a25e725"; | ||
5960 | }; | ||
5961 | } | ||
5962 | |||
5963 | { | ||
5964 | name = "is_builtin_module___is_builtin_module_1.0.0.tgz"; | ||
5965 | path = fetchurl { | ||
5966 | name = "is_builtin_module___is_builtin_module_1.0.0.tgz"; | ||
5967 | url = "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; | ||
5968 | sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; | ||
5969 | }; | ||
5970 | } | ||
5971 | |||
5972 | { | ||
5973 | name = "is_callable___is_callable_1.1.4.tgz"; | ||
5974 | path = fetchurl { | ||
5975 | name = "is_callable___is_callable_1.1.4.tgz"; | ||
5976 | url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz"; | ||
5977 | sha1 = "1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"; | ||
5978 | }; | ||
5979 | } | ||
5980 | |||
5981 | { | ||
5982 | name = "is_ci___is_ci_2.0.0.tgz"; | ||
5983 | path = fetchurl { | ||
5984 | name = "is_ci___is_ci_2.0.0.tgz"; | ||
5985 | url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz"; | ||
5986 | sha1 = "6bc6334181810e04b5c22b3d589fdca55026404c"; | ||
5987 | }; | ||
5988 | } | ||
5989 | |||
5990 | { | ||
5991 | name = "is_color_stop___is_color_stop_1.1.0.tgz"; | ||
5992 | path = fetchurl { | ||
5993 | name = "is_color_stop___is_color_stop_1.1.0.tgz"; | ||
5994 | url = "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz"; | ||
5995 | sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345"; | ||
5996 | }; | ||
5997 | } | ||
5998 | |||
5999 | { | ||
6000 | name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; | ||
6001 | path = fetchurl { | ||
6002 | name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; | ||
6003 | url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; | ||
6004 | sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; | ||
6005 | }; | ||
6006 | } | ||
6007 | |||
6008 | { | ||
6009 | name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; | ||
6010 | path = fetchurl { | ||
6011 | name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; | ||
6012 | url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; | ||
6013 | sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7"; | ||
6014 | }; | ||
6015 | } | ||
6016 | |||
6017 | { | ||
6018 | name = "is_date_object___is_date_object_1.0.1.tgz"; | ||
6019 | path = fetchurl { | ||
6020 | name = "is_date_object___is_date_object_1.0.1.tgz"; | ||
6021 | url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz"; | ||
6022 | sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; | ||
6023 | }; | ||
6024 | } | ||
6025 | |||
6026 | { | ||
6027 | name = "is_descriptor___is_descriptor_0.1.6.tgz"; | ||
6028 | path = fetchurl { | ||
6029 | name = "is_descriptor___is_descriptor_0.1.6.tgz"; | ||
6030 | url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz"; | ||
6031 | sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca"; | ||
6032 | }; | ||
6033 | } | ||
6034 | |||
6035 | { | ||
6036 | name = "is_descriptor___is_descriptor_1.0.2.tgz"; | ||
6037 | path = fetchurl { | ||
6038 | name = "is_descriptor___is_descriptor_1.0.2.tgz"; | ||
6039 | url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz"; | ||
6040 | sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec"; | ||
6041 | }; | ||
6042 | } | ||
6043 | |||
6044 | { | ||
6045 | name = "is_directory___is_directory_0.3.1.tgz"; | ||
6046 | path = fetchurl { | ||
6047 | name = "is_directory___is_directory_0.3.1.tgz"; | ||
6048 | url = "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz"; | ||
6049 | sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1"; | ||
6050 | }; | ||
6051 | } | ||
6052 | |||
6053 | { | ||
6054 | name = "is_extendable___is_extendable_0.1.1.tgz"; | ||
6055 | path = fetchurl { | ||
6056 | name = "is_extendable___is_extendable_0.1.1.tgz"; | ||
6057 | url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz"; | ||
6058 | sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; | ||
6059 | }; | ||
6060 | } | ||
6061 | |||
6062 | { | ||
6063 | name = "is_extendable___is_extendable_1.0.1.tgz"; | ||
6064 | path = fetchurl { | ||
6065 | name = "is_extendable___is_extendable_1.0.1.tgz"; | ||
6066 | url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz"; | ||
6067 | sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4"; | ||
6068 | }; | ||
6069 | } | ||
6070 | |||
6071 | { | ||
6072 | name = "is_extglob___is_extglob_2.1.1.tgz"; | ||
6073 | path = fetchurl { | ||
6074 | name = "is_extglob___is_extglob_2.1.1.tgz"; | ||
6075 | url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; | ||
6076 | sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; | ||
6077 | }; | ||
6078 | } | ||
6079 | |||
6080 | { | ||
6081 | name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; | ||
6082 | path = fetchurl { | ||
6083 | name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; | ||
6084 | url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; | ||
6085 | sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; | ||
6086 | }; | ||
6087 | } | ||
6088 | |||
6089 | { | ||
6090 | name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; | ||
6091 | path = fetchurl { | ||
6092 | name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; | ||
6093 | url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; | ||
6094 | sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; | ||
6095 | }; | ||
6096 | } | ||
6097 | |||
6098 | { | ||
6099 | name = "is_generator_fn___is_generator_fn_2.0.0.tgz"; | ||
6100 | path = fetchurl { | ||
6101 | name = "is_generator_fn___is_generator_fn_2.0.0.tgz"; | ||
6102 | url = "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.0.0.tgz"; | ||
6103 | sha1 = "038c31b774709641bda678b1f06a4e3227c10b3e"; | ||
6104 | }; | ||
6105 | } | ||
6106 | |||
6107 | { | ||
6108 | name = "is_glob___is_glob_3.1.0.tgz"; | ||
6109 | path = fetchurl { | ||
6110 | name = "is_glob___is_glob_3.1.0.tgz"; | ||
6111 | url = "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz"; | ||
6112 | sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; | ||
6113 | }; | ||
6114 | } | ||
6115 | |||
6116 | { | ||
6117 | name = "is_glob___is_glob_4.0.0.tgz"; | ||
6118 | path = fetchurl { | ||
6119 | name = "is_glob___is_glob_4.0.0.tgz"; | ||
6120 | url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz"; | ||
6121 | sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0"; | ||
6122 | }; | ||
6123 | } | ||
6124 | |||
6125 | { | ||
6126 | name = "is_my_ip_valid___is_my_ip_valid_1.0.0.tgz"; | ||
6127 | path = fetchurl { | ||
6128 | name = "is_my_ip_valid___is_my_ip_valid_1.0.0.tgz"; | ||
6129 | url = "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz"; | ||
6130 | sha1 = "7b351b8e8edd4d3995d4d066680e664d94696824"; | ||
6131 | }; | ||
6132 | } | ||
6133 | |||
6134 | { | ||
6135 | name = "is_my_json_valid___is_my_json_valid_2.20.0.tgz"; | ||
6136 | path = fetchurl { | ||
6137 | name = "is_my_json_valid___is_my_json_valid_2.20.0.tgz"; | ||
6138 | url = "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz"; | ||
6139 | sha1 = "1345a6fca3e8daefc10d0fa77067f54cedafd59a"; | ||
6140 | }; | ||
6141 | } | ||
6142 | |||
6143 | { | ||
6144 | name = "is_nan___is_nan_1.2.1.tgz"; | ||
6145 | path = fetchurl { | ||
6146 | name = "is_nan___is_nan_1.2.1.tgz"; | ||
6147 | url = "https://registry.yarnpkg.com/is-nan/-/is-nan-1.2.1.tgz"; | ||
6148 | sha1 = "9faf65b6fb6db24b7f5c0628475ea71f988401e2"; | ||
6149 | }; | ||
6150 | } | ||
6151 | |||
6152 | { | ||
6153 | name = "is_number_object___is_number_object_1.0.3.tgz"; | ||
6154 | path = fetchurl { | ||
6155 | name = "is_number_object___is_number_object_1.0.3.tgz"; | ||
6156 | url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz"; | ||
6157 | sha1 = "f265ab89a9f445034ef6aff15a8f00b00f551799"; | ||
6158 | }; | ||
6159 | } | ||
6160 | |||
6161 | { | ||
6162 | name = "is_number___is_number_3.0.0.tgz"; | ||
6163 | path = fetchurl { | ||
6164 | name = "is_number___is_number_3.0.0.tgz"; | ||
6165 | url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz"; | ||
6166 | sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; | ||
6167 | }; | ||
6168 | } | ||
6169 | |||
6170 | { | ||
6171 | name = "is_obj___is_obj_1.0.1.tgz"; | ||
6172 | path = fetchurl { | ||
6173 | name = "is_obj___is_obj_1.0.1.tgz"; | ||
6174 | url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; | ||
6175 | sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; | ||
6176 | }; | ||
6177 | } | ||
6178 | |||
6179 | { | ||
6180 | name = "is_path_cwd___is_path_cwd_2.1.0.tgz"; | ||
6181 | path = fetchurl { | ||
6182 | name = "is_path_cwd___is_path_cwd_2.1.0.tgz"; | ||
6183 | url = "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.1.0.tgz"; | ||
6184 | sha1 = "2e0c7e463ff5b7a0eb60852d851a6809347a124c"; | ||
6185 | }; | ||
6186 | } | ||
6187 | |||
6188 | { | ||
6189 | name = "is_path_in_cwd___is_path_in_cwd_2.1.0.tgz"; | ||
6190 | path = fetchurl { | ||
6191 | name = "is_path_in_cwd___is_path_in_cwd_2.1.0.tgz"; | ||
6192 | url = "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz"; | ||
6193 | sha1 = "bfe2dca26c69f397265a4009963602935a053acb"; | ||
6194 | }; | ||
6195 | } | ||
6196 | |||
6197 | { | ||
6198 | name = "is_path_inside___is_path_inside_2.1.0.tgz"; | ||
6199 | path = fetchurl { | ||
6200 | name = "is_path_inside___is_path_inside_2.1.0.tgz"; | ||
6201 | url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz"; | ||
6202 | sha1 = "7c9810587d659a40d27bcdb4d5616eab059494b2"; | ||
6203 | }; | ||
6204 | } | ||
6205 | |||
6206 | { | ||
6207 | name = "is_plain_object___is_plain_object_2.0.4.tgz"; | ||
6208 | path = fetchurl { | ||
6209 | name = "is_plain_object___is_plain_object_2.0.4.tgz"; | ||
6210 | url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz"; | ||
6211 | sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; | ||
6212 | }; | ||
6213 | } | ||
6214 | |||
6215 | { | ||
6216 | name = "is_promise___is_promise_2.1.0.tgz"; | ||
6217 | path = fetchurl { | ||
6218 | name = "is_promise___is_promise_2.1.0.tgz"; | ||
6219 | url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz"; | ||
6220 | sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; | ||
6221 | }; | ||
6222 | } | ||
6223 | |||
6224 | { | ||
6225 | name = "is_property___is_property_1.0.2.tgz"; | ||
6226 | path = fetchurl { | ||
6227 | name = "is_property___is_property_1.0.2.tgz"; | ||
6228 | url = "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz"; | ||
6229 | sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; | ||
6230 | }; | ||
6231 | } | ||
6232 | |||
6233 | { | ||
6234 | name = "is_regex___is_regex_1.0.4.tgz"; | ||
6235 | path = fetchurl { | ||
6236 | name = "is_regex___is_regex_1.0.4.tgz"; | ||
6237 | url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz"; | ||
6238 | sha1 = "5517489b547091b0930e095654ced25ee97e9491"; | ||
6239 | }; | ||
6240 | } | ||
6241 | |||
6242 | { | ||
6243 | name = "is_resolvable___is_resolvable_1.1.0.tgz"; | ||
6244 | path = fetchurl { | ||
6245 | name = "is_resolvable___is_resolvable_1.1.0.tgz"; | ||
6246 | url = "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz"; | ||
6247 | sha1 = "fb18f87ce1feb925169c9a407c19318a3206ed88"; | ||
6248 | }; | ||
6249 | } | ||
6250 | |||
6251 | { | ||
6252 | name = "is_stream___is_stream_1.1.0.tgz"; | ||
6253 | path = fetchurl { | ||
6254 | name = "is_stream___is_stream_1.1.0.tgz"; | ||
6255 | url = "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz"; | ||
6256 | sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; | ||
6257 | }; | ||
6258 | } | ||
6259 | |||
6260 | { | ||
6261 | name = "is_string___is_string_1.0.4.tgz"; | ||
6262 | path = fetchurl { | ||
6263 | name = "is_string___is_string_1.0.4.tgz"; | ||
6264 | url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz"; | ||
6265 | sha1 = "cc3a9b69857d621e963725a24caeec873b826e64"; | ||
6266 | }; | ||
6267 | } | ||
6268 | |||
6269 | { | ||
6270 | name = "is_subset___is_subset_0.1.1.tgz"; | ||
6271 | path = fetchurl { | ||
6272 | name = "is_subset___is_subset_0.1.1.tgz"; | ||
6273 | url = "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz"; | ||
6274 | sha1 = "8a59117d932de1de00f245fcdd39ce43f1e939a6"; | ||
6275 | }; | ||
6276 | } | ||
6277 | |||
6278 | { | ||
6279 | name = "is_svg___is_svg_3.0.0.tgz"; | ||
6280 | path = fetchurl { | ||
6281 | name = "is_svg___is_svg_3.0.0.tgz"; | ||
6282 | url = "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz"; | ||
6283 | sha1 = "9321dbd29c212e5ca99c4fa9794c714bcafa2f75"; | ||
6284 | }; | ||
6285 | } | ||
6286 | |||
6287 | { | ||
6288 | name = "is_symbol___is_symbol_1.0.2.tgz"; | ||
6289 | path = fetchurl { | ||
6290 | name = "is_symbol___is_symbol_1.0.2.tgz"; | ||
6291 | url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz"; | ||
6292 | sha1 = "a055f6ae57192caee329e7a860118b497a950f38"; | ||
6293 | }; | ||
6294 | } | ||
6295 | |||
6296 | { | ||
6297 | name = "is_typedarray___is_typedarray_1.0.0.tgz"; | ||
6298 | path = fetchurl { | ||
6299 | name = "is_typedarray___is_typedarray_1.0.0.tgz"; | ||
6300 | url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; | ||
6301 | sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; | ||
6302 | }; | ||
6303 | } | ||
6304 | |||
6305 | { | ||
6306 | name = "is_windows___is_windows_1.0.2.tgz"; | ||
6307 | path = fetchurl { | ||
6308 | name = "is_windows___is_windows_1.0.2.tgz"; | ||
6309 | url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; | ||
6310 | sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; | ||
6311 | }; | ||
6312 | } | ||
6313 | |||
6314 | { | ||
6315 | name = "is_wsl___is_wsl_1.1.0.tgz"; | ||
6316 | path = fetchurl { | ||
6317 | name = "is_wsl___is_wsl_1.1.0.tgz"; | ||
6318 | url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz"; | ||
6319 | sha1 = "1f16e4aa22b04d1336b66188a66af3c600c3a66d"; | ||
6320 | }; | ||
6321 | } | ||
6322 | |||
6323 | { | ||
6324 | name = "isarray___isarray_0.0.1.tgz"; | ||
6325 | path = fetchurl { | ||
6326 | name = "isarray___isarray_0.0.1.tgz"; | ||
6327 | url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz"; | ||
6328 | sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; | ||
6329 | }; | ||
6330 | } | ||
6331 | |||
6332 | { | ||
6333 | name = "isarray___isarray_1.0.0.tgz"; | ||
6334 | path = fetchurl { | ||
6335 | name = "isarray___isarray_1.0.0.tgz"; | ||
6336 | url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; | ||
6337 | sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; | ||
6338 | }; | ||
6339 | } | ||
6340 | |||
6341 | { | ||
6342 | name = "isexe___isexe_2.0.0.tgz"; | ||
6343 | path = fetchurl { | ||
6344 | name = "isexe___isexe_2.0.0.tgz"; | ||
6345 | url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; | ||
6346 | sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; | ||
6347 | }; | ||
6348 | } | ||
6349 | |||
6350 | { | ||
6351 | name = "isobject___isobject_2.1.0.tgz"; | ||
6352 | path = fetchurl { | ||
6353 | name = "isobject___isobject_2.1.0.tgz"; | ||
6354 | url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz"; | ||
6355 | sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; | ||
6356 | }; | ||
6357 | } | ||
6358 | |||
6359 | { | ||
6360 | name = "isobject___isobject_3.0.1.tgz"; | ||
6361 | path = fetchurl { | ||
6362 | name = "isobject___isobject_3.0.1.tgz"; | ||
6363 | url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz"; | ||
6364 | sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; | ||
6365 | }; | ||
6366 | } | ||
6367 | |||
6368 | { | ||
6369 | name = "isomorphic_fetch___isomorphic_fetch_2.2.1.tgz"; | ||
6370 | path = fetchurl { | ||
6371 | name = "isomorphic_fetch___isomorphic_fetch_2.2.1.tgz"; | ||
6372 | url = "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"; | ||
6373 | sha1 = "611ae1acf14f5e81f729507472819fe9733558a9"; | ||
6374 | }; | ||
6375 | } | ||
6376 | |||
6377 | { | ||
6378 | name = "isstream___isstream_0.1.2.tgz"; | ||
6379 | path = fetchurl { | ||
6380 | name = "isstream___isstream_0.1.2.tgz"; | ||
6381 | url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; | ||
6382 | sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; | ||
6383 | }; | ||
6384 | } | ||
6385 | |||
6386 | { | ||
6387 | name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz"; | ||
6388 | path = fetchurl { | ||
6389 | name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz"; | ||
6390 | url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"; | ||
6391 | sha1 = "0b891e5ad42312c2b9488554f603795f9a2211ba"; | ||
6392 | }; | ||
6393 | } | ||
6394 | |||
6395 | { | ||
6396 | name = "istanbul_lib_instrument___istanbul_lib_instrument_3.1.0.tgz"; | ||
6397 | path = fetchurl { | ||
6398 | name = "istanbul_lib_instrument___istanbul_lib_instrument_3.1.0.tgz"; | ||
6399 | url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz"; | ||
6400 | sha1 = "a2b5484a7d445f1f311e93190813fa56dfb62971"; | ||
6401 | }; | ||
6402 | } | ||
6403 | |||
6404 | { | ||
6405 | name = "istanbul_lib_report___istanbul_lib_report_2.0.4.tgz"; | ||
6406 | path = fetchurl { | ||
6407 | name = "istanbul_lib_report___istanbul_lib_report_2.0.4.tgz"; | ||
6408 | url = "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz"; | ||
6409 | sha1 = "bfd324ee0c04f59119cb4f07dab157d09f24d7e4"; | ||
6410 | }; | ||
6411 | } | ||
6412 | |||
6413 | { | ||
6414 | name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.2.tgz"; | ||
6415 | path = fetchurl { | ||
6416 | name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.2.tgz"; | ||
6417 | url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz"; | ||
6418 | sha1 = "f1e817229a9146e8424a28e5d69ba220fda34156"; | ||
6419 | }; | ||
6420 | } | ||
6421 | |||
6422 | { | ||
6423 | name = "istanbul_reports___istanbul_reports_2.1.1.tgz"; | ||
6424 | path = fetchurl { | ||
6425 | name = "istanbul_reports___istanbul_reports_2.1.1.tgz"; | ||
6426 | url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.1.tgz"; | ||
6427 | sha1 = "72ef16b4ecb9a4a7bd0e2001e00f95d1eec8afa9"; | ||
6428 | }; | ||
6429 | } | ||
6430 | |||
6431 | { | ||
6432 | name = "jest_changed_files___jest_changed_files_24.8.0.tgz"; | ||
6433 | path = fetchurl { | ||
6434 | name = "jest_changed_files___jest_changed_files_24.8.0.tgz"; | ||
6435 | url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz"; | ||
6436 | sha1 = "7e7eb21cf687587a85e50f3d249d1327e15b157b"; | ||
6437 | }; | ||
6438 | } | ||
6439 | |||
6440 | { | ||
6441 | name = "jest_cli___jest_cli_24.8.0.tgz"; | ||
6442 | path = fetchurl { | ||
6443 | name = "jest_cli___jest_cli_24.8.0.tgz"; | ||
6444 | url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz"; | ||
6445 | sha1 = "b075ac914492ed114fa338ade7362a301693e989"; | ||
6446 | }; | ||
6447 | } | ||
6448 | |||
6449 | { | ||
6450 | name = "jest_config___jest_config_24.8.0.tgz"; | ||
6451 | path = fetchurl { | ||
6452 | name = "jest_config___jest_config_24.8.0.tgz"; | ||
6453 | url = "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz"; | ||
6454 | sha1 = "77db3d265a6f726294687cbbccc36f8a76ee0f4f"; | ||
6455 | }; | ||
6456 | } | ||
6457 | |||
6458 | { | ||
6459 | name = "jest_diff___jest_diff_24.8.0.tgz"; | ||
6460 | path = fetchurl { | ||
6461 | name = "jest_diff___jest_diff_24.8.0.tgz"; | ||
6462 | url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz"; | ||
6463 | sha1 = "146435e7d1e3ffdf293d53ff97e193f1d1546172"; | ||
6464 | }; | ||
6465 | } | ||
6466 | |||
6467 | { | ||
6468 | name = "jest_docblock___jest_docblock_24.3.0.tgz"; | ||
6469 | path = fetchurl { | ||
6470 | name = "jest_docblock___jest_docblock_24.3.0.tgz"; | ||
6471 | url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz"; | ||
6472 | sha1 = "b9c32dac70f72e4464520d2ba4aec02ab14db5dd"; | ||
6473 | }; | ||
6474 | } | ||
6475 | |||
6476 | { | ||
6477 | name = "jest_each___jest_each_24.8.0.tgz"; | ||
6478 | path = fetchurl { | ||
6479 | name = "jest_each___jest_each_24.8.0.tgz"; | ||
6480 | url = "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz"; | ||
6481 | sha1 = "a05fd2bf94ddc0b1da66c6d13ec2457f35e52775"; | ||
6482 | }; | ||
6483 | } | ||
6484 | |||
6485 | { | ||
6486 | name = "jest_environment_jsdom___jest_environment_jsdom_24.8.0.tgz"; | ||
6487 | path = fetchurl { | ||
6488 | name = "jest_environment_jsdom___jest_environment_jsdom_24.8.0.tgz"; | ||
6489 | url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz"; | ||
6490 | sha1 = "300f6949a146cabe1c9357ad9e9ecf9f43f38857"; | ||
6491 | }; | ||
6492 | } | ||
6493 | |||
6494 | { | ||
6495 | name = "jest_environment_node___jest_environment_node_24.8.0.tgz"; | ||
6496 | path = fetchurl { | ||
6497 | name = "jest_environment_node___jest_environment_node_24.8.0.tgz"; | ||
6498 | url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz"; | ||
6499 | sha1 = "d3f726ba8bc53087a60e7a84ca08883a4c892231"; | ||
6500 | }; | ||
6501 | } | ||
6502 | |||
6503 | { | ||
6504 | name = "jest_get_type___jest_get_type_24.8.0.tgz"; | ||
6505 | path = fetchurl { | ||
6506 | name = "jest_get_type___jest_get_type_24.8.0.tgz"; | ||
6507 | url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz"; | ||
6508 | sha1 = "a7440de30b651f5a70ea3ed7ff073a32dfe646fc"; | ||
6509 | }; | ||
6510 | } | ||
6511 | |||
6512 | { | ||
6513 | name = "jest_haste_map___jest_haste_map_24.8.0.tgz"; | ||
6514 | path = fetchurl { | ||
6515 | name = "jest_haste_map___jest_haste_map_24.8.0.tgz"; | ||
6516 | url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.0.tgz"; | ||
6517 | sha1 = "51794182d877b3ddfd6e6d23920e3fe72f305800"; | ||
6518 | }; | ||
6519 | } | ||
6520 | |||
6521 | { | ||
6522 | name = "jest_jasmine2___jest_jasmine2_24.8.0.tgz"; | ||
6523 | path = fetchurl { | ||
6524 | name = "jest_jasmine2___jest_jasmine2_24.8.0.tgz"; | ||
6525 | url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz"; | ||
6526 | sha1 = "a9c7e14c83dd77d8b15e820549ce8987cc8cd898"; | ||
6527 | }; | ||
6528 | } | ||
6529 | |||
6530 | { | ||
6531 | name = "jest_leak_detector___jest_leak_detector_24.8.0.tgz"; | ||
6532 | path = fetchurl { | ||
6533 | name = "jest_leak_detector___jest_leak_detector_24.8.0.tgz"; | ||
6534 | url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz"; | ||
6535 | sha1 = "c0086384e1f650c2d8348095df769f29b48e6980"; | ||
6536 | }; | ||
6537 | } | ||
6538 | |||
6539 | { | ||
6540 | name = "jest_matcher_utils___jest_matcher_utils_24.8.0.tgz"; | ||
6541 | path = fetchurl { | ||
6542 | name = "jest_matcher_utils___jest_matcher_utils_24.8.0.tgz"; | ||
6543 | url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz"; | ||
6544 | sha1 = "2bce42204c9af12bde46f83dc839efe8be832495"; | ||
6545 | }; | ||
6546 | } | ||
6547 | |||
6548 | { | ||
6549 | name = "jest_message_util___jest_message_util_24.8.0.tgz"; | ||
6550 | path = fetchurl { | ||
6551 | name = "jest_message_util___jest_message_util_24.8.0.tgz"; | ||
6552 | url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz"; | ||
6553 | sha1 = "0d6891e72a4beacc0292b638685df42e28d6218b"; | ||
6554 | }; | ||
6555 | } | ||
6556 | |||
6557 | { | ||
6558 | name = "jest_mock___jest_mock_24.8.0.tgz"; | ||
6559 | path = fetchurl { | ||
6560 | name = "jest_mock___jest_mock_24.8.0.tgz"; | ||
6561 | url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz"; | ||
6562 | sha1 = "2f9d14d37699e863f1febf4e4d5a33b7fdbbde56"; | ||
6563 | }; | ||
6564 | } | ||
6565 | |||
6566 | { | ||
6567 | name = "jest_pnp_resolver___jest_pnp_resolver_1.2.1.tgz"; | ||
6568 | path = fetchurl { | ||
6569 | name = "jest_pnp_resolver___jest_pnp_resolver_1.2.1.tgz"; | ||
6570 | url = "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz"; | ||
6571 | sha1 = "ecdae604c077a7fbc70defb6d517c3c1c898923a"; | ||
6572 | }; | ||
6573 | } | ||
6574 | |||
6575 | { | ||
6576 | name = "jest_regex_util___jest_regex_util_24.3.0.tgz"; | ||
6577 | path = fetchurl { | ||
6578 | name = "jest_regex_util___jest_regex_util_24.3.0.tgz"; | ||
6579 | url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz"; | ||
6580 | sha1 = "d5a65f60be1ae3e310d5214a0307581995227b36"; | ||
6581 | }; | ||
6582 | } | ||
6583 | |||
6584 | { | ||
6585 | name = "jest_resolve_dependencies___jest_resolve_dependencies_24.8.0.tgz"; | ||
6586 | path = fetchurl { | ||
6587 | name = "jest_resolve_dependencies___jest_resolve_dependencies_24.8.0.tgz"; | ||
6588 | url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz"; | ||
6589 | sha1 = "19eec3241f2045d3f990dba331d0d7526acff8e0"; | ||
6590 | }; | ||
6591 | } | ||
6592 | |||
6593 | { | ||
6594 | name = "jest_resolve___jest_resolve_24.8.0.tgz"; | ||
6595 | path = fetchurl { | ||
6596 | name = "jest_resolve___jest_resolve_24.8.0.tgz"; | ||
6597 | url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz"; | ||
6598 | sha1 = "84b8e5408c1f6a11539793e2b5feb1b6e722439f"; | ||
6599 | }; | ||
6600 | } | ||
6601 | |||
6602 | { | ||
6603 | name = "jest_runner___jest_runner_24.8.0.tgz"; | ||
6604 | path = fetchurl { | ||
6605 | name = "jest_runner___jest_runner_24.8.0.tgz"; | ||
6606 | url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz"; | ||
6607 | sha1 = "4f9ae07b767db27b740d7deffad0cf67ccb4c5bb"; | ||
6608 | }; | ||
6609 | } | ||
6610 | |||
6611 | { | ||
6612 | name = "jest_runtime___jest_runtime_24.8.0.tgz"; | ||
6613 | path = fetchurl { | ||
6614 | name = "jest_runtime___jest_runtime_24.8.0.tgz"; | ||
6615 | url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz"; | ||
6616 | sha1 = "05f94d5b05c21f6dc54e427cd2e4980923350620"; | ||
6617 | }; | ||
6618 | } | ||
6619 | |||
6620 | { | ||
6621 | name = "jest_serializer___jest_serializer_24.4.0.tgz"; | ||
6622 | path = fetchurl { | ||
6623 | name = "jest_serializer___jest_serializer_24.4.0.tgz"; | ||
6624 | url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz"; | ||
6625 | sha1 = "f70c5918c8ea9235ccb1276d232e459080588db3"; | ||
6626 | }; | ||
6627 | } | ||
6628 | |||
6629 | { | ||
6630 | name = "jest_snapshot___jest_snapshot_24.8.0.tgz"; | ||
6631 | path = fetchurl { | ||
6632 | name = "jest_snapshot___jest_snapshot_24.8.0.tgz"; | ||
6633 | url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz"; | ||
6634 | sha1 = "3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6"; | ||
6635 | }; | ||
6636 | } | ||
6637 | |||
6638 | { | ||
6639 | name = "jest_util___jest_util_24.8.0.tgz"; | ||
6640 | path = fetchurl { | ||
6641 | name = "jest_util___jest_util_24.8.0.tgz"; | ||
6642 | url = "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz"; | ||
6643 | sha1 = "41f0e945da11df44cc76d64ffb915d0716f46cd1"; | ||
6644 | }; | ||
6645 | } | ||
6646 | |||
6647 | { | ||
6648 | name = "jest_validate___jest_validate_24.8.0.tgz"; | ||
6649 | path = fetchurl { | ||
6650 | name = "jest_validate___jest_validate_24.8.0.tgz"; | ||
6651 | url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz"; | ||
6652 | sha1 = "624c41533e6dfe356ffadc6e2423a35c2d3b4849"; | ||
6653 | }; | ||
6654 | } | ||
6655 | |||
6656 | { | ||
6657 | name = "jest_watcher___jest_watcher_24.8.0.tgz"; | ||
6658 | path = fetchurl { | ||
6659 | name = "jest_watcher___jest_watcher_24.8.0.tgz"; | ||
6660 | url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz"; | ||
6661 | sha1 = "58d49915ceddd2de85e238f6213cef1c93715de4"; | ||
6662 | }; | ||
6663 | } | ||
6664 | |||
6665 | { | ||
6666 | name = "jest_worker___jest_worker_24.6.0.tgz"; | ||
6667 | path = fetchurl { | ||
6668 | name = "jest_worker___jest_worker_24.6.0.tgz"; | ||
6669 | url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz"; | ||
6670 | sha1 = "7f81ceae34b7cde0c9827a6980c35b7cdc0161b3"; | ||
6671 | }; | ||
6672 | } | ||
6673 | |||
6674 | { | ||
6675 | name = "jest___jest_24.8.0.tgz"; | ||
6676 | path = fetchurl { | ||
6677 | name = "jest___jest_24.8.0.tgz"; | ||
6678 | url = "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz"; | ||
6679 | sha1 = "d5dff1984d0d1002196e9b7f12f75af1b2809081"; | ||
6680 | }; | ||
6681 | } | ||
6682 | |||
6683 | { | ||
6684 | name = "js_base64___js_base64_2.5.0.tgz"; | ||
6685 | path = fetchurl { | ||
6686 | name = "js_base64___js_base64_2.5.0.tgz"; | ||
6687 | url = "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.0.tgz"; | ||
6688 | sha1 = "42255ba183ab67ce59a0dee640afdc00ab5ae93e"; | ||
6689 | }; | ||
6690 | } | ||
6691 | |||
6692 | { | ||
6693 | name = "js_levenshtein___js_levenshtein_1.1.6.tgz"; | ||
6694 | path = fetchurl { | ||
6695 | name = "js_levenshtein___js_levenshtein_1.1.6.tgz"; | ||
6696 | url = "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz"; | ||
6697 | sha1 = "c6cee58eb3550372df8deb85fad5ce66ce01d59d"; | ||
6698 | }; | ||
6699 | } | ||
6700 | |||
6701 | { | ||
6702 | name = "js_string_escape___js_string_escape_1.0.1.tgz"; | ||
6703 | path = fetchurl { | ||
6704 | name = "js_string_escape___js_string_escape_1.0.1.tgz"; | ||
6705 | url = "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz"; | ||
6706 | sha1 = "e2625badbc0d67c7533e9edc1068c587ae4137ef"; | ||
6707 | }; | ||
6708 | } | ||
6709 | |||
6710 | { | ||
6711 | name = "js_tokens___js_tokens_4.0.0.tgz"; | ||
6712 | path = fetchurl { | ||
6713 | name = "js_tokens___js_tokens_4.0.0.tgz"; | ||
6714 | url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; | ||
6715 | sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; | ||
6716 | }; | ||
6717 | } | ||
6718 | |||
6719 | { | ||
6720 | name = "js_yaml___js_yaml_3.13.1.tgz"; | ||
6721 | path = fetchurl { | ||
6722 | name = "js_yaml___js_yaml_3.13.1.tgz"; | ||
6723 | url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz"; | ||
6724 | sha1 = "aff151b30bfdfa8e49e05da22e7415e9dfa37847"; | ||
6725 | }; | ||
6726 | } | ||
6727 | |||
6728 | { | ||
6729 | name = "jsbn___jsbn_0.1.1.tgz"; | ||
6730 | path = fetchurl { | ||
6731 | name = "jsbn___jsbn_0.1.1.tgz"; | ||
6732 | url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz"; | ||
6733 | sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; | ||
6734 | }; | ||
6735 | } | ||
6736 | |||
6737 | { | ||
6738 | name = "jsdom___jsdom_11.12.0.tgz"; | ||
6739 | path = fetchurl { | ||
6740 | name = "jsdom___jsdom_11.12.0.tgz"; | ||
6741 | url = "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz"; | ||
6742 | sha1 = "1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"; | ||
6743 | }; | ||
6744 | } | ||
6745 | |||
6746 | { | ||
6747 | name = "jsesc___jsesc_2.5.2.tgz"; | ||
6748 | path = fetchurl { | ||
6749 | name = "jsesc___jsesc_2.5.2.tgz"; | ||
6750 | url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz"; | ||
6751 | sha1 = "80564d2e483dacf6e8ef209650a67df3f0c283a4"; | ||
6752 | }; | ||
6753 | } | ||
6754 | |||
6755 | { | ||
6756 | name = "jsesc___jsesc_0.5.0.tgz"; | ||
6757 | path = fetchurl { | ||
6758 | name = "jsesc___jsesc_0.5.0.tgz"; | ||
6759 | url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; | ||
6760 | sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; | ||
6761 | }; | ||
6762 | } | ||
6763 | |||
6764 | { | ||
6765 | name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; | ||
6766 | path = fetchurl { | ||
6767 | name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; | ||
6768 | url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; | ||
6769 | sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9"; | ||
6770 | }; | ||
6771 | } | ||
6772 | |||
6773 | { | ||
6774 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; | ||
6775 | path = fetchurl { | ||
6776 | name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; | ||
6777 | url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; | ||
6778 | sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; | ||
6779 | }; | ||
6780 | } | ||
6781 | |||
6782 | { | ||
6783 | name = "json_schema___json_schema_0.2.3.tgz"; | ||
6784 | path = fetchurl { | ||
6785 | name = "json_schema___json_schema_0.2.3.tgz"; | ||
6786 | url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz"; | ||
6787 | sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; | ||
6788 | }; | ||
6789 | } | ||
6790 | |||
6791 | { | ||
6792 | name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; | ||
6793 | path = fetchurl { | ||
6794 | name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; | ||
6795 | url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; | ||
6796 | sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; | ||
6797 | }; | ||
6798 | } | ||
6799 | |||
6800 | { | ||
6801 | name = "json_stable_stringify___json_stable_stringify_1.0.1.tgz"; | ||
6802 | path = fetchurl { | ||
6803 | name = "json_stable_stringify___json_stable_stringify_1.0.1.tgz"; | ||
6804 | url = "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"; | ||
6805 | sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; | ||
6806 | }; | ||
6807 | } | ||
6808 | |||
6809 | { | ||
6810 | name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; | ||
6811 | path = fetchurl { | ||
6812 | name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; | ||
6813 | url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; | ||
6814 | sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; | ||
6815 | }; | ||
6816 | } | ||
6817 | |||
6818 | { | ||
6819 | name = "json3___json3_3.3.2.tgz"; | ||
6820 | path = fetchurl { | ||
6821 | name = "json3___json3_3.3.2.tgz"; | ||
6822 | url = "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz"; | ||
6823 | sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1"; | ||
6824 | }; | ||
6825 | } | ||
6826 | |||
6827 | { | ||
6828 | name = "json5___json5_0.5.1.tgz"; | ||
6829 | path = fetchurl { | ||
6830 | name = "json5___json5_0.5.1.tgz"; | ||
6831 | url = "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz"; | ||
6832 | sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; | ||
6833 | }; | ||
6834 | } | ||
6835 | |||
6836 | { | ||
6837 | name = "json5___json5_1.0.1.tgz"; | ||
6838 | path = fetchurl { | ||
6839 | name = "json5___json5_1.0.1.tgz"; | ||
6840 | url = "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz"; | ||
6841 | sha1 = "779fb0018604fa854eacbf6252180d83543e3dbe"; | ||
6842 | }; | ||
6843 | } | ||
6844 | |||
6845 | { | ||
6846 | name = "json5___json5_2.1.0.tgz"; | ||
6847 | path = fetchurl { | ||
6848 | name = "json5___json5_2.1.0.tgz"; | ||
6849 | url = "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz"; | ||
6850 | sha1 = "e7a0c62c48285c628d20a10b85c89bb807c32850"; | ||
6851 | }; | ||
6852 | } | ||
6853 | |||
6854 | { | ||
6855 | name = "jsonfile___jsonfile_3.0.1.tgz"; | ||
6856 | path = fetchurl { | ||
6857 | name = "jsonfile___jsonfile_3.0.1.tgz"; | ||
6858 | url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz"; | ||
6859 | sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66"; | ||
6860 | }; | ||
6861 | } | ||
6862 | |||
6863 | { | ||
6864 | name = "jsonfile___jsonfile_4.0.0.tgz"; | ||
6865 | path = fetchurl { | ||
6866 | name = "jsonfile___jsonfile_4.0.0.tgz"; | ||
6867 | url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz"; | ||
6868 | sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; | ||
6869 | }; | ||
6870 | } | ||
6871 | |||
6872 | { | ||
6873 | name = "jsonify___jsonify_0.0.0.tgz"; | ||
6874 | path = fetchurl { | ||
6875 | name = "jsonify___jsonify_0.0.0.tgz"; | ||
6876 | url = "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz"; | ||
6877 | sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; | ||
6878 | }; | ||
6879 | } | ||
6880 | |||
6881 | { | ||
6882 | name = "jsonpointer___jsonpointer_4.0.1.tgz"; | ||
6883 | path = fetchurl { | ||
6884 | name = "jsonpointer___jsonpointer_4.0.1.tgz"; | ||
6885 | url = "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz"; | ||
6886 | sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; | ||
6887 | }; | ||
6888 | } | ||
6889 | |||
6890 | { | ||
6891 | name = "jsprim___jsprim_1.4.1.tgz"; | ||
6892 | path = fetchurl { | ||
6893 | name = "jsprim___jsprim_1.4.1.tgz"; | ||
6894 | url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; | ||
6895 | sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; | ||
6896 | }; | ||
6897 | } | ||
6898 | |||
6899 | { | ||
6900 | name = "jsx_ast_utils___jsx_ast_utils_2.0.1.tgz"; | ||
6901 | path = fetchurl { | ||
6902 | name = "jsx_ast_utils___jsx_ast_utils_2.0.1.tgz"; | ||
6903 | url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz"; | ||
6904 | sha1 = "e801b1b39985e20fffc87b40e3748080e2dcac7f"; | ||
6905 | }; | ||
6906 | } | ||
6907 | |||
6908 | { | ||
6909 | name = "keycode___keycode_2.2.0.tgz"; | ||
6910 | path = fetchurl { | ||
6911 | name = "keycode___keycode_2.2.0.tgz"; | ||
6912 | url = "https://registry.yarnpkg.com/keycode/-/keycode-2.2.0.tgz"; | ||
6913 | sha1 = "3d0af56dc7b8b8e5cba8d0a97f107204eec22b04"; | ||
6914 | }; | ||
6915 | } | ||
6916 | |||
6917 | { | ||
6918 | name = "killable___killable_1.0.1.tgz"; | ||
6919 | path = fetchurl { | ||
6920 | name = "killable___killable_1.0.1.tgz"; | ||
6921 | url = "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz"; | ||
6922 | sha1 = "4c8ce441187a061c7474fb87ca08e2a638194892"; | ||
6923 | }; | ||
6924 | } | ||
6925 | |||
6926 | { | ||
6927 | name = "kind_of___kind_of_3.2.2.tgz"; | ||
6928 | path = fetchurl { | ||
6929 | name = "kind_of___kind_of_3.2.2.tgz"; | ||
6930 | url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz"; | ||
6931 | sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; | ||
6932 | }; | ||
6933 | } | ||
6934 | |||
6935 | { | ||
6936 | name = "kind_of___kind_of_4.0.0.tgz"; | ||
6937 | path = fetchurl { | ||
6938 | name = "kind_of___kind_of_4.0.0.tgz"; | ||
6939 | url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz"; | ||
6940 | sha1 = "20813df3d712928b207378691a45066fae72dd57"; | ||
6941 | }; | ||
6942 | } | ||
6943 | |||
6944 | { | ||
6945 | name = "kind_of___kind_of_5.1.0.tgz"; | ||
6946 | path = fetchurl { | ||
6947 | name = "kind_of___kind_of_5.1.0.tgz"; | ||
6948 | url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz"; | ||
6949 | sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d"; | ||
6950 | }; | ||
6951 | } | ||
6952 | |||
6953 | { | ||
6954 | name = "kind_of___kind_of_6.0.2.tgz"; | ||
6955 | path = fetchurl { | ||
6956 | name = "kind_of___kind_of_6.0.2.tgz"; | ||
6957 | url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz"; | ||
6958 | sha1 = "01146b36a6218e64e58f3a8d66de5d7fc6f6d051"; | ||
6959 | }; | ||
6960 | } | ||
6961 | |||
6962 | { | ||
6963 | name = "kleur___kleur_3.0.2.tgz"; | ||
6964 | path = fetchurl { | ||
6965 | name = "kleur___kleur_3.0.2.tgz"; | ||
6966 | url = "https://registry.yarnpkg.com/kleur/-/kleur-3.0.2.tgz"; | ||
6967 | sha1 = "83c7ec858a41098b613d5998a7b653962b504f68"; | ||
6968 | }; | ||
6969 | } | ||
6970 | |||
6971 | { | ||
6972 | name = "knot.js___knot.js_1.1.5.tgz"; | ||
6973 | path = fetchurl { | ||
6974 | name = "knot.js___knot.js_1.1.5.tgz"; | ||
6975 | url = "https://registry.yarnpkg.com/knot.js/-/knot.js-1.1.5.tgz"; | ||
6976 | sha1 = "28e72522f703f50fe98812fde224dd72728fef5d"; | ||
6977 | }; | ||
6978 | } | ||
6979 | |||
6980 | { | ||
6981 | name = "known_css_properties___known_css_properties_0.3.0.tgz"; | ||
6982 | path = fetchurl { | ||
6983 | name = "known_css_properties___known_css_properties_0.3.0.tgz"; | ||
6984 | url = "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.3.0.tgz"; | ||
6985 | sha1 = "a3d135bbfc60ee8c6eacf2f7e7e6f2d4755e49a4"; | ||
6986 | }; | ||
6987 | } | ||
6988 | |||
6989 | { | ||
6990 | name = "lcid___lcid_2.0.0.tgz"; | ||
6991 | path = fetchurl { | ||
6992 | name = "lcid___lcid_2.0.0.tgz"; | ||
6993 | url = "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz"; | ||
6994 | sha1 = "6ef5d2df60e52f82eb228a4c373e8d1f397253cf"; | ||
6995 | }; | ||
6996 | } | ||
6997 | |||
6998 | { | ||
6999 | name = "left_pad___left_pad_1.3.0.tgz"; | ||
7000 | path = fetchurl { | ||
7001 | name = "left_pad___left_pad_1.3.0.tgz"; | ||
7002 | url = "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz"; | ||
7003 | sha1 = "5b8a3a7765dfe001261dde915589e782f8c94d1e"; | ||
7004 | }; | ||
7005 | } | ||
7006 | |||
7007 | { | ||
7008 | name = "leven___leven_2.1.0.tgz"; | ||
7009 | path = fetchurl { | ||
7010 | name = "leven___leven_2.1.0.tgz"; | ||
7011 | url = "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz"; | ||
7012 | sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; | ||
7013 | }; | ||
7014 | } | ||
7015 | |||
7016 | { | ||
7017 | name = "levn___levn_0.3.0.tgz"; | ||
7018 | path = fetchurl { | ||
7019 | name = "levn___levn_0.3.0.tgz"; | ||
7020 | url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; | ||
7021 | sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; | ||
7022 | }; | ||
7023 | } | ||
7024 | |||
7025 | { | ||
7026 | name = "load_json_file___load_json_file_2.0.0.tgz"; | ||
7027 | path = fetchurl { | ||
7028 | name = "load_json_file___load_json_file_2.0.0.tgz"; | ||
7029 | url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz"; | ||
7030 | sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; | ||
7031 | }; | ||
7032 | } | ||
7033 | |||
7034 | { | ||
7035 | name = "load_json_file___load_json_file_4.0.0.tgz"; | ||
7036 | path = fetchurl { | ||
7037 | name = "load_json_file___load_json_file_4.0.0.tgz"; | ||
7038 | url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz"; | ||
7039 | sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b"; | ||
7040 | }; | ||
7041 | } | ||
7042 | |||
7043 | { | ||
7044 | name = "loader_runner___loader_runner_2.3.1.tgz"; | ||
7045 | path = fetchurl { | ||
7046 | name = "loader_runner___loader_runner_2.3.1.tgz"; | ||
7047 | url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.1.tgz"; | ||
7048 | sha1 = "026f12fe7c3115992896ac02ba022ba92971b979"; | ||
7049 | }; | ||
7050 | } | ||
7051 | |||
7052 | { | ||
7053 | name = "loader_utils___loader_utils_0.2.17.tgz"; | ||
7054 | path = fetchurl { | ||
7055 | name = "loader_utils___loader_utils_0.2.17.tgz"; | ||
7056 | url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz"; | ||
7057 | sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348"; | ||
7058 | }; | ||
7059 | } | ||
7060 | |||
7061 | { | ||
7062 | name = "loader_utils___loader_utils_1.2.3.tgz"; | ||
7063 | path = fetchurl { | ||
7064 | name = "loader_utils___loader_utils_1.2.3.tgz"; | ||
7065 | url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz"; | ||
7066 | sha1 = "1ff5dc6911c9f0a062531a4c04b609406108c2c7"; | ||
7067 | }; | ||
7068 | } | ||
7069 | |||
7070 | { | ||
7071 | name = "locate_path___locate_path_2.0.0.tgz"; | ||
7072 | path = fetchurl { | ||
7073 | name = "locate_path___locate_path_2.0.0.tgz"; | ||
7074 | url = "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz"; | ||
7075 | sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; | ||
7076 | }; | ||
7077 | } | ||
7078 | |||
7079 | { | ||
7080 | name = "locate_path___locate_path_3.0.0.tgz"; | ||
7081 | path = fetchurl { | ||
7082 | name = "locate_path___locate_path_3.0.0.tgz"; | ||
7083 | url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz"; | ||
7084 | sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e"; | ||
7085 | }; | ||
7086 | } | ||
7087 | |||
7088 | { | ||
7089 | name = "lodash.capitalize___lodash.capitalize_4.2.1.tgz"; | ||
7090 | path = fetchurl { | ||
7091 | name = "lodash.capitalize___lodash.capitalize_4.2.1.tgz"; | ||
7092 | url = "https://registry.yarnpkg.com/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz"; | ||
7093 | sha1 = "f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9"; | ||
7094 | }; | ||
7095 | } | ||
7096 | |||
7097 | { | ||
7098 | name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; | ||
7099 | path = fetchurl { | ||
7100 | name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; | ||
7101 | url = "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz"; | ||
7102 | sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c"; | ||
7103 | }; | ||
7104 | } | ||
7105 | |||
7106 | { | ||
7107 | name = "lodash.escape___lodash.escape_4.0.1.tgz"; | ||
7108 | path = fetchurl { | ||
7109 | name = "lodash.escape___lodash.escape_4.0.1.tgz"; | ||
7110 | url = "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz"; | ||
7111 | sha1 = "c9044690c21e04294beaa517712fded1fa88de98"; | ||
7112 | }; | ||
7113 | } | ||
7114 | |||
7115 | { | ||
7116 | name = "lodash.flattendeep___lodash.flattendeep_4.4.0.tgz"; | ||
7117 | path = fetchurl { | ||
7118 | name = "lodash.flattendeep___lodash.flattendeep_4.4.0.tgz"; | ||
7119 | url = "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"; | ||
7120 | sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2"; | ||
7121 | }; | ||
7122 | } | ||
7123 | |||
7124 | { | ||
7125 | name = "lodash.get___lodash.get_4.4.2.tgz"; | ||
7126 | path = fetchurl { | ||
7127 | name = "lodash.get___lodash.get_4.4.2.tgz"; | ||
7128 | url = "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz"; | ||
7129 | sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99"; | ||
7130 | }; | ||
7131 | } | ||
7132 | |||
7133 | { | ||
7134 | name = "lodash.has___lodash.has_4.5.2.tgz"; | ||
7135 | path = fetchurl { | ||
7136 | name = "lodash.has___lodash.has_4.5.2.tgz"; | ||
7137 | url = "https://registry.yarnpkg.com/lodash.has/-/lodash.has-4.5.2.tgz"; | ||
7138 | sha1 = "d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862"; | ||
7139 | }; | ||
7140 | } | ||
7141 | |||
7142 | { | ||
7143 | name = "lodash.isboolean___lodash.isboolean_3.0.3.tgz"; | ||
7144 | path = fetchurl { | ||
7145 | name = "lodash.isboolean___lodash.isboolean_3.0.3.tgz"; | ||
7146 | url = "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz"; | ||
7147 | sha1 = "6c2e171db2a257cd96802fd43b01b20d5f5870f6"; | ||
7148 | }; | ||
7149 | } | ||
7150 | |||
7151 | { | ||
7152 | name = "lodash.isequal___lodash.isequal_4.5.0.tgz"; | ||
7153 | path = fetchurl { | ||
7154 | name = "lodash.isequal___lodash.isequal_4.5.0.tgz"; | ||
7155 | url = "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz"; | ||
7156 | sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0"; | ||
7157 | }; | ||
7158 | } | ||
7159 | |||
7160 | { | ||
7161 | name = "lodash.isobject___lodash.isobject_3.0.2.tgz"; | ||
7162 | path = fetchurl { | ||
7163 | name = "lodash.isobject___lodash.isobject_3.0.2.tgz"; | ||
7164 | url = "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz"; | ||
7165 | sha1 = "3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d"; | ||
7166 | }; | ||
7167 | } | ||
7168 | |||
7169 | { | ||
7170 | name = "lodash.kebabcase___lodash.kebabcase_4.1.1.tgz"; | ||
7171 | path = fetchurl { | ||
7172 | name = "lodash.kebabcase___lodash.kebabcase_4.1.1.tgz"; | ||
7173 | url = "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz"; | ||
7174 | sha1 = "8489b1cb0d29ff88195cceca448ff6d6cc295c36"; | ||
7175 | }; | ||
7176 | } | ||
7177 | |||
7178 | { | ||
7179 | name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; | ||
7180 | path = fetchurl { | ||
7181 | name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; | ||
7182 | url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; | ||
7183 | sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; | ||
7184 | }; | ||
7185 | } | ||
7186 | |||
7187 | { | ||
7188 | name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; | ||
7189 | path = fetchurl { | ||
7190 | name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; | ||
7191 | url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; | ||
7192 | sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; | ||
7193 | }; | ||
7194 | } | ||
7195 | |||
7196 | { | ||
7197 | name = "lodash.tail___lodash.tail_4.1.1.tgz"; | ||
7198 | path = fetchurl { | ||
7199 | name = "lodash.tail___lodash.tail_4.1.1.tgz"; | ||
7200 | url = "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz"; | ||
7201 | sha1 = "d2333a36d9e7717c8ad2f7cacafec7c32b444664"; | ||
7202 | }; | ||
7203 | } | ||
7204 | |||
7205 | { | ||
7206 | name = "lodash.uniq___lodash.uniq_4.5.0.tgz"; | ||
7207 | path = fetchurl { | ||
7208 | name = "lodash.uniq___lodash.uniq_4.5.0.tgz"; | ||
7209 | url = "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz"; | ||
7210 | sha1 = "d0225373aeb652adc1bc82e4945339a842754773"; | ||
7211 | }; | ||
7212 | } | ||
7213 | |||
7214 | { | ||
7215 | name = "lodash___lodash_4.17.11.tgz"; | ||
7216 | path = fetchurl { | ||
7217 | name = "lodash___lodash_4.17.11.tgz"; | ||
7218 | url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz"; | ||
7219 | sha1 = "b39ea6229ef607ecd89e2c8df12536891cac9b8d"; | ||
7220 | }; | ||
7221 | } | ||
7222 | |||
7223 | { | ||
7224 | name = "loglevel___loglevel_1.6.2.tgz"; | ||
7225 | path = fetchurl { | ||
7226 | name = "loglevel___loglevel_1.6.2.tgz"; | ||
7227 | url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.2.tgz"; | ||
7228 | sha1 = "668c77948a03dbd22502a3513ace1f62a80cc372"; | ||
7229 | }; | ||
7230 | } | ||
7231 | |||
7232 | { | ||
7233 | name = "loose_envify___loose_envify_1.4.0.tgz"; | ||
7234 | path = fetchurl { | ||
7235 | name = "loose_envify___loose_envify_1.4.0.tgz"; | ||
7236 | url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; | ||
7237 | sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; | ||
7238 | }; | ||
7239 | } | ||
7240 | |||
7241 | { | ||
7242 | name = "lru_cache___lru_cache_5.1.1.tgz"; | ||
7243 | path = fetchurl { | ||
7244 | name = "lru_cache___lru_cache_5.1.1.tgz"; | ||
7245 | url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz"; | ||
7246 | sha1 = "1da27e6710271947695daf6848e847f01d84b920"; | ||
7247 | }; | ||
7248 | } | ||
7249 | |||
7250 | { | ||
7251 | name = "make_dir___make_dir_1.3.0.tgz"; | ||
7252 | path = fetchurl { | ||
7253 | name = "make_dir___make_dir_1.3.0.tgz"; | ||
7254 | url = "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz"; | ||
7255 | sha1 = "79c1033b80515bd6d24ec9933e860ca75ee27f0c"; | ||
7256 | }; | ||
7257 | } | ||
7258 | |||
7259 | { | ||
7260 | name = "makeerror___makeerror_1.0.11.tgz"; | ||
7261 | path = fetchurl { | ||
7262 | name = "makeerror___makeerror_1.0.11.tgz"; | ||
7263 | url = "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz"; | ||
7264 | sha1 = "e01a5c9109f2af79660e4e8b9587790184f5a96c"; | ||
7265 | }; | ||
7266 | } | ||
7267 | |||
7268 | { | ||
7269 | name = "mamacro___mamacro_0.0.3.tgz"; | ||
7270 | path = fetchurl { | ||
7271 | name = "mamacro___mamacro_0.0.3.tgz"; | ||
7272 | url = "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz"; | ||
7273 | sha1 = "ad2c9576197c9f1abf308d0787865bd975a3f3e4"; | ||
7274 | }; | ||
7275 | } | ||
7276 | |||
7277 | { | ||
7278 | name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; | ||
7279 | path = fetchurl { | ||
7280 | name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; | ||
7281 | url = "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz"; | ||
7282 | sha1 = "7d583a7306434c055fe474b0f45078e6e1b4b92a"; | ||
7283 | }; | ||
7284 | } | ||
7285 | |||
7286 | { | ||
7287 | name = "map_cache___map_cache_0.2.2.tgz"; | ||
7288 | path = fetchurl { | ||
7289 | name = "map_cache___map_cache_0.2.2.tgz"; | ||
7290 | url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz"; | ||
7291 | sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; | ||
7292 | }; | ||
7293 | } | ||
7294 | |||
7295 | { | ||
7296 | name = "map_visit___map_visit_1.0.0.tgz"; | ||
7297 | path = fetchurl { | ||
7298 | name = "map_visit___map_visit_1.0.0.tgz"; | ||
7299 | url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz"; | ||
7300 | sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; | ||
7301 | }; | ||
7302 | } | ||
7303 | |||
7304 | { | ||
7305 | name = "mark_loader___mark_loader_0.1.6.tgz"; | ||
7306 | path = fetchurl { | ||
7307 | name = "mark_loader___mark_loader_0.1.6.tgz"; | ||
7308 | url = "https://registry.yarnpkg.com/mark-loader/-/mark-loader-0.1.6.tgz"; | ||
7309 | sha1 = "0abb477dca7421d70e20128ff6489f5cae8676d5"; | ||
7310 | }; | ||
7311 | } | ||
7312 | |||
7313 | { | ||
7314 | name = "marky___marky_1.2.1.tgz"; | ||
7315 | path = fetchurl { | ||
7316 | name = "marky___marky_1.2.1.tgz"; | ||
7317 | url = "https://registry.yarnpkg.com/marky/-/marky-1.2.1.tgz"; | ||
7318 | sha1 = "a3fcf82ffd357756b8b8affec9fdbf3a30dc1b02"; | ||
7319 | }; | ||
7320 | } | ||
7321 | |||
7322 | { | ||
7323 | name = "md5.js___md5.js_1.3.5.tgz"; | ||
7324 | path = fetchurl { | ||
7325 | name = "md5.js___md5.js_1.3.5.tgz"; | ||
7326 | url = "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz"; | ||
7327 | sha1 = "b5d07b8e3216e3e27cd728d72f70d1e6a342005f"; | ||
7328 | }; | ||
7329 | } | ||
7330 | |||
7331 | { | ||
7332 | name = "mdn_data___mdn_data_1.1.4.tgz"; | ||
7333 | path = fetchurl { | ||
7334 | name = "mdn_data___mdn_data_1.1.4.tgz"; | ||
7335 | url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz"; | ||
7336 | sha1 = "50b5d4ffc4575276573c4eedb8780812a8419f01"; | ||
7337 | }; | ||
7338 | } | ||
7339 | |||
7340 | { | ||
7341 | name = "media_typer___media_typer_0.3.0.tgz"; | ||
7342 | path = fetchurl { | ||
7343 | name = "media_typer___media_typer_0.3.0.tgz"; | ||
7344 | url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz"; | ||
7345 | sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; | ||
7346 | }; | ||
7347 | } | ||
7348 | |||
7349 | { | ||
7350 | name = "mem___mem_4.0.0.tgz"; | ||
7351 | path = fetchurl { | ||
7352 | name = "mem___mem_4.0.0.tgz"; | ||
7353 | url = "https://registry.yarnpkg.com/mem/-/mem-4.0.0.tgz"; | ||
7354 | sha1 = "6437690d9471678f6cc83659c00cbafcd6b0cdaf"; | ||
7355 | }; | ||
7356 | } | ||
7357 | |||
7358 | { | ||
7359 | name = "memoize_one___memoize_one_5.0.4.tgz"; | ||
7360 | path = fetchurl { | ||
7361 | name = "memoize_one___memoize_one_5.0.4.tgz"; | ||
7362 | url = "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.0.4.tgz"; | ||
7363 | sha1 = "005928aced5c43d890a4dfab18ca908b0ec92cbc"; | ||
7364 | }; | ||
7365 | } | ||
7366 | |||
7367 | { | ||
7368 | name = "memory_fs___memory_fs_0.4.1.tgz"; | ||
7369 | path = fetchurl { | ||
7370 | name = "memory_fs___memory_fs_0.4.1.tgz"; | ||
7371 | url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz"; | ||
7372 | sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552"; | ||
7373 | }; | ||
7374 | } | ||
7375 | |||
7376 | { | ||
7377 | name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; | ||
7378 | path = fetchurl { | ||
7379 | name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; | ||
7380 | url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; | ||
7381 | sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; | ||
7382 | }; | ||
7383 | } | ||
7384 | |||
7385 | { | ||
7386 | name = "merge_stream___merge_stream_1.0.1.tgz"; | ||
7387 | path = fetchurl { | ||
7388 | name = "merge_stream___merge_stream_1.0.1.tgz"; | ||
7389 | url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz"; | ||
7390 | sha1 = "4041202d508a342ba00174008df0c251b8c135e1"; | ||
7391 | }; | ||
7392 | } | ||
7393 | |||
7394 | { | ||
7395 | name = "merge___merge_1.2.1.tgz"; | ||
7396 | path = fetchurl { | ||
7397 | name = "merge___merge_1.2.1.tgz"; | ||
7398 | url = "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz"; | ||
7399 | sha1 = "38bebf80c3220a8a487b6fcfb3941bb11720c145"; | ||
7400 | }; | ||
7401 | } | ||
7402 | |||
7403 | { | ||
7404 | name = "methods___methods_1.1.2.tgz"; | ||
7405 | path = fetchurl { | ||
7406 | name = "methods___methods_1.1.2.tgz"; | ||
7407 | url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; | ||
7408 | sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; | ||
7409 | }; | ||
7410 | } | ||
7411 | |||
7412 | { | ||
7413 | name = "micromatch___micromatch_3.1.10.tgz"; | ||
7414 | path = fetchurl { | ||
7415 | name = "micromatch___micromatch_3.1.10.tgz"; | ||
7416 | url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz"; | ||
7417 | sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23"; | ||
7418 | }; | ||
7419 | } | ||
7420 | |||
7421 | { | ||
7422 | name = "miller_rabin___miller_rabin_4.0.1.tgz"; | ||
7423 | path = fetchurl { | ||
7424 | name = "miller_rabin___miller_rabin_4.0.1.tgz"; | ||
7425 | url = "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz"; | ||
7426 | sha1 = "f080351c865b0dc562a8462966daa53543c78a4d"; | ||
7427 | }; | ||
7428 | } | ||
7429 | |||
7430 | { | ||
7431 | name = "mime_db___mime_db_1.40.0.tgz"; | ||
7432 | path = fetchurl { | ||
7433 | name = "mime_db___mime_db_1.40.0.tgz"; | ||
7434 | url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz"; | ||
7435 | sha1 = "a65057e998db090f732a68f6c276d387d4126c32"; | ||
7436 | }; | ||
7437 | } | ||
7438 | |||
7439 | { | ||
7440 | name = "mime_db___mime_db_1.37.0.tgz"; | ||
7441 | path = fetchurl { | ||
7442 | name = "mime_db___mime_db_1.37.0.tgz"; | ||
7443 | url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz"; | ||
7444 | sha1 = "0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8"; | ||
7445 | }; | ||
7446 | } | ||
7447 | |||
7448 | { | ||
7449 | name = "mime_types___mime_types_2.1.21.tgz"; | ||
7450 | path = fetchurl { | ||
7451 | name = "mime_types___mime_types_2.1.21.tgz"; | ||
7452 | url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz"; | ||
7453 | sha1 = "28995aa1ecb770742fe6ae7e58f9181c744b3f96"; | ||
7454 | }; | ||
7455 | } | ||
7456 | |||
7457 | { | ||
7458 | name = "mime_types___mime_types_2.1.24.tgz"; | ||
7459 | path = fetchurl { | ||
7460 | name = "mime_types___mime_types_2.1.24.tgz"; | ||
7461 | url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz"; | ||
7462 | sha1 = "b6f8d0b3e951efb77dedeca194cff6d16f676f81"; | ||
7463 | }; | ||
7464 | } | ||
7465 | |||
7466 | { | ||
7467 | name = "mime___mime_1.6.0.tgz"; | ||
7468 | path = fetchurl { | ||
7469 | name = "mime___mime_1.6.0.tgz"; | ||
7470 | url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; | ||
7471 | sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1"; | ||
7472 | }; | ||
7473 | } | ||
7474 | |||
7475 | { | ||
7476 | name = "mime___mime_2.4.3.tgz"; | ||
7477 | path = fetchurl { | ||
7478 | name = "mime___mime_2.4.3.tgz"; | ||
7479 | url = "https://registry.yarnpkg.com/mime/-/mime-2.4.3.tgz"; | ||
7480 | sha1 = "229687331e86f68924e6cb59e1cdd937f18275fe"; | ||
7481 | }; | ||
7482 | } | ||
7483 | |||
7484 | { | ||
7485 | name = "mimic_fn___mimic_fn_1.2.0.tgz"; | ||
7486 | path = fetchurl { | ||
7487 | name = "mimic_fn___mimic_fn_1.2.0.tgz"; | ||
7488 | url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; | ||
7489 | sha1 = "820c86a39334640e99516928bd03fca88057d022"; | ||
7490 | }; | ||
7491 | } | ||
7492 | |||
7493 | { | ||
7494 | name = "mini_css_extract_plugin___mini_css_extract_plugin_0.5.0.tgz"; | ||
7495 | path = fetchurl { | ||
7496 | name = "mini_css_extract_plugin___mini_css_extract_plugin_0.5.0.tgz"; | ||
7497 | url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.5.0.tgz"; | ||
7498 | sha1 = "ac0059b02b9692515a637115b0cc9fed3a35c7b0"; | ||
7499 | }; | ||
7500 | } | ||
7501 | |||
7502 | { | ||
7503 | name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; | ||
7504 | path = fetchurl { | ||
7505 | name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; | ||
7506 | url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; | ||
7507 | sha1 = "2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"; | ||
7508 | }; | ||
7509 | } | ||
7510 | |||
7511 | { | ||
7512 | name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz"; | ||
7513 | path = fetchurl { | ||
7514 | name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz"; | ||
7515 | url = "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"; | ||
7516 | sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"; | ||
7517 | }; | ||
7518 | } | ||
7519 | |||
7520 | { | ||
7521 | name = "minimatch___minimatch_3.0.4.tgz"; | ||
7522 | path = fetchurl { | ||
7523 | name = "minimatch___minimatch_3.0.4.tgz"; | ||
7524 | url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; | ||
7525 | sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; | ||
7526 | }; | ||
7527 | } | ||
7528 | |||
7529 | { | ||
7530 | name = "minimist___minimist_0.0.8.tgz"; | ||
7531 | path = fetchurl { | ||
7532 | name = "minimist___minimist_0.0.8.tgz"; | ||
7533 | url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; | ||
7534 | sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; | ||
7535 | }; | ||
7536 | } | ||
7537 | |||
7538 | { | ||
7539 | name = "minimist___minimist_1.1.3.tgz"; | ||
7540 | path = fetchurl { | ||
7541 | name = "minimist___minimist_1.1.3.tgz"; | ||
7542 | url = "https://registry.yarnpkg.com/minimist/-/minimist-1.1.3.tgz"; | ||
7543 | sha1 = "3bedfd91a92d39016fcfaa1c681e8faa1a1efda8"; | ||
7544 | }; | ||
7545 | } | ||
7546 | |||
7547 | { | ||
7548 | name = "minimist___minimist_1.2.0.tgz"; | ||
7549 | path = fetchurl { | ||
7550 | name = "minimist___minimist_1.2.0.tgz"; | ||
7551 | url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz"; | ||
7552 | sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; | ||
7553 | }; | ||
7554 | } | ||
7555 | |||
7556 | { | ||
7557 | name = "minimist___minimist_0.0.10.tgz"; | ||
7558 | path = fetchurl { | ||
7559 | name = "minimist___minimist_0.0.10.tgz"; | ||
7560 | url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz"; | ||
7561 | sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; | ||
7562 | }; | ||
7563 | } | ||
7564 | |||
7565 | { | ||
7566 | name = "minipass___minipass_2.3.5.tgz"; | ||
7567 | path = fetchurl { | ||
7568 | name = "minipass___minipass_2.3.5.tgz"; | ||
7569 | url = "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz"; | ||
7570 | sha1 = "cacebe492022497f656b0f0f51e2682a9ed2d848"; | ||
7571 | }; | ||
7572 | } | ||
7573 | |||
7574 | { | ||
7575 | name = "minizlib___minizlib_1.2.1.tgz"; | ||
7576 | path = fetchurl { | ||
7577 | name = "minizlib___minizlib_1.2.1.tgz"; | ||
7578 | url = "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz"; | ||
7579 | sha1 = "dd27ea6136243c7c880684e8672bb3a45fd9b614"; | ||
7580 | }; | ||
7581 | } | ||
7582 | |||
7583 | { | ||
7584 | name = "mississippi___mississippi_3.0.0.tgz"; | ||
7585 | path = fetchurl { | ||
7586 | name = "mississippi___mississippi_3.0.0.tgz"; | ||
7587 | url = "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz"; | ||
7588 | sha1 = "ea0a3291f97e0b5e8776b363d5f0a12d94c67022"; | ||
7589 | }; | ||
7590 | } | ||
7591 | |||
7592 | { | ||
7593 | name = "mixin_deep___mixin_deep_1.3.1.tgz"; | ||
7594 | path = fetchurl { | ||
7595 | name = "mixin_deep___mixin_deep_1.3.1.tgz"; | ||
7596 | url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz"; | ||
7597 | sha1 = "a49e7268dce1a0d9698e45326c5626df3543d0fe"; | ||
7598 | }; | ||
7599 | } | ||
7600 | |||
7601 | { | ||
7602 | name = "mixin_object___mixin_object_2.0.1.tgz"; | ||
7603 | path = fetchurl { | ||
7604 | name = "mixin_object___mixin_object_2.0.1.tgz"; | ||
7605 | url = "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz"; | ||
7606 | sha1 = "4fb949441dab182540f1fe035ba60e1947a5e57e"; | ||
7607 | }; | ||
7608 | } | ||
7609 | |||
7610 | { | ||
7611 | name = "mkdirp___mkdirp_0.5.1.tgz"; | ||
7612 | path = fetchurl { | ||
7613 | name = "mkdirp___mkdirp_0.5.1.tgz"; | ||
7614 | url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; | ||
7615 | sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; | ||
7616 | }; | ||
7617 | } | ||
7618 | |||
7619 | { | ||
7620 | name = "moo___moo_0.4.3.tgz"; | ||
7621 | path = fetchurl { | ||
7622 | name = "moo___moo_0.4.3.tgz"; | ||
7623 | url = "https://registry.yarnpkg.com/moo/-/moo-0.4.3.tgz"; | ||
7624 | sha1 = "3f847a26f31cf625a956a87f2b10fbc013bfd10e"; | ||
7625 | }; | ||
7626 | } | ||
7627 | |||
7628 | { | ||
7629 | name = "mousetrap___mousetrap_1.6.2.tgz"; | ||
7630 | path = fetchurl { | ||
7631 | name = "mousetrap___mousetrap_1.6.2.tgz"; | ||
7632 | url = "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.2.tgz"; | ||
7633 | sha1 = "caadd9cf886db0986fb2fee59a82f6bd37527587"; | ||
7634 | }; | ||
7635 | } | ||
7636 | |||
7637 | { | ||
7638 | name = "move_concurrently___move_concurrently_1.0.1.tgz"; | ||
7639 | path = fetchurl { | ||
7640 | name = "move_concurrently___move_concurrently_1.0.1.tgz"; | ||
7641 | url = "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz"; | ||
7642 | sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92"; | ||
7643 | }; | ||
7644 | } | ||
7645 | |||
7646 | { | ||
7647 | name = "ms___ms_2.0.0.tgz"; | ||
7648 | path = fetchurl { | ||
7649 | name = "ms___ms_2.0.0.tgz"; | ||
7650 | url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; | ||
7651 | sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; | ||
7652 | }; | ||
7653 | } | ||
7654 | |||
7655 | { | ||
7656 | name = "ms___ms_2.1.1.tgz"; | ||
7657 | path = fetchurl { | ||
7658 | name = "ms___ms_2.1.1.tgz"; | ||
7659 | url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz"; | ||
7660 | sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"; | ||
7661 | }; | ||
7662 | } | ||
7663 | |||
7664 | { | ||
7665 | name = "multicast_dns_service_types___multicast_dns_service_types_1.1.0.tgz"; | ||
7666 | path = fetchurl { | ||
7667 | name = "multicast_dns_service_types___multicast_dns_service_types_1.1.0.tgz"; | ||
7668 | url = "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz"; | ||
7669 | sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901"; | ||
7670 | }; | ||
7671 | } | ||
7672 | |||
7673 | { | ||
7674 | name = "multicast_dns___multicast_dns_6.2.3.tgz"; | ||
7675 | path = fetchurl { | ||
7676 | name = "multicast_dns___multicast_dns_6.2.3.tgz"; | ||
7677 | url = "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz"; | ||
7678 | sha1 = "a0ec7bd9055c4282f790c3c82f4e28db3b31b229"; | ||
7679 | }; | ||
7680 | } | ||
7681 | |||
7682 | { | ||
7683 | name = "mute_stream___mute_stream_0.0.5.tgz"; | ||
7684 | path = fetchurl { | ||
7685 | name = "mute_stream___mute_stream_0.0.5.tgz"; | ||
7686 | url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz"; | ||
7687 | sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0"; | ||
7688 | }; | ||
7689 | } | ||
7690 | |||
7691 | { | ||
7692 | name = "mute_stream___mute_stream_0.0.7.tgz"; | ||
7693 | path = fetchurl { | ||
7694 | name = "mute_stream___mute_stream_0.0.7.tgz"; | ||
7695 | url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; | ||
7696 | sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; | ||
7697 | }; | ||
7698 | } | ||
7699 | |||
7700 | { | ||
7701 | name = "nan___nan_2.14.0.tgz"; | ||
7702 | path = fetchurl { | ||
7703 | name = "nan___nan_2.14.0.tgz"; | ||
7704 | url = "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz"; | ||
7705 | sha1 = "7818f722027b2459a86f0295d434d1fc2336c52c"; | ||
7706 | }; | ||
7707 | } | ||
7708 | |||
7709 | { | ||
7710 | name = "nanomatch___nanomatch_1.2.13.tgz"; | ||
7711 | path = fetchurl { | ||
7712 | name = "nanomatch___nanomatch_1.2.13.tgz"; | ||
7713 | url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz"; | ||
7714 | sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119"; | ||
7715 | }; | ||
7716 | } | ||
7717 | |||
7718 | { | ||
7719 | name = "natural_compare___natural_compare_1.4.0.tgz"; | ||
7720 | path = fetchurl { | ||
7721 | name = "natural_compare___natural_compare_1.4.0.tgz"; | ||
7722 | url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; | ||
7723 | sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; | ||
7724 | }; | ||
7725 | } | ||
7726 | |||
7727 | { | ||
7728 | name = "nearley___nearley_2.16.0.tgz"; | ||
7729 | path = fetchurl { | ||
7730 | name = "nearley___nearley_2.16.0.tgz"; | ||
7731 | url = "https://registry.yarnpkg.com/nearley/-/nearley-2.16.0.tgz"; | ||
7732 | sha1 = "77c297d041941d268290ec84b739d0ee297e83a7"; | ||
7733 | }; | ||
7734 | } | ||
7735 | |||
7736 | { | ||
7737 | name = "needle___needle_2.2.4.tgz"; | ||
7738 | path = fetchurl { | ||
7739 | name = "needle___needle_2.2.4.tgz"; | ||
7740 | url = "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz"; | ||
7741 | sha1 = "51931bff82533b1928b7d1d69e01f1b00ffd2a4e"; | ||
7742 | }; | ||
7743 | } | ||
7744 | |||
7745 | { | ||
7746 | name = "negotiator___negotiator_0.6.2.tgz"; | ||
7747 | path = fetchurl { | ||
7748 | name = "negotiator___negotiator_0.6.2.tgz"; | ||
7749 | url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz"; | ||
7750 | sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb"; | ||
7751 | }; | ||
7752 | } | ||
7753 | |||
7754 | { | ||
7755 | name = "neo_async___neo_async_2.6.0.tgz"; | ||
7756 | path = fetchurl { | ||
7757 | name = "neo_async___neo_async_2.6.0.tgz"; | ||
7758 | url = "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz"; | ||
7759 | sha1 = "b9d15e4d71c6762908654b5183ed38b753340835"; | ||
7760 | }; | ||
7761 | } | ||
7762 | |||
7763 | { | ||
7764 | name = "next_tick___next_tick_1.0.0.tgz"; | ||
7765 | path = fetchurl { | ||
7766 | name = "next_tick___next_tick_1.0.0.tgz"; | ||
7767 | url = "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz"; | ||
7768 | sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c"; | ||
7769 | }; | ||
7770 | } | ||
7771 | |||
7772 | { | ||
7773 | name = "nice_try___nice_try_1.0.5.tgz"; | ||
7774 | path = fetchurl { | ||
7775 | name = "nice_try___nice_try_1.0.5.tgz"; | ||
7776 | url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; | ||
7777 | sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; | ||
7778 | }; | ||
7779 | } | ||
7780 | |||
7781 | { | ||
7782 | name = "node_fetch___node_fetch_1.7.3.tgz"; | ||
7783 | path = fetchurl { | ||
7784 | name = "node_fetch___node_fetch_1.7.3.tgz"; | ||
7785 | url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz"; | ||
7786 | sha1 = "980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"; | ||
7787 | }; | ||
7788 | } | ||
7789 | |||
7790 | { | ||
7791 | name = "node_forge___node_forge_0.7.5.tgz"; | ||
7792 | path = fetchurl { | ||
7793 | name = "node_forge___node_forge_0.7.5.tgz"; | ||
7794 | url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.5.tgz"; | ||
7795 | sha1 = "6c152c345ce11c52f465c2abd957e8639cd674df"; | ||
7796 | }; | ||
7797 | } | ||
7798 | |||
7799 | { | ||
7800 | name = "node_int64___node_int64_0.4.0.tgz"; | ||
7801 | path = fetchurl { | ||
7802 | name = "node_int64___node_int64_0.4.0.tgz"; | ||
7803 | url = "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz"; | ||
7804 | sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b"; | ||
7805 | }; | ||
7806 | } | ||
7807 | |||
7808 | { | ||
7809 | name = "node_libs_browser___node_libs_browser_2.1.0.tgz"; | ||
7810 | path = fetchurl { | ||
7811 | name = "node_libs_browser___node_libs_browser_2.1.0.tgz"; | ||
7812 | url = "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.1.0.tgz"; | ||
7813 | sha1 = "5f94263d404f6e44767d726901fff05478d600df"; | ||
7814 | }; | ||
7815 | } | ||
7816 | |||
7817 | { | ||
7818 | name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz"; | ||
7819 | path = fetchurl { | ||
7820 | name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz"; | ||
7821 | url = "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz"; | ||
7822 | sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40"; | ||
7823 | }; | ||
7824 | } | ||
7825 | |||
7826 | { | ||
7827 | name = "node_notifier___node_notifier_5.3.0.tgz"; | ||
7828 | path = fetchurl { | ||
7829 | name = "node_notifier___node_notifier_5.3.0.tgz"; | ||
7830 | url = "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.3.0.tgz"; | ||
7831 | sha1 = "c77a4a7b84038733d5fb351aafd8a268bfe19a01"; | ||
7832 | }; | ||
7833 | } | ||
7834 | |||
7835 | { | ||
7836 | name = "node_pre_gyp___node_pre_gyp_0.12.0.tgz"; | ||
7837 | path = fetchurl { | ||
7838 | name = "node_pre_gyp___node_pre_gyp_0.12.0.tgz"; | ||
7839 | url = "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz"; | ||
7840 | sha1 = "39ba4bb1439da030295f899e3b520b7785766149"; | ||
7841 | }; | ||
7842 | } | ||
7843 | |||
7844 | { | ||
7845 | name = "node_releases___node_releases_1.1.23.tgz"; | ||
7846 | path = fetchurl { | ||
7847 | name = "node_releases___node_releases_1.1.23.tgz"; | ||
7848 | url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.23.tgz"; | ||
7849 | sha1 = "de7409f72de044a2fa59c097f436ba89c39997f0"; | ||
7850 | }; | ||
7851 | } | ||
7852 | |||
7853 | { | ||
7854 | name = "nopt___nopt_4.0.1.tgz"; | ||
7855 | path = fetchurl { | ||
7856 | name = "nopt___nopt_4.0.1.tgz"; | ||
7857 | url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz"; | ||
7858 | sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d"; | ||
7859 | }; | ||
7860 | } | ||
7861 | |||
7862 | { | ||
7863 | name = "nopt___nopt_1.0.10.tgz"; | ||
7864 | path = fetchurl { | ||
7865 | name = "nopt___nopt_1.0.10.tgz"; | ||
7866 | url = "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz"; | ||
7867 | sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee"; | ||
7868 | }; | ||
7869 | } | ||
7870 | |||
7871 | { | ||
7872 | name = "normalize_package_data___normalize_package_data_2.4.0.tgz"; | ||
7873 | path = fetchurl { | ||
7874 | name = "normalize_package_data___normalize_package_data_2.4.0.tgz"; | ||
7875 | url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz"; | ||
7876 | sha1 = "12f95a307d58352075a04907b84ac8be98ac012f"; | ||
7877 | }; | ||
7878 | } | ||
7879 | |||
7880 | { | ||
7881 | name = "normalize_path___normalize_path_2.1.1.tgz"; | ||
7882 | path = fetchurl { | ||
7883 | name = "normalize_path___normalize_path_2.1.1.tgz"; | ||
7884 | url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz"; | ||
7885 | sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; | ||
7886 | }; | ||
7887 | } | ||
7888 | |||
7889 | { | ||
7890 | name = "normalize_path___normalize_path_3.0.0.tgz"; | ||
7891 | path = fetchurl { | ||
7892 | name = "normalize_path___normalize_path_3.0.0.tgz"; | ||
7893 | url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz"; | ||
7894 | sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65"; | ||
7895 | }; | ||
7896 | } | ||
7897 | |||
7898 | { | ||
7899 | name = "normalize_range___normalize_range_0.1.2.tgz"; | ||
7900 | path = fetchurl { | ||
7901 | name = "normalize_range___normalize_range_0.1.2.tgz"; | ||
7902 | url = "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz"; | ||
7903 | sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942"; | ||
7904 | }; | ||
7905 | } | ||
7906 | |||
7907 | { | ||
7908 | name = "normalize_url___normalize_url_3.3.0.tgz"; | ||
7909 | path = fetchurl { | ||
7910 | name = "normalize_url___normalize_url_3.3.0.tgz"; | ||
7911 | url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz"; | ||
7912 | sha1 = "b2e1c4dc4f7c6d57743df733a4f5978d18650559"; | ||
7913 | }; | ||
7914 | } | ||
7915 | |||
7916 | { | ||
7917 | name = "npm_bundled___npm_bundled_1.0.5.tgz"; | ||
7918 | path = fetchurl { | ||
7919 | name = "npm_bundled___npm_bundled_1.0.5.tgz"; | ||
7920 | url = "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz"; | ||
7921 | sha1 = "3c1732b7ba936b3a10325aef616467c0ccbcc979"; | ||
7922 | }; | ||
7923 | } | ||
7924 | |||
7925 | { | ||
7926 | name = "npm_packlist___npm_packlist_1.1.12.tgz"; | ||
7927 | path = fetchurl { | ||
7928 | name = "npm_packlist___npm_packlist_1.1.12.tgz"; | ||
7929 | url = "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.12.tgz"; | ||
7930 | sha1 = "22bde2ebc12e72ca482abd67afc51eb49377243a"; | ||
7931 | }; | ||
7932 | } | ||
7933 | |||
7934 | { | ||
7935 | name = "npm_run_path___npm_run_path_2.0.2.tgz"; | ||
7936 | path = fetchurl { | ||
7937 | name = "npm_run_path___npm_run_path_2.0.2.tgz"; | ||
7938 | url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz"; | ||
7939 | sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; | ||
7940 | }; | ||
7941 | } | ||
7942 | |||
7943 | { | ||
7944 | name = "npmlog___npmlog_4.1.2.tgz"; | ||
7945 | path = fetchurl { | ||
7946 | name = "npmlog___npmlog_4.1.2.tgz"; | ||
7947 | url = "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz"; | ||
7948 | sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b"; | ||
7949 | }; | ||
7950 | } | ||
7951 | |||
7952 | { | ||
7953 | name = "nth_check___nth_check_1.0.2.tgz"; | ||
7954 | path = fetchurl { | ||
7955 | name = "nth_check___nth_check_1.0.2.tgz"; | ||
7956 | url = "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz"; | ||
7957 | sha1 = "b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"; | ||
7958 | }; | ||
7959 | } | ||
7960 | |||
7961 | { | ||
7962 | name = "num2fraction___num2fraction_1.2.2.tgz"; | ||
7963 | path = fetchurl { | ||
7964 | name = "num2fraction___num2fraction_1.2.2.tgz"; | ||
7965 | url = "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz"; | ||
7966 | sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"; | ||
7967 | }; | ||
7968 | } | ||
7969 | |||
7970 | { | ||
7971 | name = "number_is_nan___number_is_nan_1.0.1.tgz"; | ||
7972 | path = fetchurl { | ||
7973 | name = "number_is_nan___number_is_nan_1.0.1.tgz"; | ||
7974 | url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz"; | ||
7975 | sha1 = "097b602b53422a522c1afb8790318336941a011d"; | ||
7976 | }; | ||
7977 | } | ||
7978 | |||
7979 | { | ||
7980 | name = "nwsapi___nwsapi_2.0.9.tgz"; | ||
7981 | path = fetchurl { | ||
7982 | name = "nwsapi___nwsapi_2.0.9.tgz"; | ||
7983 | url = "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.0.9.tgz"; | ||
7984 | sha1 = "77ac0cdfdcad52b6a1151a84e73254edc33ed016"; | ||
7985 | }; | ||
7986 | } | ||
7987 | |||
7988 | { | ||
7989 | name = "oauth_sign___oauth_sign_0.9.0.tgz"; | ||
7990 | path = fetchurl { | ||
7991 | name = "oauth_sign___oauth_sign_0.9.0.tgz"; | ||
7992 | url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz"; | ||
7993 | sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455"; | ||
7994 | }; | ||
7995 | } | ||
7996 | |||
7997 | { | ||
7998 | name = "object_assign___object_assign_4.1.0.tgz"; | ||
7999 | path = fetchurl { | ||
8000 | name = "object_assign___object_assign_4.1.0.tgz"; | ||
8001 | url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz"; | ||
8002 | sha1 = "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"; | ||
8003 | }; | ||
8004 | } | ||
8005 | |||
8006 | { | ||
8007 | name = "object_assign___object_assign_4.1.1.tgz"; | ||
8008 | path = fetchurl { | ||
8009 | name = "object_assign___object_assign_4.1.1.tgz"; | ||
8010 | url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; | ||
8011 | sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; | ||
8012 | }; | ||
8013 | } | ||
8014 | |||
8015 | { | ||
8016 | name = "object_copy___object_copy_0.1.0.tgz"; | ||
8017 | path = fetchurl { | ||
8018 | name = "object_copy___object_copy_0.1.0.tgz"; | ||
8019 | url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz"; | ||
8020 | sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; | ||
8021 | }; | ||
8022 | } | ||
8023 | |||
8024 | { | ||
8025 | name = "object_fit_images___object_fit_images_3.2.4.tgz"; | ||
8026 | path = fetchurl { | ||
8027 | name = "object_fit_images___object_fit_images_3.2.4.tgz"; | ||
8028 | url = "https://registry.yarnpkg.com/object-fit-images/-/object-fit-images-3.2.4.tgz"; | ||
8029 | sha1 = "6c299d38fdf207746e5d2d46c2877f6f25d15b52"; | ||
8030 | }; | ||
8031 | } | ||
8032 | |||
8033 | { | ||
8034 | name = "object_inspect___object_inspect_1.6.0.tgz"; | ||
8035 | path = fetchurl { | ||
8036 | name = "object_inspect___object_inspect_1.6.0.tgz"; | ||
8037 | url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz"; | ||
8038 | sha1 = "c70b6cbf72f274aab4c34c0c82f5167bf82cf15b"; | ||
8039 | }; | ||
8040 | } | ||
8041 | |||
8042 | { | ||
8043 | name = "object_is___object_is_1.0.1.tgz"; | ||
8044 | path = fetchurl { | ||
8045 | name = "object_is___object_is_1.0.1.tgz"; | ||
8046 | url = "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz"; | ||
8047 | sha1 = "0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6"; | ||
8048 | }; | ||
8049 | } | ||
8050 | |||
8051 | { | ||
8052 | name = "object_keys___object_keys_1.0.12.tgz"; | ||
8053 | path = fetchurl { | ||
8054 | name = "object_keys___object_keys_1.0.12.tgz"; | ||
8055 | url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz"; | ||
8056 | sha1 = "09c53855377575310cca62f55bb334abff7b3ed2"; | ||
8057 | }; | ||
8058 | } | ||
8059 | |||
8060 | { | ||
8061 | name = "object_visit___object_visit_1.0.1.tgz"; | ||
8062 | path = fetchurl { | ||
8063 | name = "object_visit___object_visit_1.0.1.tgz"; | ||
8064 | url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz"; | ||
8065 | sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; | ||
8066 | }; | ||
8067 | } | ||
8068 | |||
8069 | { | ||
8070 | name = "object.assign___object.assign_4.1.0.tgz"; | ||
8071 | path = fetchurl { | ||
8072 | name = "object.assign___object.assign_4.1.0.tgz"; | ||
8073 | url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz"; | ||
8074 | sha1 = "968bf1100d7956bb3ca086f006f846b3bc4008da"; | ||
8075 | }; | ||
8076 | } | ||
8077 | |||
8078 | { | ||
8079 | name = "object.entries___object.entries_1.1.0.tgz"; | ||
8080 | path = fetchurl { | ||
8081 | name = "object.entries___object.entries_1.1.0.tgz"; | ||
8082 | url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz"; | ||
8083 | sha1 = "2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"; | ||
8084 | }; | ||
8085 | } | ||
8086 | |||
8087 | { | ||
8088 | name = "object.fromentries___object.fromentries_2.0.0.tgz"; | ||
8089 | path = fetchurl { | ||
8090 | name = "object.fromentries___object.fromentries_2.0.0.tgz"; | ||
8091 | url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz"; | ||
8092 | sha1 = "49a543d92151f8277b3ac9600f1e930b189d30ab"; | ||
8093 | }; | ||
8094 | } | ||
8095 | |||
8096 | { | ||
8097 | name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; | ||
8098 | path = fetchurl { | ||
8099 | name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; | ||
8100 | url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz"; | ||
8101 | sha1 = "8758c846f5b407adab0f236e0986f14b051caa16"; | ||
8102 | }; | ||
8103 | } | ||
8104 | |||
8105 | { | ||
8106 | name = "object.pick___object.pick_1.3.0.tgz"; | ||
8107 | path = fetchurl { | ||
8108 | name = "object.pick___object.pick_1.3.0.tgz"; | ||
8109 | url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz"; | ||
8110 | sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; | ||
8111 | }; | ||
8112 | } | ||
8113 | |||
8114 | { | ||
8115 | name = "object.values___object.values_1.1.0.tgz"; | ||
8116 | path = fetchurl { | ||
8117 | name = "object.values___object.values_1.1.0.tgz"; | ||
8118 | url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz"; | ||
8119 | sha1 = "bf6810ef5da3e5325790eaaa2be213ea84624da9"; | ||
8120 | }; | ||
8121 | } | ||
8122 | |||
8123 | { | ||
8124 | name = "obuf___obuf_1.1.2.tgz"; | ||
8125 | path = fetchurl { | ||
8126 | name = "obuf___obuf_1.1.2.tgz"; | ||
8127 | url = "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz"; | ||
8128 | sha1 = "09bea3343d41859ebd446292d11c9d4db619084e"; | ||
8129 | }; | ||
8130 | } | ||
8131 | |||
8132 | { | ||
8133 | name = "offline_plugin___offline_plugin_5.0.7.tgz"; | ||
8134 | path = fetchurl { | ||
8135 | name = "offline_plugin___offline_plugin_5.0.7.tgz"; | ||
8136 | url = "https://registry.yarnpkg.com/offline-plugin/-/offline-plugin-5.0.7.tgz"; | ||
8137 | sha1 = "26936ad1a7699f4d67e0a095a258972a4ccf1788"; | ||
8138 | }; | ||
8139 | } | ||
8140 | |||
8141 | { | ||
8142 | name = "on_finished___on_finished_2.3.0.tgz"; | ||
8143 | path = fetchurl { | ||
8144 | name = "on_finished___on_finished_2.3.0.tgz"; | ||
8145 | url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz"; | ||
8146 | sha1 = "20f1336481b083cd75337992a16971aa2d906947"; | ||
8147 | }; | ||
8148 | } | ||
8149 | |||
8150 | { | ||
8151 | name = "on_headers___on_headers_1.0.2.tgz"; | ||
8152 | path = fetchurl { | ||
8153 | name = "on_headers___on_headers_1.0.2.tgz"; | ||
8154 | url = "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz"; | ||
8155 | sha1 = "772b0ae6aaa525c399e489adfad90c403eb3c28f"; | ||
8156 | }; | ||
8157 | } | ||
8158 | |||
8159 | { | ||
8160 | name = "once___once_1.4.0.tgz"; | ||
8161 | path = fetchurl { | ||
8162 | name = "once___once_1.4.0.tgz"; | ||
8163 | url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; | ||
8164 | sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; | ||
8165 | }; | ||
8166 | } | ||
8167 | |||
8168 | { | ||
8169 | name = "onetime___onetime_1.1.0.tgz"; | ||
8170 | path = fetchurl { | ||
8171 | name = "onetime___onetime_1.1.0.tgz"; | ||
8172 | url = "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz"; | ||
8173 | sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"; | ||
8174 | }; | ||
8175 | } | ||
8176 | |||
8177 | { | ||
8178 | name = "onetime___onetime_2.0.1.tgz"; | ||
8179 | path = fetchurl { | ||
8180 | name = "onetime___onetime_2.0.1.tgz"; | ||
8181 | url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; | ||
8182 | sha1 = "067428230fd67443b2794b22bba528b6867962d4"; | ||
8183 | }; | ||
8184 | } | ||
8185 | |||
8186 | { | ||
8187 | name = "opener___opener_1.5.1.tgz"; | ||
8188 | path = fetchurl { | ||
8189 | name = "opener___opener_1.5.1.tgz"; | ||
8190 | url = "https://registry.yarnpkg.com/opener/-/opener-1.5.1.tgz"; | ||
8191 | sha1 = "6d2f0e77f1a0af0032aca716c2c1fbb8e7e8abed"; | ||
8192 | }; | ||
8193 | } | ||
8194 | |||
8195 | { | ||
8196 | name = "opn___opn_5.5.0.tgz"; | ||
8197 | path = fetchurl { | ||
8198 | name = "opn___opn_5.5.0.tgz"; | ||
8199 | url = "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz"; | ||
8200 | sha1 = "fc7164fab56d235904c51c3b27da6758ca3b9bfc"; | ||
8201 | }; | ||
8202 | } | ||
8203 | |||
8204 | { | ||
8205 | name = "optimist___optimist_0.6.1.tgz"; | ||
8206 | path = fetchurl { | ||
8207 | name = "optimist___optimist_0.6.1.tgz"; | ||
8208 | url = "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz"; | ||
8209 | sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686"; | ||
8210 | }; | ||
8211 | } | ||
8212 | |||
8213 | { | ||
8214 | name = "optionator___optionator_0.8.2.tgz"; | ||
8215 | path = fetchurl { | ||
8216 | name = "optionator___optionator_0.8.2.tgz"; | ||
8217 | url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz"; | ||
8218 | sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; | ||
8219 | }; | ||
8220 | } | ||
8221 | |||
8222 | { | ||
8223 | name = "original___original_1.0.2.tgz"; | ||
8224 | path = fetchurl { | ||
8225 | name = "original___original_1.0.2.tgz"; | ||
8226 | url = "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz"; | ||
8227 | sha1 = "e442a61cffe1c5fd20a65f3261c26663b303f25f"; | ||
8228 | }; | ||
8229 | } | ||
8230 | |||
8231 | { | ||
8232 | name = "os_browserify___os_browserify_0.3.0.tgz"; | ||
8233 | path = fetchurl { | ||
8234 | name = "os_browserify___os_browserify_0.3.0.tgz"; | ||
8235 | url = "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz"; | ||
8236 | sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27"; | ||
8237 | }; | ||
8238 | } | ||
8239 | |||
8240 | { | ||
8241 | name = "os_homedir___os_homedir_1.0.2.tgz"; | ||
8242 | path = fetchurl { | ||
8243 | name = "os_homedir___os_homedir_1.0.2.tgz"; | ||
8244 | url = "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz"; | ||
8245 | sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; | ||
8246 | }; | ||
8247 | } | ||
8248 | |||
8249 | { | ||
8250 | name = "os_locale___os_locale_3.1.0.tgz"; | ||
8251 | path = fetchurl { | ||
8252 | name = "os_locale___os_locale_3.1.0.tgz"; | ||
8253 | url = "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz"; | ||
8254 | sha1 = "a802a6ee17f24c10483ab9935719cef4ed16bf1a"; | ||
8255 | }; | ||
8256 | } | ||
8257 | |||
8258 | { | ||
8259 | name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; | ||
8260 | path = fetchurl { | ||
8261 | name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; | ||
8262 | url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; | ||
8263 | sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; | ||
8264 | }; | ||
8265 | } | ||
8266 | |||
8267 | { | ||
8268 | name = "osenv___osenv_0.1.5.tgz"; | ||
8269 | path = fetchurl { | ||
8270 | name = "osenv___osenv_0.1.5.tgz"; | ||
8271 | url = "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz"; | ||
8272 | sha1 = "85cdfafaeb28e8677f416e287592b5f3f49ea410"; | ||
8273 | }; | ||
8274 | } | ||
8275 | |||
8276 | { | ||
8277 | name = "p_defer___p_defer_1.0.0.tgz"; | ||
8278 | path = fetchurl { | ||
8279 | name = "p_defer___p_defer_1.0.0.tgz"; | ||
8280 | url = "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz"; | ||
8281 | sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; | ||
8282 | }; | ||
8283 | } | ||
8284 | |||
8285 | { | ||
8286 | name = "p_each_series___p_each_series_1.0.0.tgz"; | ||
8287 | path = fetchurl { | ||
8288 | name = "p_each_series___p_each_series_1.0.0.tgz"; | ||
8289 | url = "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz"; | ||
8290 | sha1 = "930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"; | ||
8291 | }; | ||
8292 | } | ||
8293 | |||
8294 | { | ||
8295 | name = "p_finally___p_finally_1.0.0.tgz"; | ||
8296 | path = fetchurl { | ||
8297 | name = "p_finally___p_finally_1.0.0.tgz"; | ||
8298 | url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; | ||
8299 | sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; | ||
8300 | }; | ||
8301 | } | ||
8302 | |||
8303 | { | ||
8304 | name = "p_is_promise___p_is_promise_1.1.0.tgz"; | ||
8305 | path = fetchurl { | ||
8306 | name = "p_is_promise___p_is_promise_1.1.0.tgz"; | ||
8307 | url = "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz"; | ||
8308 | sha1 = "9c9456989e9f6588017b0434d56097675c3da05e"; | ||
8309 | }; | ||
8310 | } | ||
8311 | |||
8312 | { | ||
8313 | name = "p_limit___p_limit_1.3.0.tgz"; | ||
8314 | path = fetchurl { | ||
8315 | name = "p_limit___p_limit_1.3.0.tgz"; | ||
8316 | url = "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz"; | ||
8317 | sha1 = "b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"; | ||
8318 | }; | ||
8319 | } | ||
8320 | |||
8321 | { | ||
8322 | name = "p_limit___p_limit_2.1.0.tgz"; | ||
8323 | path = fetchurl { | ||
8324 | name = "p_limit___p_limit_2.1.0.tgz"; | ||
8325 | url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz"; | ||
8326 | sha1 = "1d5a0d20fb12707c758a655f6bbc4386b5930d68"; | ||
8327 | }; | ||
8328 | } | ||
8329 | |||
8330 | { | ||
8331 | name = "p_locate___p_locate_2.0.0.tgz"; | ||
8332 | path = fetchurl { | ||
8333 | name = "p_locate___p_locate_2.0.0.tgz"; | ||
8334 | url = "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz"; | ||
8335 | sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; | ||
8336 | }; | ||
8337 | } | ||
8338 | |||
8339 | { | ||
8340 | name = "p_locate___p_locate_3.0.0.tgz"; | ||
8341 | path = fetchurl { | ||
8342 | name = "p_locate___p_locate_3.0.0.tgz"; | ||
8343 | url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz"; | ||
8344 | sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4"; | ||
8345 | }; | ||
8346 | } | ||
8347 | |||
8348 | { | ||
8349 | name = "p_map___p_map_2.1.0.tgz"; | ||
8350 | path = fetchurl { | ||
8351 | name = "p_map___p_map_2.1.0.tgz"; | ||
8352 | url = "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz"; | ||
8353 | sha1 = "310928feef9c9ecc65b68b17693018a665cea175"; | ||
8354 | }; | ||
8355 | } | ||
8356 | |||
8357 | { | ||
8358 | name = "p_reduce___p_reduce_1.0.0.tgz"; | ||
8359 | path = fetchurl { | ||
8360 | name = "p_reduce___p_reduce_1.0.0.tgz"; | ||
8361 | url = "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz"; | ||
8362 | sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"; | ||
8363 | }; | ||
8364 | } | ||
8365 | |||
8366 | { | ||
8367 | name = "p_try___p_try_1.0.0.tgz"; | ||
8368 | path = fetchurl { | ||
8369 | name = "p_try___p_try_1.0.0.tgz"; | ||
8370 | url = "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz"; | ||
8371 | sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"; | ||
8372 | }; | ||
8373 | } | ||
8374 | |||
8375 | { | ||
8376 | name = "p_try___p_try_2.0.0.tgz"; | ||
8377 | path = fetchurl { | ||
8378 | name = "p_try___p_try_2.0.0.tgz"; | ||
8379 | url = "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz"; | ||
8380 | sha1 = "85080bb87c64688fa47996fe8f7dfbe8211760b1"; | ||
8381 | }; | ||
8382 | } | ||
8383 | |||
8384 | { | ||
8385 | name = "packet_reader___packet_reader_0.3.1.tgz"; | ||
8386 | path = fetchurl { | ||
8387 | name = "packet_reader___packet_reader_0.3.1.tgz"; | ||
8388 | url = "https://registry.yarnpkg.com/packet-reader/-/packet-reader-0.3.1.tgz"; | ||
8389 | sha1 = "cd62e60af8d7fea8a705ec4ff990871c46871f27"; | ||
8390 | }; | ||
8391 | } | ||
8392 | |||
8393 | { | ||
8394 | name = "pako___pako_1.0.7.tgz"; | ||
8395 | path = fetchurl { | ||
8396 | name = "pako___pako_1.0.7.tgz"; | ||
8397 | url = "https://registry.yarnpkg.com/pako/-/pako-1.0.7.tgz"; | ||
8398 | sha1 = "2473439021b57f1516c82f58be7275ad8ef1bb27"; | ||
8399 | }; | ||
8400 | } | ||
8401 | |||
8402 | { | ||
8403 | name = "parallel_transform___parallel_transform_1.1.0.tgz"; | ||
8404 | path = fetchurl { | ||
8405 | name = "parallel_transform___parallel_transform_1.1.0.tgz"; | ||
8406 | url = "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz"; | ||
8407 | sha1 = "d410f065b05da23081fcd10f28854c29bda33b06"; | ||
8408 | }; | ||
8409 | } | ||
8410 | |||
8411 | { | ||
8412 | name = "parse_asn1___parse_asn1_5.1.1.tgz"; | ||
8413 | path = fetchurl { | ||
8414 | name = "parse_asn1___parse_asn1_5.1.1.tgz"; | ||
8415 | url = "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.1.tgz"; | ||
8416 | sha1 = "f6bf293818332bd0dab54efb16087724745e6ca8"; | ||
8417 | }; | ||
8418 | } | ||
8419 | |||
8420 | { | ||
8421 | name = "parse_css_font___parse_css_font_2.0.2.tgz"; | ||
8422 | path = fetchurl { | ||
8423 | name = "parse_css_font___parse_css_font_2.0.2.tgz"; | ||
8424 | url = "https://registry.yarnpkg.com/parse-css-font/-/parse-css-font-2.0.2.tgz"; | ||
8425 | sha1 = "7b60b060705a25a9b90b7f0ed493e5823248a652"; | ||
8426 | }; | ||
8427 | } | ||
8428 | |||
8429 | { | ||
8430 | name = "parse_json___parse_json_2.2.0.tgz"; | ||
8431 | path = fetchurl { | ||
8432 | name = "parse_json___parse_json_2.2.0.tgz"; | ||
8433 | url = "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz"; | ||
8434 | sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; | ||
8435 | }; | ||
8436 | } | ||
8437 | |||
8438 | { | ||
8439 | name = "parse_json___parse_json_4.0.0.tgz"; | ||
8440 | path = fetchurl { | ||
8441 | name = "parse_json___parse_json_4.0.0.tgz"; | ||
8442 | url = "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz"; | ||
8443 | sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; | ||
8444 | }; | ||
8445 | } | ||
8446 | |||
8447 | { | ||
8448 | name = "parse_passwd___parse_passwd_1.0.0.tgz"; | ||
8449 | path = fetchurl { | ||
8450 | name = "parse_passwd___parse_passwd_1.0.0.tgz"; | ||
8451 | url = "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz"; | ||
8452 | sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; | ||
8453 | }; | ||
8454 | } | ||
8455 | |||
8456 | { | ||
8457 | name = "parse5___parse5_4.0.0.tgz"; | ||
8458 | path = fetchurl { | ||
8459 | name = "parse5___parse5_4.0.0.tgz"; | ||
8460 | url = "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz"; | ||
8461 | sha1 = "6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"; | ||
8462 | }; | ||
8463 | } | ||
8464 | |||
8465 | { | ||
8466 | name = "parse5___parse5_3.0.3.tgz"; | ||
8467 | path = fetchurl { | ||
8468 | name = "parse5___parse5_3.0.3.tgz"; | ||
8469 | url = "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz"; | ||
8470 | sha1 = "042f792ffdd36851551cf4e9e066b3874ab45b5c"; | ||
8471 | }; | ||
8472 | } | ||
8473 | |||
8474 | { | ||
8475 | name = "parseurl___parseurl_1.3.3.tgz"; | ||
8476 | path = fetchurl { | ||
8477 | name = "parseurl___parseurl_1.3.3.tgz"; | ||
8478 | url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz"; | ||
8479 | sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4"; | ||
8480 | }; | ||
8481 | } | ||
8482 | |||
8483 | { | ||
8484 | name = "pascalcase___pascalcase_0.1.1.tgz"; | ||
8485 | path = fetchurl { | ||
8486 | name = "pascalcase___pascalcase_0.1.1.tgz"; | ||
8487 | url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz"; | ||
8488 | sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; | ||
8489 | }; | ||
8490 | } | ||
8491 | |||
8492 | { | ||
8493 | name = "path_browserify___path_browserify_0.0.0.tgz"; | ||
8494 | path = fetchurl { | ||
8495 | name = "path_browserify___path_browserify_0.0.0.tgz"; | ||
8496 | url = "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz"; | ||
8497 | sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a"; | ||
8498 | }; | ||
8499 | } | ||
8500 | |||
8501 | { | ||
8502 | name = "path_complete_extname___path_complete_extname_1.0.0.tgz"; | ||
8503 | path = fetchurl { | ||
8504 | name = "path_complete_extname___path_complete_extname_1.0.0.tgz"; | ||
8505 | url = "https://registry.yarnpkg.com/path-complete-extname/-/path-complete-extname-1.0.0.tgz"; | ||
8506 | sha1 = "f889985dc91000c815515c0bfed06c5acda0752b"; | ||
8507 | }; | ||
8508 | } | ||
8509 | |||
8510 | { | ||
8511 | name = "path_dirname___path_dirname_1.0.2.tgz"; | ||
8512 | path = fetchurl { | ||
8513 | name = "path_dirname___path_dirname_1.0.2.tgz"; | ||
8514 | url = "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz"; | ||
8515 | sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0"; | ||
8516 | }; | ||
8517 | } | ||
8518 | |||
8519 | { | ||
8520 | name = "path_exists___path_exists_3.0.0.tgz"; | ||
8521 | path = fetchurl { | ||
8522 | name = "path_exists___path_exists_3.0.0.tgz"; | ||
8523 | url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz"; | ||
8524 | sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; | ||
8525 | }; | ||
8526 | } | ||
8527 | |||
8528 | { | ||
8529 | name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; | ||
8530 | path = fetchurl { | ||
8531 | name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; | ||
8532 | url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; | ||
8533 | sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; | ||
8534 | }; | ||
8535 | } | ||
8536 | |||
8537 | { | ||
8538 | name = "path_is_inside___path_is_inside_1.0.2.tgz"; | ||
8539 | path = fetchurl { | ||
8540 | name = "path_is_inside___path_is_inside_1.0.2.tgz"; | ||
8541 | url = "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz"; | ||
8542 | sha1 = "365417dede44430d1c11af61027facf074bdfc53"; | ||
8543 | }; | ||
8544 | } | ||
8545 | |||
8546 | { | ||
8547 | name = "path_key___path_key_2.0.1.tgz"; | ||
8548 | path = fetchurl { | ||
8549 | name = "path_key___path_key_2.0.1.tgz"; | ||
8550 | url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; | ||
8551 | sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; | ||
8552 | }; | ||
8553 | } | ||
8554 | |||
8555 | { | ||
8556 | name = "path_parse___path_parse_1.0.6.tgz"; | ||
8557 | path = fetchurl { | ||
8558 | name = "path_parse___path_parse_1.0.6.tgz"; | ||
8559 | url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; | ||
8560 | sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; | ||
8561 | }; | ||
8562 | } | ||
8563 | |||
8564 | { | ||
8565 | name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; | ||
8566 | path = fetchurl { | ||
8567 | name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; | ||
8568 | url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; | ||
8569 | sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; | ||
8570 | }; | ||
8571 | } | ||
8572 | |||
8573 | { | ||
8574 | name = "path_to_regexp___path_to_regexp_1.7.0.tgz"; | ||
8575 | path = fetchurl { | ||
8576 | name = "path_to_regexp___path_to_regexp_1.7.0.tgz"; | ||
8577 | url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz"; | ||
8578 | sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d"; | ||
8579 | }; | ||
8580 | } | ||
8581 | |||
8582 | { | ||
8583 | name = "path_type___path_type_2.0.0.tgz"; | ||
8584 | path = fetchurl { | ||
8585 | name = "path_type___path_type_2.0.0.tgz"; | ||
8586 | url = "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz"; | ||
8587 | sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; | ||
8588 | }; | ||
8589 | } | ||
8590 | |||
8591 | { | ||
8592 | name = "path_type___path_type_3.0.0.tgz"; | ||
8593 | path = fetchurl { | ||
8594 | name = "path_type___path_type_3.0.0.tgz"; | ||
8595 | url = "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz"; | ||
8596 | sha1 = "cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"; | ||
8597 | }; | ||
8598 | } | ||
8599 | |||
8600 | { | ||
8601 | name = "pbkdf2___pbkdf2_3.0.17.tgz"; | ||
8602 | path = fetchurl { | ||
8603 | name = "pbkdf2___pbkdf2_3.0.17.tgz"; | ||
8604 | url = "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz"; | ||
8605 | sha1 = "976c206530617b14ebb32114239f7b09336e93a6"; | ||
8606 | }; | ||
8607 | } | ||
8608 | |||
8609 | { | ||
8610 | name = "performance_now___performance_now_0.2.0.tgz"; | ||
8611 | path = fetchurl { | ||
8612 | name = "performance_now___performance_now_0.2.0.tgz"; | ||
8613 | url = "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz"; | ||
8614 | sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; | ||
8615 | }; | ||
8616 | } | ||
8617 | |||
8618 | { | ||
8619 | name = "performance_now___performance_now_2.1.0.tgz"; | ||
8620 | path = fetchurl { | ||
8621 | name = "performance_now___performance_now_2.1.0.tgz"; | ||
8622 | url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz"; | ||
8623 | sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; | ||
8624 | }; | ||
8625 | } | ||
8626 | |||
8627 | { | ||
8628 | name = "pg_connection_string___pg_connection_string_0.1.3.tgz"; | ||
8629 | path = fetchurl { | ||
8630 | name = "pg_connection_string___pg_connection_string_0.1.3.tgz"; | ||
8631 | url = "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-0.1.3.tgz"; | ||
8632 | sha1 = "da1847b20940e42ee1492beaf65d49d91b245df7"; | ||
8633 | }; | ||
8634 | } | ||
8635 | |||
8636 | { | ||
8637 | name = "pg_int8___pg_int8_1.0.1.tgz"; | ||
8638 | path = fetchurl { | ||
8639 | name = "pg_int8___pg_int8_1.0.1.tgz"; | ||
8640 | url = "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz"; | ||
8641 | sha1 = "943bd463bf5b71b4170115f80f8efc9a0c0eb78c"; | ||
8642 | }; | ||
8643 | } | ||
8644 | |||
8645 | { | ||
8646 | name = "pg_pool___pg_pool_1.8.0.tgz"; | ||
8647 | path = fetchurl { | ||
8648 | name = "pg_pool___pg_pool_1.8.0.tgz"; | ||
8649 | url = "https://registry.yarnpkg.com/pg-pool/-/pg-pool-1.8.0.tgz"; | ||
8650 | sha1 = "f7ec73824c37a03f076f51bfdf70e340147c4f37"; | ||
8651 | }; | ||
8652 | } | ||
8653 | |||
8654 | { | ||
8655 | name = "pg_types___pg_types_1.13.0.tgz"; | ||
8656 | path = fetchurl { | ||
8657 | name = "pg_types___pg_types_1.13.0.tgz"; | ||
8658 | url = "https://registry.yarnpkg.com/pg-types/-/pg-types-1.13.0.tgz"; | ||
8659 | sha1 = "75f490b8a8abf75f1386ef5ec4455ecf6b345c63"; | ||
8660 | }; | ||
8661 | } | ||
8662 | |||
8663 | { | ||
8664 | name = "pg___pg_6.4.2.tgz"; | ||
8665 | path = fetchurl { | ||
8666 | name = "pg___pg_6.4.2.tgz"; | ||
8667 | url = "https://registry.yarnpkg.com/pg/-/pg-6.4.2.tgz"; | ||
8668 | sha1 = "c364011060eac7a507a2ae063eb857ece910e27f"; | ||
8669 | }; | ||
8670 | } | ||
8671 | |||
8672 | { | ||
8673 | name = "pgpass___pgpass_1.0.2.tgz"; | ||
8674 | path = fetchurl { | ||
8675 | name = "pgpass___pgpass_1.0.2.tgz"; | ||
8676 | url = "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.2.tgz"; | ||
8677 | sha1 = "2a7bb41b6065b67907e91da1b07c1847c877b306"; | ||
8678 | }; | ||
8679 | } | ||
8680 | |||
8681 | { | ||
8682 | name = "pify___pify_2.3.0.tgz"; | ||
8683 | path = fetchurl { | ||
8684 | name = "pify___pify_2.3.0.tgz"; | ||
8685 | url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; | ||
8686 | sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; | ||
8687 | }; | ||
8688 | } | ||
8689 | |||
8690 | { | ||
8691 | name = "pify___pify_3.0.0.tgz"; | ||
8692 | path = fetchurl { | ||
8693 | name = "pify___pify_3.0.0.tgz"; | ||
8694 | url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz"; | ||
8695 | sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; | ||
8696 | }; | ||
8697 | } | ||
8698 | |||
8699 | { | ||
8700 | name = "pify___pify_4.0.1.tgz"; | ||
8701 | path = fetchurl { | ||
8702 | name = "pify___pify_4.0.1.tgz"; | ||
8703 | url = "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz"; | ||
8704 | sha1 = "4b2cd25c50d598735c50292224fd8c6df41e3231"; | ||
8705 | }; | ||
8706 | } | ||
8707 | |||
8708 | { | ||
8709 | name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; | ||
8710 | path = fetchurl { | ||
8711 | name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; | ||
8712 | url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; | ||
8713 | sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; | ||
8714 | }; | ||
8715 | } | ||
8716 | |||
8717 | { | ||
8718 | name = "pinkie___pinkie_2.0.4.tgz"; | ||
8719 | path = fetchurl { | ||
8720 | name = "pinkie___pinkie_2.0.4.tgz"; | ||
8721 | url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz"; | ||
8722 | sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; | ||
8723 | }; | ||
8724 | } | ||
8725 | |||
8726 | { | ||
8727 | name = "pirates___pirates_4.0.1.tgz"; | ||
8728 | path = fetchurl { | ||
8729 | name = "pirates___pirates_4.0.1.tgz"; | ||
8730 | url = "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz"; | ||
8731 | sha1 = "643a92caf894566f91b2b986d2c66950a8e2fb87"; | ||
8732 | }; | ||
8733 | } | ||
8734 | |||
8735 | { | ||
8736 | name = "pkg_dir___pkg_dir_2.0.0.tgz"; | ||
8737 | path = fetchurl { | ||
8738 | name = "pkg_dir___pkg_dir_2.0.0.tgz"; | ||
8739 | url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz"; | ||
8740 | sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; | ||
8741 | }; | ||
8742 | } | ||
8743 | |||
8744 | { | ||
8745 | name = "pkg_dir___pkg_dir_3.0.0.tgz"; | ||
8746 | path = fetchurl { | ||
8747 | name = "pkg_dir___pkg_dir_3.0.0.tgz"; | ||
8748 | url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz"; | ||
8749 | sha1 = "2749020f239ed990881b1f71210d51eb6523bea3"; | ||
8750 | }; | ||
8751 | } | ||
8752 | |||
8753 | { | ||
8754 | name = "pluralize___pluralize_1.2.1.tgz"; | ||
8755 | path = fetchurl { | ||
8756 | name = "pluralize___pluralize_1.2.1.tgz"; | ||
8757 | url = "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz"; | ||
8758 | sha1 = "d1a21483fd22bb41e58a12fa3421823140897c45"; | ||
8759 | }; | ||
8760 | } | ||
8761 | |||
8762 | { | ||
8763 | name = "pluralize___pluralize_7.0.0.tgz"; | ||
8764 | path = fetchurl { | ||
8765 | name = "pluralize___pluralize_7.0.0.tgz"; | ||
8766 | url = "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz"; | ||
8767 | sha1 = "298b89df8b93b0221dbf421ad2b1b1ea23fc6777"; | ||
8768 | }; | ||
8769 | } | ||
8770 | |||
8771 | { | ||
8772 | name = "pn___pn_1.1.0.tgz"; | ||
8773 | path = fetchurl { | ||
8774 | name = "pn___pn_1.1.0.tgz"; | ||
8775 | url = "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz"; | ||
8776 | sha1 = "e2f4cef0e219f463c179ab37463e4e1ecdccbafb"; | ||
8777 | }; | ||
8778 | } | ||
8779 | |||
8780 | { | ||
8781 | name = "portfinder___portfinder_1.0.20.tgz"; | ||
8782 | path = fetchurl { | ||
8783 | name = "portfinder___portfinder_1.0.20.tgz"; | ||
8784 | url = "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.20.tgz"; | ||
8785 | sha1 = "bea68632e54b2e13ab7b0c4775e9b41bf270e44a"; | ||
8786 | }; | ||
8787 | } | ||
8788 | |||
8789 | { | ||
8790 | name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; | ||
8791 | path = fetchurl { | ||
8792 | name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; | ||
8793 | url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; | ||
8794 | sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; | ||
8795 | }; | ||
8796 | } | ||
8797 | |||
8798 | { | ||
8799 | name = "postcss_calc___postcss_calc_7.0.1.tgz"; | ||
8800 | path = fetchurl { | ||
8801 | name = "postcss_calc___postcss_calc_7.0.1.tgz"; | ||
8802 | url = "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.1.tgz"; | ||
8803 | sha1 = "36d77bab023b0ecbb9789d84dcb23c4941145436"; | ||
8804 | }; | ||
8805 | } | ||
8806 | |||
8807 | { | ||
8808 | name = "postcss_colormin___postcss_colormin_4.0.3.tgz"; | ||
8809 | path = fetchurl { | ||
8810 | name = "postcss_colormin___postcss_colormin_4.0.3.tgz"; | ||
8811 | url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz"; | ||
8812 | sha1 = "ae060bce93ed794ac71264f08132d550956bd381"; | ||
8813 | }; | ||
8814 | } | ||
8815 | |||
8816 | { | ||
8817 | name = "postcss_convert_values___postcss_convert_values_4.0.1.tgz"; | ||
8818 | path = fetchurl { | ||
8819 | name = "postcss_convert_values___postcss_convert_values_4.0.1.tgz"; | ||
8820 | url = "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz"; | ||
8821 | sha1 = "ca3813ed4da0f812f9d43703584e449ebe189a7f"; | ||
8822 | }; | ||
8823 | } | ||
8824 | |||
8825 | { | ||
8826 | name = "postcss_discard_comments___postcss_discard_comments_4.0.2.tgz"; | ||
8827 | path = fetchurl { | ||
8828 | name = "postcss_discard_comments___postcss_discard_comments_4.0.2.tgz"; | ||
8829 | url = "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz"; | ||
8830 | sha1 = "1fbabd2c246bff6aaad7997b2b0918f4d7af4033"; | ||
8831 | }; | ||
8832 | } | ||
8833 | |||
8834 | { | ||
8835 | name = "postcss_discard_duplicates___postcss_discard_duplicates_4.0.2.tgz"; | ||
8836 | path = fetchurl { | ||
8837 | name = "postcss_discard_duplicates___postcss_discard_duplicates_4.0.2.tgz"; | ||
8838 | url = "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz"; | ||
8839 | sha1 = "3fe133cd3c82282e550fc9b239176a9207b784eb"; | ||
8840 | }; | ||
8841 | } | ||
8842 | |||
8843 | { | ||
8844 | name = "postcss_discard_empty___postcss_discard_empty_4.0.1.tgz"; | ||
8845 | path = fetchurl { | ||
8846 | name = "postcss_discard_empty___postcss_discard_empty_4.0.1.tgz"; | ||
8847 | url = "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz"; | ||
8848 | sha1 = "c8c951e9f73ed9428019458444a02ad90bb9f765"; | ||
8849 | }; | ||
8850 | } | ||
8851 | |||
8852 | { | ||
8853 | name = "postcss_discard_overridden___postcss_discard_overridden_4.0.1.tgz"; | ||
8854 | path = fetchurl { | ||
8855 | name = "postcss_discard_overridden___postcss_discard_overridden_4.0.1.tgz"; | ||
8856 | url = "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz"; | ||
8857 | sha1 = "652aef8a96726f029f5e3e00146ee7a4e755ff57"; | ||
8858 | }; | ||
8859 | } | ||
8860 | |||
8861 | { | ||
8862 | name = "postcss_load_config___postcss_load_config_2.0.0.tgz"; | ||
8863 | path = fetchurl { | ||
8864 | name = "postcss_load_config___postcss_load_config_2.0.0.tgz"; | ||
8865 | url = "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.0.0.tgz"; | ||
8866 | sha1 = "f1312ddbf5912cd747177083c5ef7a19d62ee484"; | ||
8867 | }; | ||
8868 | } | ||
8869 | |||
8870 | { | ||
8871 | name = "postcss_loader___postcss_loader_3.0.0.tgz"; | ||
8872 | path = fetchurl { | ||
8873 | name = "postcss_loader___postcss_loader_3.0.0.tgz"; | ||
8874 | url = "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz"; | ||
8875 | sha1 = "6b97943e47c72d845fa9e03f273773d4e8dd6c2d"; | ||
8876 | }; | ||
8877 | } | ||
8878 | |||
8879 | { | ||
8880 | name = "postcss_merge_longhand___postcss_merge_longhand_4.0.11.tgz"; | ||
8881 | path = fetchurl { | ||
8882 | name = "postcss_merge_longhand___postcss_merge_longhand_4.0.11.tgz"; | ||
8883 | url = "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz"; | ||
8884 | sha1 = "62f49a13e4a0ee04e7b98f42bb16062ca2549e24"; | ||
8885 | }; | ||
8886 | } | ||
8887 | |||
8888 | { | ||
8889 | name = "postcss_merge_rules___postcss_merge_rules_4.0.3.tgz"; | ||
8890 | path = fetchurl { | ||
8891 | name = "postcss_merge_rules___postcss_merge_rules_4.0.3.tgz"; | ||
8892 | url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz"; | ||
8893 | sha1 = "362bea4ff5a1f98e4075a713c6cb25aefef9a650"; | ||
8894 | }; | ||
8895 | } | ||
8896 | |||
8897 | { | ||
8898 | name = "postcss_minify_font_values___postcss_minify_font_values_4.0.2.tgz"; | ||
8899 | path = fetchurl { | ||
8900 | name = "postcss_minify_font_values___postcss_minify_font_values_4.0.2.tgz"; | ||
8901 | url = "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz"; | ||
8902 | sha1 = "cd4c344cce474343fac5d82206ab2cbcb8afd5a6"; | ||
8903 | }; | ||
8904 | } | ||
8905 | |||
8906 | { | ||
8907 | name = "postcss_minify_gradients___postcss_minify_gradients_4.0.2.tgz"; | ||
8908 | path = fetchurl { | ||
8909 | name = "postcss_minify_gradients___postcss_minify_gradients_4.0.2.tgz"; | ||
8910 | url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz"; | ||
8911 | sha1 = "93b29c2ff5099c535eecda56c4aa6e665a663471"; | ||
8912 | }; | ||
8913 | } | ||
8914 | |||
8915 | { | ||
8916 | name = "postcss_minify_params___postcss_minify_params_4.0.2.tgz"; | ||
8917 | path = fetchurl { | ||
8918 | name = "postcss_minify_params___postcss_minify_params_4.0.2.tgz"; | ||
8919 | url = "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz"; | ||
8920 | sha1 = "6b9cef030c11e35261f95f618c90036d680db874"; | ||
8921 | }; | ||
8922 | } | ||
8923 | |||
8924 | { | ||
8925 | name = "postcss_minify_selectors___postcss_minify_selectors_4.0.2.tgz"; | ||
8926 | path = fetchurl { | ||
8927 | name = "postcss_minify_selectors___postcss_minify_selectors_4.0.2.tgz"; | ||
8928 | url = "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz"; | ||
8929 | sha1 = "e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8"; | ||
8930 | }; | ||
8931 | } | ||
8932 | |||
8933 | { | ||
8934 | name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz"; | ||
8935 | path = fetchurl { | ||
8936 | name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz"; | ||
8937 | url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz"; | ||
8938 | sha1 = "818719a1ae1da325f9832446b01136eeb493cd7e"; | ||
8939 | }; | ||
8940 | } | ||
8941 | |||
8942 | { | ||
8943 | name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz"; | ||
8944 | path = fetchurl { | ||
8945 | name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz"; | ||
8946 | url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz"; | ||
8947 | sha1 = "dd9953f6dd476b5fd1ef2d8830c8929760b56e63"; | ||
8948 | }; | ||
8949 | } | ||
8950 | |||
8951 | { | ||
8952 | name = "postcss_modules_scope___postcss_modules_scope_2.1.0.tgz"; | ||
8953 | path = fetchurl { | ||
8954 | name = "postcss_modules_scope___postcss_modules_scope_2.1.0.tgz"; | ||
8955 | url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz"; | ||
8956 | sha1 = "ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb"; | ||
8957 | }; | ||
8958 | } | ||
8959 | |||
8960 | { | ||
8961 | name = "postcss_modules_values___postcss_modules_values_2.0.0.tgz"; | ||
8962 | path = fetchurl { | ||
8963 | name = "postcss_modules_values___postcss_modules_values_2.0.0.tgz"; | ||
8964 | url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz"; | ||
8965 | sha1 = "479b46dc0c5ca3dc7fa5270851836b9ec7152f64"; | ||
8966 | }; | ||
8967 | } | ||
8968 | |||
8969 | { | ||
8970 | name = "postcss_normalize_charset___postcss_normalize_charset_4.0.1.tgz"; | ||
8971 | path = fetchurl { | ||
8972 | name = "postcss_normalize_charset___postcss_normalize_charset_4.0.1.tgz"; | ||
8973 | url = "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz"; | ||
8974 | sha1 = "8b35add3aee83a136b0471e0d59be58a50285dd4"; | ||
8975 | }; | ||
8976 | } | ||
8977 | |||
8978 | { | ||
8979 | name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.2.tgz"; | ||
8980 | path = fetchurl { | ||
8981 | name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.2.tgz"; | ||
8982 | url = "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz"; | ||
8983 | sha1 = "0dbe04a4ce9063d4667ed2be476bb830c825935a"; | ||
8984 | }; | ||
8985 | } | ||
8986 | |||
8987 | { | ||
8988 | name = "postcss_normalize_positions___postcss_normalize_positions_4.0.2.tgz"; | ||
8989 | path = fetchurl { | ||
8990 | name = "postcss_normalize_positions___postcss_normalize_positions_4.0.2.tgz"; | ||
8991 | url = "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz"; | ||
8992 | sha1 = "05f757f84f260437378368a91f8932d4b102917f"; | ||
8993 | }; | ||
8994 | } | ||
8995 | |||
8996 | { | ||
8997 | name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.2.tgz"; | ||
8998 | path = fetchurl { | ||
8999 | name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.2.tgz"; | ||
9000 | url = "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz"; | ||
9001 | sha1 = "c4ebbc289f3991a028d44751cbdd11918b17910c"; | ||
9002 | }; | ||
9003 | } | ||
9004 | |||
9005 | { | ||
9006 | name = "postcss_normalize_string___postcss_normalize_string_4.0.2.tgz"; | ||
9007 | path = fetchurl { | ||
9008 | name = "postcss_normalize_string___postcss_normalize_string_4.0.2.tgz"; | ||
9009 | url = "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz"; | ||
9010 | sha1 = "cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c"; | ||
9011 | }; | ||
9012 | } | ||
9013 | |||
9014 | { | ||
9015 | name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.2.tgz"; | ||
9016 | path = fetchurl { | ||
9017 | name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.2.tgz"; | ||
9018 | url = "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz"; | ||
9019 | sha1 = "8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9"; | ||
9020 | }; | ||
9021 | } | ||
9022 | |||
9023 | { | ||
9024 | name = "postcss_normalize_unicode___postcss_normalize_unicode_4.0.1.tgz"; | ||
9025 | path = fetchurl { | ||
9026 | name = "postcss_normalize_unicode___postcss_normalize_unicode_4.0.1.tgz"; | ||
9027 | url = "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz"; | ||
9028 | sha1 = "841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"; | ||
9029 | }; | ||
9030 | } | ||
9031 | |||
9032 | { | ||
9033 | name = "postcss_normalize_url___postcss_normalize_url_4.0.1.tgz"; | ||
9034 | path = fetchurl { | ||
9035 | name = "postcss_normalize_url___postcss_normalize_url_4.0.1.tgz"; | ||
9036 | url = "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz"; | ||
9037 | sha1 = "10e437f86bc7c7e58f7b9652ed878daaa95faae1"; | ||
9038 | }; | ||
9039 | } | ||
9040 | |||
9041 | { | ||
9042 | name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.2.tgz"; | ||
9043 | path = fetchurl { | ||
9044 | name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.2.tgz"; | ||
9045 | url = "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz"; | ||
9046 | sha1 = "bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82"; | ||
9047 | }; | ||
9048 | } | ||
9049 | |||
9050 | { | ||
9051 | name = "postcss_object_fit_images___postcss_object_fit_images_1.1.2.tgz"; | ||
9052 | path = fetchurl { | ||
9053 | name = "postcss_object_fit_images___postcss_object_fit_images_1.1.2.tgz"; | ||
9054 | url = "https://registry.yarnpkg.com/postcss-object-fit-images/-/postcss-object-fit-images-1.1.2.tgz"; | ||
9055 | sha1 = "8b773043db14672ef6cd6f2cb1f0d8b26a9f573b"; | ||
9056 | }; | ||
9057 | } | ||
9058 | |||
9059 | { | ||
9060 | name = "postcss_ordered_values___postcss_ordered_values_4.1.2.tgz"; | ||
9061 | path = fetchurl { | ||
9062 | name = "postcss_ordered_values___postcss_ordered_values_4.1.2.tgz"; | ||
9063 | url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz"; | ||
9064 | sha1 = "0cf75c820ec7d5c4d280189559e0b571ebac0eee"; | ||
9065 | }; | ||
9066 | } | ||
9067 | |||
9068 | { | ||
9069 | name = "postcss_reduce_initial___postcss_reduce_initial_4.0.3.tgz"; | ||
9070 | path = fetchurl { | ||
9071 | name = "postcss_reduce_initial___postcss_reduce_initial_4.0.3.tgz"; | ||
9072 | url = "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz"; | ||
9073 | sha1 = "7fd42ebea5e9c814609639e2c2e84ae270ba48df"; | ||
9074 | }; | ||
9075 | } | ||
9076 | |||
9077 | { | ||
9078 | name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.2.tgz"; | ||
9079 | path = fetchurl { | ||
9080 | name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.2.tgz"; | ||
9081 | url = "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz"; | ||
9082 | sha1 = "17efa405eacc6e07be3414a5ca2d1074681d4e29"; | ||
9083 | }; | ||
9084 | } | ||
9085 | |||
9086 | { | ||
9087 | name = "postcss_selector_parser___postcss_selector_parser_3.1.1.tgz"; | ||
9088 | path = fetchurl { | ||
9089 | name = "postcss_selector_parser___postcss_selector_parser_3.1.1.tgz"; | ||
9090 | url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz"; | ||
9091 | sha1 = "4f875f4afb0c96573d5cf4d74011aee250a7e865"; | ||
9092 | }; | ||
9093 | } | ||
9094 | |||
9095 | { | ||
9096 | name = "postcss_selector_parser___postcss_selector_parser_5.0.0.tgz"; | ||
9097 | path = fetchurl { | ||
9098 | name = "postcss_selector_parser___postcss_selector_parser_5.0.0.tgz"; | ||
9099 | url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz"; | ||
9100 | sha1 = "249044356697b33b64f1a8f7c80922dddee7195c"; | ||
9101 | }; | ||
9102 | } | ||
9103 | |||
9104 | { | ||
9105 | name = "postcss_selector_parser___postcss_selector_parser_6.0.2.tgz"; | ||
9106 | path = fetchurl { | ||
9107 | name = "postcss_selector_parser___postcss_selector_parser_6.0.2.tgz"; | ||
9108 | url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz"; | ||
9109 | sha1 = "934cf799d016c83411859e09dcecade01286ec5c"; | ||
9110 | }; | ||
9111 | } | ||
9112 | |||
9113 | { | ||
9114 | name = "postcss_svgo___postcss_svgo_4.0.2.tgz"; | ||
9115 | path = fetchurl { | ||
9116 | name = "postcss_svgo___postcss_svgo_4.0.2.tgz"; | ||
9117 | url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz"; | ||
9118 | sha1 = "17b997bc711b333bab143aaed3b8d3d6e3d38258"; | ||
9119 | }; | ||
9120 | } | ||
9121 | |||
9122 | { | ||
9123 | name = "postcss_unique_selectors___postcss_unique_selectors_4.0.1.tgz"; | ||
9124 | path = fetchurl { | ||
9125 | name = "postcss_unique_selectors___postcss_unique_selectors_4.0.1.tgz"; | ||
9126 | url = "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz"; | ||
9127 | sha1 = "9446911f3289bfd64c6d680f073c03b1f9ee4bac"; | ||
9128 | }; | ||
9129 | } | ||
9130 | |||
9131 | { | ||
9132 | name = "postcss_value_parser___postcss_value_parser_3.3.1.tgz"; | ||
9133 | path = fetchurl { | ||
9134 | name = "postcss_value_parser___postcss_value_parser_3.3.1.tgz"; | ||
9135 | url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz"; | ||
9136 | sha1 = "9ff822547e2893213cf1c30efa51ac5fd1ba8281"; | ||
9137 | }; | ||
9138 | } | ||
9139 | |||
9140 | { | ||
9141 | name = "postcss___postcss_5.2.18.tgz"; | ||
9142 | path = fetchurl { | ||
9143 | name = "postcss___postcss_5.2.18.tgz"; | ||
9144 | url = "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz"; | ||
9145 | sha1 = "badfa1497d46244f6390f58b319830d9107853c5"; | ||
9146 | }; | ||
9147 | } | ||
9148 | |||
9149 | { | ||
9150 | name = "postcss___postcss_7.0.17.tgz"; | ||
9151 | path = fetchurl { | ||
9152 | name = "postcss___postcss_7.0.17.tgz"; | ||
9153 | url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz"; | ||
9154 | sha1 = "4da1bdff5322d4a0acaab4d87f3e782436bad31f"; | ||
9155 | }; | ||
9156 | } | ||
9157 | |||
9158 | { | ||
9159 | name = "postgres_array___postgres_array_1.0.3.tgz"; | ||
9160 | path = fetchurl { | ||
9161 | name = "postgres_array___postgres_array_1.0.3.tgz"; | ||
9162 | url = "https://registry.yarnpkg.com/postgres-array/-/postgres-array-1.0.3.tgz"; | ||
9163 | sha1 = "c561fc3b266b21451fc6555384f4986d78ec80f5"; | ||
9164 | }; | ||
9165 | } | ||
9166 | |||
9167 | { | ||
9168 | name = "postgres_bytea___postgres_bytea_1.0.0.tgz"; | ||
9169 | path = fetchurl { | ||
9170 | name = "postgres_bytea___postgres_bytea_1.0.0.tgz"; | ||
9171 | url = "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz"; | ||
9172 | sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35"; | ||
9173 | }; | ||
9174 | } | ||
9175 | |||
9176 | { | ||
9177 | name = "postgres_date___postgres_date_1.0.3.tgz"; | ||
9178 | path = fetchurl { | ||
9179 | name = "postgres_date___postgres_date_1.0.3.tgz"; | ||
9180 | url = "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.3.tgz"; | ||
9181 | sha1 = "e2d89702efdb258ff9d9cee0fe91bd06975257a8"; | ||
9182 | }; | ||
9183 | } | ||
9184 | |||
9185 | { | ||
9186 | name = "postgres_interval___postgres_interval_1.1.2.tgz"; | ||
9187 | path = fetchurl { | ||
9188 | name = "postgres_interval___postgres_interval_1.1.2.tgz"; | ||
9189 | url = "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.1.2.tgz"; | ||
9190 | sha1 = "bf71ff902635f21cb241a013fc421d81d1db15a9"; | ||
9191 | }; | ||
9192 | } | ||
9193 | |||
9194 | { | ||
9195 | name = "precond___precond_0.2.3.tgz"; | ||
9196 | path = fetchurl { | ||
9197 | name = "precond___precond_0.2.3.tgz"; | ||
9198 | url = "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz"; | ||
9199 | sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; | ||
9200 | }; | ||
9201 | } | ||
9202 | |||
9203 | { | ||
9204 | name = "prelude_ls___prelude_ls_1.1.2.tgz"; | ||
9205 | path = fetchurl { | ||
9206 | name = "prelude_ls___prelude_ls_1.1.2.tgz"; | ||
9207 | url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; | ||
9208 | sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; | ||
9209 | }; | ||
9210 | } | ||
9211 | |||
9212 | { | ||
9213 | name = "prettier___prettier_1.18.2.tgz"; | ||
9214 | path = fetchurl { | ||
9215 | name = "prettier___prettier_1.18.2.tgz"; | ||
9216 | url = "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz"; | ||
9217 | sha1 = "6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"; | ||
9218 | }; | ||
9219 | } | ||
9220 | |||
9221 | { | ||
9222 | name = "pretty_format___pretty_format_24.8.0.tgz"; | ||
9223 | path = fetchurl { | ||
9224 | name = "pretty_format___pretty_format_24.8.0.tgz"; | ||
9225 | url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz"; | ||
9226 | sha1 = "8dae7044f58db7cb8be245383b565a963e3c27f2"; | ||
9227 | }; | ||
9228 | } | ||
9229 | |||
9230 | { | ||
9231 | name = "private___private_0.1.8.tgz"; | ||
9232 | path = fetchurl { | ||
9233 | name = "private___private_0.1.8.tgz"; | ||
9234 | url = "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz"; | ||
9235 | sha1 = "2381edb3689f7a53d653190060fcf822d2f368ff"; | ||
9236 | }; | ||
9237 | } | ||
9238 | |||
9239 | { | ||
9240 | name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; | ||
9241 | path = fetchurl { | ||
9242 | name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; | ||
9243 | url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz"; | ||
9244 | sha1 = "a37d732f4271b4ab1ad070d35508e8290788ffaa"; | ||
9245 | }; | ||
9246 | } | ||
9247 | |||
9248 | { | ||
9249 | name = "process___process_0.11.10.tgz"; | ||
9250 | path = fetchurl { | ||
9251 | name = "process___process_0.11.10.tgz"; | ||
9252 | url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz"; | ||
9253 | sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; | ||
9254 | }; | ||
9255 | } | ||
9256 | |||
9257 | { | ||
9258 | name = "progress___progress_1.1.8.tgz"; | ||
9259 | path = fetchurl { | ||
9260 | name = "progress___progress_1.1.8.tgz"; | ||
9261 | url = "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz"; | ||
9262 | sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; | ||
9263 | }; | ||
9264 | } | ||
9265 | |||
9266 | { | ||
9267 | name = "progress___progress_2.0.3.tgz"; | ||
9268 | path = fetchurl { | ||
9269 | name = "progress___progress_2.0.3.tgz"; | ||
9270 | url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz"; | ||
9271 | sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"; | ||
9272 | }; | ||
9273 | } | ||
9274 | |||
9275 | { | ||
9276 | name = "promise_inflight___promise_inflight_1.0.1.tgz"; | ||
9277 | path = fetchurl { | ||
9278 | name = "promise_inflight___promise_inflight_1.0.1.tgz"; | ||
9279 | url = "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz"; | ||
9280 | sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; | ||
9281 | }; | ||
9282 | } | ||
9283 | |||
9284 | { | ||
9285 | name = "promise___promise_7.3.1.tgz"; | ||
9286 | path = fetchurl { | ||
9287 | name = "promise___promise_7.3.1.tgz"; | ||
9288 | url = "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz"; | ||
9289 | sha1 = "064b72602b18f90f29192b8b1bc418ffd1ebd3bf"; | ||
9290 | }; | ||
9291 | } | ||
9292 | |||
9293 | { | ||
9294 | name = "prompts___prompts_2.0.3.tgz"; | ||
9295 | path = fetchurl { | ||
9296 | name = "prompts___prompts_2.0.3.tgz"; | ||
9297 | url = "https://registry.yarnpkg.com/prompts/-/prompts-2.0.3.tgz"; | ||
9298 | sha1 = "c5ccb324010b2e8f74752aadceeb57134c1d2522"; | ||
9299 | }; | ||
9300 | } | ||
9301 | |||
9302 | { | ||
9303 | name = "prop_types_exact___prop_types_exact_1.2.0.tgz"; | ||
9304 | path = fetchurl { | ||
9305 | name = "prop_types_exact___prop_types_exact_1.2.0.tgz"; | ||
9306 | url = "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz"; | ||
9307 | sha1 = "825d6be46094663848237e3925a98c6e944e9869"; | ||
9308 | }; | ||
9309 | } | ||
9310 | |||
9311 | { | ||
9312 | name = "prop_types_extra___prop_types_extra_1.1.0.tgz"; | ||
9313 | path = fetchurl { | ||
9314 | name = "prop_types_extra___prop_types_extra_1.1.0.tgz"; | ||
9315 | url = "https://registry.yarnpkg.com/prop-types-extra/-/prop-types-extra-1.1.0.tgz"; | ||
9316 | sha1 = "32609910ea2dcf190366bacd3490d5a6412a605f"; | ||
9317 | }; | ||
9318 | } | ||
9319 | |||
9320 | { | ||
9321 | name = "prop_types___prop_types_15.7.2.tgz"; | ||
9322 | path = fetchurl { | ||
9323 | name = "prop_types___prop_types_15.7.2.tgz"; | ||
9324 | url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz"; | ||
9325 | sha1 = "52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"; | ||
9326 | }; | ||
9327 | } | ||
9328 | |||
9329 | { | ||
9330 | name = "proxy_addr___proxy_addr_2.0.5.tgz"; | ||
9331 | path = fetchurl { | ||
9332 | name = "proxy_addr___proxy_addr_2.0.5.tgz"; | ||
9333 | url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz"; | ||
9334 | sha1 = "34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34"; | ||
9335 | }; | ||
9336 | } | ||
9337 | |||
9338 | { | ||
9339 | name = "prr___prr_1.0.1.tgz"; | ||
9340 | path = fetchurl { | ||
9341 | name = "prr___prr_1.0.1.tgz"; | ||
9342 | url = "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz"; | ||
9343 | sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476"; | ||
9344 | }; | ||
9345 | } | ||
9346 | |||
9347 | { | ||
9348 | name = "psl___psl_1.1.31.tgz"; | ||
9349 | path = fetchurl { | ||
9350 | name = "psl___psl_1.1.31.tgz"; | ||
9351 | url = "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz"; | ||
9352 | sha1 = "e9aa86d0101b5b105cbe93ac6b784cd547276184"; | ||
9353 | }; | ||
9354 | } | ||
9355 | |||
9356 | { | ||
9357 | name = "public_encrypt___public_encrypt_4.0.3.tgz"; | ||
9358 | path = fetchurl { | ||
9359 | name = "public_encrypt___public_encrypt_4.0.3.tgz"; | ||
9360 | url = "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz"; | ||
9361 | sha1 = "4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"; | ||
9362 | }; | ||
9363 | } | ||
9364 | |||
9365 | { | ||
9366 | name = "pump___pump_2.0.1.tgz"; | ||
9367 | path = fetchurl { | ||
9368 | name = "pump___pump_2.0.1.tgz"; | ||
9369 | url = "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz"; | ||
9370 | sha1 = "12399add6e4cf7526d973cbc8b5ce2e2908b3909"; | ||
9371 | }; | ||
9372 | } | ||
9373 | |||
9374 | { | ||
9375 | name = "pump___pump_3.0.0.tgz"; | ||
9376 | path = fetchurl { | ||
9377 | name = "pump___pump_3.0.0.tgz"; | ||
9378 | url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz"; | ||
9379 | sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64"; | ||
9380 | }; | ||
9381 | } | ||
9382 | |||
9383 | { | ||
9384 | name = "pumpify___pumpify_1.5.1.tgz"; | ||
9385 | path = fetchurl { | ||
9386 | name = "pumpify___pumpify_1.5.1.tgz"; | ||
9387 | url = "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz"; | ||
9388 | sha1 = "36513be246ab27570b1a374a5ce278bfd74370ce"; | ||
9389 | }; | ||
9390 | } | ||
9391 | |||
9392 | { | ||
9393 | name = "punycode___punycode_1.3.2.tgz"; | ||
9394 | path = fetchurl { | ||
9395 | name = "punycode___punycode_1.3.2.tgz"; | ||
9396 | url = "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz"; | ||
9397 | sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; | ||
9398 | }; | ||
9399 | } | ||
9400 | |||
9401 | { | ||
9402 | name = "punycode___punycode_1.4.1.tgz"; | ||
9403 | path = fetchurl { | ||
9404 | name = "punycode___punycode_1.4.1.tgz"; | ||
9405 | url = "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz"; | ||
9406 | sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; | ||
9407 | }; | ||
9408 | } | ||
9409 | |||
9410 | { | ||
9411 | name = "punycode___punycode_2.1.1.tgz"; | ||
9412 | path = fetchurl { | ||
9413 | name = "punycode___punycode_2.1.1.tgz"; | ||
9414 | url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; | ||
9415 | sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; | ||
9416 | }; | ||
9417 | } | ||
9418 | |||
9419 | { | ||
9420 | name = "q___q_1.5.1.tgz"; | ||
9421 | path = fetchurl { | ||
9422 | name = "q___q_1.5.1.tgz"; | ||
9423 | url = "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz"; | ||
9424 | sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7"; | ||
9425 | }; | ||
9426 | } | ||
9427 | |||
9428 | { | ||
9429 | name = "qs___qs_6.7.0.tgz"; | ||
9430 | path = fetchurl { | ||
9431 | name = "qs___qs_6.7.0.tgz"; | ||
9432 | url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz"; | ||
9433 | sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc"; | ||
9434 | }; | ||
9435 | } | ||
9436 | |||
9437 | { | ||
9438 | name = "qs___qs_6.5.2.tgz"; | ||
9439 | path = fetchurl { | ||
9440 | name = "qs___qs_6.5.2.tgz"; | ||
9441 | url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz"; | ||
9442 | sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36"; | ||
9443 | }; | ||
9444 | } | ||
9445 | |||
9446 | { | ||
9447 | name = "querystring_es3___querystring_es3_0.2.1.tgz"; | ||
9448 | path = fetchurl { | ||
9449 | name = "querystring_es3___querystring_es3_0.2.1.tgz"; | ||
9450 | url = "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz"; | ||
9451 | sha1 = "9ec61f79049875707d69414596fd907a4d711e73"; | ||
9452 | }; | ||
9453 | } | ||
9454 | |||
9455 | { | ||
9456 | name = "querystring___querystring_0.2.0.tgz"; | ||
9457 | path = fetchurl { | ||
9458 | name = "querystring___querystring_0.2.0.tgz"; | ||
9459 | url = "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz"; | ||
9460 | sha1 = "b209849203bb25df820da756e747005878521620"; | ||
9461 | }; | ||
9462 | } | ||
9463 | |||
9464 | { | ||
9465 | name = "querystringify___querystringify_2.1.0.tgz"; | ||
9466 | path = fetchurl { | ||
9467 | name = "querystringify___querystringify_2.1.0.tgz"; | ||
9468 | url = "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.0.tgz"; | ||
9469 | sha1 = "7ded8dfbf7879dcc60d0a644ac6754b283ad17ef"; | ||
9470 | }; | ||
9471 | } | ||
9472 | |||
9473 | { | ||
9474 | name = "quote___quote_0.4.0.tgz"; | ||
9475 | path = fetchurl { | ||
9476 | name = "quote___quote_0.4.0.tgz"; | ||
9477 | url = "https://registry.yarnpkg.com/quote/-/quote-0.4.0.tgz"; | ||
9478 | sha1 = "10839217f6c1362b89194044d29b233fd7f32f01"; | ||
9479 | }; | ||
9480 | } | ||
9481 | |||
9482 | { | ||
9483 | name = "raf___raf_3.4.1.tgz"; | ||
9484 | path = fetchurl { | ||
9485 | name = "raf___raf_3.4.1.tgz"; | ||
9486 | url = "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz"; | ||
9487 | sha1 = "0742e99a4a6552f445d73e3ee0328af0ff1ede39"; | ||
9488 | }; | ||
9489 | } | ||
9490 | |||
9491 | { | ||
9492 | name = "railroad_diagrams___railroad_diagrams_1.0.0.tgz"; | ||
9493 | path = fetchurl { | ||
9494 | name = "railroad_diagrams___railroad_diagrams_1.0.0.tgz"; | ||
9495 | url = "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz"; | ||
9496 | sha1 = "eb7e6267548ddedfb899c1b90e57374559cddb7e"; | ||
9497 | }; | ||
9498 | } | ||
9499 | |||
9500 | { | ||
9501 | name = "rails_ujs___rails_ujs_5.2.3.tgz"; | ||
9502 | path = fetchurl { | ||
9503 | name = "rails_ujs___rails_ujs_5.2.3.tgz"; | ||
9504 | url = "https://registry.yarnpkg.com/rails-ujs/-/rails-ujs-5.2.3.tgz"; | ||
9505 | sha1 = "4b65ea781a6befe62e96da6362165286a1fe4099"; | ||
9506 | }; | ||
9507 | } | ||
9508 | |||
9509 | { | ||
9510 | name = "randexp___randexp_0.4.6.tgz"; | ||
9511 | path = fetchurl { | ||
9512 | name = "randexp___randexp_0.4.6.tgz"; | ||
9513 | url = "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz"; | ||
9514 | sha1 = "e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3"; | ||
9515 | }; | ||
9516 | } | ||
9517 | |||
9518 | { | ||
9519 | name = "randombytes___randombytes_2.0.6.tgz"; | ||
9520 | path = fetchurl { | ||
9521 | name = "randombytes___randombytes_2.0.6.tgz"; | ||
9522 | url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz"; | ||
9523 | sha1 = "d302c522948588848a8d300c932b44c24231da80"; | ||
9524 | }; | ||
9525 | } | ||
9526 | |||
9527 | { | ||
9528 | name = "randomfill___randomfill_1.0.4.tgz"; | ||
9529 | path = fetchurl { | ||
9530 | name = "randomfill___randomfill_1.0.4.tgz"; | ||
9531 | url = "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz"; | ||
9532 | sha1 = "c92196fc86ab42be983f1bf31778224931d61458"; | ||
9533 | }; | ||
9534 | } | ||
9535 | |||
9536 | { | ||
9537 | name = "range_parser___range_parser_1.2.1.tgz"; | ||
9538 | path = fetchurl { | ||
9539 | name = "range_parser___range_parser_1.2.1.tgz"; | ||
9540 | url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz"; | ||
9541 | sha1 = "3cf37023d199e1c24d1a55b84800c2f3e6468031"; | ||
9542 | }; | ||
9543 | } | ||
9544 | |||
9545 | { | ||
9546 | name = "raw_body___raw_body_2.4.0.tgz"; | ||
9547 | path = fetchurl { | ||
9548 | name = "raw_body___raw_body_2.4.0.tgz"; | ||
9549 | url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz"; | ||
9550 | sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332"; | ||
9551 | }; | ||
9552 | } | ||
9553 | |||
9554 | { | ||
9555 | name = "rc___rc_1.2.8.tgz"; | ||
9556 | path = fetchurl { | ||
9557 | name = "rc___rc_1.2.8.tgz"; | ||
9558 | url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz"; | ||
9559 | sha1 = "cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"; | ||
9560 | }; | ||
9561 | } | ||
9562 | |||
9563 | { | ||
9564 | name = "react_dom___react_dom_16.8.6.tgz"; | ||
9565 | path = fetchurl { | ||
9566 | name = "react_dom___react_dom_16.8.6.tgz"; | ||
9567 | url = "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz"; | ||
9568 | sha1 = "71d6303f631e8b0097f56165ef608f051ff6e10f"; | ||
9569 | }; | ||
9570 | } | ||
9571 | |||
9572 | { | ||
9573 | name = "react_event_listener___react_event_listener_0.6.5.tgz"; | ||
9574 | path = fetchurl { | ||
9575 | name = "react_event_listener___react_event_listener_0.6.5.tgz"; | ||
9576 | url = "https://registry.yarnpkg.com/react-event-listener/-/react-event-listener-0.6.5.tgz"; | ||
9577 | sha1 = "d374dbe5da485c9f9d4702f0e76971afbe9b6b2e"; | ||
9578 | }; | ||
9579 | } | ||
9580 | |||
9581 | { | ||
9582 | name = "react_hotkeys___react_hotkeys_1.1.4.tgz"; | ||
9583 | path = fetchurl { | ||
9584 | name = "react_hotkeys___react_hotkeys_1.1.4.tgz"; | ||
9585 | url = "https://registry.yarnpkg.com/react-hotkeys/-/react-hotkeys-1.1.4.tgz"; | ||
9586 | sha1 = "a0712aa2e0c03a759fd7885808598497a4dace72"; | ||
9587 | }; | ||
9588 | } | ||
9589 | |||
9590 | { | ||
9591 | name = "react_immutable_proptypes___react_immutable_proptypes_2.1.0.tgz"; | ||
9592 | path = fetchurl { | ||
9593 | name = "react_immutable_proptypes___react_immutable_proptypes_2.1.0.tgz"; | ||
9594 | url = "https://registry.yarnpkg.com/react-immutable-proptypes/-/react-immutable-proptypes-2.1.0.tgz"; | ||
9595 | sha1 = "023d6f39bb15c97c071e9e60d00d136eac5fa0b4"; | ||
9596 | }; | ||
9597 | } | ||
9598 | |||
9599 | { | ||
9600 | name = "react_immutable_pure_component___react_immutable_pure_component_1.2.3.tgz"; | ||
9601 | path = fetchurl { | ||
9602 | name = "react_immutable_pure_component___react_immutable_pure_component_1.2.3.tgz"; | ||
9603 | url = "https://registry.yarnpkg.com/react-immutable-pure-component/-/react-immutable-pure-component-1.2.3.tgz"; | ||
9604 | sha1 = "fa33638df68cfe9f73ccbee1d5861c17f3053f86"; | ||
9605 | }; | ||
9606 | } | ||
9607 | |||
9608 | { | ||
9609 | name = "react_infinite_scroller___react_infinite_scroller_1.2.4.tgz"; | ||
9610 | path = fetchurl { | ||
9611 | name = "react_infinite_scroller___react_infinite_scroller_1.2.4.tgz"; | ||
9612 | url = "https://registry.yarnpkg.com/react-infinite-scroller/-/react-infinite-scroller-1.2.4.tgz"; | ||
9613 | sha1 = "f67eaec4940a4ce6417bebdd6e3433bfc38826e9"; | ||
9614 | }; | ||
9615 | } | ||
9616 | |||
9617 | { | ||
9618 | name = "react_input_autosize___react_input_autosize_2.2.1.tgz"; | ||
9619 | path = fetchurl { | ||
9620 | name = "react_input_autosize___react_input_autosize_2.2.1.tgz"; | ||
9621 | url = "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-2.2.1.tgz"; | ||
9622 | sha1 = "ec428fa15b1592994fb5f9aa15bb1eb6baf420f8"; | ||
9623 | }; | ||
9624 | } | ||
9625 | |||
9626 | { | ||
9627 | name = "react_intl_translations_manager___react_intl_translations_manager_5.0.3.tgz"; | ||
9628 | path = fetchurl { | ||
9629 | name = "react_intl_translations_manager___react_intl_translations_manager_5.0.3.tgz"; | ||
9630 | url = "https://registry.yarnpkg.com/react-intl-translations-manager/-/react-intl-translations-manager-5.0.3.tgz"; | ||
9631 | sha1 = "aee010ecf35975673e033ca5d7d3f4147894324d"; | ||
9632 | }; | ||
9633 | } | ||
9634 | |||
9635 | { | ||
9636 | name = "react_intl___react_intl_2.9.0.tgz"; | ||
9637 | path = fetchurl { | ||
9638 | name = "react_intl___react_intl_2.9.0.tgz"; | ||
9639 | url = "https://registry.yarnpkg.com/react-intl/-/react-intl-2.9.0.tgz"; | ||
9640 | sha1 = "c97c5d17d4718f1575fdbd5a769f96018a3b1843"; | ||
9641 | }; | ||
9642 | } | ||
9643 | |||
9644 | { | ||
9645 | name = "react_is___react_is_16.8.6.tgz"; | ||
9646 | path = fetchurl { | ||
9647 | name = "react_is___react_is_16.8.6.tgz"; | ||
9648 | url = "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz"; | ||
9649 | sha1 = "5bbc1e2d29141c9fbdfed456343fe2bc430a6a16"; | ||
9650 | }; | ||
9651 | } | ||
9652 | |||
9653 | { | ||
9654 | name = "react_lifecycles_compat___react_lifecycles_compat_3.0.4.tgz"; | ||
9655 | path = fetchurl { | ||
9656 | name = "react_lifecycles_compat___react_lifecycles_compat_3.0.4.tgz"; | ||
9657 | url = "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz"; | ||
9658 | sha1 = "4f1a273afdfc8f3488a8c516bfda78f872352362"; | ||
9659 | }; | ||
9660 | } | ||
9661 | |||
9662 | { | ||
9663 | name = "react_masonry_infinite___react_masonry_infinite_1.2.2.tgz"; | ||
9664 | path = fetchurl { | ||
9665 | name = "react_masonry_infinite___react_masonry_infinite_1.2.2.tgz"; | ||
9666 | url = "https://registry.yarnpkg.com/react-masonry-infinite/-/react-masonry-infinite-1.2.2.tgz"; | ||
9667 | sha1 = "20c1386f9ccdda9747527c8f42bc2c02dd2e7951"; | ||
9668 | }; | ||
9669 | } | ||
9670 | |||
9671 | { | ||
9672 | name = "react_motion___react_motion_0.5.2.tgz"; | ||
9673 | path = fetchurl { | ||
9674 | name = "react_motion___react_motion_0.5.2.tgz"; | ||
9675 | url = "https://registry.yarnpkg.com/react-motion/-/react-motion-0.5.2.tgz"; | ||
9676 | sha1 = "0dd3a69e411316567927917c6626551ba0607316"; | ||
9677 | }; | ||
9678 | } | ||
9679 | |||
9680 | { | ||
9681 | name = "react_notification___react_notification_6.8.4.tgz"; | ||
9682 | path = fetchurl { | ||
9683 | name = "react_notification___react_notification_6.8.4.tgz"; | ||
9684 | url = "https://registry.yarnpkg.com/react-notification/-/react-notification-6.8.4.tgz"; | ||
9685 | sha1 = "c189d23f47b0e1b240932f4cfab2f4082cd420bf"; | ||
9686 | }; | ||
9687 | } | ||
9688 | |||
9689 | { | ||
9690 | name = "react_overlays___react_overlays_0.8.3.tgz"; | ||
9691 | path = fetchurl { | ||
9692 | name = "react_overlays___react_overlays_0.8.3.tgz"; | ||
9693 | url = "https://registry.yarnpkg.com/react-overlays/-/react-overlays-0.8.3.tgz"; | ||
9694 | sha1 = "fad65eea5b24301cca192a169f5dddb0b20d3ac5"; | ||
9695 | }; | ||
9696 | } | ||
9697 | |||
9698 | { | ||
9699 | name = "react_redux_loading_bar___react_redux_loading_bar_4.0.8.tgz"; | ||
9700 | path = fetchurl { | ||
9701 | name = "react_redux_loading_bar___react_redux_loading_bar_4.0.8.tgz"; | ||
9702 | url = "https://registry.yarnpkg.com/react-redux-loading-bar/-/react-redux-loading-bar-4.0.8.tgz"; | ||
9703 | sha1 = "e84d59d1517b79f53b0f39c8ddb40682af648c1b"; | ||
9704 | }; | ||
9705 | } | ||
9706 | |||
9707 | { | ||
9708 | name = "react_redux___react_redux_6.0.1.tgz"; | ||
9709 | path = fetchurl { | ||
9710 | name = "react_redux___react_redux_6.0.1.tgz"; | ||
9711 | url = "https://registry.yarnpkg.com/react-redux/-/react-redux-6.0.1.tgz"; | ||
9712 | sha1 = "0d423e2c1cb10ada87293d47e7de7c329623ba4d"; | ||
9713 | }; | ||
9714 | } | ||
9715 | |||
9716 | { | ||
9717 | name = "react_router_dom___react_router_dom_4.3.1.tgz"; | ||
9718 | path = fetchurl { | ||
9719 | name = "react_router_dom___react_router_dom_4.3.1.tgz"; | ||
9720 | url = "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-4.3.1.tgz"; | ||
9721 | sha1 = "4c2619fc24c4fa87c9fd18f4fb4a43fe63fbd5c6"; | ||
9722 | }; | ||
9723 | } | ||
9724 | |||
9725 | { | ||
9726 | name = "react_router_scroll_4___react_router_scroll_4_1.0.0_beta.2.tgz"; | ||
9727 | path = fetchurl { | ||
9728 | name = "react_router_scroll_4___react_router_scroll_4_1.0.0_beta.2.tgz"; | ||
9729 | url = "https://registry.yarnpkg.com/react-router-scroll-4/-/react-router-scroll-4-1.0.0-beta.2.tgz"; | ||
9730 | sha1 = "d887063ec0f66124aaf450158dd158ff7d3dc279"; | ||
9731 | }; | ||
9732 | } | ||
9733 | |||
9734 | { | ||
9735 | name = "react_router___react_router_4.3.1.tgz"; | ||
9736 | path = fetchurl { | ||
9737 | name = "react_router___react_router_4.3.1.tgz"; | ||
9738 | url = "https://registry.yarnpkg.com/react-router/-/react-router-4.3.1.tgz"; | ||
9739 | sha1 = "aada4aef14c809cb2e686b05cee4742234506c4e"; | ||
9740 | }; | ||
9741 | } | ||
9742 | |||
9743 | { | ||
9744 | name = "react_select___react_select_2.4.4.tgz"; | ||
9745 | path = fetchurl { | ||
9746 | name = "react_select___react_select_2.4.4.tgz"; | ||
9747 | url = "https://registry.yarnpkg.com/react-select/-/react-select-2.4.4.tgz"; | ||
9748 | sha1 = "ba72468ef1060c7d46fbb862b0748f96491f1f73"; | ||
9749 | }; | ||
9750 | } | ||
9751 | |||
9752 | { | ||
9753 | name = "react_sparklines___react_sparklines_1.7.0.tgz"; | ||
9754 | path = fetchurl { | ||
9755 | name = "react_sparklines___react_sparklines_1.7.0.tgz"; | ||
9756 | url = "https://registry.yarnpkg.com/react-sparklines/-/react-sparklines-1.7.0.tgz"; | ||
9757 | sha1 = "9b1d97e8c8610095eeb2ad658d2e1fcf91f91a60"; | ||
9758 | }; | ||
9759 | } | ||
9760 | |||
9761 | { | ||
9762 | name = "react_swipeable_views_core___react_swipeable_views_core_0.13.1.tgz"; | ||
9763 | path = fetchurl { | ||
9764 | name = "react_swipeable_views_core___react_swipeable_views_core_0.13.1.tgz"; | ||
9765 | url = "https://registry.yarnpkg.com/react-swipeable-views-core/-/react-swipeable-views-core-0.13.1.tgz"; | ||
9766 | sha1 = "8829a922462a8bdd701709cd1b385393d38f1527"; | ||
9767 | }; | ||
9768 | } | ||
9769 | |||
9770 | { | ||
9771 | name = "react_swipeable_views_utils___react_swipeable_views_utils_0.13.3.tgz"; | ||
9772 | path = fetchurl { | ||
9773 | name = "react_swipeable_views_utils___react_swipeable_views_utils_0.13.3.tgz"; | ||
9774 | url = "https://registry.yarnpkg.com/react-swipeable-views-utils/-/react-swipeable-views-utils-0.13.3.tgz"; | ||
9775 | sha1 = "c234d8d836bb085803631a9fef0adb2f9597221f"; | ||
9776 | }; | ||
9777 | } | ||
9778 | |||
9779 | { | ||
9780 | name = "react_swipeable_views___react_swipeable_views_0.13.3.tgz"; | ||
9781 | path = fetchurl { | ||
9782 | name = "react_swipeable_views___react_swipeable_views_0.13.3.tgz"; | ||
9783 | url = "https://registry.yarnpkg.com/react-swipeable-views/-/react-swipeable-views-0.13.3.tgz"; | ||
9784 | sha1 = "2ad886767c6b2de88000606a14bedde12156e6d0"; | ||
9785 | }; | ||
9786 | } | ||
9787 | |||
9788 | { | ||
9789 | name = "react_test_renderer___react_test_renderer_16.8.6.tgz"; | ||
9790 | path = fetchurl { | ||
9791 | name = "react_test_renderer___react_test_renderer_16.8.6.tgz"; | ||
9792 | url = "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.8.6.tgz"; | ||
9793 | sha1 = "188d8029b8c39c786f998aa3efd3ffe7642d5ba1"; | ||
9794 | }; | ||
9795 | } | ||
9796 | |||
9797 | { | ||
9798 | name = "react_textarea_autosize___react_textarea_autosize_7.1.0.tgz"; | ||
9799 | path = fetchurl { | ||
9800 | name = "react_textarea_autosize___react_textarea_autosize_7.1.0.tgz"; | ||
9801 | url = "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-7.1.0.tgz"; | ||
9802 | sha1 = "3132cb77e65d94417558d37c0bfe415a5afd3445"; | ||
9803 | }; | ||
9804 | } | ||
9805 | |||
9806 | { | ||
9807 | name = "react_toggle___react_toggle_4.0.2.tgz"; | ||
9808 | path = fetchurl { | ||
9809 | name = "react_toggle___react_toggle_4.0.2.tgz"; | ||
9810 | url = "https://registry.yarnpkg.com/react-toggle/-/react-toggle-4.0.2.tgz"; | ||
9811 | sha1 = "77f487860efb87fafd197672a2db8c885be1440f"; | ||
9812 | }; | ||
9813 | } | ||
9814 | |||
9815 | { | ||
9816 | name = "react_transition_group___react_transition_group_2.5.2.tgz"; | ||
9817 | path = fetchurl { | ||
9818 | name = "react_transition_group___react_transition_group_2.5.2.tgz"; | ||
9819 | url = "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.5.2.tgz"; | ||
9820 | sha1 = "9457166a9ba6ce697a3e1b076b3c049b9fb2c408"; | ||
9821 | }; | ||
9822 | } | ||
9823 | |||
9824 | { | ||
9825 | name = "react___react_16.8.6.tgz"; | ||
9826 | path = fetchurl { | ||
9827 | name = "react___react_16.8.6.tgz"; | ||
9828 | url = "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz"; | ||
9829 | sha1 = "ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe"; | ||
9830 | }; | ||
9831 | } | ||
9832 | |||
9833 | { | ||
9834 | name = "read_pkg_up___read_pkg_up_2.0.0.tgz"; | ||
9835 | path = fetchurl { | ||
9836 | name = "read_pkg_up___read_pkg_up_2.0.0.tgz"; | ||
9837 | url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; | ||
9838 | sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; | ||
9839 | }; | ||
9840 | } | ||
9841 | |||
9842 | { | ||
9843 | name = "read_pkg_up___read_pkg_up_4.0.0.tgz"; | ||
9844 | path = fetchurl { | ||
9845 | name = "read_pkg_up___read_pkg_up_4.0.0.tgz"; | ||
9846 | url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz"; | ||
9847 | sha1 = "1b221c6088ba7799601c808f91161c66e58f8978"; | ||
9848 | }; | ||
9849 | } | ||
9850 | |||
9851 | { | ||
9852 | name = "read_pkg___read_pkg_2.0.0.tgz"; | ||
9853 | path = fetchurl { | ||
9854 | name = "read_pkg___read_pkg_2.0.0.tgz"; | ||
9855 | url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz"; | ||
9856 | sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; | ||
9857 | }; | ||
9858 | } | ||
9859 | |||
9860 | { | ||
9861 | name = "read_pkg___read_pkg_3.0.0.tgz"; | ||
9862 | path = fetchurl { | ||
9863 | name = "read_pkg___read_pkg_3.0.0.tgz"; | ||
9864 | url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz"; | ||
9865 | sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389"; | ||
9866 | }; | ||
9867 | } | ||
9868 | |||
9869 | { | ||
9870 | name = "readable_stream___readable_stream_2.3.6.tgz"; | ||
9871 | path = fetchurl { | ||
9872 | name = "readable_stream___readable_stream_2.3.6.tgz"; | ||
9873 | url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz"; | ||
9874 | sha1 = "b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"; | ||
9875 | }; | ||
9876 | } | ||
9877 | |||
9878 | { | ||
9879 | name = "readable_stream___readable_stream_3.1.1.tgz"; | ||
9880 | path = fetchurl { | ||
9881 | name = "readable_stream___readable_stream_3.1.1.tgz"; | ||
9882 | url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.1.1.tgz"; | ||
9883 | sha1 = "ed6bbc6c5ba58b090039ff18ce670515795aeb06"; | ||
9884 | }; | ||
9885 | } | ||
9886 | |||
9887 | { | ||
9888 | name = "readdirp___readdirp_2.2.1.tgz"; | ||
9889 | path = fetchurl { | ||
9890 | name = "readdirp___readdirp_2.2.1.tgz"; | ||
9891 | url = "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz"; | ||
9892 | sha1 = "0e87622a3325aa33e892285caf8b4e846529a525"; | ||
9893 | }; | ||
9894 | } | ||
9895 | |||
9896 | { | ||
9897 | name = "readline2___readline2_1.0.1.tgz"; | ||
9898 | path = fetchurl { | ||
9899 | name = "readline2___readline2_1.0.1.tgz"; | ||
9900 | url = "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz"; | ||
9901 | sha1 = "41059608ffc154757b715d9989d199ffbf372e35"; | ||
9902 | }; | ||
9903 | } | ||
9904 | |||
9905 | { | ||
9906 | name = "realpath_native___realpath_native_1.1.0.tgz"; | ||
9907 | path = fetchurl { | ||
9908 | name = "realpath_native___realpath_native_1.1.0.tgz"; | ||
9909 | url = "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz"; | ||
9910 | sha1 = "2003294fea23fb0672f2476ebe22fcf498a2d65c"; | ||
9911 | }; | ||
9912 | } | ||
9913 | |||
9914 | { | ||
9915 | name = "redis_commands___redis_commands_1.4.0.tgz"; | ||
9916 | path = fetchurl { | ||
9917 | name = "redis_commands___redis_commands_1.4.0.tgz"; | ||
9918 | url = "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.4.0.tgz"; | ||
9919 | sha1 = "52f9cf99153efcce56a8f86af986bd04e988602f"; | ||
9920 | }; | ||
9921 | } | ||
9922 | |||
9923 | { | ||
9924 | name = "redis_parser___redis_parser_2.6.0.tgz"; | ||
9925 | path = fetchurl { | ||
9926 | name = "redis_parser___redis_parser_2.6.0.tgz"; | ||
9927 | url = "https://registry.yarnpkg.com/redis-parser/-/redis-parser-2.6.0.tgz"; | ||
9928 | sha1 = "52ed09dacac108f1a631c07e9b69941e7a19504b"; | ||
9929 | }; | ||
9930 | } | ||
9931 | |||
9932 | { | ||
9933 | name = "redis___redis_2.8.0.tgz"; | ||
9934 | path = fetchurl { | ||
9935 | name = "redis___redis_2.8.0.tgz"; | ||
9936 | url = "https://registry.yarnpkg.com/redis/-/redis-2.8.0.tgz"; | ||
9937 | sha1 = "202288e3f58c49f6079d97af7a10e1303ae14b02"; | ||
9938 | }; | ||
9939 | } | ||
9940 | |||
9941 | { | ||
9942 | name = "redux_immutable___redux_immutable_4.0.0.tgz"; | ||
9943 | path = fetchurl { | ||
9944 | name = "redux_immutable___redux_immutable_4.0.0.tgz"; | ||
9945 | url = "https://registry.yarnpkg.com/redux-immutable/-/redux-immutable-4.0.0.tgz"; | ||
9946 | sha1 = "3a1a32df66366462b63691f0e1dc35e472bbc9f3"; | ||
9947 | }; | ||
9948 | } | ||
9949 | |||
9950 | { | ||
9951 | name = "redux_thunk___redux_thunk_2.3.0.tgz"; | ||
9952 | path = fetchurl { | ||
9953 | name = "redux_thunk___redux_thunk_2.3.0.tgz"; | ||
9954 | url = "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.3.0.tgz"; | ||
9955 | sha1 = "51c2c19a185ed5187aaa9a2d08b666d0d6467622"; | ||
9956 | }; | ||
9957 | } | ||
9958 | |||
9959 | { | ||
9960 | name = "redux___redux_4.0.1.tgz"; | ||
9961 | path = fetchurl { | ||
9962 | name = "redux___redux_4.0.1.tgz"; | ||
9963 | url = "https://registry.yarnpkg.com/redux/-/redux-4.0.1.tgz"; | ||
9964 | sha1 = "436cae6cc40fbe4727689d7c8fae44808f1bfef5"; | ||
9965 | }; | ||
9966 | } | ||
9967 | |||
9968 | { | ||
9969 | name = "reflect.ownkeys___reflect.ownkeys_0.2.0.tgz"; | ||
9970 | path = fetchurl { | ||
9971 | name = "reflect.ownkeys___reflect.ownkeys_0.2.0.tgz"; | ||
9972 | url = "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz"; | ||
9973 | sha1 = "749aceec7f3fdf8b63f927a04809e90c5c0b3460"; | ||
9974 | }; | ||
9975 | } | ||
9976 | |||
9977 | { | ||
9978 | name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; | ||
9979 | path = fetchurl { | ||
9980 | name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; | ||
9981 | url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz"; | ||
9982 | sha1 = "ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"; | ||
9983 | }; | ||
9984 | } | ||
9985 | |||
9986 | { | ||
9987 | name = "regenerate___regenerate_1.4.0.tgz"; | ||
9988 | path = fetchurl { | ||
9989 | name = "regenerate___regenerate_1.4.0.tgz"; | ||
9990 | url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz"; | ||
9991 | sha1 = "4a856ec4b56e4077c557589cae85e7a4c8869a11"; | ||
9992 | }; | ||
9993 | } | ||
9994 | |||
9995 | { | ||
9996 | name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; | ||
9997 | path = fetchurl { | ||
9998 | name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; | ||
9999 | url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; | ||
10000 | sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"; | ||
10001 | }; | ||
10002 | } | ||
10003 | |||
10004 | { | ||
10005 | name = "regenerator_runtime___regenerator_runtime_0.12.1.tgz"; | ||
10006 | path = fetchurl { | ||
10007 | name = "regenerator_runtime___regenerator_runtime_0.12.1.tgz"; | ||
10008 | url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz"; | ||
10009 | sha1 = "fa1a71544764c036f8c49b13a08b2594c9f8a0de"; | ||
10010 | }; | ||
10011 | } | ||
10012 | |||
10013 | { | ||
10014 | name = "regenerator_runtime___regenerator_runtime_0.13.2.tgz"; | ||
10015 | path = fetchurl { | ||
10016 | name = "regenerator_runtime___regenerator_runtime_0.13.2.tgz"; | ||
10017 | url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz"; | ||
10018 | sha1 = "32e59c9a6fb9b1a4aff09b4930ca2d4477343447"; | ||
10019 | }; | ||
10020 | } | ||
10021 | |||
10022 | { | ||
10023 | name = "regenerator_transform___regenerator_transform_0.14.0.tgz"; | ||
10024 | path = fetchurl { | ||
10025 | name = "regenerator_transform___regenerator_transform_0.14.0.tgz"; | ||
10026 | url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz"; | ||
10027 | sha1 = "2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf"; | ||
10028 | }; | ||
10029 | } | ||
10030 | |||
10031 | { | ||
10032 | name = "regex_not___regex_not_1.0.2.tgz"; | ||
10033 | path = fetchurl { | ||
10034 | name = "regex_not___regex_not_1.0.2.tgz"; | ||
10035 | url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz"; | ||
10036 | sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c"; | ||
10037 | }; | ||
10038 | } | ||
10039 | |||
10040 | { | ||
10041 | name = "regexp_tree___regexp_tree_0.1.10.tgz"; | ||
10042 | path = fetchurl { | ||
10043 | name = "regexp_tree___regexp_tree_0.1.10.tgz"; | ||
10044 | url = "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.10.tgz"; | ||
10045 | sha1 = "d837816a039c7af8a8d64d7a7c3cf6a1d93450bc"; | ||
10046 | }; | ||
10047 | } | ||
10048 | |||
10049 | { | ||
10050 | name = "regexpp___regexpp_2.0.1.tgz"; | ||
10051 | path = fetchurl { | ||
10052 | name = "regexpp___regexpp_2.0.1.tgz"; | ||
10053 | url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; | ||
10054 | sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; | ||
10055 | }; | ||
10056 | } | ||
10057 | |||
10058 | { | ||
10059 | name = "regexpu_core___regexpu_core_4.5.4.tgz"; | ||
10060 | path = fetchurl { | ||
10061 | name = "regexpu_core___regexpu_core_4.5.4.tgz"; | ||
10062 | url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz"; | ||
10063 | sha1 = "080d9d02289aa87fe1667a4f5136bc98a6aebaae"; | ||
10064 | }; | ||
10065 | } | ||
10066 | |||
10067 | { | ||
10068 | name = "regjsgen___regjsgen_0.5.0.tgz"; | ||
10069 | path = fetchurl { | ||
10070 | name = "regjsgen___regjsgen_0.5.0.tgz"; | ||
10071 | url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz"; | ||
10072 | sha1 = "a7634dc08f89209c2049adda3525711fb97265dd"; | ||
10073 | }; | ||
10074 | } | ||
10075 | |||
10076 | { | ||
10077 | name = "regjsparser___regjsparser_0.6.0.tgz"; | ||
10078 | path = fetchurl { | ||
10079 | name = "regjsparser___regjsparser_0.6.0.tgz"; | ||
10080 | url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz"; | ||
10081 | sha1 = "f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c"; | ||
10082 | }; | ||
10083 | } | ||
10084 | |||
10085 | { | ||
10086 | name = "rellax___rellax_1.10.0.tgz"; | ||
10087 | path = fetchurl { | ||
10088 | name = "rellax___rellax_1.10.0.tgz"; | ||
10089 | url = "https://registry.yarnpkg.com/rellax/-/rellax-1.10.0.tgz"; | ||
10090 | sha1 = "0308b813b458f9175d37ffb4272e1f616eab1341"; | ||
10091 | }; | ||
10092 | } | ||
10093 | |||
10094 | { | ||
10095 | name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; | ||
10096 | path = fetchurl { | ||
10097 | name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; | ||
10098 | url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; | ||
10099 | sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; | ||
10100 | }; | ||
10101 | } | ||
10102 | |||
10103 | { | ||
10104 | name = "repeat_element___repeat_element_1.1.3.tgz"; | ||
10105 | path = fetchurl { | ||
10106 | name = "repeat_element___repeat_element_1.1.3.tgz"; | ||
10107 | url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; | ||
10108 | sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; | ||
10109 | }; | ||
10110 | } | ||
10111 | |||
10112 | { | ||
10113 | name = "repeat_string___repeat_string_1.6.1.tgz"; | ||
10114 | path = fetchurl { | ||
10115 | name = "repeat_string___repeat_string_1.6.1.tgz"; | ||
10116 | url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz"; | ||
10117 | sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; | ||
10118 | }; | ||
10119 | } | ||
10120 | |||
10121 | { | ||
10122 | name = "request_promise_core___request_promise_core_1.1.1.tgz"; | ||
10123 | path = fetchurl { | ||
10124 | name = "request_promise_core___request_promise_core_1.1.1.tgz"; | ||
10125 | url = "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz"; | ||
10126 | sha1 = "3eee00b2c5aa83239cfb04c5700da36f81cd08b6"; | ||
10127 | }; | ||
10128 | } | ||
10129 | |||
10130 | { | ||
10131 | name = "request_promise_native___request_promise_native_1.0.5.tgz"; | ||
10132 | path = fetchurl { | ||
10133 | name = "request_promise_native___request_promise_native_1.0.5.tgz"; | ||
10134 | url = "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz"; | ||
10135 | sha1 = "5281770f68e0c9719e5163fd3fab482215f4fda5"; | ||
10136 | }; | ||
10137 | } | ||
10138 | |||
10139 | { | ||
10140 | name = "request___request_2.88.0.tgz"; | ||
10141 | path = fetchurl { | ||
10142 | name = "request___request_2.88.0.tgz"; | ||
10143 | url = "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz"; | ||
10144 | sha1 = "9c2fca4f7d35b592efe57c7f0a55e81052124fef"; | ||
10145 | }; | ||
10146 | } | ||
10147 | |||
10148 | { | ||
10149 | name = "requestidlecallback___requestidlecallback_0.3.0.tgz"; | ||
10150 | path = fetchurl { | ||
10151 | name = "requestidlecallback___requestidlecallback_0.3.0.tgz"; | ||
10152 | url = "https://registry.yarnpkg.com/requestidlecallback/-/requestidlecallback-0.3.0.tgz"; | ||
10153 | sha1 = "6fb74e0733f90df3faa4838f9f6a2a5f9b742ac5"; | ||
10154 | }; | ||
10155 | } | ||
10156 | |||
10157 | { | ||
10158 | name = "require_directory___require_directory_2.1.1.tgz"; | ||
10159 | path = fetchurl { | ||
10160 | name = "require_directory___require_directory_2.1.1.tgz"; | ||
10161 | url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz"; | ||
10162 | sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; | ||
10163 | }; | ||
10164 | } | ||
10165 | |||
10166 | { | ||
10167 | name = "require_from_string___require_from_string_2.0.2.tgz"; | ||
10168 | path = fetchurl { | ||
10169 | name = "require_from_string___require_from_string_2.0.2.tgz"; | ||
10170 | url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz"; | ||
10171 | sha1 = "89a7fdd938261267318eafe14f9c32e598c36909"; | ||
10172 | }; | ||
10173 | } | ||
10174 | |||
10175 | { | ||
10176 | name = "require_main_filename___require_main_filename_1.0.1.tgz"; | ||
10177 | path = fetchurl { | ||
10178 | name = "require_main_filename___require_main_filename_1.0.1.tgz"; | ||
10179 | url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz"; | ||
10180 | sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; | ||
10181 | }; | ||
10182 | } | ||
10183 | |||
10184 | { | ||
10185 | name = "require_package_name___require_package_name_2.0.1.tgz"; | ||
10186 | path = fetchurl { | ||
10187 | name = "require_package_name___require_package_name_2.0.1.tgz"; | ||
10188 | url = "https://registry.yarnpkg.com/require-package-name/-/require-package-name-2.0.1.tgz"; | ||
10189 | sha1 = "c11e97276b65b8e2923f75dabf5fb2ef0c3841b9"; | ||
10190 | }; | ||
10191 | } | ||
10192 | |||
10193 | { | ||
10194 | name = "require_uncached___require_uncached_1.0.3.tgz"; | ||
10195 | path = fetchurl { | ||
10196 | name = "require_uncached___require_uncached_1.0.3.tgz"; | ||
10197 | url = "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz"; | ||
10198 | sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3"; | ||
10199 | }; | ||
10200 | } | ||
10201 | |||
10202 | { | ||
10203 | name = "requires_port___requires_port_1.0.0.tgz"; | ||
10204 | path = fetchurl { | ||
10205 | name = "requires_port___requires_port_1.0.0.tgz"; | ||
10206 | url = "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz"; | ||
10207 | sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; | ||
10208 | }; | ||
10209 | } | ||
10210 | |||
10211 | { | ||
10212 | name = "reselect___reselect_4.0.0.tgz"; | ||
10213 | path = fetchurl { | ||
10214 | name = "reselect___reselect_4.0.0.tgz"; | ||
10215 | url = "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz"; | ||
10216 | sha1 = "f2529830e5d3d0e021408b246a206ef4ea4437f7"; | ||
10217 | }; | ||
10218 | } | ||
10219 | |||
10220 | { | ||
10221 | name = "resolve_cwd___resolve_cwd_2.0.0.tgz"; | ||
10222 | path = fetchurl { | ||
10223 | name = "resolve_cwd___resolve_cwd_2.0.0.tgz"; | ||
10224 | url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz"; | ||
10225 | sha1 = "00a9f7387556e27038eae232caa372a6a59b665a"; | ||
10226 | }; | ||
10227 | } | ||
10228 | |||
10229 | { | ||
10230 | name = "resolve_dir___resolve_dir_1.0.1.tgz"; | ||
10231 | path = fetchurl { | ||
10232 | name = "resolve_dir___resolve_dir_1.0.1.tgz"; | ||
10233 | url = "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz"; | ||
10234 | sha1 = "79a40644c362be82f26effe739c9bb5382046f43"; | ||
10235 | }; | ||
10236 | } | ||
10237 | |||
10238 | { | ||
10239 | name = "resolve_from___resolve_from_1.0.1.tgz"; | ||
10240 | path = fetchurl { | ||
10241 | name = "resolve_from___resolve_from_1.0.1.tgz"; | ||
10242 | url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz"; | ||
10243 | sha1 = "26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"; | ||
10244 | }; | ||
10245 | } | ||
10246 | |||
10247 | { | ||
10248 | name = "resolve_from___resolve_from_3.0.0.tgz"; | ||
10249 | path = fetchurl { | ||
10250 | name = "resolve_from___resolve_from_3.0.0.tgz"; | ||
10251 | url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz"; | ||
10252 | sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; | ||
10253 | }; | ||
10254 | } | ||
10255 | |||
10256 | { | ||
10257 | name = "resolve_pathname___resolve_pathname_2.2.0.tgz"; | ||
10258 | path = fetchurl { | ||
10259 | name = "resolve_pathname___resolve_pathname_2.2.0.tgz"; | ||
10260 | url = "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.2.0.tgz"; | ||
10261 | sha1 = "7e9ae21ed815fd63ab189adeee64dc831eefa879"; | ||
10262 | }; | ||
10263 | } | ||
10264 | |||
10265 | { | ||
10266 | name = "resolve_url___resolve_url_0.2.1.tgz"; | ||
10267 | path = fetchurl { | ||
10268 | name = "resolve_url___resolve_url_0.2.1.tgz"; | ||
10269 | url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz"; | ||
10270 | sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; | ||
10271 | }; | ||
10272 | } | ||
10273 | |||
10274 | { | ||
10275 | name = "resolve___resolve_1.1.7.tgz"; | ||
10276 | path = fetchurl { | ||
10277 | name = "resolve___resolve_1.1.7.tgz"; | ||
10278 | url = "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz"; | ||
10279 | sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b"; | ||
10280 | }; | ||
10281 | } | ||
10282 | |||
10283 | { | ||
10284 | name = "resolve___resolve_1.11.0.tgz"; | ||
10285 | path = fetchurl { | ||
10286 | name = "resolve___resolve_1.11.0.tgz"; | ||
10287 | url = "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz"; | ||
10288 | sha1 = "4014870ba296176b86343d50b60f3b50609ce232"; | ||
10289 | }; | ||
10290 | } | ||
10291 | |||
10292 | { | ||
10293 | name = "restore_cursor___restore_cursor_1.0.1.tgz"; | ||
10294 | path = fetchurl { | ||
10295 | name = "restore_cursor___restore_cursor_1.0.1.tgz"; | ||
10296 | url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz"; | ||
10297 | sha1 = "34661f46886327fed2991479152252df92daa541"; | ||
10298 | }; | ||
10299 | } | ||
10300 | |||
10301 | { | ||
10302 | name = "restore_cursor___restore_cursor_2.0.0.tgz"; | ||
10303 | path = fetchurl { | ||
10304 | name = "restore_cursor___restore_cursor_2.0.0.tgz"; | ||
10305 | url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; | ||
10306 | sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; | ||
10307 | }; | ||
10308 | } | ||
10309 | |||
10310 | { | ||
10311 | name = "ret___ret_0.1.15.tgz"; | ||
10312 | path = fetchurl { | ||
10313 | name = "ret___ret_0.1.15.tgz"; | ||
10314 | url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz"; | ||
10315 | sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"; | ||
10316 | }; | ||
10317 | } | ||
10318 | |||
10319 | { | ||
10320 | name = "rgb_regex___rgb_regex_1.0.1.tgz"; | ||
10321 | path = fetchurl { | ||
10322 | name = "rgb_regex___rgb_regex_1.0.1.tgz"; | ||
10323 | url = "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz"; | ||
10324 | sha1 = "c0e0d6882df0e23be254a475e8edd41915feaeb1"; | ||
10325 | }; | ||
10326 | } | ||
10327 | |||
10328 | { | ||
10329 | name = "rgba_regex___rgba_regex_1.0.0.tgz"; | ||
10330 | path = fetchurl { | ||
10331 | name = "rgba_regex___rgba_regex_1.0.0.tgz"; | ||
10332 | url = "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz"; | ||
10333 | sha1 = "43374e2e2ca0968b0ef1523460b7d730ff22eeb3"; | ||
10334 | }; | ||
10335 | } | ||
10336 | |||
10337 | { | ||
10338 | name = "rimraf___rimraf_2.6.3.tgz"; | ||
10339 | path = fetchurl { | ||
10340 | name = "rimraf___rimraf_2.6.3.tgz"; | ||
10341 | url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; | ||
10342 | sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; | ||
10343 | }; | ||
10344 | } | ||
10345 | |||
10346 | { | ||
10347 | name = "ripemd160___ripemd160_2.0.2.tgz"; | ||
10348 | path = fetchurl { | ||
10349 | name = "ripemd160___ripemd160_2.0.2.tgz"; | ||
10350 | url = "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz"; | ||
10351 | sha1 = "a1c1a6f624751577ba5d07914cbc92850585890c"; | ||
10352 | }; | ||
10353 | } | ||
10354 | |||
10355 | { | ||
10356 | name = "rst_selector_parser___rst_selector_parser_2.2.3.tgz"; | ||
10357 | path = fetchurl { | ||
10358 | name = "rst_selector_parser___rst_selector_parser_2.2.3.tgz"; | ||
10359 | url = "https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz"; | ||
10360 | sha1 = "81b230ea2fcc6066c89e3472de794285d9b03d91"; | ||
10361 | }; | ||
10362 | } | ||
10363 | |||
10364 | { | ||
10365 | name = "rsvp___rsvp_3.6.2.tgz"; | ||
10366 | path = fetchurl { | ||
10367 | name = "rsvp___rsvp_3.6.2.tgz"; | ||
10368 | url = "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz"; | ||
10369 | sha1 = "2e96491599a96cde1b515d5674a8f7a91452926a"; | ||
10370 | }; | ||
10371 | } | ||
10372 | |||
10373 | { | ||
10374 | name = "run_async___run_async_0.1.0.tgz"; | ||
10375 | path = fetchurl { | ||
10376 | name = "run_async___run_async_0.1.0.tgz"; | ||
10377 | url = "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz"; | ||
10378 | sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389"; | ||
10379 | }; | ||
10380 | } | ||
10381 | |||
10382 | { | ||
10383 | name = "run_async___run_async_2.3.0.tgz"; | ||
10384 | path = fetchurl { | ||
10385 | name = "run_async___run_async_2.3.0.tgz"; | ||
10386 | url = "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz"; | ||
10387 | sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"; | ||
10388 | }; | ||
10389 | } | ||
10390 | |||
10391 | { | ||
10392 | name = "run_queue___run_queue_1.0.3.tgz"; | ||
10393 | path = fetchurl { | ||
10394 | name = "run_queue___run_queue_1.0.3.tgz"; | ||
10395 | url = "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz"; | ||
10396 | sha1 = "e848396f057d223f24386924618e25694161ec47"; | ||
10397 | }; | ||
10398 | } | ||
10399 | |||
10400 | { | ||
10401 | name = "rx_lite___rx_lite_3.1.2.tgz"; | ||
10402 | path = fetchurl { | ||
10403 | name = "rx_lite___rx_lite_3.1.2.tgz"; | ||
10404 | url = "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz"; | ||
10405 | sha1 = "19ce502ca572665f3b647b10939f97fd1615f102"; | ||
10406 | }; | ||
10407 | } | ||
10408 | |||
10409 | { | ||
10410 | name = "rxjs___rxjs_6.3.3.tgz"; | ||
10411 | path = fetchurl { | ||
10412 | name = "rxjs___rxjs_6.3.3.tgz"; | ||
10413 | url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz"; | ||
10414 | sha1 = "3c6a7fa420e844a81390fb1158a9ec614f4bad55"; | ||
10415 | }; | ||
10416 | } | ||
10417 | |||
10418 | { | ||
10419 | name = "safe_buffer___safe_buffer_5.1.2.tgz"; | ||
10420 | path = fetchurl { | ||
10421 | name = "safe_buffer___safe_buffer_5.1.2.tgz"; | ||
10422 | url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; | ||
10423 | sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; | ||
10424 | }; | ||
10425 | } | ||
10426 | |||
10427 | { | ||
10428 | name = "safe_regex___safe_regex_1.1.0.tgz"; | ||
10429 | path = fetchurl { | ||
10430 | name = "safe_regex___safe_regex_1.1.0.tgz"; | ||
10431 | url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz"; | ||
10432 | sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; | ||
10433 | }; | ||
10434 | } | ||
10435 | |||
10436 | { | ||
10437 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; | ||
10438 | path = fetchurl { | ||
10439 | name = "safer_buffer___safer_buffer_2.1.2.tgz"; | ||
10440 | url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; | ||
10441 | sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; | ||
10442 | }; | ||
10443 | } | ||
10444 | |||
10445 | { | ||
10446 | name = "sane___sane_4.0.3.tgz"; | ||
10447 | path = fetchurl { | ||
10448 | name = "sane___sane_4.0.3.tgz"; | ||
10449 | url = "https://registry.yarnpkg.com/sane/-/sane-4.0.3.tgz"; | ||
10450 | sha1 = "e878c3f19e25cc57fbb734602f48f8a97818b181"; | ||
10451 | }; | ||
10452 | } | ||
10453 | |||
10454 | { | ||
10455 | name = "sass_lint___sass_lint_1.13.1.tgz"; | ||
10456 | path = fetchurl { | ||
10457 | name = "sass_lint___sass_lint_1.13.1.tgz"; | ||
10458 | url = "https://registry.yarnpkg.com/sass-lint/-/sass-lint-1.13.1.tgz"; | ||
10459 | sha1 = "5fd2b2792e9215272335eb0f0dc607f61e8acc8f"; | ||
10460 | }; | ||
10461 | } | ||
10462 | |||
10463 | { | ||
10464 | name = "sass_loader___sass_loader_7.1.0.tgz"; | ||
10465 | path = fetchurl { | ||
10466 | name = "sass_loader___sass_loader_7.1.0.tgz"; | ||
10467 | url = "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.1.0.tgz"; | ||
10468 | sha1 = "16fd5138cb8b424bf8a759528a1972d72aad069d"; | ||
10469 | }; | ||
10470 | } | ||
10471 | |||
10472 | { | ||
10473 | name = "sass___sass_1.20.3.tgz"; | ||
10474 | path = fetchurl { | ||
10475 | name = "sass___sass_1.20.3.tgz"; | ||
10476 | url = "https://registry.yarnpkg.com/sass/-/sass-1.20.3.tgz"; | ||
10477 | sha1 = "18284a7bac6eab9cbb80453288473194f29efb84"; | ||
10478 | }; | ||
10479 | } | ||
10480 | |||
10481 | { | ||
10482 | name = "sax___sax_1.2.4.tgz"; | ||
10483 | path = fetchurl { | ||
10484 | name = "sax___sax_1.2.4.tgz"; | ||
10485 | url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz"; | ||
10486 | sha1 = "2816234e2378bddc4e5354fab5caa895df7100d9"; | ||
10487 | }; | ||
10488 | } | ||
10489 | |||
10490 | { | ||
10491 | name = "scheduler___scheduler_0.13.6.tgz"; | ||
10492 | path = fetchurl { | ||
10493 | name = "scheduler___scheduler_0.13.6.tgz"; | ||
10494 | url = "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz"; | ||
10495 | sha1 = "466a4ec332467b31a91b9bf74e5347072e4cd889"; | ||
10496 | }; | ||
10497 | } | ||
10498 | |||
10499 | { | ||
10500 | name = "schema_utils___schema_utils_1.0.0.tgz"; | ||
10501 | path = fetchurl { | ||
10502 | name = "schema_utils___schema_utils_1.0.0.tgz"; | ||
10503 | url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz"; | ||
10504 | sha1 = "0b79a93204d7b600d4b2850d1f66c2a34951c770"; | ||
10505 | }; | ||
10506 | } | ||
10507 | |||
10508 | { | ||
10509 | name = "scroll_behavior___scroll_behavior_0.9.9.tgz"; | ||
10510 | path = fetchurl { | ||
10511 | name = "scroll_behavior___scroll_behavior_0.9.9.tgz"; | ||
10512 | url = "https://registry.yarnpkg.com/scroll-behavior/-/scroll-behavior-0.9.9.tgz"; | ||
10513 | sha1 = "ebfe0658455b82ad885b66195215416674dacce2"; | ||
10514 | }; | ||
10515 | } | ||
10516 | |||
10517 | { | ||
10518 | name = "select_hose___select_hose_2.0.0.tgz"; | ||
10519 | path = fetchurl { | ||
10520 | name = "select_hose___select_hose_2.0.0.tgz"; | ||
10521 | url = "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz"; | ||
10522 | sha1 = "625d8658f865af43ec962bfc376a37359a4994ca"; | ||
10523 | }; | ||
10524 | } | ||
10525 | |||
10526 | { | ||
10527 | name = "selfsigned___selfsigned_1.10.4.tgz"; | ||
10528 | path = fetchurl { | ||
10529 | name = "selfsigned___selfsigned_1.10.4.tgz"; | ||
10530 | url = "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.4.tgz"; | ||
10531 | sha1 = "cdd7eccfca4ed7635d47a08bf2d5d3074092e2cd"; | ||
10532 | }; | ||
10533 | } | ||
10534 | |||
10535 | { | ||
10536 | name = "semver___semver_5.7.0.tgz"; | ||
10537 | path = fetchurl { | ||
10538 | name = "semver___semver_5.7.0.tgz"; | ||
10539 | url = "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz"; | ||
10540 | sha1 = "790a7cf6fea5459bac96110b29b60412dc8ff96b"; | ||
10541 | }; | ||
10542 | } | ||
10543 | |||
10544 | { | ||
10545 | name = "semver___semver_4.3.2.tgz"; | ||
10546 | path = fetchurl { | ||
10547 | name = "semver___semver_4.3.2.tgz"; | ||
10548 | url = "https://registry.yarnpkg.com/semver/-/semver-4.3.2.tgz"; | ||
10549 | sha1 = "c7a07158a80bedd052355b770d82d6640f803be7"; | ||
10550 | }; | ||
10551 | } | ||
10552 | |||
10553 | { | ||
10554 | name = "semver___semver_6.1.1.tgz"; | ||
10555 | path = fetchurl { | ||
10556 | name = "semver___semver_6.1.1.tgz"; | ||
10557 | url = "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz"; | ||
10558 | sha1 = "53f53da9b30b2103cd4f15eab3a18ecbcb210c9b"; | ||
10559 | }; | ||
10560 | } | ||
10561 | |||
10562 | { | ||
10563 | name = "send___send_0.17.1.tgz"; | ||
10564 | path = fetchurl { | ||
10565 | name = "send___send_0.17.1.tgz"; | ||
10566 | url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz"; | ||
10567 | sha1 = "c1d8b059f7900f7466dd4938bdc44e11ddb376c8"; | ||
10568 | }; | ||
10569 | } | ||
10570 | |||
10571 | { | ||
10572 | name = "serialize_javascript___serialize_javascript_1.6.1.tgz"; | ||
10573 | path = fetchurl { | ||
10574 | name = "serialize_javascript___serialize_javascript_1.6.1.tgz"; | ||
10575 | url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.6.1.tgz"; | ||
10576 | sha1 = "4d1f697ec49429a847ca6f442a2a755126c4d879"; | ||
10577 | }; | ||
10578 | } | ||
10579 | |||
10580 | { | ||
10581 | name = "serialize_javascript___serialize_javascript_1.7.0.tgz"; | ||
10582 | path = fetchurl { | ||
10583 | name = "serialize_javascript___serialize_javascript_1.7.0.tgz"; | ||
10584 | url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz"; | ||
10585 | sha1 = "d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"; | ||
10586 | }; | ||
10587 | } | ||
10588 | |||
10589 | { | ||
10590 | name = "serve_index___serve_index_1.9.1.tgz"; | ||
10591 | path = fetchurl { | ||
10592 | name = "serve_index___serve_index_1.9.1.tgz"; | ||
10593 | url = "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz"; | ||
10594 | sha1 = "d3768d69b1e7d82e5ce050fff5b453bea12a9239"; | ||
10595 | }; | ||
10596 | } | ||
10597 | |||
10598 | { | ||
10599 | name = "serve_static___serve_static_1.14.1.tgz"; | ||
10600 | path = fetchurl { | ||
10601 | name = "serve_static___serve_static_1.14.1.tgz"; | ||
10602 | url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz"; | ||
10603 | sha1 = "666e636dc4f010f7ef29970a88a674320898b2f9"; | ||
10604 | }; | ||
10605 | } | ||
10606 | |||
10607 | { | ||
10608 | name = "set_blocking___set_blocking_2.0.0.tgz"; | ||
10609 | path = fetchurl { | ||
10610 | name = "set_blocking___set_blocking_2.0.0.tgz"; | ||
10611 | url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz"; | ||
10612 | sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; | ||
10613 | }; | ||
10614 | } | ||
10615 | |||
10616 | { | ||
10617 | name = "set_value___set_value_0.4.3.tgz"; | ||
10618 | path = fetchurl { | ||
10619 | name = "set_value___set_value_0.4.3.tgz"; | ||
10620 | url = "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz"; | ||
10621 | sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"; | ||
10622 | }; | ||
10623 | } | ||
10624 | |||
10625 | { | ||
10626 | name = "set_value___set_value_2.0.0.tgz"; | ||
10627 | path = fetchurl { | ||
10628 | name = "set_value___set_value_2.0.0.tgz"; | ||
10629 | url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz"; | ||
10630 | sha1 = "71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"; | ||
10631 | }; | ||
10632 | } | ||
10633 | |||
10634 | { | ||
10635 | name = "setimmediate___setimmediate_1.0.5.tgz"; | ||
10636 | path = fetchurl { | ||
10637 | name = "setimmediate___setimmediate_1.0.5.tgz"; | ||
10638 | url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz"; | ||
10639 | sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285"; | ||
10640 | }; | ||
10641 | } | ||
10642 | |||
10643 | { | ||
10644 | name = "setprototypeof___setprototypeof_1.1.0.tgz"; | ||
10645 | path = fetchurl { | ||
10646 | name = "setprototypeof___setprototypeof_1.1.0.tgz"; | ||
10647 | url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz"; | ||
10648 | sha1 = "d0bd85536887b6fe7c0d818cb962d9d91c54e656"; | ||
10649 | }; | ||
10650 | } | ||
10651 | |||
10652 | { | ||
10653 | name = "setprototypeof___setprototypeof_1.1.1.tgz"; | ||
10654 | path = fetchurl { | ||
10655 | name = "setprototypeof___setprototypeof_1.1.1.tgz"; | ||
10656 | url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz"; | ||
10657 | sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683"; | ||
10658 | }; | ||
10659 | } | ||
10660 | |||
10661 | { | ||
10662 | name = "sha.js___sha.js_2.4.11.tgz"; | ||
10663 | path = fetchurl { | ||
10664 | name = "sha.js___sha.js_2.4.11.tgz"; | ||
10665 | url = "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz"; | ||
10666 | sha1 = "37a5cf0b81ecbc6943de109ba2960d1b26584ae7"; | ||
10667 | }; | ||
10668 | } | ||
10669 | |||
10670 | { | ||
10671 | name = "shallow_clone___shallow_clone_1.0.0.tgz"; | ||
10672 | path = fetchurl { | ||
10673 | name = "shallow_clone___shallow_clone_1.0.0.tgz"; | ||
10674 | url = "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-1.0.0.tgz"; | ||
10675 | sha1 = "4480cd06e882ef68b2ad88a3ea54832e2c48b571"; | ||
10676 | }; | ||
10677 | } | ||
10678 | |||
10679 | { | ||
10680 | name = "shebang_command___shebang_command_1.2.0.tgz"; | ||
10681 | path = fetchurl { | ||
10682 | name = "shebang_command___shebang_command_1.2.0.tgz"; | ||
10683 | url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; | ||
10684 | sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; | ||
10685 | }; | ||
10686 | } | ||
10687 | |||
10688 | { | ||
10689 | name = "shebang_regex___shebang_regex_1.0.0.tgz"; | ||
10690 | path = fetchurl { | ||
10691 | name = "shebang_regex___shebang_regex_1.0.0.tgz"; | ||
10692 | url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; | ||
10693 | sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; | ||
10694 | }; | ||
10695 | } | ||
10696 | |||
10697 | { | ||
10698 | name = "shelljs___shelljs_0.6.1.tgz"; | ||
10699 | path = fetchurl { | ||
10700 | name = "shelljs___shelljs_0.6.1.tgz"; | ||
10701 | url = "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz"; | ||
10702 | sha1 = "ec6211bed1920442088fe0f70b2837232ed2c8a8"; | ||
10703 | }; | ||
10704 | } | ||
10705 | |||
10706 | { | ||
10707 | name = "shellwords___shellwords_0.1.1.tgz"; | ||
10708 | path = fetchurl { | ||
10709 | name = "shellwords___shellwords_0.1.1.tgz"; | ||
10710 | url = "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz"; | ||
10711 | sha1 = "d6b9181c1a48d397324c84871efbcfc73fc0654b"; | ||
10712 | }; | ||
10713 | } | ||
10714 | |||
10715 | { | ||
10716 | name = "signal_exit___signal_exit_3.0.2.tgz"; | ||
10717 | path = fetchurl { | ||
10718 | name = "signal_exit___signal_exit_3.0.2.tgz"; | ||
10719 | url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz"; | ||
10720 | sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; | ||
10721 | }; | ||
10722 | } | ||
10723 | |||
10724 | { | ||
10725 | name = "simple_swizzle___simple_swizzle_0.2.2.tgz"; | ||
10726 | path = fetchurl { | ||
10727 | name = "simple_swizzle___simple_swizzle_0.2.2.tgz"; | ||
10728 | url = "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz"; | ||
10729 | sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a"; | ||
10730 | }; | ||
10731 | } | ||
10732 | |||
10733 | { | ||
10734 | name = "sisteransi___sisteransi_1.0.0.tgz"; | ||
10735 | path = fetchurl { | ||
10736 | name = "sisteransi___sisteransi_1.0.0.tgz"; | ||
10737 | url = "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz"; | ||
10738 | sha1 = "77d9622ff909080f1c19e5f4a1df0c1b0a27b88c"; | ||
10739 | }; | ||
10740 | } | ||
10741 | |||
10742 | { | ||
10743 | name = "slash___slash_1.0.0.tgz"; | ||
10744 | path = fetchurl { | ||
10745 | name = "slash___slash_1.0.0.tgz"; | ||
10746 | url = "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz"; | ||
10747 | sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; | ||
10748 | }; | ||
10749 | } | ||
10750 | |||
10751 | { | ||
10752 | name = "slash___slash_2.0.0.tgz"; | ||
10753 | path = fetchurl { | ||
10754 | name = "slash___slash_2.0.0.tgz"; | ||
10755 | url = "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz"; | ||
10756 | sha1 = "de552851a1759df3a8f206535442f5ec4ddeab44"; | ||
10757 | }; | ||
10758 | } | ||
10759 | |||
10760 | { | ||
10761 | name = "slice_ansi___slice_ansi_0.0.4.tgz"; | ||
10762 | path = fetchurl { | ||
10763 | name = "slice_ansi___slice_ansi_0.0.4.tgz"; | ||
10764 | url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz"; | ||
10765 | sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; | ||
10766 | }; | ||
10767 | } | ||
10768 | |||
10769 | { | ||
10770 | name = "slice_ansi___slice_ansi_2.0.0.tgz"; | ||
10771 | path = fetchurl { | ||
10772 | name = "slice_ansi___slice_ansi_2.0.0.tgz"; | ||
10773 | url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.0.0.tgz"; | ||
10774 | sha1 = "5373bdb8559b45676e8541c66916cdd6251612e7"; | ||
10775 | }; | ||
10776 | } | ||
10777 | |||
10778 | { | ||
10779 | name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; | ||
10780 | path = fetchurl { | ||
10781 | name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; | ||
10782 | url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; | ||
10783 | sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; | ||
10784 | }; | ||
10785 | } | ||
10786 | |||
10787 | { | ||
10788 | name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; | ||
10789 | path = fetchurl { | ||
10790 | name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; | ||
10791 | url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; | ||
10792 | sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; | ||
10793 | }; | ||
10794 | } | ||
10795 | |||
10796 | { | ||
10797 | name = "snapdragon___snapdragon_0.8.2.tgz"; | ||
10798 | path = fetchurl { | ||
10799 | name = "snapdragon___snapdragon_0.8.2.tgz"; | ||
10800 | url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz"; | ||
10801 | sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d"; | ||
10802 | }; | ||
10803 | } | ||
10804 | |||
10805 | { | ||
10806 | name = "sockjs_client___sockjs_client_1.3.0.tgz"; | ||
10807 | path = fetchurl { | ||
10808 | name = "sockjs_client___sockjs_client_1.3.0.tgz"; | ||
10809 | url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.3.0.tgz"; | ||
10810 | sha1 = "12fc9d6cb663da5739d3dc5fb6e8687da95cb177"; | ||
10811 | }; | ||
10812 | } | ||
10813 | |||
10814 | { | ||
10815 | name = "sockjs___sockjs_0.3.19.tgz"; | ||
10816 | path = fetchurl { | ||
10817 | name = "sockjs___sockjs_0.3.19.tgz"; | ||
10818 | url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz"; | ||
10819 | sha1 = "d976bbe800af7bd20ae08598d582393508993c0d"; | ||
10820 | }; | ||
10821 | } | ||
10822 | |||
10823 | { | ||
10824 | name = "source_list_map___source_list_map_2.0.1.tgz"; | ||
10825 | path = fetchurl { | ||
10826 | name = "source_list_map___source_list_map_2.0.1.tgz"; | ||
10827 | url = "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz"; | ||
10828 | sha1 = "3993bd873bfc48479cca9ea3a547835c7c154b34"; | ||
10829 | }; | ||
10830 | } | ||
10831 | |||
10832 | { | ||
10833 | name = "source_map_resolve___source_map_resolve_0.5.2.tgz"; | ||
10834 | path = fetchurl { | ||
10835 | name = "source_map_resolve___source_map_resolve_0.5.2.tgz"; | ||
10836 | url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz"; | ||
10837 | sha1 = "72e2cc34095543e43b2c62b2c4c10d4a9054f259"; | ||
10838 | }; | ||
10839 | } | ||
10840 | |||
10841 | { | ||
10842 | name = "source_map_support___source_map_support_0.5.9.tgz"; | ||
10843 | path = fetchurl { | ||
10844 | name = "source_map_support___source_map_support_0.5.9.tgz"; | ||
10845 | url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz"; | ||
10846 | sha1 = "41bc953b2534267ea2d605bccfa7bfa3111ced5f"; | ||
10847 | }; | ||
10848 | } | ||
10849 | |||
10850 | { | ||
10851 | name = "source_map_support___source_map_support_0.5.12.tgz"; | ||
10852 | path = fetchurl { | ||
10853 | name = "source_map_support___source_map_support_0.5.12.tgz"; | ||
10854 | url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz"; | ||
10855 | sha1 = "b4f3b10d51857a5af0138d3ce8003b201613d599"; | ||
10856 | }; | ||
10857 | } | ||
10858 | |||
10859 | { | ||
10860 | name = "source_map_url___source_map_url_0.4.0.tgz"; | ||
10861 | path = fetchurl { | ||
10862 | name = "source_map_url___source_map_url_0.4.0.tgz"; | ||
10863 | url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; | ||
10864 | sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; | ||
10865 | }; | ||
10866 | } | ||
10867 | |||
10868 | { | ||
10869 | name = "source_map___source_map_0.5.7.tgz"; | ||
10870 | path = fetchurl { | ||
10871 | name = "source_map___source_map_0.5.7.tgz"; | ||
10872 | url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; | ||
10873 | sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; | ||
10874 | }; | ||
10875 | } | ||
10876 | |||
10877 | { | ||
10878 | name = "source_map___source_map_0.6.1.tgz"; | ||
10879 | path = fetchurl { | ||
10880 | name = "source_map___source_map_0.6.1.tgz"; | ||
10881 | url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; | ||
10882 | sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; | ||
10883 | }; | ||
10884 | } | ||
10885 | |||
10886 | { | ||
10887 | name = "source_map___source_map_0.7.3.tgz"; | ||
10888 | path = fetchurl { | ||
10889 | name = "source_map___source_map_0.7.3.tgz"; | ||
10890 | url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz"; | ||
10891 | sha1 = "5302f8169031735226544092e64981f751750383"; | ||
10892 | }; | ||
10893 | } | ||
10894 | |||
10895 | { | ||
10896 | name = "spdx_correct___spdx_correct_3.1.0.tgz"; | ||
10897 | path = fetchurl { | ||
10898 | name = "spdx_correct___spdx_correct_3.1.0.tgz"; | ||
10899 | url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz"; | ||
10900 | sha1 = "fb83e504445268f154b074e218c87c003cd31df4"; | ||
10901 | }; | ||
10902 | } | ||
10903 | |||
10904 | { | ||
10905 | name = "spdx_exceptions___spdx_exceptions_2.2.0.tgz"; | ||
10906 | path = fetchurl { | ||
10907 | name = "spdx_exceptions___spdx_exceptions_2.2.0.tgz"; | ||
10908 | url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz"; | ||
10909 | sha1 = "2ea450aee74f2a89bfb94519c07fcd6f41322977"; | ||
10910 | }; | ||
10911 | } | ||
10912 | |||
10913 | { | ||
10914 | name = "spdx_expression_parse___spdx_expression_parse_3.0.0.tgz"; | ||
10915 | path = fetchurl { | ||
10916 | name = "spdx_expression_parse___spdx_expression_parse_3.0.0.tgz"; | ||
10917 | url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz"; | ||
10918 | sha1 = "99e119b7a5da00e05491c9fa338b7904823b41d0"; | ||
10919 | }; | ||
10920 | } | ||
10921 | |||
10922 | { | ||
10923 | name = "spdx_license_ids___spdx_license_ids_3.0.3.tgz"; | ||
10924 | path = fetchurl { | ||
10925 | name = "spdx_license_ids___spdx_license_ids_3.0.3.tgz"; | ||
10926 | url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz"; | ||
10927 | sha1 = "81c0ce8f21474756148bbb5f3bfc0f36bf15d76e"; | ||
10928 | }; | ||
10929 | } | ||
10930 | |||
10931 | { | ||
10932 | name = "spdy_transport___spdy_transport_3.0.0.tgz"; | ||
10933 | path = fetchurl { | ||
10934 | name = "spdy_transport___spdy_transport_3.0.0.tgz"; | ||
10935 | url = "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz"; | ||
10936 | sha1 = "00d4863a6400ad75df93361a1608605e5dcdcf31"; | ||
10937 | }; | ||
10938 | } | ||
10939 | |||
10940 | { | ||
10941 | name = "spdy___spdy_4.0.0.tgz"; | ||
10942 | path = fetchurl { | ||
10943 | name = "spdy___spdy_4.0.0.tgz"; | ||
10944 | url = "https://registry.yarnpkg.com/spdy/-/spdy-4.0.0.tgz"; | ||
10945 | sha1 = "81f222b5a743a329aa12cea6a390e60e9b613c52"; | ||
10946 | }; | ||
10947 | } | ||
10948 | |||
10949 | { | ||
10950 | name = "split_string___split_string_3.1.0.tgz"; | ||
10951 | path = fetchurl { | ||
10952 | name = "split_string___split_string_3.1.0.tgz"; | ||
10953 | url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz"; | ||
10954 | sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2"; | ||
10955 | }; | ||
10956 | } | ||
10957 | |||
10958 | { | ||
10959 | name = "split___split_1.0.1.tgz"; | ||
10960 | path = fetchurl { | ||
10961 | name = "split___split_1.0.1.tgz"; | ||
10962 | url = "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz"; | ||
10963 | sha1 = "605bd9be303aa59fb35f9229fbea0ddec9ea07d9"; | ||
10964 | }; | ||
10965 | } | ||
10966 | |||
10967 | { | ||
10968 | name = "sprintf_js___sprintf_js_1.0.3.tgz"; | ||
10969 | path = fetchurl { | ||
10970 | name = "sprintf_js___sprintf_js_1.0.3.tgz"; | ||
10971 | url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; | ||
10972 | sha1 = "04e6926f662895354f3dd015203633b857297e2c"; | ||
10973 | }; | ||
10974 | } | ||
10975 | |||
10976 | { | ||
10977 | name = "sshpk___sshpk_1.16.0.tgz"; | ||
10978 | path = fetchurl { | ||
10979 | name = "sshpk___sshpk_1.16.0.tgz"; | ||
10980 | url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.0.tgz"; | ||
10981 | sha1 = "1d4963a2fbffe58050aa9084ca20be81741c07de"; | ||
10982 | }; | ||
10983 | } | ||
10984 | |||
10985 | { | ||
10986 | name = "ssri___ssri_6.0.1.tgz"; | ||
10987 | path = fetchurl { | ||
10988 | name = "ssri___ssri_6.0.1.tgz"; | ||
10989 | url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz"; | ||
10990 | sha1 = "2a3c41b28dd45b62b63676ecb74001265ae9edd8"; | ||
10991 | }; | ||
10992 | } | ||
10993 | |||
10994 | { | ||
10995 | name = "stable___stable_0.1.8.tgz"; | ||
10996 | path = fetchurl { | ||
10997 | name = "stable___stable_0.1.8.tgz"; | ||
10998 | url = "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz"; | ||
10999 | sha1 = "836eb3c8382fe2936feaf544631017ce7d47a3cf"; | ||
11000 | }; | ||
11001 | } | ||
11002 | |||
11003 | { | ||
11004 | name = "stack_utils___stack_utils_1.0.2.tgz"; | ||
11005 | path = fetchurl { | ||
11006 | name = "stack_utils___stack_utils_1.0.2.tgz"; | ||
11007 | url = "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz"; | ||
11008 | sha1 = "33eba3897788558bebfc2db059dc158ec36cebb8"; | ||
11009 | }; | ||
11010 | } | ||
11011 | |||
11012 | { | ||
11013 | name = "static_extend___static_extend_0.1.2.tgz"; | ||
11014 | path = fetchurl { | ||
11015 | name = "static_extend___static_extend_0.1.2.tgz"; | ||
11016 | url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz"; | ||
11017 | sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; | ||
11018 | }; | ||
11019 | } | ||
11020 | |||
11021 | { | ||
11022 | name = "statuses___statuses_1.5.0.tgz"; | ||
11023 | path = fetchurl { | ||
11024 | name = "statuses___statuses_1.5.0.tgz"; | ||
11025 | url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz"; | ||
11026 | sha1 = "161c7dac177659fd9811f43771fa99381478628c"; | ||
11027 | }; | ||
11028 | } | ||
11029 | |||
11030 | { | ||
11031 | name = "stealthy_require___stealthy_require_1.1.1.tgz"; | ||
11032 | path = fetchurl { | ||
11033 | name = "stealthy_require___stealthy_require_1.1.1.tgz"; | ||
11034 | url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz"; | ||
11035 | sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b"; | ||
11036 | }; | ||
11037 | } | ||
11038 | |||
11039 | { | ||
11040 | name = "stream_browserify___stream_browserify_2.0.1.tgz"; | ||
11041 | path = fetchurl { | ||
11042 | name = "stream_browserify___stream_browserify_2.0.1.tgz"; | ||
11043 | url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz"; | ||
11044 | sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"; | ||
11045 | }; | ||
11046 | } | ||
11047 | |||
11048 | { | ||
11049 | name = "stream_each___stream_each_1.2.3.tgz"; | ||
11050 | path = fetchurl { | ||
11051 | name = "stream_each___stream_each_1.2.3.tgz"; | ||
11052 | url = "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz"; | ||
11053 | sha1 = "ebe27a0c389b04fbcc233642952e10731afa9bae"; | ||
11054 | }; | ||
11055 | } | ||
11056 | |||
11057 | { | ||
11058 | name = "stream_http___stream_http_2.8.3.tgz"; | ||
11059 | path = fetchurl { | ||
11060 | name = "stream_http___stream_http_2.8.3.tgz"; | ||
11061 | url = "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz"; | ||
11062 | sha1 = "b2d242469288a5a27ec4fe8933acf623de6514fc"; | ||
11063 | }; | ||
11064 | } | ||
11065 | |||
11066 | { | ||
11067 | name = "stream_shift___stream_shift_1.0.0.tgz"; | ||
11068 | path = fetchurl { | ||
11069 | name = "stream_shift___stream_shift_1.0.0.tgz"; | ||
11070 | url = "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz"; | ||
11071 | sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; | ||
11072 | }; | ||
11073 | } | ||
11074 | |||
11075 | { | ||
11076 | name = "string_length___string_length_2.0.0.tgz"; | ||
11077 | path = fetchurl { | ||
11078 | name = "string_length___string_length_2.0.0.tgz"; | ||
11079 | url = "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz"; | ||
11080 | sha1 = "d40dbb686a3ace960c1cffca562bf2c45f8363ed"; | ||
11081 | }; | ||
11082 | } | ||
11083 | |||
11084 | { | ||
11085 | name = "string_width___string_width_1.0.2.tgz"; | ||
11086 | path = fetchurl { | ||
11087 | name = "string_width___string_width_1.0.2.tgz"; | ||
11088 | url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz"; | ||
11089 | sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; | ||
11090 | }; | ||
11091 | } | ||
11092 | |||
11093 | { | ||
11094 | name = "string_width___string_width_2.1.1.tgz"; | ||
11095 | path = fetchurl { | ||
11096 | name = "string_width___string_width_2.1.1.tgz"; | ||
11097 | url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; | ||
11098 | sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; | ||
11099 | }; | ||
11100 | } | ||
11101 | |||
11102 | { | ||
11103 | name = "string.prototype.trim___string.prototype.trim_1.1.2.tgz"; | ||
11104 | path = fetchurl { | ||
11105 | name = "string.prototype.trim___string.prototype.trim_1.1.2.tgz"; | ||
11106 | url = "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz"; | ||
11107 | sha1 = "d04de2c89e137f4d7d206f086b5ed2fae6be8cea"; | ||
11108 | }; | ||
11109 | } | ||
11110 | |||
11111 | { | ||
11112 | name = "string_decoder___string_decoder_1.2.0.tgz"; | ||
11113 | path = fetchurl { | ||
11114 | name = "string_decoder___string_decoder_1.2.0.tgz"; | ||
11115 | url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz"; | ||
11116 | sha1 = "fe86e738b19544afe70469243b2a1ee9240eae8d"; | ||
11117 | }; | ||
11118 | } | ||
11119 | |||
11120 | { | ||
11121 | name = "string_decoder___string_decoder_1.1.1.tgz"; | ||
11122 | path = fetchurl { | ||
11123 | name = "string_decoder___string_decoder_1.1.1.tgz"; | ||
11124 | url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; | ||
11125 | sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; | ||
11126 | }; | ||
11127 | } | ||
11128 | |||
11129 | { | ||
11130 | name = "stringz___stringz_1.0.0.tgz"; | ||
11131 | path = fetchurl { | ||
11132 | name = "stringz___stringz_1.0.0.tgz"; | ||
11133 | url = "https://registry.yarnpkg.com/stringz/-/stringz-1.0.0.tgz"; | ||
11134 | sha1 = "d2acba994e4ce3c725ee15c86fff4281280d2025"; | ||
11135 | }; | ||
11136 | } | ||
11137 | |||
11138 | { | ||
11139 | name = "strip_ansi___strip_ansi_3.0.1.tgz"; | ||
11140 | path = fetchurl { | ||
11141 | name = "strip_ansi___strip_ansi_3.0.1.tgz"; | ||
11142 | url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz"; | ||
11143 | sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; | ||
11144 | }; | ||
11145 | } | ||
11146 | |||
11147 | { | ||
11148 | name = "strip_ansi___strip_ansi_4.0.0.tgz"; | ||
11149 | path = fetchurl { | ||
11150 | name = "strip_ansi___strip_ansi_4.0.0.tgz"; | ||
11151 | url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz"; | ||
11152 | sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; | ||
11153 | }; | ||
11154 | } | ||
11155 | |||
11156 | { | ||
11157 | name = "strip_ansi___strip_ansi_5.0.0.tgz"; | ||
11158 | path = fetchurl { | ||
11159 | name = "strip_ansi___strip_ansi_5.0.0.tgz"; | ||
11160 | url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.0.0.tgz"; | ||
11161 | sha1 = "f78f68b5d0866c20b2c9b8c61b5298508dc8756f"; | ||
11162 | }; | ||
11163 | } | ||
11164 | |||
11165 | { | ||
11166 | name = "strip_bom___strip_bom_3.0.0.tgz"; | ||
11167 | path = fetchurl { | ||
11168 | name = "strip_bom___strip_bom_3.0.0.tgz"; | ||
11169 | url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz"; | ||
11170 | sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; | ||
11171 | }; | ||
11172 | } | ||
11173 | |||
11174 | { | ||
11175 | name = "strip_eof___strip_eof_1.0.0.tgz"; | ||
11176 | path = fetchurl { | ||
11177 | name = "strip_eof___strip_eof_1.0.0.tgz"; | ||
11178 | url = "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz"; | ||
11179 | sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; | ||
11180 | }; | ||
11181 | } | ||
11182 | |||
11183 | { | ||
11184 | name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; | ||
11185 | path = fetchurl { | ||
11186 | name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; | ||
11187 | url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; | ||
11188 | sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; | ||
11189 | }; | ||
11190 | } | ||
11191 | |||
11192 | { | ||
11193 | name = "strip_json_comments___strip_json_comments_1.0.4.tgz"; | ||
11194 | path = fetchurl { | ||
11195 | name = "strip_json_comments___strip_json_comments_1.0.4.tgz"; | ||
11196 | url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz"; | ||
11197 | sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"; | ||
11198 | }; | ||
11199 | } | ||
11200 | |||
11201 | { | ||
11202 | name = "stylehacks___stylehacks_4.0.1.tgz"; | ||
11203 | path = fetchurl { | ||
11204 | name = "stylehacks___stylehacks_4.0.1.tgz"; | ||
11205 | url = "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.1.tgz"; | ||
11206 | sha1 = "3186595d047ab0df813d213e51c8b94e0b9010f2"; | ||
11207 | }; | ||
11208 | } | ||
11209 | |||
11210 | { | ||
11211 | name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz"; | ||
11212 | path = fetchurl { | ||
11213 | name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz"; | ||
11214 | url = "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz"; | ||
11215 | sha1 = "44e64a2b076643f4b52e5ff71efc04d8c3c4a430"; | ||
11216 | }; | ||
11217 | } | ||
11218 | |||
11219 | { | ||
11220 | name = "stylis___stylis_3.5.4.tgz"; | ||
11221 | path = fetchurl { | ||
11222 | name = "stylis___stylis_3.5.4.tgz"; | ||
11223 | url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz"; | ||
11224 | sha1 = "f665f25f5e299cf3d64654ab949a57c768b73fbe"; | ||
11225 | }; | ||
11226 | } | ||
11227 | |||
11228 | { | ||
11229 | name = "substring_trie___substring_trie_1.0.2.tgz"; | ||
11230 | path = fetchurl { | ||
11231 | name = "substring_trie___substring_trie_1.0.2.tgz"; | ||
11232 | url = "https://registry.yarnpkg.com/substring-trie/-/substring-trie-1.0.2.tgz"; | ||
11233 | sha1 = "7b42592391628b4f2cb17365c6cce4257c7b7af5"; | ||
11234 | }; | ||
11235 | } | ||
11236 | |||
11237 | { | ||
11238 | name = "supports_color___supports_color_2.0.0.tgz"; | ||
11239 | path = fetchurl { | ||
11240 | name = "supports_color___supports_color_2.0.0.tgz"; | ||
11241 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz"; | ||
11242 | sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; | ||
11243 | }; | ||
11244 | } | ||
11245 | |||
11246 | { | ||
11247 | name = "supports_color___supports_color_3.2.3.tgz"; | ||
11248 | path = fetchurl { | ||
11249 | name = "supports_color___supports_color_3.2.3.tgz"; | ||
11250 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz"; | ||
11251 | sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"; | ||
11252 | }; | ||
11253 | } | ||
11254 | |||
11255 | { | ||
11256 | name = "supports_color___supports_color_5.5.0.tgz"; | ||
11257 | path = fetchurl { | ||
11258 | name = "supports_color___supports_color_5.5.0.tgz"; | ||
11259 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; | ||
11260 | sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; | ||
11261 | }; | ||
11262 | } | ||
11263 | |||
11264 | { | ||
11265 | name = "supports_color___supports_color_6.1.0.tgz"; | ||
11266 | path = fetchurl { | ||
11267 | name = "supports_color___supports_color_6.1.0.tgz"; | ||
11268 | url = "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz"; | ||
11269 | sha1 = "0764abc69c63d5ac842dd4867e8d025e880df8f3"; | ||
11270 | }; | ||
11271 | } | ||
11272 | |||
11273 | { | ||
11274 | name = "svgo___svgo_1.1.1.tgz"; | ||
11275 | path = fetchurl { | ||
11276 | name = "svgo___svgo_1.1.1.tgz"; | ||
11277 | url = "https://registry.yarnpkg.com/svgo/-/svgo-1.1.1.tgz"; | ||
11278 | sha1 = "12384b03335bcecd85cfa5f4e3375fed671cb985"; | ||
11279 | }; | ||
11280 | } | ||
11281 | |||
11282 | { | ||
11283 | name = "symbol_observable___symbol_observable_1.2.0.tgz"; | ||
11284 | path = fetchurl { | ||
11285 | name = "symbol_observable___symbol_observable_1.2.0.tgz"; | ||
11286 | url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz"; | ||
11287 | sha1 = "c22688aed4eab3cdc2dfeacbb561660560a00804"; | ||
11288 | }; | ||
11289 | } | ||
11290 | |||
11291 | { | ||
11292 | name = "symbol_tree___symbol_tree_3.2.2.tgz"; | ||
11293 | path = fetchurl { | ||
11294 | name = "symbol_tree___symbol_tree_3.2.2.tgz"; | ||
11295 | url = "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz"; | ||
11296 | sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"; | ||
11297 | }; | ||
11298 | } | ||
11299 | |||
11300 | { | ||
11301 | name = "table___table_3.8.3.tgz"; | ||
11302 | path = fetchurl { | ||
11303 | name = "table___table_3.8.3.tgz"; | ||
11304 | url = "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz"; | ||
11305 | sha1 = "2bbc542f0fda9861a755d3947fefd8b3f513855f"; | ||
11306 | }; | ||
11307 | } | ||
11308 | |||
11309 | { | ||
11310 | name = "table___table_5.1.1.tgz"; | ||
11311 | path = fetchurl { | ||
11312 | name = "table___table_5.1.1.tgz"; | ||
11313 | url = "https://registry.yarnpkg.com/table/-/table-5.1.1.tgz"; | ||
11314 | sha1 = "92030192f1b7b51b6eeab23ed416862e47b70837"; | ||
11315 | }; | ||
11316 | } | ||
11317 | |||
11318 | { | ||
11319 | name = "tapable___tapable_1.1.1.tgz"; | ||
11320 | path = fetchurl { | ||
11321 | name = "tapable___tapable_1.1.1.tgz"; | ||
11322 | url = "https://registry.yarnpkg.com/tapable/-/tapable-1.1.1.tgz"; | ||
11323 | sha1 = "4d297923c5a72a42360de2ab52dadfaaec00018e"; | ||
11324 | }; | ||
11325 | } | ||
11326 | |||
11327 | { | ||
11328 | name = "tar___tar_4.4.8.tgz"; | ||
11329 | path = fetchurl { | ||
11330 | name = "tar___tar_4.4.8.tgz"; | ||
11331 | url = "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz"; | ||
11332 | sha1 = "b19eec3fde2a96e64666df9fdb40c5ca1bc3747d"; | ||
11333 | }; | ||
11334 | } | ||
11335 | |||
11336 | { | ||
11337 | name = "tcomb___tcomb_2.7.0.tgz"; | ||
11338 | path = fetchurl { | ||
11339 | name = "tcomb___tcomb_2.7.0.tgz"; | ||
11340 | url = "https://registry.yarnpkg.com/tcomb/-/tcomb-2.7.0.tgz"; | ||
11341 | sha1 = "10d62958041669a5d53567b9a4ee8cde22b1c2b0"; | ||
11342 | }; | ||
11343 | } | ||
11344 | |||
11345 | { | ||
11346 | name = "terser_webpack_plugin___terser_webpack_plugin_1.3.0.tgz"; | ||
11347 | path = fetchurl { | ||
11348 | name = "terser_webpack_plugin___terser_webpack_plugin_1.3.0.tgz"; | ||
11349 | url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz"; | ||
11350 | sha1 = "69aa22426299f4b5b3775cbed8cb2c5d419aa1d4"; | ||
11351 | }; | ||
11352 | } | ||
11353 | |||
11354 | { | ||
11355 | name = "terser___terser_4.0.0.tgz"; | ||
11356 | path = fetchurl { | ||
11357 | name = "terser___terser_4.0.0.tgz"; | ||
11358 | url = "https://registry.yarnpkg.com/terser/-/terser-4.0.0.tgz"; | ||
11359 | sha1 = "ef356f6f359a963e2cc675517f21c1c382877374"; | ||
11360 | }; | ||
11361 | } | ||
11362 | |||
11363 | { | ||
11364 | name = "test_exclude___test_exclude_5.1.0.tgz"; | ||
11365 | path = fetchurl { | ||
11366 | name = "test_exclude___test_exclude_5.1.0.tgz"; | ||
11367 | url = "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.1.0.tgz"; | ||
11368 | sha1 = "6ba6b25179d2d38724824661323b73e03c0c1de1"; | ||
11369 | }; | ||
11370 | } | ||
11371 | |||
11372 | { | ||
11373 | name = "text_table___text_table_0.2.0.tgz"; | ||
11374 | path = fetchurl { | ||
11375 | name = "text_table___text_table_0.2.0.tgz"; | ||
11376 | url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; | ||
11377 | sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; | ||
11378 | }; | ||
11379 | } | ||
11380 | |||
11381 | { | ||
11382 | name = "throat___throat_4.1.0.tgz"; | ||
11383 | path = fetchurl { | ||
11384 | name = "throat___throat_4.1.0.tgz"; | ||
11385 | url = "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz"; | ||
11386 | sha1 = "89037cbc92c56ab18926e6ba4cbb200e15672a6a"; | ||
11387 | }; | ||
11388 | } | ||
11389 | |||
11390 | { | ||
11391 | name = "throng___throng_4.0.0.tgz"; | ||
11392 | path = fetchurl { | ||
11393 | name = "throng___throng_4.0.0.tgz"; | ||
11394 | url = "https://registry.yarnpkg.com/throng/-/throng-4.0.0.tgz"; | ||
11395 | sha1 = "983c6ba1993b58eae859998aa687ffe88df84c17"; | ||
11396 | }; | ||
11397 | } | ||
11398 | |||
11399 | { | ||
11400 | name = "through2___through2_2.0.5.tgz"; | ||
11401 | path = fetchurl { | ||
11402 | name = "through2___through2_2.0.5.tgz"; | ||
11403 | url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz"; | ||
11404 | sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd"; | ||
11405 | }; | ||
11406 | } | ||
11407 | |||
11408 | { | ||
11409 | name = "through___through_2.3.8.tgz"; | ||
11410 | path = fetchurl { | ||
11411 | name = "through___through_2.3.8.tgz"; | ||
11412 | url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; | ||
11413 | sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; | ||
11414 | }; | ||
11415 | } | ||
11416 | |||
11417 | { | ||
11418 | name = "thunky___thunky_1.0.3.tgz"; | ||
11419 | path = fetchurl { | ||
11420 | name = "thunky___thunky_1.0.3.tgz"; | ||
11421 | url = "https://registry.yarnpkg.com/thunky/-/thunky-1.0.3.tgz"; | ||
11422 | sha1 = "f5df732453407b09191dae73e2a8cc73f381a826"; | ||
11423 | }; | ||
11424 | } | ||
11425 | |||
11426 | { | ||
11427 | name = "timers_browserify___timers_browserify_2.0.10.tgz"; | ||
11428 | path = fetchurl { | ||
11429 | name = "timers_browserify___timers_browserify_2.0.10.tgz"; | ||
11430 | url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz"; | ||
11431 | sha1 = "1d28e3d2aadf1d5a5996c4e9f95601cd053480ae"; | ||
11432 | }; | ||
11433 | } | ||
11434 | |||
11435 | { | ||
11436 | name = "timsort___timsort_0.3.0.tgz"; | ||
11437 | path = fetchurl { | ||
11438 | name = "timsort___timsort_0.3.0.tgz"; | ||
11439 | url = "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz"; | ||
11440 | sha1 = "405411a8e7e6339fe64db9a234de11dc31e02bd4"; | ||
11441 | }; | ||
11442 | } | ||
11443 | |||
11444 | { | ||
11445 | name = "tiny_queue___tiny_queue_0.2.1.tgz"; | ||
11446 | path = fetchurl { | ||
11447 | name = "tiny_queue___tiny_queue_0.2.1.tgz"; | ||
11448 | url = "https://registry.yarnpkg.com/tiny-queue/-/tiny-queue-0.2.1.tgz"; | ||
11449 | sha1 = "25a67f2c6e253b2ca941977b5ef7442ef97a6046"; | ||
11450 | }; | ||
11451 | } | ||
11452 | |||
11453 | { | ||
11454 | name = "tmp___tmp_0.0.33.tgz"; | ||
11455 | path = fetchurl { | ||
11456 | name = "tmp___tmp_0.0.33.tgz"; | ||
11457 | url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; | ||
11458 | sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; | ||
11459 | }; | ||
11460 | } | ||
11461 | |||
11462 | { | ||
11463 | name = "tmpl___tmpl_1.0.4.tgz"; | ||
11464 | path = fetchurl { | ||
11465 | name = "tmpl___tmpl_1.0.4.tgz"; | ||
11466 | url = "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz"; | ||
11467 | sha1 = "23640dd7b42d00433911140820e5cf440e521dd1"; | ||
11468 | }; | ||
11469 | } | ||
11470 | |||
11471 | { | ||
11472 | name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz"; | ||
11473 | path = fetchurl { | ||
11474 | name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz"; | ||
11475 | url = "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"; | ||
11476 | sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43"; | ||
11477 | }; | ||
11478 | } | ||
11479 | |||
11480 | { | ||
11481 | name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; | ||
11482 | path = fetchurl { | ||
11483 | name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; | ||
11484 | url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; | ||
11485 | sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; | ||
11486 | }; | ||
11487 | } | ||
11488 | |||
11489 | { | ||
11490 | name = "to_object_path___to_object_path_0.3.0.tgz"; | ||
11491 | path = fetchurl { | ||
11492 | name = "to_object_path___to_object_path_0.3.0.tgz"; | ||
11493 | url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz"; | ||
11494 | sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; | ||
11495 | }; | ||
11496 | } | ||
11497 | |||
11498 | { | ||
11499 | name = "to_regex_range___to_regex_range_2.1.1.tgz"; | ||
11500 | path = fetchurl { | ||
11501 | name = "to_regex_range___to_regex_range_2.1.1.tgz"; | ||
11502 | url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz"; | ||
11503 | sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; | ||
11504 | }; | ||
11505 | } | ||
11506 | |||
11507 | { | ||
11508 | name = "to_regex___to_regex_3.0.2.tgz"; | ||
11509 | path = fetchurl { | ||
11510 | name = "to_regex___to_regex_3.0.2.tgz"; | ||
11511 | url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz"; | ||
11512 | sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"; | ||
11513 | }; | ||
11514 | } | ||
11515 | |||
11516 | { | ||
11517 | name = "toidentifier___toidentifier_1.0.0.tgz"; | ||
11518 | path = fetchurl { | ||
11519 | name = "toidentifier___toidentifier_1.0.0.tgz"; | ||
11520 | url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz"; | ||
11521 | sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553"; | ||
11522 | }; | ||
11523 | } | ||
11524 | |||
11525 | { | ||
11526 | name = "touch___touch_2.0.2.tgz"; | ||
11527 | path = fetchurl { | ||
11528 | name = "touch___touch_2.0.2.tgz"; | ||
11529 | url = "https://registry.yarnpkg.com/touch/-/touch-2.0.2.tgz"; | ||
11530 | sha1 = "ca0b2a3ae3211246a61b16ba9e6cbf1596287164"; | ||
11531 | }; | ||
11532 | } | ||
11533 | |||
11534 | { | ||
11535 | name = "tough_cookie___tough_cookie_2.5.0.tgz"; | ||
11536 | path = fetchurl { | ||
11537 | name = "tough_cookie___tough_cookie_2.5.0.tgz"; | ||
11538 | url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz"; | ||
11539 | sha1 = "cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"; | ||
11540 | }; | ||
11541 | } | ||
11542 | |||
11543 | { | ||
11544 | name = "tough_cookie___tough_cookie_2.4.3.tgz"; | ||
11545 | path = fetchurl { | ||
11546 | name = "tough_cookie___tough_cookie_2.4.3.tgz"; | ||
11547 | url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz"; | ||
11548 | sha1 = "53f36da3f47783b0925afa06ff9f3b165280f781"; | ||
11549 | }; | ||
11550 | } | ||
11551 | |||
11552 | { | ||
11553 | name = "tr46___tr46_1.0.1.tgz"; | ||
11554 | path = fetchurl { | ||
11555 | name = "tr46___tr46_1.0.1.tgz"; | ||
11556 | url = "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz"; | ||
11557 | sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09"; | ||
11558 | }; | ||
11559 | } | ||
11560 | |||
11561 | { | ||
11562 | name = "trim_right___trim_right_1.0.1.tgz"; | ||
11563 | path = fetchurl { | ||
11564 | name = "trim_right___trim_right_1.0.1.tgz"; | ||
11565 | url = "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz"; | ||
11566 | sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; | ||
11567 | }; | ||
11568 | } | ||
11569 | |||
11570 | { | ||
11571 | name = "tryer___tryer_1.0.1.tgz"; | ||
11572 | path = fetchurl { | ||
11573 | name = "tryer___tryer_1.0.1.tgz"; | ||
11574 | url = "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz"; | ||
11575 | sha1 = "f2c85406800b9b0f74c9f7465b81eaad241252f8"; | ||
11576 | }; | ||
11577 | } | ||
11578 | |||
11579 | { | ||
11580 | name = "tslib___tslib_1.9.3.tgz"; | ||
11581 | path = fetchurl { | ||
11582 | name = "tslib___tslib_1.9.3.tgz"; | ||
11583 | url = "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz"; | ||
11584 | sha1 = "d7e4dd79245d85428c4d7e4822a79917954ca286"; | ||
11585 | }; | ||
11586 | } | ||
11587 | |||
11588 | { | ||
11589 | name = "tty_browserify___tty_browserify_0.0.0.tgz"; | ||
11590 | path = fetchurl { | ||
11591 | name = "tty_browserify___tty_browserify_0.0.0.tgz"; | ||
11592 | url = "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz"; | ||
11593 | sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6"; | ||
11594 | }; | ||
11595 | } | ||
11596 | |||
11597 | { | ||
11598 | name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; | ||
11599 | path = fetchurl { | ||
11600 | name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; | ||
11601 | url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; | ||
11602 | sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; | ||
11603 | }; | ||
11604 | } | ||
11605 | |||
11606 | { | ||
11607 | name = "tweetnacl___tweetnacl_0.14.5.tgz"; | ||
11608 | path = fetchurl { | ||
11609 | name = "tweetnacl___tweetnacl_0.14.5.tgz"; | ||
11610 | url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz"; | ||
11611 | sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; | ||
11612 | }; | ||
11613 | } | ||
11614 | |||
11615 | { | ||
11616 | name = "type_check___type_check_0.3.2.tgz"; | ||
11617 | path = fetchurl { | ||
11618 | name = "type_check___type_check_0.3.2.tgz"; | ||
11619 | url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; | ||
11620 | sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; | ||
11621 | }; | ||
11622 | } | ||
11623 | |||
11624 | { | ||
11625 | name = "type_is___type_is_1.6.18.tgz"; | ||
11626 | path = fetchurl { | ||
11627 | name = "type_is___type_is_1.6.18.tgz"; | ||
11628 | url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; | ||
11629 | sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131"; | ||
11630 | }; | ||
11631 | } | ||
11632 | |||
11633 | { | ||
11634 | name = "typedarray___typedarray_0.0.6.tgz"; | ||
11635 | path = fetchurl { | ||
11636 | name = "typedarray___typedarray_0.0.6.tgz"; | ||
11637 | url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; | ||
11638 | sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; | ||
11639 | }; | ||
11640 | } | ||
11641 | |||
11642 | { | ||
11643 | name = "ua_parser_js___ua_parser_js_0.7.19.tgz"; | ||
11644 | path = fetchurl { | ||
11645 | name = "ua_parser_js___ua_parser_js_0.7.19.tgz"; | ||
11646 | url = "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.19.tgz"; | ||
11647 | sha1 = "94151be4c0a7fb1d001af7022fdaca4642659e4b"; | ||
11648 | }; | ||
11649 | } | ||
11650 | |||
11651 | { | ||
11652 | name = "uglify_js___uglify_js_3.4.9.tgz"; | ||
11653 | path = fetchurl { | ||
11654 | name = "uglify_js___uglify_js_3.4.9.tgz"; | ||
11655 | url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.9.tgz"; | ||
11656 | sha1 = "af02f180c1207d76432e473ed24a28f4a782bae3"; | ||
11657 | }; | ||
11658 | } | ||
11659 | |||
11660 | { | ||
11661 | name = "unicode_astral_regex___unicode_astral_regex_1.0.1.tgz"; | ||
11662 | path = fetchurl { | ||
11663 | name = "unicode_astral_regex___unicode_astral_regex_1.0.1.tgz"; | ||
11664 | url = "https://registry.yarnpkg.com/unicode-astral-regex/-/unicode-astral-regex-1.0.1.tgz"; | ||
11665 | sha1 = "2cab8529480646f9614ddbc7b62158ad05123feb"; | ||
11666 | }; | ||
11667 | } | ||
11668 | |||
11669 | { | ||
11670 | name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; | ||
11671 | path = fetchurl { | ||
11672 | name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; | ||
11673 | url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"; | ||
11674 | sha1 = "2619800c4c825800efdd8343af7dd9933cbe2818"; | ||
11675 | }; | ||
11676 | } | ||
11677 | |||
11678 | { | ||
11679 | name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; | ||
11680 | path = fetchurl { | ||
11681 | name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; | ||
11682 | url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"; | ||
11683 | sha1 = "8ed2a32569961bce9227d09cd3ffbb8fed5f020c"; | ||
11684 | }; | ||
11685 | } | ||
11686 | |||
11687 | { | ||
11688 | name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; | ||
11689 | path = fetchurl { | ||
11690 | name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; | ||
11691 | url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz"; | ||
11692 | sha1 = "5b4b426e08d13a80365e0d657ac7a6c1ec46a277"; | ||
11693 | }; | ||
11694 | } | ||
11695 | |||
11696 | { | ||
11697 | name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; | ||
11698 | path = fetchurl { | ||
11699 | name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; | ||
11700 | url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz"; | ||
11701 | sha1 = "a9cc6cc7ce63a0a3023fc99e341b94431d405a57"; | ||
11702 | }; | ||
11703 | } | ||
11704 | |||
11705 | { | ||
11706 | name = "union_value___union_value_1.0.0.tgz"; | ||
11707 | path = fetchurl { | ||
11708 | name = "union_value___union_value_1.0.0.tgz"; | ||
11709 | url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz"; | ||
11710 | sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"; | ||
11711 | }; | ||
11712 | } | ||
11713 | |||
11714 | { | ||
11715 | name = "uniq___uniq_1.0.1.tgz"; | ||
11716 | path = fetchurl { | ||
11717 | name = "uniq___uniq_1.0.1.tgz"; | ||
11718 | url = "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz"; | ||
11719 | sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff"; | ||
11720 | }; | ||
11721 | } | ||
11722 | |||
11723 | { | ||
11724 | name = "uniqs___uniqs_2.0.0.tgz"; | ||
11725 | path = fetchurl { | ||
11726 | name = "uniqs___uniqs_2.0.0.tgz"; | ||
11727 | url = "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz"; | ||
11728 | sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02"; | ||
11729 | }; | ||
11730 | } | ||
11731 | |||
11732 | { | ||
11733 | name = "unique_filename___unique_filename_1.1.1.tgz"; | ||
11734 | path = fetchurl { | ||
11735 | name = "unique_filename___unique_filename_1.1.1.tgz"; | ||
11736 | url = "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz"; | ||
11737 | sha1 = "1d69769369ada0583103a1e6ae87681b56573230"; | ||
11738 | }; | ||
11739 | } | ||
11740 | |||
11741 | { | ||
11742 | name = "unique_slug___unique_slug_2.0.1.tgz"; | ||
11743 | path = fetchurl { | ||
11744 | name = "unique_slug___unique_slug_2.0.1.tgz"; | ||
11745 | url = "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.1.tgz"; | ||
11746 | sha1 = "5e9edc6d1ce8fb264db18a507ef9bd8544451ca6"; | ||
11747 | }; | ||
11748 | } | ||
11749 | |||
11750 | { | ||
11751 | name = "universalify___universalify_0.1.2.tgz"; | ||
11752 | path = fetchurl { | ||
11753 | name = "universalify___universalify_0.1.2.tgz"; | ||
11754 | url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz"; | ||
11755 | sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66"; | ||
11756 | }; | ||
11757 | } | ||
11758 | |||
11759 | { | ||
11760 | name = "unpipe___unpipe_1.0.0.tgz"; | ||
11761 | path = fetchurl { | ||
11762 | name = "unpipe___unpipe_1.0.0.tgz"; | ||
11763 | url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz"; | ||
11764 | sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; | ||
11765 | }; | ||
11766 | } | ||
11767 | |||
11768 | { | ||
11769 | name = "unquote___unquote_1.1.1.tgz"; | ||
11770 | path = fetchurl { | ||
11771 | name = "unquote___unquote_1.1.1.tgz"; | ||
11772 | url = "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz"; | ||
11773 | sha1 = "8fded7324ec6e88a0ff8b905e7c098cdc086d544"; | ||
11774 | }; | ||
11775 | } | ||
11776 | |||
11777 | { | ||
11778 | name = "unset_value___unset_value_1.0.0.tgz"; | ||
11779 | path = fetchurl { | ||
11780 | name = "unset_value___unset_value_1.0.0.tgz"; | ||
11781 | url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz"; | ||
11782 | sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; | ||
11783 | }; | ||
11784 | } | ||
11785 | |||
11786 | { | ||
11787 | name = "upath___upath_1.1.2.tgz"; | ||
11788 | path = fetchurl { | ||
11789 | name = "upath___upath_1.1.2.tgz"; | ||
11790 | url = "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz"; | ||
11791 | sha1 = "3db658600edaeeccbe6db5e684d67ee8c2acd068"; | ||
11792 | }; | ||
11793 | } | ||
11794 | |||
11795 | { | ||
11796 | name = "uri_js___uri_js_4.2.2.tgz"; | ||
11797 | path = fetchurl { | ||
11798 | name = "uri_js___uri_js_4.2.2.tgz"; | ||
11799 | url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; | ||
11800 | sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0"; | ||
11801 | }; | ||
11802 | } | ||
11803 | |||
11804 | { | ||
11805 | name = "urix___urix_0.1.0.tgz"; | ||
11806 | path = fetchurl { | ||
11807 | name = "urix___urix_0.1.0.tgz"; | ||
11808 | url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz"; | ||
11809 | sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; | ||
11810 | }; | ||
11811 | } | ||
11812 | |||
11813 | { | ||
11814 | name = "url_parse___url_parse_1.4.4.tgz"; | ||
11815 | path = fetchurl { | ||
11816 | name = "url_parse___url_parse_1.4.4.tgz"; | ||
11817 | url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.4.tgz"; | ||
11818 | sha1 = "cac1556e95faa0303691fec5cf9d5a1bc34648f8"; | ||
11819 | }; | ||
11820 | } | ||
11821 | |||
11822 | { | ||
11823 | name = "url___url_0.11.0.tgz"; | ||
11824 | path = fetchurl { | ||
11825 | name = "url___url_0.11.0.tgz"; | ||
11826 | url = "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz"; | ||
11827 | sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; | ||
11828 | }; | ||
11829 | } | ||
11830 | |||
11831 | { | ||
11832 | name = "use___use_3.1.1.tgz"; | ||
11833 | path = fetchurl { | ||
11834 | name = "use___use_3.1.1.tgz"; | ||
11835 | url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz"; | ||
11836 | sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f"; | ||
11837 | }; | ||
11838 | } | ||
11839 | |||
11840 | { | ||
11841 | name = "user_home___user_home_2.0.0.tgz"; | ||
11842 | path = fetchurl { | ||
11843 | name = "user_home___user_home_2.0.0.tgz"; | ||
11844 | url = "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz"; | ||
11845 | sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"; | ||
11846 | }; | ||
11847 | } | ||
11848 | |||
11849 | { | ||
11850 | name = "util_deprecate___util_deprecate_1.0.2.tgz"; | ||
11851 | path = fetchurl { | ||
11852 | name = "util_deprecate___util_deprecate_1.0.2.tgz"; | ||
11853 | url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; | ||
11854 | sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; | ||
11855 | }; | ||
11856 | } | ||
11857 | |||
11858 | { | ||
11859 | name = "util.promisify___util.promisify_1.0.0.tgz"; | ||
11860 | path = fetchurl { | ||
11861 | name = "util.promisify___util.promisify_1.0.0.tgz"; | ||
11862 | url = "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz"; | ||
11863 | sha1 = "440f7165a459c9a16dc145eb8e72f35687097030"; | ||
11864 | }; | ||
11865 | } | ||
11866 | |||
11867 | { | ||
11868 | name = "util___util_0.10.3.tgz"; | ||
11869 | path = fetchurl { | ||
11870 | name = "util___util_0.10.3.tgz"; | ||
11871 | url = "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz"; | ||
11872 | sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; | ||
11873 | }; | ||
11874 | } | ||
11875 | |||
11876 | { | ||
11877 | name = "util___util_0.10.4.tgz"; | ||
11878 | path = fetchurl { | ||
11879 | name = "util___util_0.10.4.tgz"; | ||
11880 | url = "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz"; | ||
11881 | sha1 = "3aa0125bfe668a4672de58857d3ace27ecb76901"; | ||
11882 | }; | ||
11883 | } | ||
11884 | |||
11885 | { | ||
11886 | name = "utils_merge___utils_merge_1.0.1.tgz"; | ||
11887 | path = fetchurl { | ||
11888 | name = "utils_merge___utils_merge_1.0.1.tgz"; | ||
11889 | url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz"; | ||
11890 | sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; | ||
11891 | }; | ||
11892 | } | ||
11893 | |||
11894 | { | ||
11895 | name = "uuid___uuid_3.3.2.tgz"; | ||
11896 | path = fetchurl { | ||
11897 | name = "uuid___uuid_3.3.2.tgz"; | ||
11898 | url = "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz"; | ||
11899 | sha1 = "1b4af4955eb3077c501c23872fc6513811587131"; | ||
11900 | }; | ||
11901 | } | ||
11902 | |||
11903 | { | ||
11904 | name = "v8_compile_cache___v8_compile_cache_2.0.2.tgz"; | ||
11905 | path = fetchurl { | ||
11906 | name = "v8_compile_cache___v8_compile_cache_2.0.2.tgz"; | ||
11907 | url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz"; | ||
11908 | sha1 = "a428b28bb26790734c4fc8bc9fa106fccebf6a6c"; | ||
11909 | }; | ||
11910 | } | ||
11911 | |||
11912 | { | ||
11913 | name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; | ||
11914 | path = fetchurl { | ||
11915 | name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; | ||
11916 | url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; | ||
11917 | sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"; | ||
11918 | }; | ||
11919 | } | ||
11920 | |||
11921 | { | ||
11922 | name = "value_equal___value_equal_0.4.0.tgz"; | ||
11923 | path = fetchurl { | ||
11924 | name = "value_equal___value_equal_0.4.0.tgz"; | ||
11925 | url = "https://registry.yarnpkg.com/value-equal/-/value-equal-0.4.0.tgz"; | ||
11926 | sha1 = "c5bdd2f54ee093c04839d71ce2e4758a6890abc7"; | ||
11927 | }; | ||
11928 | } | ||
11929 | |||
11930 | { | ||
11931 | name = "vary___vary_1.1.2.tgz"; | ||
11932 | path = fetchurl { | ||
11933 | name = "vary___vary_1.1.2.tgz"; | ||
11934 | url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz"; | ||
11935 | sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; | ||
11936 | }; | ||
11937 | } | ||
11938 | |||
11939 | { | ||
11940 | name = "vendors___vendors_1.0.2.tgz"; | ||
11941 | path = fetchurl { | ||
11942 | name = "vendors___vendors_1.0.2.tgz"; | ||
11943 | url = "https://registry.yarnpkg.com/vendors/-/vendors-1.0.2.tgz"; | ||
11944 | sha1 = "7fcb5eef9f5623b156bcea89ec37d63676f21801"; | ||
11945 | }; | ||
11946 | } | ||
11947 | |||
11948 | { | ||
11949 | name = "verror___verror_1.10.0.tgz"; | ||
11950 | path = fetchurl { | ||
11951 | name = "verror___verror_1.10.0.tgz"; | ||
11952 | url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz"; | ||
11953 | sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; | ||
11954 | }; | ||
11955 | } | ||
11956 | |||
11957 | { | ||
11958 | name = "vm_browserify___vm_browserify_0.0.4.tgz"; | ||
11959 | path = fetchurl { | ||
11960 | name = "vm_browserify___vm_browserify_0.0.4.tgz"; | ||
11961 | url = "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz"; | ||
11962 | sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"; | ||
11963 | }; | ||
11964 | } | ||
11965 | |||
11966 | { | ||
11967 | name = "w3c_hr_time___w3c_hr_time_1.0.1.tgz"; | ||
11968 | path = fetchurl { | ||
11969 | name = "w3c_hr_time___w3c_hr_time_1.0.1.tgz"; | ||
11970 | url = "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz"; | ||
11971 | sha1 = "82ac2bff63d950ea9e3189a58a65625fedf19045"; | ||
11972 | }; | ||
11973 | } | ||
11974 | |||
11975 | { | ||
11976 | name = "walker___walker_1.0.7.tgz"; | ||
11977 | path = fetchurl { | ||
11978 | name = "walker___walker_1.0.7.tgz"; | ||
11979 | url = "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz"; | ||
11980 | sha1 = "2f7f9b8fd10d677262b18a884e28d19618e028fb"; | ||
11981 | }; | ||
11982 | } | ||
11983 | |||
11984 | { | ||
11985 | name = "warning___warning_3.0.0.tgz"; | ||
11986 | path = fetchurl { | ||
11987 | name = "warning___warning_3.0.0.tgz"; | ||
11988 | url = "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz"; | ||
11989 | sha1 = "32e5377cb572de4ab04753bdf8821c01ed605b7c"; | ||
11990 | }; | ||
11991 | } | ||
11992 | |||
11993 | { | ||
11994 | name = "warning___warning_4.0.2.tgz"; | ||
11995 | path = fetchurl { | ||
11996 | name = "warning___warning_4.0.2.tgz"; | ||
11997 | url = "https://registry.yarnpkg.com/warning/-/warning-4.0.2.tgz"; | ||
11998 | sha1 = "aa6876480872116fa3e11d434b0d0d8d91e44607"; | ||
11999 | }; | ||
12000 | } | ||
12001 | |||
12002 | { | ||
12003 | name = "watchpack___watchpack_1.6.0.tgz"; | ||
12004 | path = fetchurl { | ||
12005 | name = "watchpack___watchpack_1.6.0.tgz"; | ||
12006 | url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz"; | ||
12007 | sha1 = "4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"; | ||
12008 | }; | ||
12009 | } | ||
12010 | |||
12011 | { | ||
12012 | name = "wbuf___wbuf_1.7.3.tgz"; | ||
12013 | path = fetchurl { | ||
12014 | name = "wbuf___wbuf_1.7.3.tgz"; | ||
12015 | url = "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz"; | ||
12016 | sha1 = "c1d8d149316d3ea852848895cb6a0bfe887b87df"; | ||
12017 | }; | ||
12018 | } | ||
12019 | |||
12020 | { | ||
12021 | name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; | ||
12022 | path = fetchurl { | ||
12023 | name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; | ||
12024 | url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; | ||
12025 | sha1 = "a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"; | ||
12026 | }; | ||
12027 | } | ||
12028 | |||
12029 | { | ||
12030 | name = "webpack_assets_manifest___webpack_assets_manifest_3.1.1.tgz"; | ||
12031 | path = fetchurl { | ||
12032 | name = "webpack_assets_manifest___webpack_assets_manifest_3.1.1.tgz"; | ||
12033 | url = "https://registry.yarnpkg.com/webpack-assets-manifest/-/webpack-assets-manifest-3.1.1.tgz"; | ||
12034 | sha1 = "39bbc3bf2ee57fcd8ba07cda51c9ba4a3c6ae1de"; | ||
12035 | }; | ||
12036 | } | ||
12037 | |||
12038 | { | ||
12039 | name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.3.2.tgz"; | ||
12040 | path = fetchurl { | ||
12041 | name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.3.2.tgz"; | ||
12042 | url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.3.2.tgz"; | ||
12043 | sha1 = "3da733a900f515914e729fcebcd4c40dde71fc6f"; | ||
12044 | }; | ||
12045 | } | ||
12046 | |||
12047 | { | ||
12048 | name = "webpack_cli___webpack_cli_3.3.4.tgz"; | ||
12049 | path = fetchurl { | ||
12050 | name = "webpack_cli___webpack_cli_3.3.4.tgz"; | ||
12051 | url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.4.tgz"; | ||
12052 | sha1 = "de27e281c48a897b8c219cb093e261d5f6afe44a"; | ||
12053 | }; | ||
12054 | } | ||
12055 | |||
12056 | { | ||
12057 | name = "webpack_dev_middleware___webpack_dev_middleware_3.7.0.tgz"; | ||
12058 | path = fetchurl { | ||
12059 | name = "webpack_dev_middleware___webpack_dev_middleware_3.7.0.tgz"; | ||
12060 | url = "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz"; | ||
12061 | sha1 = "ef751d25f4e9a5c8a35da600c5fda3582b5c6cff"; | ||
12062 | }; | ||
12063 | } | ||
12064 | |||
12065 | { | ||
12066 | name = "webpack_dev_server___webpack_dev_server_3.5.1.tgz"; | ||
12067 | path = fetchurl { | ||
12068 | name = "webpack_dev_server___webpack_dev_server_3.5.1.tgz"; | ||
12069 | url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.5.1.tgz"; | ||
12070 | sha1 = "4290ac709bb989dc7382c912899f79fd5677dabf"; | ||
12071 | }; | ||
12072 | } | ||
12073 | |||
12074 | { | ||
12075 | name = "webpack_log___webpack_log_2.0.0.tgz"; | ||
12076 | path = fetchurl { | ||
12077 | name = "webpack_log___webpack_log_2.0.0.tgz"; | ||
12078 | url = "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz"; | ||
12079 | sha1 = "5b7928e0637593f119d32f6227c1e0ac31e1b47f"; | ||
12080 | }; | ||
12081 | } | ||
12082 | |||
12083 | { | ||
12084 | name = "webpack_merge___webpack_merge_4.2.1.tgz"; | ||
12085 | path = fetchurl { | ||
12086 | name = "webpack_merge___webpack_merge_4.2.1.tgz"; | ||
12087 | url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.1.tgz"; | ||
12088 | sha1 = "5e923cf802ea2ace4fd5af1d3247368a633489b4"; | ||
12089 | }; | ||
12090 | } | ||
12091 | |||
12092 | { | ||
12093 | name = "webpack_sources___webpack_sources_1.3.0.tgz"; | ||
12094 | path = fetchurl { | ||
12095 | name = "webpack_sources___webpack_sources_1.3.0.tgz"; | ||
12096 | url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz"; | ||
12097 | sha1 = "2a28dcb9f1f45fe960d8f1493252b5ee6530fa85"; | ||
12098 | }; | ||
12099 | } | ||
12100 | |||
12101 | { | ||
12102 | name = "webpack___webpack_4.34.0.tgz"; | ||
12103 | path = fetchurl { | ||
12104 | name = "webpack___webpack_4.34.0.tgz"; | ||
12105 | url = "https://registry.yarnpkg.com/webpack/-/webpack-4.34.0.tgz"; | ||
12106 | sha1 = "a4c30129482f7b4ece4c0842002dedf2b56fab58"; | ||
12107 | }; | ||
12108 | } | ||
12109 | |||
12110 | { | ||
12111 | name = "websocket_driver___websocket_driver_0.7.0.tgz"; | ||
12112 | path = fetchurl { | ||
12113 | name = "websocket_driver___websocket_driver_0.7.0.tgz"; | ||
12114 | url = "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz"; | ||
12115 | sha1 = "0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb"; | ||
12116 | }; | ||
12117 | } | ||
12118 | |||
12119 | { | ||
12120 | name = "websocket_extensions___websocket_extensions_0.1.3.tgz"; | ||
12121 | path = fetchurl { | ||
12122 | name = "websocket_extensions___websocket_extensions_0.1.3.tgz"; | ||
12123 | url = "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz"; | ||
12124 | sha1 = "5d2ff22977003ec687a4b87073dfbbac146ccf29"; | ||
12125 | }; | ||
12126 | } | ||
12127 | |||
12128 | { | ||
12129 | name = "websocket.js___websocket.js_0.1.12.tgz"; | ||
12130 | path = fetchurl { | ||
12131 | name = "websocket.js___websocket.js_0.1.12.tgz"; | ||
12132 | url = "https://registry.yarnpkg.com/websocket.js/-/websocket.js-0.1.12.tgz"; | ||
12133 | sha1 = "46c980787c57ebc8edcf44a0263e5d639367b85b"; | ||
12134 | }; | ||
12135 | } | ||
12136 | |||
12137 | { | ||
12138 | name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; | ||
12139 | path = fetchurl { | ||
12140 | name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; | ||
12141 | url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"; | ||
12142 | sha1 = "5abacf777c32166a51d085d6b4f3e7d27113ddb0"; | ||
12143 | }; | ||
12144 | } | ||
12145 | |||
12146 | { | ||
12147 | name = "whatwg_fetch___whatwg_fetch_3.0.0.tgz"; | ||
12148 | path = fetchurl { | ||
12149 | name = "whatwg_fetch___whatwg_fetch_3.0.0.tgz"; | ||
12150 | url = "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz"; | ||
12151 | sha1 = "fc804e458cc460009b1a2b966bc8817d2578aefb"; | ||
12152 | }; | ||
12153 | } | ||
12154 | |||
12155 | { | ||
12156 | name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; | ||
12157 | path = fetchurl { | ||
12158 | name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; | ||
12159 | url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; | ||
12160 | sha1 = "3d4b1e0312d2079879f826aff18dbeeca5960fbf"; | ||
12161 | }; | ||
12162 | } | ||
12163 | |||
12164 | { | ||
12165 | name = "whatwg_url___whatwg_url_6.5.0.tgz"; | ||
12166 | path = fetchurl { | ||
12167 | name = "whatwg_url___whatwg_url_6.5.0.tgz"; | ||
12168 | url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz"; | ||
12169 | sha1 = "f2df02bff176fd65070df74ad5ccbb5a199965a8"; | ||
12170 | }; | ||
12171 | } | ||
12172 | |||
12173 | { | ||
12174 | name = "whatwg_url___whatwg_url_7.0.0.tgz"; | ||
12175 | path = fetchurl { | ||
12176 | name = "whatwg_url___whatwg_url_7.0.0.tgz"; | ||
12177 | url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz"; | ||
12178 | sha1 = "fde926fa54a599f3adf82dff25a9f7be02dc6edd"; | ||
12179 | }; | ||
12180 | } | ||
12181 | |||
12182 | { | ||
12183 | name = "which_module___which_module_2.0.0.tgz"; | ||
12184 | path = fetchurl { | ||
12185 | name = "which_module___which_module_2.0.0.tgz"; | ||
12186 | url = "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz"; | ||
12187 | sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; | ||
12188 | }; | ||
12189 | } | ||
12190 | |||
12191 | { | ||
12192 | name = "which___which_1.3.1.tgz"; | ||
12193 | path = fetchurl { | ||
12194 | name = "which___which_1.3.1.tgz"; | ||
12195 | url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz"; | ||
12196 | sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a"; | ||
12197 | }; | ||
12198 | } | ||
12199 | |||
12200 | { | ||
12201 | name = "wide_align___wide_align_1.1.3.tgz"; | ||
12202 | path = fetchurl { | ||
12203 | name = "wide_align___wide_align_1.1.3.tgz"; | ||
12204 | url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz"; | ||
12205 | sha1 = "ae074e6bdc0c14a431e804e624549c633b000457"; | ||
12206 | }; | ||
12207 | } | ||
12208 | |||
12209 | { | ||
12210 | name = "wordwrap___wordwrap_0.0.3.tgz"; | ||
12211 | path = fetchurl { | ||
12212 | name = "wordwrap___wordwrap_0.0.3.tgz"; | ||
12213 | url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz"; | ||
12214 | sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107"; | ||
12215 | }; | ||
12216 | } | ||
12217 | |||
12218 | { | ||
12219 | name = "wordwrap___wordwrap_1.0.0.tgz"; | ||
12220 | path = fetchurl { | ||
12221 | name = "wordwrap___wordwrap_1.0.0.tgz"; | ||
12222 | url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz"; | ||
12223 | sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; | ||
12224 | }; | ||
12225 | } | ||
12226 | |||
12227 | { | ||
12228 | name = "worker_farm___worker_farm_1.7.0.tgz"; | ||
12229 | path = fetchurl { | ||
12230 | name = "worker_farm___worker_farm_1.7.0.tgz"; | ||
12231 | url = "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz"; | ||
12232 | sha1 = "26a94c5391bbca926152002f69b84a4bf772e5a8"; | ||
12233 | }; | ||
12234 | } | ||
12235 | |||
12236 | { | ||
12237 | name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; | ||
12238 | path = fetchurl { | ||
12239 | name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; | ||
12240 | url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; | ||
12241 | sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; | ||
12242 | }; | ||
12243 | } | ||
12244 | |||
12245 | { | ||
12246 | name = "wrappy___wrappy_1.0.2.tgz"; | ||
12247 | path = fetchurl { | ||
12248 | name = "wrappy___wrappy_1.0.2.tgz"; | ||
12249 | url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; | ||
12250 | sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; | ||
12251 | }; | ||
12252 | } | ||
12253 | |||
12254 | { | ||
12255 | name = "write_file_atomic___write_file_atomic_2.4.1.tgz"; | ||
12256 | path = fetchurl { | ||
12257 | name = "write_file_atomic___write_file_atomic_2.4.1.tgz"; | ||
12258 | url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz"; | ||
12259 | sha1 = "d0b05463c188ae804396fd5ab2a370062af87529"; | ||
12260 | }; | ||
12261 | } | ||
12262 | |||
12263 | { | ||
12264 | name = "write___write_0.2.1.tgz"; | ||
12265 | path = fetchurl { | ||
12266 | name = "write___write_0.2.1.tgz"; | ||
12267 | url = "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz"; | ||
12268 | sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757"; | ||
12269 | }; | ||
12270 | } | ||
12271 | |||
12272 | { | ||
12273 | name = "ws___ws_5.2.2.tgz"; | ||
12274 | path = fetchurl { | ||
12275 | name = "ws___ws_5.2.2.tgz"; | ||
12276 | url = "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz"; | ||
12277 | sha1 = "dffef14866b8e8dc9133582514d1befaf96e980f"; | ||
12278 | }; | ||
12279 | } | ||
12280 | |||
12281 | { | ||
12282 | name = "ws___ws_6.1.2.tgz"; | ||
12283 | path = fetchurl { | ||
12284 | name = "ws___ws_6.1.2.tgz"; | ||
12285 | url = "https://registry.yarnpkg.com/ws/-/ws-6.1.2.tgz"; | ||
12286 | sha1 = "3cc7462e98792f0ac679424148903ded3b9c3ad8"; | ||
12287 | }; | ||
12288 | } | ||
12289 | |||
12290 | { | ||
12291 | name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; | ||
12292 | path = fetchurl { | ||
12293 | name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; | ||
12294 | url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz"; | ||
12295 | sha1 = "6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"; | ||
12296 | }; | ||
12297 | } | ||
12298 | |||
12299 | { | ||
12300 | name = "xtend___xtend_4.0.1.tgz"; | ||
12301 | path = fetchurl { | ||
12302 | name = "xtend___xtend_4.0.1.tgz"; | ||
12303 | url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz"; | ||
12304 | sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; | ||
12305 | }; | ||
12306 | } | ||
12307 | |||
12308 | { | ||
12309 | name = "y18n___y18n_4.0.0.tgz"; | ||
12310 | path = fetchurl { | ||
12311 | name = "y18n___y18n_4.0.0.tgz"; | ||
12312 | url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz"; | ||
12313 | sha1 = "95ef94f85ecc81d007c264e190a120f0a3c8566b"; | ||
12314 | }; | ||
12315 | } | ||
12316 | |||
12317 | { | ||
12318 | name = "yallist___yallist_3.0.3.tgz"; | ||
12319 | path = fetchurl { | ||
12320 | name = "yallist___yallist_3.0.3.tgz"; | ||
12321 | url = "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz"; | ||
12322 | sha1 = "b4b049e314be545e3ce802236d6cd22cd91c3de9"; | ||
12323 | }; | ||
12324 | } | ||
12325 | |||
12326 | { | ||
12327 | name = "yargs_parser___yargs_parser_11.1.1.tgz"; | ||
12328 | path = fetchurl { | ||
12329 | name = "yargs_parser___yargs_parser_11.1.1.tgz"; | ||
12330 | url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz"; | ||
12331 | sha1 = "879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"; | ||
12332 | }; | ||
12333 | } | ||
12334 | |||
12335 | { | ||
12336 | name = "yargs___yargs_12.0.5.tgz"; | ||
12337 | path = fetchurl { | ||
12338 | name = "yargs___yargs_12.0.5.tgz"; | ||
12339 | url = "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz"; | ||
12340 | sha1 = "05f5997b609647b64f66b81e3b4b10a368e7ad13"; | ||
12341 | }; | ||
12342 | } | ||
12343 | ]; | ||
12344 | } | ||
diff --git a/pkgs/webapps/mediagoblin/bower-packages.nix b/pkgs/webapps/mediagoblin/bower-packages.nix deleted file mode 100644 index 03af849..0000000 --- a/pkgs/webapps/mediagoblin/bower-packages.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | # Generated by bower2nix v3.2.0 (https://github.com/rvl/bower2nix) | ||
2 | { fetchbower, buildEnv }: | ||
3 | buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [ | ||
4 | (fetchbower "jquery" "2.1.4" "~2.1.3" "1ywrpk2xsr6ghkm3j9gfnl9r3jn6xarfamp99b0bcm57kq9fm2k0") | ||
5 | (fetchbower "video.js" "4.11.4" "~4.11.4" "05prdvyk0rxbkh7sdd0d9ns5l5crwvc68wzkyqmrdjw367pcv8sn") | ||
6 | (fetchbower "leaflet" "0.7.7" "~0.7.3" "0jim285bljmxxngpm3yx6bnnd10n2whwkgmmhzpcd1rdksnr5nca") | ||
7 | (fetchbower "tinymce" "4.1.10" "~4.1.7" "16jyvdb9bq8gjwhs69q8p88vdixalajrz81nsmbrzzxhkih57dyx") | ||
8 | ]; } | ||
diff --git a/pkgs/webapps/mediagoblin/default.nix b/pkgs/webapps/mediagoblin/default.nix deleted file mode 100644 index 22cb292..0000000 --- a/pkgs/webapps/mediagoblin/default.nix +++ /dev/null | |||
@@ -1,210 +0,0 @@ | |||
1 | { makeWrapper, stdenv, writeScript, fetchurl, buildBowerComponents, mylibs, which, python36, gst_all_1, automake, autoconf, nodejs, nodePackages, lib, callPackage, fetchgit }: | ||
2 | let | ||
3 | overridePython = let | ||
4 | packageOverrides = self: super: { | ||
5 | pybcrypt = super.buildPythonPackage rec { | ||
6 | pname = "pybcrypt"; | ||
7 | version = "0.4"; | ||
8 | |||
9 | src = self.fetchPypi { | ||
10 | inherit pname version; | ||
11 | sha256 = "5fa13bce551468350d66c4883694850570f3da28d6866bb638ba44fe5eabda78"; | ||
12 | }; | ||
13 | }; | ||
14 | celery = super.celery.overridePythonAttrs(old: rec { | ||
15 | version = "3.1.26.post2"; | ||
16 | src = self.fetchPypi { | ||
17 | inherit version; | ||
18 | inherit (old) pname; | ||
19 | sha256 = "5493e172ae817b81ba7d09443ada114886765a8ce02f16a56e6fac68d953a9b2"; | ||
20 | }; | ||
21 | patches = []; | ||
22 | doCheck = false; | ||
23 | }); | ||
24 | billiard = super.billiard.overridePythonAttrs(old: rec { | ||
25 | version = "3.3.0.23"; | ||
26 | src = self.fetchPypi { | ||
27 | inherit version; | ||
28 | inherit (old) pname; | ||
29 | sha256 = "02wxsc6bhqvzh8j6w758kvgqbnj14l796mvmrcms8fgfamd2lak9"; | ||
30 | }; | ||
31 | doCheck = false; | ||
32 | doInstallCheck = false; | ||
33 | }); | ||
34 | amqp = super.amqp.overridePythonAttrs(old: rec { | ||
35 | version = "1.4.9"; | ||
36 | src = self.fetchPypi { | ||
37 | inherit version; | ||
38 | inherit (old) pname; | ||
39 | sha256 = "2dea4d16d073c902c3b89d9b96620fb6729ac0f7a923bbc777cb4ad827c0c61a"; | ||
40 | }; | ||
41 | doCheck = false; | ||
42 | }); | ||
43 | kombu = super.kombu.overridePythonAttrs(old: rec { | ||
44 | version = "3.0.37"; | ||
45 | src = self.fetchPypi { | ||
46 | inherit version; | ||
47 | inherit (old) pname; | ||
48 | sha256 = "e064a00c66b4d1058cd2b0523fb8d98c82c18450244177b6c0f7913016642650"; | ||
49 | }; | ||
50 | propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.anyjson ]; | ||
51 | doCheck = false; | ||
52 | }); | ||
53 | markdown = super.markdown.overridePythonAttrs(old: rec { | ||
54 | version = "3.1.1"; | ||
55 | src = self.fetchPypi { | ||
56 | inherit version; | ||
57 | inherit (old) pname; | ||
58 | sha256 = "2e50876bcdd74517e7b71f3e7a76102050edec255b3983403f1a63e7c8a41e7a"; | ||
59 | }; | ||
60 | }); | ||
61 | sqlalchemy = super.sqlalchemy.overridePythonAttrs(old: rec { | ||
62 | version = "1.1.18"; | ||
63 | src = self.fetchPypi { | ||
64 | inherit version; | ||
65 | inherit (old) pname; | ||
66 | sha256 = "8b0ec71af9291191ba83a91c03d157b19ab3e7119e27da97932a4773a3f664a9"; | ||
67 | }; | ||
68 | doCheck = false; | ||
69 | }); | ||
70 | tempita_5_3_dev = super.buildPythonPackage (mylibs.fetchedGithub ./tempita.json // rec { | ||
71 | buildInputs = with self; [ nose ]; | ||
72 | disabled = false; | ||
73 | }); | ||
74 | sqlalchemy_migrate = super.sqlalchemy_migrate.overridePythonAttrs(old: rec { | ||
75 | propagatedBuildInputs = with self; [ pbr tempita_5_3_dev decorator sqlalchemy six sqlparse ]; | ||
76 | }); | ||
77 | pasteScript = super.pasteScript.overridePythonAttrs(old: rec { | ||
78 | version = "2.0.2"; | ||
79 | name = "PasteScript-${version}"; | ||
80 | src = fetchurl { | ||
81 | url = "mirror://pypi/P/PasteScript/${name}.tar.gz"; | ||
82 | sha256 = "1h3nnhn45kf4pbcv669ik4faw04j58k8vbj1hwrc532k0nc28gy0"; | ||
83 | }; | ||
84 | propagatedBuildInputs = with self; [ six paste PasteDeploy ]; | ||
85 | }); | ||
86 | werkzeug = super.werkzeug.overridePythonAttrs(old: rec { | ||
87 | version = "0.16.1"; | ||
88 | src = self.fetchPypi { | ||
89 | inherit version; | ||
90 | inherit (old) pname; | ||
91 | sha256 = "b353856d37dec59d6511359f97f6a4b2468442e454bd1c98298ddce53cac1f04"; | ||
92 | }; | ||
93 | }); | ||
94 | }; | ||
95 | in | ||
96 | python36.override { inherit packageOverrides; }; | ||
97 | pythonEnv = python-pkgs: with python-pkgs; [ | ||
98 | waitress alembic dateutil wtforms pybcrypt | ||
99 | pytest pytest_xdist werkzeug celery | ||
100 | kombu jinja2 Babel webtest configobj markdown | ||
101 | sqlalchemy itsdangerous pytz sphinx six | ||
102 | oauthlib unidecode jsonschema PasteDeploy | ||
103 | requests PyLD exifread | ||
104 | typing pasteScript lxml | ||
105 | # For images plugin | ||
106 | pillow | ||
107 | # For video plugin | ||
108 | gst-python | ||
109 | # migrations | ||
110 | sqlalchemy_migrate | ||
111 | # authentication | ||
112 | ldap3 | ||
113 | redis | ||
114 | psycopg2 | ||
115 | ]; | ||
116 | python = overridePython.withPackages pythonEnv; | ||
117 | gmg = writeScript "gmg" '' | ||
118 | #!${python}/bin/python | ||
119 | __requires__ = 'mediagoblin' | ||
120 | import sys | ||
121 | from pkg_resources import load_entry_point | ||
122 | |||
123 | if __name__ == '__main__': | ||
124 | sys.exit( | ||
125 | load_entry_point('mediagoblin', 'console_scripts', 'gmg')() | ||
126 | ) | ||
127 | ''; | ||
128 | mediagoblinSrc = fetchgit { | ||
129 | name = "mediagoblin"; | ||
130 | url = "git://git.savannah.gnu.org/mediagoblin.git"; | ||
131 | rev = "cd465ebfec837a75a44c4ebd727dffe2fff6d850"; | ||
132 | sha256 = "1yz4i4i97z3rxl534a6psaybyjbyp5nnc52v3nvbpzc4pd2s69mx"; | ||
133 | fetchSubmodules = true; # important! | ||
134 | }; | ||
135 | bowerComponents = buildBowerComponents { | ||
136 | name = "mediagoblin-bower-components"; | ||
137 | generated = ./bower-packages.nix; | ||
138 | src = mediagoblinSrc; | ||
139 | }; | ||
140 | pluginNames = [ "basicsearch" ]; | ||
141 | allPlugins = lib.attrsets.genAttrs pluginNames | ||
142 | (name: callPackage (./plugins + "/${name}") {}); | ||
143 | toPassthru = pkg: { | ||
144 | inherit allPlugins; | ||
145 | withPlugins = withPlugins pkg; | ||
146 | }; | ||
147 | withPlugins = pkg: toPlugins: | ||
148 | let | ||
149 | plugins = toPlugins allPlugins; | ||
150 | toBuildPlugin = n: "ln -s ${n} mediagoblin/plugins/${n.pluginName}"; | ||
151 | newMediagoblin = pkg.overrideAttrs(old: { | ||
152 | postBuild = old.postBuild + "\n" + builtins.concatStringsSep "\n" (map toBuildPlugin plugins); | ||
153 | passthru = toPassthru newMediagoblin; | ||
154 | }); | ||
155 | in newMediagoblin; | ||
156 | package = stdenv.mkDerivation rec { | ||
157 | pname = "mediagoblin"; | ||
158 | name = "${pname}-${version}"; | ||
159 | version = "cd465eb-stable"; | ||
160 | src = mediagoblinSrc; | ||
161 | preConfigure = '' | ||
162 | # ./bootstrap.sh | ||
163 | aclocal -I m4 --install | ||
164 | autoreconf -fvi | ||
165 | # end | ||
166 | export HOME=$PWD | ||
167 | ''; | ||
168 | configureFlags = [ "--with-python3" "--without-virtualenv" ]; | ||
169 | postBuild = '' | ||
170 | cp -a ${bowerComponents}/bower_components/* extlib | ||
171 | chmod -R u+w extlib | ||
172 | make extlib | ||
173 | ''; | ||
174 | installPhase = let | ||
175 | libpaths = with gst_all_1; [ | ||
176 | python | ||
177 | gstreamer | ||
178 | gst-plugins-base | ||
179 | gst-libav | ||
180 | gst-plugins-good | ||
181 | gst-plugins-bad | ||
182 | gst-plugins-ugly | ||
183 | ]; | ||
184 | plugin_paths = builtins.concatStringsSep ":" (map (x: "${x}/lib") libpaths); | ||
185 | typelib_paths = with gst_all_1; "${gstreamer}/lib/girepository-1.0:${gst-plugins-base}/lib/girepository-1.0"; | ||
186 | in '' | ||
187 | sed -i "s/registry.has_key(current_theme_name)/current_theme_name in registry/" mediagoblin/tools/theme.py | ||
188 | sed -i -e "s@\[DEFAULT\]@[DEFAULT]\nhere = $out@" mediagoblin/config_spec.ini | ||
189 | sed -i -e "/from gi.repository import GstPbutils/s/^/gi.require_version('GstPbutils', '1.0')\n/" mediagoblin/media_types/video/transcoders.py | ||
190 | cp ${./ldap_fix.py} mediagoblin/plugins/ldap/tools.py | ||
191 | find . -name '*.pyc' -delete | ||
192 | find . -type f -exec sed -i "s|$PWD|$out|g" {} \; | ||
193 | python setup.py build | ||
194 | cp -a . $out | ||
195 | mkdir $out/bin | ||
196 | makeWrapper ${gmg} $out/bin/gmg --prefix PYTHONPATH : "$out:$PYTHONPATH" \ | ||
197 | --prefix GST_PLUGIN_SYSTEM_PATH : ${plugin_paths} \ | ||
198 | --prefix GI_TYPELIB_PATH : ${typelib_paths} | ||
199 | makeWrapper ${python}/bin/paster $out/bin/paster --prefix PYTHONPATH : "$out:$PYTHONPATH" \ | ||
200 | --prefix GST_PLUGIN_SYSTEM_PATH : ${plugin_paths} \ | ||
201 | --prefix GI_TYPELIB_PATH : ${typelib_paths} | ||
202 | makeWrapper ${python}/bin/celery $out/bin/celery --prefix PYTHONPATH : "$out:$PYTHONPATH" \ | ||
203 | --prefix GST_PLUGIN_SYSTEM_PATH : ${plugin_paths} \ | ||
204 | --prefix GI_TYPELIB_PATH : ${typelib_paths} | ||
205 | ''; | ||
206 | buildInputs = [ makeWrapper automake autoconf which nodePackages.bower nodejs python ]; | ||
207 | propagatedBuildInputs = with gst_all_1; [ python gst-libav gst-plugins-good gst-plugins-bad gst-plugins-ugly gstreamer ]; | ||
208 | passthru = toPassthru package; | ||
209 | }; | ||
210 | in package | ||
diff --git a/pkgs/webapps/mediagoblin/ldap_fix.py b/pkgs/webapps/mediagoblin/ldap_fix.py deleted file mode 100644 index 10cc375..0000000 --- a/pkgs/webapps/mediagoblin/ldap_fix.py +++ /dev/null | |||
@@ -1,93 +0,0 @@ | |||
1 | # GNU MediaGoblin -- federated, autonomous media hosting | ||
2 | # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. | ||
3 | # | ||
4 | # This program is free software: you can redistribute it and/or modify | ||
5 | # it under the terms of the GNU Affero General Public License as published by | ||
6 | # the Free Software Foundation, either version 3 of the License, or | ||
7 | # (at your option) any later version. | ||
8 | # | ||
9 | # This program is distributed in the hope that it will be useful, | ||
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | # GNU Affero General Public License for more details. | ||
13 | # | ||
14 | # You should have received a copy of the GNU Affero General Public License | ||
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | from ldap3 import Server, Connection, SUBTREE | ||
17 | from ldap3.core.exceptions import LDAPException | ||
18 | import logging | ||
19 | |||
20 | import six | ||
21 | |||
22 | from mediagoblin.tools import pluginapi | ||
23 | |||
24 | _log = logging.getLogger(__name__) | ||
25 | |||
26 | |||
27 | class LDAP(object): | ||
28 | def __init__(self): | ||
29 | self.ldap_settings = pluginapi.get_config('mediagoblin.plugins.ldap') | ||
30 | |||
31 | def _connect(self, server): | ||
32 | _log.info('Connecting to {0}.'.format(server['LDAP_SERVER_URI'])) | ||
33 | self.server = Server(server['LDAP_SERVER_URI']) | ||
34 | |||
35 | if 'LDAP_START_TLS' in server and server['LDAP_START_TLS'] == 'true': | ||
36 | _log.info('Initiating TLS') | ||
37 | self.server.start_tls() | ||
38 | |||
39 | def _manager_auth(self, settings, username, password): | ||
40 | conn = Connection(self.server, | ||
41 | settings['LDAP_BIND_DN'], | ||
42 | settings['LDAP_BIND_PW'], | ||
43 | auto_bind=True) | ||
44 | found = conn.search( | ||
45 | search_base=settings['LDAP_SEARCH_BASE'], | ||
46 | search_filter=settings['LDAP_SEARCH_FILTER'].format(username=username), | ||
47 | search_scope=SUBTREE, | ||
48 | attributes=[settings['EMAIL_SEARCH_FIELD']]) | ||
49 | if (not found) or len(conn.entries) > 1: | ||
50 | return False, None | ||
51 | |||
52 | user = conn.entries[0] | ||
53 | user_dn = user.entry_dn | ||
54 | try: | ||
55 | email = user.entry_attributes_as_dict[settings['EMAIL_SEARCH_FIELD']][0] | ||
56 | except KeyError: | ||
57 | email = None | ||
58 | |||
59 | Connection(self.server, user_dn, password, auto_bind=True) | ||
60 | |||
61 | return username, email | ||
62 | |||
63 | def _direct_auth(self, settings, username, password): | ||
64 | user_dn = settings['LDAP_USER_DN_TEMPLATE'].format(username=username) | ||
65 | conn = Connection(self.server, user_dn, password, auto_bind=True) | ||
66 | email_found = conn.search( | ||
67 | search_base=settings['LDAP_SEARCH_BASE'], | ||
68 | search_filter='uid={0}'.format(username), | ||
69 | search_scope=SUBTREE, | ||
70 | attributes=[settings['EMAIL_SEARCH_FIELD']]) | ||
71 | |||
72 | if email_found: | ||
73 | try: | ||
74 | email = conn.entries[0].entry_attributes_as_dict[settings['EMAIL_SEARCH_FIELD']][0] | ||
75 | except KeyError: | ||
76 | email = None | ||
77 | |||
78 | return username, email | ||
79 | |||
80 | def login(self, username, password): | ||
81 | for k, v in six.iteritems(self.ldap_settings): | ||
82 | try: | ||
83 | self._connect(v) | ||
84 | |||
85 | if 'LDAP_BIND_DN' in v: | ||
86 | return self._manager_auth(v, username, password) | ||
87 | else: | ||
88 | return self._direct_auth(v, username, password) | ||
89 | |||
90 | except LDAPException as e: | ||
91 | _log.info(e) | ||
92 | |||
93 | return False, None | ||
diff --git a/pkgs/webapps/mediagoblin/plugins/basicsearch/default.nix b/pkgs/webapps/mediagoblin/plugins/basicsearch/default.nix deleted file mode 100644 index 16be613..0000000 --- a/pkgs/webapps/mediagoblin/plugins/basicsearch/default.nix +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | { stdenv, fetchFromGitHub }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | name = "mediagoblin-plugin-basicsearch-${version}"; | ||
4 | version = "ba0a154-master"; | ||
5 | src = fetchFromGitHub { | ||
6 | owner = "ayleph"; | ||
7 | repo = "mediagoblin-basicsearch"; | ||
8 | rev = "ba0a1547bd24ebaf363227fe17644d38c6ce8a6b"; | ||
9 | sha256 = "0d4r7xkf4gxmgaxlb264l44xbanis77g49frwfhfzsflxmdwgncy"; | ||
10 | }; | ||
11 | phases = "unpackPhase installPhase"; | ||
12 | installPhase = '' | ||
13 | cp -R ./basicsearch $out | ||
14 | ''; | ||
15 | passthru = { | ||
16 | pluginName = "basicsearch"; | ||
17 | }; | ||
18 | } | ||
diff --git a/pkgs/webapps/mediagoblin/tempita.json b/pkgs/webapps/mediagoblin/tempita.json deleted file mode 100644 index 5371e17..0000000 --- a/pkgs/webapps/mediagoblin/tempita.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "47414a7-master", | ||
3 | "meta": { | ||
4 | "name": "tempita", | ||
5 | "url": "https://github.com/gjhiggins/tempita", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "gjhiggins", | ||
10 | "repo": "tempita", | ||
11 | "rev": "47414a7c6e46a9a9afe78f0bce2ea299fa84d10d", | ||
12 | "sha256": "0f33jjjs5rvp7ar2j6ggyfykcrsrn04jaqcq71qfvycf6b7nw3rn", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/apporder.nix b/pkgs/webapps/nextcloud/apps/apporder.nix deleted file mode 100644 index 29fd6e2..0000000 --- a/pkgs/webapps/nextcloud/apps/apporder.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "apporder"; | ||
5 | version = "0.9.0"; | ||
6 | url = "https://github.com/juliushaertl/apporder/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "1add4i892n4bpmpxwrsr7x99fjyj5rk6maw04iwhviqqqr28fsw6"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/audioplayer.nix b/pkgs/webapps/nextcloud/apps/audioplayer.nix deleted file mode 100644 index a49776f..0000000 --- a/pkgs/webapps/nextcloud/apps/audioplayer.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 17 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "audioplayer"; | ||
5 | version = "2.10.0"; | ||
6 | url = "https://github.com/Rello/${appName}/releases/download/${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "122wc05b0m8s5ksdhsiws98aqph894i7cffjkhfhq66c40a728s3"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/bookmarks.nix b/pkgs/webapps/nextcloud/apps/bookmarks.nix deleted file mode 100644 index 1065c34..0000000 --- a/pkgs/webapps/nextcloud/apps/bookmarks.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 17 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "bookmarks"; | ||
5 | version = "3.0.10"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/v${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "0y12iqcc6yp25cisg7mg40ddx72531zdvsp2gcl37qi8vqf162ji"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/calendar.nix b/pkgs/webapps/nextcloud/apps/calendar.nix deleted file mode 100644 index bc3ccea..0000000 --- a/pkgs/webapps/nextcloud/apps/calendar.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 17 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "calendar"; | ||
5 | version = "2.0.3"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "17pjsa657p9n1kslqkfcxd6n4ssh2yd4f5l5ww79mixfs34idbl9"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/carnet.nix b/pkgs/webapps/nextcloud/apps/carnet.nix deleted file mode 100644 index 879ab17..0000000 --- a/pkgs/webapps/nextcloud/apps/carnet.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 13 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "carnet"; | ||
5 | version = "0.20.0"; | ||
6 | url = "https://github.com/PhieF/CarnetNextcloud/releases/download/v${version}/${appName}-nc-v${version}.tar.gz"; | ||
7 | sha256 = "1hbvs88vj830xalyq8fv8xlnf7livsj1xmnjl4xgla803ch4aym8"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/circles.nix b/pkgs/webapps/nextcloud/apps/circles.nix deleted file mode 100644 index 64a4f2f..0000000 --- a/pkgs/webapps/nextcloud/apps/circles.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 18 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "circles"; | ||
5 | version = "0.18.9"; | ||
6 | url = "https://github.com/nextcloud/circles/releases/download/v${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "1a58zrjg4cc0igq14s5zfc5zva83mahmfr0mxvhvnasw7rwkpyzr"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/contacts.nix b/pkgs/webapps/nextcloud/apps/contacts.nix deleted file mode 100644 index d80f0b5..0000000 --- a/pkgs/webapps/nextcloud/apps/contacts.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 17 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "contacts"; | ||
5 | version = "3.3.0"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "187avlksg4k7ci3jz4djfq8zfyq5jpvhbw2dzlp76wlppm1al4m0"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/cookbook.nix b/pkgs/webapps/nextcloud/apps/cookbook.nix deleted file mode 100644 index 63cac0d..0000000 --- a/pkgs/webapps/nextcloud/apps/cookbook.nix +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 14 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "cookbook"; | ||
5 | version = "0.6.5"; | ||
6 | url = "https://github.com/mrzapp/nextcloud-cookbook/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "068dxdxy9ix37970mn348blkdrrnkzad26zgyx4f5s19wm439p5j"; | ||
8 | installPhase = '' | ||
9 | sed -i -e "s/application..ld..json/application[^\"|\\\\']*ld[^\"|\\\\']*json/" lib/Service/RecipeService.php | ||
10 | mkdir -p $out | ||
11 | cp -R . $out/ | ||
12 | ''; | ||
13 | } | ||
14 | |||
diff --git a/pkgs/webapps/nextcloud/apps/deck.nix b/pkgs/webapps/nextcloud/apps/deck.nix deleted file mode 100644 index ec693c6..0000000 --- a/pkgs/webapps/nextcloud/apps/deck.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion == 18; | ||
3 | buildApp rec { | ||
4 | appName = "deck"; | ||
5 | version = "1.0.0"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "13r9vd5bf75slrzhvi6bybazhh1vcx0n4a8a7hf97bxr7pq2f91j"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/extract.nix b/pkgs/webapps/nextcloud/apps/extract.nix deleted file mode 100644 index daa9d2d..0000000 --- a/pkgs/webapps/nextcloud/apps/extract.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 13 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "extract"; | ||
5 | version = "1.2.4"; | ||
6 | url = "https://github.com/PaulLereverend/NextcloudExtract/releases/download/${version}/${appName}.tar.gz"; | ||
7 | sha256 = "0f1csv0warga12a1hkgdcnhnfiwfv5z2ab3mri4frn2qlh12wyby"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/files_markdown.nix b/pkgs/webapps/nextcloud/apps/files_markdown.nix deleted file mode 100644 index 5810ec9..0000000 --- a/pkgs/webapps/nextcloud/apps/files_markdown.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "files_markdown"; | ||
5 | version = "2.2.0"; | ||
6 | url = "https://github.com/icewind1991/${appName}/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "05f793pznkkdgmr3wfqfbhwcg8s8kcvpfxnhzyj0pbw19srls2aw"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/files_readmemd.nix b/pkgs/webapps/nextcloud/apps/files_readmemd.nix deleted file mode 100644 index c9728c0..0000000 --- a/pkgs/webapps/nextcloud/apps/files_readmemd.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "files_readmemd"; | ||
5 | version = "1.1.4"; | ||
6 | url = "https://gitlab.univ-nantes.fr/uncloud/files_readmemd/-/wikis/uploads/e1d280e855f37e5f0a421c757868113c/${appName}.tar.gz"; | ||
7 | sha256 = "1sfaghbyzfv3hg5vhj1nprb85zsl6lcr2x88ks6l9ndv49nfbvm9"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/flowupload.nix b/pkgs/webapps/nextcloud/apps/flowupload.nix deleted file mode 100644 index 516ee32..0000000 --- a/pkgs/webapps/nextcloud/apps/flowupload.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 15 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "flowupload"; | ||
5 | version = "0.1.8"; | ||
6 | url = "https://github.com/e-alfred/${appName}/releases/download/${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "0llg5cr4fgqg512znp9bga77y7vdsi2pgsyl4m3a54c557zyjah3"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/gpxedit.nix b/pkgs/webapps/nextcloud/apps/gpxedit.nix deleted file mode 100644 index cd3e878..0000000 --- a/pkgs/webapps/nextcloud/apps/gpxedit.nix +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 14 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "gpxedit"; | ||
5 | version = "0.0.13"; | ||
6 | url = "https://gitlab.com/eneiluj/gpxedit-oc/wikis/uploads/a7c638d1b038514d07bb5c787b6e7961/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "1b15iqaq8fj3khpx3lh0fyqkhmj6x44fc59pg3cp3jrh3bpg0534"; | ||
8 | otherConfig = { | ||
9 | mimetypealiases = { | ||
10 | "application/gpx+xml" = "gpx"; | ||
11 | }; | ||
12 | mimetypemapping = { | ||
13 | "gpx" = ["application/gpx+xml"]; | ||
14 | }; | ||
15 | }; | ||
16 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/gpxpod.nix b/pkgs/webapps/nextcloud/apps/gpxpod.nix deleted file mode 100644 index 0750144..0000000 --- a/pkgs/webapps/nextcloud/apps/gpxpod.nix +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 14 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "gpxpod"; | ||
5 | version = "4.2.1"; | ||
6 | url = "https://gitlab.com/eneiluj/gpxpod-oc/wikis/uploads/0361f9dc50633f0f39d929442935435c/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "0ycpychq6g8axdprvd0ahgdy2pwfdbfyf1pxk4cprr4ab986aq1x"; | ||
8 | otherConfig = { | ||
9 | mimetypealiases = { | ||
10 | "application/gpx+xml" = "gpx"; | ||
11 | }; | ||
12 | mimetypemapping = { | ||
13 | "gpx" = ["application/gpx+xml"]; | ||
14 | }; | ||
15 | }; | ||
16 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/impersonate.nix b/pkgs/webapps/nextcloud/apps/impersonate.nix deleted file mode 100644 index 66cc893..0000000 --- a/pkgs/webapps/nextcloud/apps/impersonate.nix +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 18 && nextcloudVersion < 19; | ||
3 | buildApp rec { | ||
4 | appName = "impersonate"; | ||
5 | version = "1.5.2"; | ||
6 | url = "https://github.com/nextcloud/impersonate/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "03fm9d2p6ap9gyiw5anmlwsdmiyklrkpdgchfx2zfgxn38pjrz6d"; | ||
8 | } | ||
9 | |||
diff --git a/pkgs/webapps/nextcloud/apps/keeweb.nix b/pkgs/webapps/nextcloud/apps/keeweb.nix deleted file mode 100644 index 4ea1399..0000000 --- a/pkgs/webapps/nextcloud/apps/keeweb.nix +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 11 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "keeweb"; | ||
5 | version = "0.6.2"; | ||
6 | url = "https://github.com/jhass/nextcloud-keeweb/releases/download/v${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "067801qz0fcfvmb14ja1ringzk53j1wp7ys2fl7lnlhf45r81vxx"; | ||
8 | installPhase = '' | ||
9 | mkdir -p $out | ||
10 | cp -R . $out/ | ||
11 | ''; | ||
12 | otherConfig = { | ||
13 | mimetypemapping = { | ||
14 | "kdbx" = ["application/x-kdbx"]; | ||
15 | }; | ||
16 | }; | ||
17 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/maps.nix b/pkgs/webapps/nextcloud/apps/maps.nix deleted file mode 100644 index 898df6c..0000000 --- a/pkgs/webapps/nextcloud/apps/maps.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "maps"; | ||
5 | version = "0.1.6"; | ||
6 | url = "https://github.com/nextcloud/maps/releases/download/v${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "1yh5h96c91lgz58zcm7zdpblvsc6c6nflx8pldfds102x292mprk"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/metadata.nix b/pkgs/webapps/nextcloud/apps/metadata.nix deleted file mode 100644 index 2d62f53..0000000 --- a/pkgs/webapps/nextcloud/apps/metadata.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 13 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "metadata"; | ||
5 | version = "0.11.1"; | ||
6 | url = "https://github.com/gino0631/nextcloud-metadata/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "11napkv5s29xk1gmbfvy610ab1kc06qxqzw606ix5x0d1x4m3h0c"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/music.nix b/pkgs/webapps/nextcloud/apps/music.nix deleted file mode 100644 index e430dd9..0000000 --- a/pkgs/webapps/nextcloud/apps/music.nix +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 9 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "music"; | ||
5 | version = "0.14.1"; | ||
6 | url = "https://github.com/owncloud/music/releases/download/v${version}/${appName}.zip"; | ||
7 | zip = true; | ||
8 | sha256 = "06svn24qix0nbikwi0kxnli402vq99851bn5ljcsm10r74bnlw83"; | ||
9 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/notes.nix b/pkgs/webapps/nextcloud/apps/notes.nix deleted file mode 100644 index 7a06bbc..0000000 --- a/pkgs/webapps/nextcloud/apps/notes.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "notes"; | ||
5 | version = "3.3.0"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/${version}/${appName}.tar.gz"; | ||
7 | sha256 = "03k0ijma7sccwqq9ch3bvgbg9kxr2wk0bmkxzxrc9in1d40d3k7f"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/ocsms.nix b/pkgs/webapps/nextcloud/apps/ocsms.nix deleted file mode 100644 index aee1ff2..0000000 --- a/pkgs/webapps/nextcloud/apps/ocsms.nix +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | appName = "ocsms"; | ||
5 | version = "2.1.7"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "1pfdzq16nbh4wfmkmif0dxacxg0fy4n4cp2d1hbq9k2z9awcx1vh"; | ||
8 | installPhase = '' | ||
9 | mkdir -p $out | ||
10 | cp -R . $out/ | ||
11 | ''; | ||
12 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/passman.nix b/pkgs/webapps/nextcloud/apps/passman.nix deleted file mode 100644 index 2de4882..0000000 --- a/pkgs/webapps/nextcloud/apps/passman.nix +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 17 && nextcloudVersion <= 18; | ||
3 | buildApp rec { | ||
4 | # FIXME: it creates a /settings/user/additional setting url which | ||
5 | # doesn’t work | ||
6 | appName = "passman"; | ||
7 | version = "2.3.5"; | ||
8 | url = "https://releases.passman.cc/${appName}_${version}.tar.gz"; | ||
9 | sha256 = "05gc288n43c7dhmq1jqfn8cfw7sycwdfhn36j8rh8nbx1irldbjn"; | ||
10 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/polls.nix b/pkgs/webapps/nextcloud/apps/polls.nix deleted file mode 100644 index 69e1102..0000000 --- a/pkgs/webapps/nextcloud/apps/polls.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "polls"; | ||
5 | version = "1.4.3"; | ||
6 | url = "https://github.com/nextcloud/polls/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "07l5x5xblk6w8f6mqz3a5hjpry8qc3zgqi49z6bp5ipnzj0s6wm4"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/social.nix b/pkgs/webapps/nextcloud/apps/social.nix deleted file mode 100644 index 75b790a..0000000 --- a/pkgs/webapps/nextcloud/apps/social.nix +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 17 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "social"; | ||
5 | version = "0.3.1"; | ||
6 | url = "https://github.com/nextcloud/social/releases/download/v${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "03hh6vr34p33dphrjqmc7s8mvsk5n7dl817j8qkf75203y8szhdy"; | ||
8 | } | ||
9 | |||
diff --git a/pkgs/webapps/nextcloud/apps/spreed.nix b/pkgs/webapps/nextcloud/apps/spreed.nix deleted file mode 100644 index b52c8c5..0000000 --- a/pkgs/webapps/nextcloud/apps/spreed.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion == 18; | ||
3 | buildApp rec { | ||
4 | appName = "spreed"; | ||
5 | version = "8.0.8"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/v${version}/${appName}-${version}.tar.gz"; | ||
7 | sha256 = "19szk61ixzzrabs63l2fihx7k4f6a8k4kdzpa0xxzv5w9ssqjhbj"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/apps/tasks.nix b/pkgs/webapps/nextcloud/apps/tasks.nix deleted file mode 100644 index a2de465..0000000 --- a/pkgs/webapps/nextcloud/apps/tasks.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { buildApp, nextcloudVersion }: | ||
2 | assert nextcloudVersion >= 16 && nextcloudVersion <= 19; | ||
3 | buildApp rec { | ||
4 | appName = "tasks"; | ||
5 | version = "0.12.2"; | ||
6 | url = "https://github.com/nextcloud/${appName}/releases/download/v${version}/${appName}.tar.gz"; | ||
7 | sha256 = "092fg7dpx69jp5z0ka14ay6bnfdcnjq8zk2gc3rwpzc3llpdnqph"; | ||
8 | } | ||
diff --git a/pkgs/webapps/nextcloud/default.nix b/pkgs/webapps/nextcloud/default.nix deleted file mode 100644 index 5017fd2..0000000 --- a/pkgs/webapps/nextcloud/default.nix +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | { varDir ? "/var/lib/nextcloud", nextcloudVersion ? 18, otherConfig ? {}, lib, stdenv, callPackage, fetchzip, fetchurl }: | ||
2 | let | ||
3 | appNames = [ | ||
4 | "apporder" "audioplayer" "bookmarks" "calendar" "carnet" "circles" | ||
5 | "contacts" "cookbook" "deck" "extract" "files_markdown" | ||
6 | "files_readmemd" "flowupload" "gpxedit" "gpxpod" "impersonate" | ||
7 | "keeweb" "maps" "metadata" "music" "notes" "ocsms" "passman" "polls" | ||
8 | "spreed" "social" "tasks" | ||
9 | ]; | ||
10 | allApps = lib.attrsets.genAttrs appNames | ||
11 | (name: callPackage (./apps + "/${name}.nix") { inherit buildApp nextcloudVersion; }); | ||
12 | buildApp = { appName, version, url, sha256, zip ? false, otherConfig ? {}, installPhase ? "mkdir -p $out && cp -R . $out/" }: | ||
13 | stdenv.mkDerivation rec { | ||
14 | name = "nextcloud-app-${appName}-${version}"; | ||
15 | inherit version; | ||
16 | phases = "unpackPhase installPhase"; | ||
17 | inherit installPhase; | ||
18 | src = (if zip then fetchzip else fetchurl) { inherit url sha256; }; | ||
19 | passthru = { | ||
20 | inherit appName otherConfig; | ||
21 | }; | ||
22 | }; | ||
23 | toPassthru = pkg: apps: otherConfig: { | ||
24 | inherit apps otherConfig allApps buildApp varDir; | ||
25 | withApps = withApps pkg; | ||
26 | }; | ||
27 | withApps = pkg: toApps: | ||
28 | let | ||
29 | apps = toApps allApps; | ||
30 | toInstallApp = n: '' | ||
31 | ln -sf ${n} $out/apps/${n.appName} | ||
32 | ''; | ||
33 | zipped = lib.attrsets.zipAttrs ([pkg.otherConfig or {}] ++ map (v: v.otherConfig) apps); | ||
34 | appConfigs = with lib.attrsets; with lib.lists; { | ||
35 | mimetypealiases = foldr (h: prev: prev // h) {} (zipped.mimetypealiases or []); | ||
36 | mimetypemapping = mapAttrs (_: v: unique (flatten v)) (zipAttrs (zipped.mimetypemapping or [])); | ||
37 | }; | ||
38 | newNextcloud = pkg.overrideAttrs(old: { | ||
39 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallApp apps); | ||
40 | passthru = toPassthru newNextcloud (pkg.apps ++ apps) appConfigs; | ||
41 | }); | ||
42 | in newNextcloud; | ||
43 | package = stdenv.mkDerivation rec { | ||
44 | name = "nextcloud-${version}"; | ||
45 | version = "${builtins.toString nextcloudVersion}.0.4"; | ||
46 | |||
47 | src = fetchurl { | ||
48 | url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2"; | ||
49 | sha256 = "0aa3f4xbkzacfw0h9aic0ywk5mqlwka83qaszizj8lmk68kf3n7s"; | ||
50 | }; | ||
51 | |||
52 | installPhase = '' | ||
53 | mkdir -p $out/ | ||
54 | cp -R . $out/ | ||
55 | rm -r $out/config | ||
56 | '' + lib.optionalString (varDir != null) '' | ||
57 | ln -sf ${varDir}/config $out/config | ||
58 | ''; | ||
59 | |||
60 | passthru = toPassthru package [] otherConfig; | ||
61 | meta = { | ||
62 | description = "Sharing solution for files, calendars, contacts and more"; | ||
63 | homepage = https://nextcloud.com; | ||
64 | maintainers = with lib.maintainers; [ schneefux bachp globin fpletz ]; | ||
65 | license = lib.licenses.agpl3Plus; | ||
66 | platforms = with lib.platforms; unix; | ||
67 | }; | ||
68 | }; | ||
69 | in package | ||
diff --git a/pkgs/webapps/phpbb/default.nix b/pkgs/webapps/phpbb/default.nix deleted file mode 100644 index 21ee154..0000000 --- a/pkgs/webapps/phpbb/default.nix +++ /dev/null | |||
@@ -1,61 +0,0 @@ | |||
1 | { stdenv, fetchurl, callPackage | ||
2 | , varDir ? "/var/lib/phpbb" | ||
3 | }: | ||
4 | let | ||
5 | allExts = { | ||
6 | alfredoramos.markdown = callPackage ./extensions/markdown.nix {}; | ||
7 | davidiq.mailinglist = callPackage ./extensions/mailinglist.nix {}; | ||
8 | dmzx.mchat = callPackage ./extensions/mchat.nix {}; | ||
9 | empteintesduweb.monitoranswers = callPackage ./extensions/monitoranswers.nix {}; | ||
10 | lr94.autosubscribe = callPackage ./extensions/autosubscribe.nix {}; | ||
11 | phpbbmodders.adduser = callPackage ./extensions/adduser.nix {}; | ||
12 | }; | ||
13 | allLangs = { | ||
14 | fr = callPackage ./langs/fr.nix {}; | ||
15 | }; | ||
16 | toPassthru = pkg: { | ||
17 | inherit allLangs allExts; | ||
18 | withLangs = withLangs pkg; | ||
19 | withExts = withExts pkg; | ||
20 | }; | ||
21 | withExts = pkg: toExts: | ||
22 | let | ||
23 | exts = toExts allExts; | ||
24 | toInstallExt = ext: "cp -r ${ext}/* $out/ext/"; | ||
25 | newPhpBB = pkg.overrideAttrs(old: { | ||
26 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallExt exts); | ||
27 | passthru = toPassthru newPhpBB; | ||
28 | }); | ||
29 | in newPhpBB; | ||
30 | withLangs = pkg: toLangs: | ||
31 | let | ||
32 | langs = toLangs allLangs; | ||
33 | toInstallLang = lang: "cp -r ${lang}/*/ $out"; | ||
34 | newPhpBB = pkg.overrideAttrs(old: { | ||
35 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallLang langs); | ||
36 | passthru = toPassthru newPhpBB; | ||
37 | }); | ||
38 | in newPhpBB; | ||
39 | phpBB = stdenv.mkDerivation rec { | ||
40 | pname = "phpBB"; | ||
41 | version = "3.3.0"; | ||
42 | |||
43 | src = fetchurl { | ||
44 | url = "https://download.phpbb.com/pub/release/3.3/${version}/${pname}-${version}.tar.bz2"; | ||
45 | sha256 = "a6234ac9dcf9086c025ece29a0a235f997a92bb9a994eff0ddcf8917e841262f"; | ||
46 | }; | ||
47 | |||
48 | phases = [ "unpackPhase" "installPhase" ]; | ||
49 | |||
50 | installPhase = '' | ||
51 | cp -a . $out | ||
52 | mkdir -p $out/vars | ||
53 | mv $out/{cache,files,store,config.php} $out/vars | ||
54 | ln -s ${varDir}/{cache,files,store,config.php} $out/ | ||
55 | echo -e "core:\n allow_install_dir: true" >> $out/config/production/config.yml | ||
56 | ''; | ||
57 | |||
58 | passthru = toPassthru phpBB; | ||
59 | }; | ||
60 | in | ||
61 | phpBB | ||
diff --git a/pkgs/webapps/phpbb/extensions/adduser.nix b/pkgs/webapps/phpbb/extensions/adduser.nix deleted file mode 100644 index f9073e6..0000000 --- a/pkgs/webapps/phpbb/extensions/adduser.nix +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | { stdenv, fetchurl, unzip }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | pname = "phpBB-extension-adduser"; | ||
4 | version = "1.0.4"; | ||
5 | src = fetchurl { | ||
6 | # https://www.phpbb.com/customise/db/extension/acp_add_user_2 | ||
7 | url = "https://www.phpbb.com/customise/db/download/141601"; | ||
8 | sha256 = "13m4anib74cinnv1ap3b1ncb8cxm3mzhhmlqhbrr9mlrqmwf4zg2"; | ||
9 | }; | ||
10 | |||
11 | buildInputs = [ unzip ]; | ||
12 | phases = [ "unpackPhase" "installPhase" ]; | ||
13 | unpackPhase = '' | ||
14 | mkdir src | ||
15 | cd src | ||
16 | unzip $src | ||
17 | ''; | ||
18 | installPhase = '' | ||
19 | cp -a . $out | ||
20 | cp -a $out/phpbbmodders/adduser/language/en $out/phpbbmodders/adduser/language/fr | ||
21 | ''; | ||
22 | } | ||
diff --git a/pkgs/webapps/phpbb/extensions/autosubscribe.nix b/pkgs/webapps/phpbb/extensions/autosubscribe.nix deleted file mode 100644 index 78e23fc..0000000 --- a/pkgs/webapps/phpbb/extensions/autosubscribe.nix +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | { stdenv, fetchurl, unzip }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | pname = "phpBB-extension-autosubscribe"; | ||
4 | version = "1.1.0"; | ||
5 | src = fetchurl { | ||
6 | # https://www.phpbb.com/customise/db/extension/autosubscribe | ||
7 | url = "https://www.phpbb.com/customise/db/download/146556"; | ||
8 | sha256 = "0dsay463g4impw86w1nv307nslc195fkgkqmihfn5kc0hya0giv0"; | ||
9 | }; | ||
10 | |||
11 | buildInputs = [ unzip ]; | ||
12 | phases = [ "unpackPhase" "installPhase" ]; | ||
13 | unpackPhase = '' | ||
14 | mkdir src | ||
15 | cd src | ||
16 | unzip $src | ||
17 | ''; | ||
18 | installPhase = "cp -a . $out"; | ||
19 | } | ||
diff --git a/pkgs/webapps/phpbb/extensions/mailinglist.nix b/pkgs/webapps/phpbb/extensions/mailinglist.nix deleted file mode 100644 index d432aaf..0000000 --- a/pkgs/webapps/phpbb/extensions/mailinglist.nix +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | { stdenv, fetchurl, unzip }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | pname = "phpBB-extension-MailingList"; | ||
4 | version = "2.0.0"; | ||
5 | src = fetchurl { | ||
6 | url = "https://github.com/DavidIQ/MailingList/archive/${version}.tar.gz"; | ||
7 | sha256 = "1ddg8bci85jwmvyakcwdn4yzqwz1rgy7ljf4nmfk9p2kvx2nhj62"; | ||
8 | }; | ||
9 | |||
10 | phases = [ "unpackPhase" "installPhase" ]; | ||
11 | installPhase = '' | ||
12 | mkdir -p $out/davidiq/mailinglist | ||
13 | cp -a . $out/davidiq/mailinglist | ||
14 | # delete last two lines which contain EMAIL_SIG | ||
15 | sed -i -n -e :a -e '1,2!{P;N;D;};N;ba' $out/davidiq/mailinglist/language/en/email/* | ||
16 | ''; | ||
17 | } | ||
18 | |||
diff --git a/pkgs/webapps/phpbb/extensions/markdown.nix b/pkgs/webapps/phpbb/extensions/markdown.nix deleted file mode 100644 index 3bd73c7..0000000 --- a/pkgs/webapps/phpbb/extensions/markdown.nix +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | { stdenv, fetchurl, unzip }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | pname = "phpBB-extension-markdown"; | ||
4 | version = "1.2.0"; | ||
5 | src = fetchurl { | ||
6 | # https://www.phpbb.com/customise/db/extension/markdown | ||
7 | name = "alfredoramos_markdown_${version}.zip"; | ||
8 | url = "https://www.phpbb.com/customise/db/download/173626"; | ||
9 | sha256 = "0bmgi8qr6azaaz8xnz8dkyf147dyawqvqr93r01qbm9s8bfkpzqx"; | ||
10 | }; | ||
11 | |||
12 | buildInputs = [ unzip ]; | ||
13 | phases = [ "unpackPhase" "installPhase" ]; | ||
14 | unpackPhase = '' | ||
15 | mkdir src | ||
16 | cd src | ||
17 | unzip $src | ||
18 | ''; | ||
19 | installPhase = "cp -a . $out"; | ||
20 | } | ||
diff --git a/pkgs/webapps/phpbb/extensions/mchat.nix b/pkgs/webapps/phpbb/extensions/mchat.nix deleted file mode 100644 index 93ea861..0000000 --- a/pkgs/webapps/phpbb/extensions/mchat.nix +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | { stdenv, fetchurl, unzip }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | pname = "phpBB-extension-mchat"; | ||
4 | version = "2.1.3"; | ||
5 | src = fetchurl { | ||
6 | # https://www.phpbb.com/customise/db/extension/mchat_extension | ||
7 | name = "dmzx_mchat_${version}.zip"; | ||
8 | url = "https://www.phpbb.com/customise/db/download/168331"; | ||
9 | sha256 = "0mcka02wamn899vg64m1c5d5k6f4qml18cshhzfvccrdc7a0m5p1"; | ||
10 | }; | ||
11 | |||
12 | buildInputs = [ unzip ]; | ||
13 | phases = [ "unpackPhase" "installPhase" ]; | ||
14 | unpackPhase = '' | ||
15 | mkdir src | ||
16 | cd src | ||
17 | unzip $src | ||
18 | ''; | ||
19 | installPhase = "cp -a . $out"; | ||
20 | } | ||
21 | |||
diff --git a/pkgs/webapps/phpbb/extensions/monitoranswers.nix b/pkgs/webapps/phpbb/extensions/monitoranswers.nix deleted file mode 100644 index 52c852e..0000000 --- a/pkgs/webapps/phpbb/extensions/monitoranswers.nix +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | { stdenv, fetchurl, unzip }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | pname = "phpBB-extension-monitoranswers"; | ||
4 | version = "1.0.0"; | ||
5 | src = fetchurl { | ||
6 | # http://forums.phpbb-fr.com/extensions-developpement-en-cours/sujet208410.html | ||
7 | url = "https://www.empreintesduweb.com/dl/extension_empreintesduweb_monitoranswers_v100.zip"; | ||
8 | sha256 = "0g5khzz7brkra9rnnjh8vsv11h8vf36pcw53b4wrkcjb66bfm20s"; | ||
9 | }; | ||
10 | |||
11 | buildInputs = [ unzip ]; | ||
12 | phases = [ "unpackPhase" "installPhase" ]; | ||
13 | unpackPhase = '' | ||
14 | mkdir src | ||
15 | cd src | ||
16 | unzip $src | ||
17 | ''; | ||
18 | installPhase = "cp -a . $out"; | ||
19 | } | ||
diff --git a/pkgs/webapps/phpbb/langs/fr.nix b/pkgs/webapps/phpbb/langs/fr.nix deleted file mode 100644 index 12f2df0..0000000 --- a/pkgs/webapps/phpbb/langs/fr.nix +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | { stdenv, fetchurl }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | pname = "phpBB-language-fr"; | ||
4 | version = "v4.0.0"; | ||
5 | src = fetchurl { | ||
6 | url = "https://github.com/milescellar/phpbb-language-fr/archive/${version}.tar.gz"; | ||
7 | sha256 = "0pkw55pb8ka4ayn1861hwvjwzs8vkq04yaxrs7zm9c8lh2g7y8z0"; | ||
8 | }; | ||
9 | |||
10 | phases = [ "unpackPhase" "installPhase" ]; | ||
11 | installPhase = "cp -a . $out"; | ||
12 | } | ||
diff --git a/pkgs/webapps/phpldapadmin/default.nix b/pkgs/webapps/phpldapadmin/default.nix deleted file mode 100644 index da32f97..0000000 --- a/pkgs/webapps/phpldapadmin/default.nix +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | { config ? "/etc/phpldapadmin/config.php", fetchurl, fetchFromGitHub, stdenv, optipng }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "1.2.5"; | ||
4 | name = "phpldapadmin-${version}"; | ||
5 | src = fetchFromGitHub { | ||
6 | owner = "leenooks"; | ||
7 | repo = "phpLDAPadmin"; | ||
8 | rev = "8f4ced96f9c63a09510a5bccb2189a8b92fb29ba"; | ||
9 | sha256 = "1x6xc3xbvw3aj46i5ds06a8h6mfljxdv3argxrzz02l541ra6ni7"; | ||
10 | }; | ||
11 | patches = [ | ||
12 | #./ldap-php5_5.patch | ||
13 | #./ldap-disable-mcrypt.patch | ||
14 | #./ldap-php7_2.patch | ||
15 | ./ldap-sort-in-templates.patch | ||
16 | ./ldap-align-button.patch | ||
17 | ./ldap-fix-password.patch | ||
18 | ]; | ||
19 | buildInputs = [ optipng ]; | ||
20 | buildPhase = '' | ||
21 | find -name '*.png' -exec optipng -quiet -force -fix {} \; | ||
22 | ''; | ||
23 | installPhase = '' | ||
24 | cp -a . $out | ||
25 | ln -sf ${config} $out/config/config.php | ||
26 | ''; | ||
27 | } | ||
diff --git a/pkgs/webapps/phpldapadmin/ldap-align-button.patch b/pkgs/webapps/phpldapadmin/ldap-align-button.patch deleted file mode 100644 index d9a5504..0000000 --- a/pkgs/webapps/phpldapadmin/ldap-align-button.patch +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | --- a/htdocs/update_confirm.php 2012-10-01 08:54:14.000000000 +0200 | ||
2 | +++ b/htdocs/update_confirm.php 2018-06-06 15:47:44.122398888 +0200 | ||
3 | @@ -187,7 +187,7 @@ | ||
4 | |||
5 | echo '</table>'; | ||
6 | |||
7 | - echo '<div style="text-align: center;">'; | ||
8 | + echo '<div style="text-align: left;">'; | ||
9 | echo '<br />'; | ||
10 | // @todo cant use AJAX here, it affects file uploads. | ||
11 | printf('<input type="submit" value="%s" />', | ||
diff --git a/pkgs/webapps/phpldapadmin/ldap-fix-password.patch b/pkgs/webapps/phpldapadmin/ldap-fix-password.patch deleted file mode 100644 index d2d80e4..0000000 --- a/pkgs/webapps/phpldapadmin/ldap-fix-password.patch +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | diff --git a/htdocs/login.php b/htdocs/login.php | ||
2 | index 48f9e2e..298b07d 100644 | ||
3 | --- a/htdocs/login.php | ||
4 | +++ b/htdocs/login.php | ||
5 | @@ -13,7 +13,7 @@ require './common.php'; | ||
6 | |||
7 | $user = array(); | ||
8 | $user['login'] = get_request('login'); | ||
9 | -$user['password'] = get_request('login_pass'); | ||
10 | +$user['password'] = get_request('login_pass','POST',false,null,false); | ||
11 | |||
12 | if ($user['login'] && ! strlen($user['password'])) | ||
13 | system_message(array( | ||
diff --git a/pkgs/webapps/phpldapadmin/ldap-sort-in-templates.patch b/pkgs/webapps/phpldapadmin/ldap-sort-in-templates.patch deleted file mode 100644 index 55a1974..0000000 --- a/pkgs/webapps/phpldapadmin/ldap-sort-in-templates.patch +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | diff -wbBur phpldapadmin-1.2.3.org/lib/TemplateRender.php phpldapadmin-1.2.3/lib/TemplateRender.php | ||
2 | --- phpldapadmin-1.2.3.org/lib/TemplateRender.php 2012-10-01 10:54:14.000000000 +0400 | ||
3 | +++ phpldapadmin-1.2.3/lib/TemplateRender.php 2018-02-02 19:06:45.674760057 +0300 | ||
4 | @@ -321,6 +321,8 @@ | ||
5 | |||
6 | $vals = array(); | ||
7 | |||
8 | + asort($picklistvalues); | ||
9 | + | ||
10 | foreach ($picklistvalues as $key => $values) { | ||
11 | $display = $args[3]; | ||
12 | |||
diff --git a/pkgs/webapps/rompr/default.nix b/pkgs/webapps/rompr/default.nix deleted file mode 100644 index 2accf00..0000000 --- a/pkgs/webapps/rompr/default.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { varDir ? "/var/lib/rompr", stdenv, mylibs }: | ||
2 | stdenv.mkDerivation (mylibs.fetchedGithub ./rompr.json // { | ||
3 | installPhase = '' | ||
4 | cp -a . $out | ||
5 | ln -sf ${varDir}/prefs $out/prefs | ||
6 | ln -sf ${varDir}/albumart $out/albumart | ||
7 | ''; | ||
8 | }) | ||
diff --git a/pkgs/webapps/rompr/rompr.json b/pkgs/webapps/rompr/rompr.json deleted file mode 100644 index 778d915..0000000 --- a/pkgs/webapps/rompr/rompr.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "1.24", | ||
3 | "meta": { | ||
4 | "name": "rompr", | ||
5 | "url": "https://github.com/fatg3erman/RompR", | ||
6 | "branch": "refs/tags/1.24" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "fatg3erman", | ||
10 | "repo": "RompR", | ||
11 | "rev": "0d8f597027ac71b320963fe3f33f461a136312ad", | ||
12 | "sha256": "13p3c4whhmvz1vvh9fva5gdx4xji288k108hjdi8b1yn506lzix2", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/roundcubemail/add_all.patch b/pkgs/webapps/roundcubemail/add_all.patch deleted file mode 100644 index ba651e2..0000000 --- a/pkgs/webapps/roundcubemail/add_all.patch +++ /dev/null | |||
@@ -1,209 +0,0 @@ | |||
1 | diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php | ||
2 | index 0552b89c2..1b84e1b4e 100644 | ||
3 | --- a/program/include/rcmail_output_html.php | ||
4 | +++ b/program/include/rcmail_output_html.php | ||
5 | @@ -1013,13 +1013,13 @@ EOF; | ||
6 | // use minified file if exists (not in development mode) | ||
7 | if (!$this->devel_mode && !preg_match('/\.min\.' . $ext . '$/', $file)) { | ||
8 | $minified_file = substr($file, 0, strlen($ext) * -1) . 'min.' . $ext; | ||
9 | - if ($fs = @filemtime($this->assets_dir . $minified_file)) { | ||
10 | - return $minified_file . '?s=' . $fs; | ||
11 | + if ($fs = @md5_file($this->assets_dir . $minified_file)) { | ||
12 | + return $minified_file . '?s=' . substr($fs, 0, 6); | ||
13 | } | ||
14 | } | ||
15 | |||
16 | - if ($fs = @filemtime($this->assets_dir . $file)) { | ||
17 | - $file .= '?s=' . $fs; | ||
18 | + if ($fs = @md5_file($this->assets_dir . $file)) { | ||
19 | + $file .= '?s=' . substr($fs, 0, 6); | ||
20 | } | ||
21 | |||
22 | return $file; | ||
23 | diff --git a/program/js/app.js b/program/js/app.js | ||
24 | index 2094b7b7b..06fe96a80 100644 | ||
25 | --- a/program/js/app.js | ||
26 | +++ b/program/js/app.js | ||
27 | @@ -2277,6 +2277,9 @@ function rcube_webmail() | ||
28 | } | ||
29 | |||
30 | tree += '<span id="msgicn'+row.id+'" class="'+css_class+status_class+'" title="'+status_label+'"></span>'; | ||
31 | + if (flags.mbox != this.env.mailbox) { | ||
32 | + tree += '<span style="color:#737677">' + flags.mbox + ' <span>'; | ||
33 | + } | ||
34 | row.className = row_class; | ||
35 | |||
36 | // build subject link | ||
37 | diff --git a/program/localization/en_CA/labels.inc b/program/localization/en_CA/labels.inc | ||
38 | index 03c1c8e11..8d67a49ac 100644 | ||
39 | --- a/program/localization/en_CA/labels.inc | ||
40 | +++ b/program/localization/en_CA/labels.inc | ||
41 | @@ -128,6 +128,7 @@ $labels['markunread'] = 'As unread'; | ||
42 | $labels['markflagged'] = 'As flagged'; | ||
43 | $labels['markunflagged'] = 'As unflagged'; | ||
44 | $labels['moreactions'] = 'More actions...'; | ||
45 | +$labels['folders-allsubscribed'] = 'All subscribed folders'; | ||
46 | $labels['folders-all'] = 'All folders'; | ||
47 | $labels['more'] = 'More'; | ||
48 | $labels['back'] = 'Back'; | ||
49 | @@ -184,6 +185,7 @@ $labels['namex'] = 'Name'; | ||
50 | $labels['searchscope'] = 'Scope'; | ||
51 | $labels['currentfolder'] = 'Current folder'; | ||
52 | $labels['subfolders'] = 'This and subfolders'; | ||
53 | +$labels['allsubscribedfolders'] = 'All subscribed folders'; | ||
54 | $labels['allfolders'] = 'All folders'; | ||
55 | $labels['openinextwin'] = 'Open in new window'; | ||
56 | $labels['emlsave'] = 'Download (.eml)'; | ||
57 | diff --git a/program/localization/en_GB/labels.inc b/program/localization/en_GB/labels.inc | ||
58 | index a442965de..b5b4839e3 100644 | ||
59 | --- a/program/localization/en_GB/labels.inc | ||
60 | +++ b/program/localization/en_GB/labels.inc | ||
61 | @@ -135,6 +135,7 @@ $labels['moreactions'] = 'More actions...'; | ||
62 | $labels['markallread'] = 'Mark all as read'; | ||
63 | $labels['folders-cur'] = 'Selected folder only'; | ||
64 | $labels['folders-sub'] = 'Selected folder and its subfolders'; | ||
65 | +$labels['folders-allsubscribed'] = 'All subscribed folders'; | ||
66 | $labels['folders-all'] = 'All folders'; | ||
67 | $labels['more'] = 'More'; | ||
68 | $labels['back'] = 'Back'; | ||
69 | @@ -221,6 +222,7 @@ $labels['namex'] = 'Name'; | ||
70 | $labels['searchscope'] = 'Scope'; | ||
71 | $labels['currentfolder'] = 'Current folder'; | ||
72 | $labels['subfolders'] = 'This and subfolders'; | ||
73 | +$labels['allsubscribedfolders'] = 'All subscribed folders'; | ||
74 | $labels['allfolders'] = 'All folders'; | ||
75 | $labels['searchinterval-1W'] = 'older than a week'; | ||
76 | $labels['searchinterval-1M'] = 'older than a month'; | ||
77 | diff --git a/program/localization/en_US/labels.inc b/program/localization/en_US/labels.inc | ||
78 | index 2e8ec8009..c7736557f 100644 | ||
79 | --- a/program/localization/en_US/labels.inc | ||
80 | +++ b/program/localization/en_US/labels.inc | ||
81 | @@ -158,6 +158,7 @@ $labels['moreactions'] = 'More actions...'; | ||
82 | $labels['markallread'] = 'Mark all as read'; | ||
83 | $labels['folders-cur'] = 'Selected folder only'; | ||
84 | $labels['folders-sub'] = 'Selected folder and its subfolders'; | ||
85 | +$labels['folders-allsubscribed'] = 'All subscribed folders'; | ||
86 | $labels['folders-all'] = 'All folders'; | ||
87 | $labels['more'] = 'More'; | ||
88 | $labels['back'] = 'Back'; | ||
89 | @@ -249,6 +250,7 @@ $labels['namex'] = 'Name'; | ||
90 | $labels['searchscope'] = 'Scope'; | ||
91 | $labels['currentfolder'] = 'Current folder'; | ||
92 | $labels['subfolders'] = 'This and subfolders'; | ||
93 | +$labels['allsubscribedfolders'] = 'All subscribed folders'; | ||
94 | $labels['allfolders'] = 'All folders'; | ||
95 | $labels['searchinterval-1W'] = 'older than a week'; | ||
96 | $labels['searchinterval-1M'] = 'older than a month'; | ||
97 | diff --git a/program/localization/fr_FR/labels.inc b/program/localization/fr_FR/labels.inc | ||
98 | index 6db44f95c..ad83e15d8 100644 | ||
99 | --- a/program/localization/fr_FR/labels.inc | ||
100 | +++ b/program/localization/fr_FR/labels.inc | ||
101 | @@ -135,6 +135,7 @@ $labels['moreactions'] = 'Plus d’actions…'; | ||
102 | $labels['markallread'] = 'Tout marquer comme lu'; | ||
103 | $labels['folders-cur'] = 'Dossier sélectionné seulement'; | ||
104 | $labels['folders-sub'] = 'Dossier sélectionné et ses sous-dossiers'; | ||
105 | +$labels['folders-allsubscribed'] = 'Tous les dossiers souscrits'; | ||
106 | $labels['folders-all'] = 'Tous les dossiers'; | ||
107 | $labels['more'] = 'Plus'; | ||
108 | $labels['back'] = 'Retour'; | ||
109 | @@ -221,6 +222,7 @@ $labels['namex'] = 'Nom'; | ||
110 | $labels['searchscope'] = 'Portée'; | ||
111 | $labels['currentfolder'] = 'Répertoire actuel'; | ||
112 | $labels['subfolders'] = 'Ceci et les sous-dossiers'; | ||
113 | +$labels['allsubscribedfolders'] = 'Tous les dossiers souscrits'; | ||
114 | $labels['allfolders'] = 'Tous les dossiers'; | ||
115 | $labels['searchinterval-1W'] = 'plus d’une semaine'; | ||
116 | $labels['searchinterval-1M'] = 'plus d’un mois'; | ||
117 | diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc | ||
118 | index 8e0c642f6..ac79780e0 100644 | ||
119 | --- a/program/steps/mail/func.inc | ||
120 | +++ b/program/steps/mail/func.inc | ||
121 | @@ -110,8 +110,8 @@ if (empty($RCMAIL->action) || $RCMAIL->action == 'list') { | ||
122 | 'copy', 'move', 'quota', 'replyall', 'replylist', 'stillsearching', | ||
123 | 'flagged', 'unflagged', 'unread', 'deleted', 'replied', 'forwarded', | ||
124 | 'priority', 'withattachment', 'fileuploaderror', 'mark', 'markallread', | ||
125 | - 'folders-cur', 'folders-sub', 'folders-all', 'cancel', 'bounce', 'bouncemsg', | ||
126 | - 'sendingmessage'); | ||
127 | + 'folders-cur', 'folders-sub', 'folders-allsubscribed', 'folder-all', | ||
128 | + 'cancel', 'bounce', 'bouncemsg', 'sendingmessage'); | ||
129 | } | ||
130 | } | ||
131 | |||
132 | diff --git a/program/steps/mail/search.inc b/program/steps/mail/search.inc | ||
133 | index f60528835..836a715b0 100644 | ||
134 | --- a/program/steps/mail/search.inc | ||
135 | +++ b/program/steps/mail/search.inc | ||
136 | @@ -86,7 +86,7 @@ else if (strlen(trim($str))) { | ||
137 | } | ||
138 | |||
139 | // save search modifiers for the current folder to user prefs | ||
140 | - $mkey = $scope == 'all' ? '*' : $mbox; | ||
141 | + $mkey = ($scope == 'all' || $scope == 'allsubscribed') ? '*' : $mbox; | ||
142 | $search_mods = rcmail_search_mods(); | ||
143 | $search_mods[$mkey] = array_fill_keys(array_keys($subject), 1); | ||
144 | |||
145 | @@ -124,6 +124,10 @@ if (!empty($continue) && isset($_SESSION['search']) && $_SESSION['search_request | ||
146 | if ($search_str) { | ||
147 | // search all, current or subfolders folders | ||
148 | if ($scope == 'all') { | ||
149 | + $mboxes = $RCMAIL->storage->list_folders('', '*', 'mail', null, true); | ||
150 | + natcasesort($mboxes); // we want natural alphabetic sorting of folders in the result set | ||
151 | + } | ||
152 | + else if ($scope == 'allsubscribed') { | ||
153 | $mboxes = $RCMAIL->storage->list_folders_subscribed('', '*', 'mail', null, true); | ||
154 | natcasesort($mboxes); // we want natural alphabetic sorting of folders in the result set | ||
155 | } | ||
156 | @@ -133,7 +137,7 @@ if ($search_str) { | ||
157 | array_unshift($mboxes, $mbox); | ||
158 | } | ||
159 | |||
160 | - if ($scope != 'all') { | ||
161 | + if ($scope != 'all' && $scope != 'allsubscribed') { | ||
162 | // Remember current folder, it can change in meantime (plugins) | ||
163 | // but we need it to e.g. recognize Sent folder to handle From/To column later | ||
164 | $RCMAIL->output->set_env('mailbox', $mbox); | ||
165 | @@ -194,7 +198,7 @@ else { | ||
166 | $count = 0; | ||
167 | $OUTPUT->show_message('searchnomatch', 'notice'); | ||
168 | $OUTPUT->set_env('multifolder_listing', (bool)$result->multi); | ||
169 | - if ($result->multi && $scope == 'all') { | ||
170 | + if ($result->multi && ($scope == 'all' || $scope == 'allsubscribed')) { | ||
171 | $OUTPUT->command('select_folder', ''); | ||
172 | } | ||
173 | } | ||
174 | diff --git a/skins/classic/templates/mail.html b/skins/classic/templates/mail.html | ||
175 | index 666adf606..23d12a275 100644 | ||
176 | --- a/skins/classic/templates/mail.html | ||
177 | +++ b/skins/classic/templates/mail.html | ||
178 | @@ -106,6 +106,7 @@ | ||
179 | <li><label class="comment"><roundcube:label name="searchscope" /></label></li> | ||
180 | <li><label><input type="radio" name="s_scope" value="base" id="s_scope_base" onclick="rcmail.set_searchscope(this.value)" /> <span><roundcube:label name="currentfolder" /></span></label></li> | ||
181 | <li><label><input type="radio" name="s_scope" value="sub" id="s_scope_sub" onclick="rcmail.set_searchscope(this.value)" /> <span><roundcube:label name="subfolders" /></span></label></li> | ||
182 | + <li><label><input type="radio" name="s_scope" value="allsubscribed" id="s_scope_allsubscribed" onclick="rcmail.set_searchscope(this.value)" /> <span><roundcube:label name="allsubscribedfolders" /></span></label></li> | ||
183 | <li><label><input type="radio" name="s_scope" value="all" id="s_scope_all" onclick="rcmail.set_searchscope(this.value)" /> <span><roundcube:label name="allfolders" /></span></label></li> | ||
184 | </ul> | ||
185 | </div> | ||
186 | diff --git a/skins/elastic/templates/mail.html b/skins/elastic/templates/mail.html | ||
187 | index 51dbfcd30..4c2281281 100644 | ||
188 | --- a/skins/elastic/templates/mail.html | ||
189 | +++ b/skins/elastic/templates/mail.html | ||
190 | @@ -77,6 +77,7 @@ | ||
191 | <select name="s_scope" id="s_scope"> | ||
192 | <option value="base"><roundcube:label name="currentfolder" /></option> | ||
193 | <option value="sub"><roundcube:label name="subfolders" /></option> | ||
194 | + <option value="allsubscribed"><roundcube:label name="allsubscribedfolders" /></option> | ||
195 | <option value="all"><roundcube:label name="allfolders" /></option> | ||
196 | </select> | ||
197 | </div> | ||
198 | diff --git a/skins/larry/templates/mail.html b/skins/larry/templates/mail.html | ||
199 | index 5ef0bc211..e0e8280ad 100644 | ||
200 | --- a/skins/larry/templates/mail.html | ||
201 | +++ b/skins/larry/templates/mail.html | ||
202 | @@ -56,6 +56,7 @@ | ||
203 | <li role="separator" class="separator"><label><roundcube:label name="searchscope" /></label></li> | ||
204 | <li role="menuitem"><label><input type="radio" name="s_scope" value="base" id="s_scope_base" onclick="UI.set_searchscope(this)" /> <span><roundcube:label name="currentfolder" /></span></label></li> | ||
205 | <li role="menuitem"><label><input type="radio" name="s_scope" value="sub" id="s_scope_sub" onclick="UI.set_searchscope(this)" /> <span><roundcube:label name="subfolders" /></span></label></li> | ||
206 | + <li role="menuitem"><label><input type="radio" name="s_scope" value="allsubscribed" id="s_scope_allsubscribed" onclick="UI.set_searchscope(this)" /> <span><roundcube:label name="allsubscribedfolders" /></span></label></li> | ||
207 | <li role="menuitem"><label><input type="radio" name="s_scope" value="all" id="s_scope_all" onclick="UI.set_searchscope(this)" /> <span><roundcube:label name="allfolders" /></span></label></li> | ||
208 | </ul> | ||
209 | <div class="buttons"><a class="button" href="#" onclick="if (rcmail.command('search')) UI.show_popup('searchmenu',false)"><roundcube:label name="search" /></a></div> | ||
diff --git a/pkgs/webapps/roundcubemail/default.nix b/pkgs/webapps/roundcubemail/default.nix deleted file mode 100644 index bdddf2f..0000000 --- a/pkgs/webapps/roundcubemail/default.nix +++ /dev/null | |||
@@ -1,85 +0,0 @@ | |||
1 | { varDir ? "/var/lib/roundcubemail" | ||
2 | , roundcube_config ? "/etc/roundcube/config.php" | ||
3 | , stdenv, fetchurl, jre, unzip, lib, callPackage }: | ||
4 | let | ||
5 | defaultInstall = '' | ||
6 | mkdir -p $out | ||
7 | cp -R . $out/ | ||
8 | cd $out | ||
9 | if [ -d skins -a -d skins/larry -a ! -d skins/elastic ]; then | ||
10 | ln -s larry skins/elastic | ||
11 | fi | ||
12 | ''; | ||
13 | buildPlugin = { appName, version, url, sha256, installPhase ? defaultInstall }: | ||
14 | stdenv.mkDerivation rec { | ||
15 | name = "roundcube-${appName}-${version}"; | ||
16 | inherit version; | ||
17 | phases = "unpackPhase installPhase"; | ||
18 | inherit installPhase; | ||
19 | src = fetchurl { inherit url sha256; }; | ||
20 | passthru.pluginName = appName; | ||
21 | }; | ||
22 | skinNames = []; | ||
23 | allSkins = lib.attrsets.genAttrs skinNames | ||
24 | (name: callPackage (./skins + "/${name}") {}); | ||
25 | pluginNames = [ | ||
26 | "automatic_addressbook" "carddav" "contextmenu" | ||
27 | "contextmenu_folder" "html5_notifier" "ident_switch" | ||
28 | "message_highlight" "thunderbird_labels" | ||
29 | ]; | ||
30 | allPlugins = lib.attrsets.genAttrs pluginNames | ||
31 | (name: callPackage (./plugins + "/${name}") { inherit buildPlugin; }); | ||
32 | toPassthru = pkg: plugins: skins: { | ||
33 | inherit plugins skins allSkins allPlugins; | ||
34 | withSkins = withSkins pkg; | ||
35 | withPlugins = withPlugins pkg; | ||
36 | }; | ||
37 | withPlugins = pkg: toPlugins: | ||
38 | let | ||
39 | plugins = toPlugins allPlugins; | ||
40 | toInstallPlugin = n: "ln -s ${n} $out/plugins/${n.pluginName}"; | ||
41 | newRoundcube = pkg.overrideAttrs(old: { | ||
42 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallPlugin plugins); | ||
43 | passthru = toPassthru newRoundcube (pkg.plugins ++ plugins) pkg.skins; | ||
44 | }); | ||
45 | in newRoundcube; | ||
46 | withSkins = pkg: toSkins: | ||
47 | let | ||
48 | skins = toSkins allSkins; | ||
49 | toInstallSkin = n: "ln -s ${n} $out/skins/${n.skinName}"; | ||
50 | newRoundcube = pkg.overrideAttrs(old: { | ||
51 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallSkin skins); | ||
52 | passthru = toPassthru newRoundcube pkg.plugins (pkg.skins ++ skins); | ||
53 | }); | ||
54 | in newRoundcube; | ||
55 | shrinker = fetchurl { | ||
56 | url = "https://dl.google.com/closure-compiler/compiler-20200719.zip"; | ||
57 | sha256 = "0j46y9ack2yq67naca6nfysbmyilwjlkl29dbswidf1lq09yhhj3"; | ||
58 | }; | ||
59 | package = stdenv.mkDerivation rec { | ||
60 | version = "1.4.4"; | ||
61 | name = "roundcubemail-${version}"; | ||
62 | src= fetchurl { | ||
63 | url = "https://github.com/roundcube/roundcubemail/releases/download/${version}/${name}-complete.tar.gz"; | ||
64 | sha256 = "1my726p0wmsn21nbdsjx02h6hnbh8nidzipzdy0gk0qgda1j729b"; | ||
65 | }; | ||
66 | patches = [ ./add_all.patch ]; # This patch includes js modification which requires to re-run the jsshrink below | ||
67 | buildInputs = [ unzip jre ]; | ||
68 | buildPhase = '' | ||
69 | mkdir -p /tmp | ||
70 | unzip -p "${shrinker}" "*.jar" > "/tmp/compiler.jar" | ||
71 | ./bin/jsshrink.sh | ||
72 | sed -i \ | ||
73 | -e "s|RCUBE_INSTALL_PATH . 'temp.*|'${varDir}/cache';|" \ | ||
74 | config/defaults.inc.php | ||
75 | sed -i \ | ||
76 | -e "s|RCUBE_INSTALL_PATH . 'logs.*|'${varDir}/logs';|" \ | ||
77 | config/defaults.inc.php | ||
78 | ''; | ||
79 | installPhase = '' | ||
80 | cp -a . $out | ||
81 | ln -s ${roundcube_config} $out/config/config.inc.php | ||
82 | ''; | ||
83 | passthru = toPassthru package [] []; | ||
84 | }; | ||
85 | in package | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/automatic_addressbook/default.nix b/pkgs/webapps/roundcubemail/plugins/automatic_addressbook/default.nix deleted file mode 100644 index cd9efee..0000000 --- a/pkgs/webapps/roundcubemail/plugins/automatic_addressbook/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "automatic_addressbook"; | ||
4 | version = "0.4.3"; | ||
5 | url = "https://github.com/sblaisot/${appName}/archive/${version}.tar.gz"; | ||
6 | sha256 = "0bx5qjzp3a3wc72fr295bvgsy5n15949c041hq76n6c7sqdn7inc"; | ||
7 | } | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/carddav/default.nix b/pkgs/webapps/roundcubemail/plugins/carddav/default.nix deleted file mode 100644 index ad6856b..0000000 --- a/pkgs/webapps/roundcubemail/plugins/carddav/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "carddav"; | ||
4 | version = "3.0.3"; | ||
5 | url = "https://github.com/blind-coder/rcmcarddav/releases/download/v${version}/${appName}-${version}.tar.bz2"; | ||
6 | sha256 = "0cf5rnqkhhag2vdy808zfpr4l5586fn43nvcia8ac1ha58azrxal"; | ||
7 | } | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/contextmenu/default.nix b/pkgs/webapps/roundcubemail/plugins/contextmenu/default.nix deleted file mode 100644 index 34a43a7..0000000 --- a/pkgs/webapps/roundcubemail/plugins/contextmenu/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "contextmenu"; | ||
4 | version = "3.2"; | ||
5 | url = "https://github.com/johndoh/roundcube-${appName}/archive/${version}.tar.gz"; | ||
6 | sha256 = "1j7qns42bvgwav8d5n8g16iajyrhydd76hgil8625f3xyjbv4mx0"; | ||
7 | } | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/contextmenu_folder/default.nix b/pkgs/webapps/roundcubemail/plugins/contextmenu_folder/default.nix deleted file mode 100644 index e5cb46d..0000000 --- a/pkgs/webapps/roundcubemail/plugins/contextmenu_folder/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "contextmenu_folder"; | ||
4 | version = "1.3.3"; | ||
5 | url = "https://github.com/random-cuber/${appName}/archive/${version}.tar.gz"; | ||
6 | sha256 = "1ngfws1v8qrpa52rjh7kirc98alchk2vbqwra86h00agyjjlcc57"; | ||
7 | } | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/html5_notifier/default.nix b/pkgs/webapps/roundcubemail/plugins/html5_notifier/default.nix deleted file mode 100644 index a5788b3..0000000 --- a/pkgs/webapps/roundcubemail/plugins/html5_notifier/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "html5_notifier"; | ||
4 | version = "v0.6.4"; | ||
5 | url = "https://github.com/stremlau/${appName}/archive/${version}.tar.gz"; | ||
6 | sha256 = "1w6xkffgxwbahi7acixdh5sgjvsjlfwdq942gkvc64byk8r3bhsj"; | ||
7 | } | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/ident_switch/default.nix b/pkgs/webapps/roundcubemail/plugins/ident_switch/default.nix deleted file mode 100644 index 3e10fee..0000000 --- a/pkgs/webapps/roundcubemail/plugins/ident_switch/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "ident_switch"; | ||
4 | version = "4.2"; | ||
5 | url = "https://bitbucket.org/BoresExpress/${appName}/get/${version}.tar.gz"; | ||
6 | sha256 = "0rf2krjsnly4i0mzgsbx09xckr3p9a9dzxf8qq4lkyng1a7dvjkq"; | ||
7 | } | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/message_highlight/default.nix b/pkgs/webapps/roundcubemail/plugins/message_highlight/default.nix deleted file mode 100644 index dc7138a..0000000 --- a/pkgs/webapps/roundcubemail/plugins/message_highlight/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "message_highlight"; | ||
4 | version = "4.4"; | ||
5 | url = "https://github.com/corbosman/${appName}/archive/${version}.tar.gz"; | ||
6 | sha256 = "12c4x47y70xdl5pgm8csh5i4yiyhpi232lvjbixmca6di4lkhh9j"; | ||
7 | } | ||
diff --git a/pkgs/webapps/roundcubemail/plugins/thunderbird_labels/default.nix b/pkgs/webapps/roundcubemail/plugins/thunderbird_labels/default.nix deleted file mode 100644 index b67f16a..0000000 --- a/pkgs/webapps/roundcubemail/plugins/thunderbird_labels/default.nix +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | { buildPlugin }: | ||
2 | buildPlugin rec { | ||
3 | appName = "thunderbird_labels"; | ||
4 | version = "v1.4.2"; | ||
5 | url = "https://github.com/mike-kfed/roundcube-${appName}/archive/${version}.tar.gz"; | ||
6 | sha256 = "00dqqlq6m8a6dwynp6gwfimc10anbs8kh0qdy8xvq2l06hk6jxyc"; | ||
7 | } | ||
diff --git a/pkgs/webapps/spip/default.nix b/pkgs/webapps/spip/default.nix deleted file mode 100644 index 20d5c8c..0000000 --- a/pkgs/webapps/spip/default.nix +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | { siteName ? "spip" | ||
2 | , siteDir ? runCommand "empty" { preferLocalBuild = true; } "mkdir -p $out" | ||
3 | , environment ? "prod" | ||
4 | , ldap ? false | ||
5 | , varDir ? "/var/lib/${siteName}_${environment}" | ||
6 | , lib, fetchzip, runCommand, stdenv }: | ||
7 | let | ||
8 | app = stdenv.mkDerivation rec { | ||
9 | name = "${siteName}-${environment}-spip-${version}"; | ||
10 | version = "3.2.7"; | ||
11 | src = fetchzip { | ||
12 | url = "https://files.spip.net/spip/archives/SPIP-v${version}.zip"; | ||
13 | sha256 = "0n4kc95nhn524zbb11bpfjs965pm4v026s3m3q44pl8nyms91r33"; | ||
14 | }; | ||
15 | paches = lib.optionals ldap [ ./spip_ldap_patch.patch ]; | ||
16 | buildPhase = '' | ||
17 | rm -rf IMG local tmp config/remove.txt | ||
18 | ln -sf ${./spip_mes_options.php} config/mes_options.php | ||
19 | echo "Require all denied" > "config/.htaccess" | ||
20 | ln -sf ${varDir}/{IMG,local} . | ||
21 | ''; | ||
22 | installPhase = '' | ||
23 | cp -a . $out | ||
24 | cp -a ${siteDir}/* $out | ||
25 | ''; | ||
26 | passthru = { | ||
27 | inherit siteName siteDir environment varDir; | ||
28 | webRoot = app; | ||
29 | spipConfig = ./spip_mes_options.php; | ||
30 | }; | ||
31 | }; | ||
32 | in app | ||
diff --git a/pkgs/webapps/spip/spip_ldap_patch.patch b/pkgs/webapps/spip/spip_ldap_patch.patch deleted file mode 100644 index 653c909..0000000 --- a/pkgs/webapps/spip/spip_ldap_patch.patch +++ /dev/null | |||
@@ -1,60 +0,0 @@ | |||
1 | --- old/ecrire/auth/ldap.php 2017-06-08 21:58:17.000000000 +0200 | ||
2 | +++ new/ecrire/auth/ldap.php 2017-06-10 02:54:02.687954143 +0200 | ||
3 | @@ -171,24 +171,41 @@ | ||
4 | $desc = isset($ldap['attributes']) && $ldap['attributes'] ? $ldap['attributes'] : $GLOBALS['ldap_attributes'] ; | ||
5 | |||
6 | $logins = is_array($desc['login']) ? $desc['login'] : array($desc['login']); | ||
7 | + if (isset($GLOBALS['ldap_search'])) { | ||
8 | + $search_query = str_replace("%user%", $login_search, $GLOBALS['ldap_search']); | ||
9 | + $result = @ldap_search($ldap_link, $ldap_base, $search_query, array("dn")); | ||
10 | + $info = @ldap_get_entries($ldap_link, $result); | ||
11 | + // Ne pas accepter les resultats si plus d'une entree | ||
12 | + // (on veut un attribut unique) | ||
13 | |||
14 | - // Tenter une recherche pour essayer de retrouver le DN | ||
15 | - foreach ($logins as $att) { | ||
16 | - $result = @ldap_search($ldap_link, $ldap_base, "$att=$login_search", array("dn")); | ||
17 | - $info = @ldap_get_entries($ldap_link, $result); | ||
18 | - // Ne pas accepter les resultats si plus d'une entree | ||
19 | - // (on veut un attribut unique) | ||
20 | + if (is_array($info) and $info['count'] == 1) { | ||
21 | + $dn = $info[0]['dn']; | ||
22 | + if (!$checkpass) { | ||
23 | + return $dn; | ||
24 | + } | ||
25 | + if (@ldap_bind($ldap_link, $dn, $pass)) { | ||
26 | + return $dn; | ||
27 | + } | ||
28 | + } | ||
29 | + } else { | ||
30 | + // Tenter une recherche pour essayer de retrouver le DN | ||
31 | + foreach ($logins as $att) { | ||
32 | + $result = @ldap_search($ldap_link, $ldap_base, "$att=$login_search", array("dn")); | ||
33 | + $info = @ldap_get_entries($ldap_link, $result); | ||
34 | + // Ne pas accepter les resultats si plus d'une entree | ||
35 | + // (on veut un attribut unique) | ||
36 | |||
37 | - if (is_array($info) and $info['count'] == 1) { | ||
38 | - $dn = $info[0]['dn']; | ||
39 | - if (!$checkpass) { | ||
40 | - return $dn; | ||
41 | - } | ||
42 | - if (@ldap_bind($ldap_link, $dn, $pass)) { | ||
43 | - return $dn; | ||
44 | - } | ||
45 | - } | ||
46 | - } | ||
47 | + if (is_array($info) and $info['count'] == 1) { | ||
48 | + $dn = $info[0]['dn']; | ||
49 | + if (!$checkpass) { | ||
50 | + return $dn; | ||
51 | + } | ||
52 | + if (@ldap_bind($ldap_link, $dn, $pass)) { | ||
53 | + return $dn; | ||
54 | + } | ||
55 | + } | ||
56 | + } | ||
57 | + } | ||
58 | |||
59 | if ($checkpass and !isset($dn)) { | ||
60 | // Si echec, essayer de deviner le DN | ||
diff --git a/pkgs/webapps/spip/spip_mes_options.php b/pkgs/webapps/spip/spip_mes_options.php deleted file mode 100644 index 8db8389..0000000 --- a/pkgs/webapps/spip/spip_mes_options.php +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | <?php // /!\ Important: There must be no blank space before <?php or after ?> | ||
2 | // This file was inspired from the spip contrib website | ||
3 | // http://www.spip.net/fr_article3811.html | ||
4 | |||
5 | $config_dir = getenv('SPIP_CONFIG_DIR') . '/'; | ||
6 | $var_dir = getenv('SPIP_VAR_DIR') . '/'; | ||
7 | |||
8 | $cookie_prefix = str_replace('.', '_', getenv("SPIP_SITE")); | ||
9 | $table_prefix = 'spip'; | ||
10 | |||
11 | spip_initialisation( | ||
12 | $config_dir, | ||
13 | _DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES, | ||
14 | $var_dir . _NOM_TEMPORAIRES_INACCESSIBLES, | ||
15 | _DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES | ||
16 | ); | ||
17 | |||
18 | ?> | ||
diff --git a/pkgs/webapps/surfer/default.nix b/pkgs/webapps/surfer/default.nix deleted file mode 100644 index 9a04da5..0000000 --- a/pkgs/webapps/surfer/default.nix +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | { callPackage, mylibs, sources }: | ||
2 | # built using node2nix -l package-lock.json | ||
3 | # and changing "./." to "src" | ||
4 | (callPackage ./node-packages.nix { | ||
5 | src = sources.webapps-surfer; | ||
6 | nodeEnv = callPackage mylibs.nodeEnv {}; | ||
7 | }).package.overrideAttrs(old: { | ||
8 | postInstall = '' | ||
9 | mkdir -p $out/bin | ||
10 | ln -s ../cloudron-surfer/server.js $out/lib/node_modules/.bin/surfer-server | ||
11 | ''; | ||
12 | }) | ||
diff --git a/pkgs/webapps/surfer/node-packages.nix b/pkgs/webapps/surfer/node-packages.nix deleted file mode 100644 index a1fb5ba..0000000 --- a/pkgs/webapps/surfer/node-packages.nix +++ /dev/null | |||
@@ -1,2437 +0,0 @@ | |||
1 | # This file has been generated by node2nix 1.8.0. Do not edit! | ||
2 | |||
3 | {nodeEnv, src, fetchurl, fetchgit, globalBuildInputs ? []}: | ||
4 | |||
5 | let | ||
6 | sources = { | ||
7 | "accepts-1.3.4" = { | ||
8 | name = "accepts"; | ||
9 | packageName = "accepts"; | ||
10 | version = "1.3.4"; | ||
11 | src = fetchurl { | ||
12 | url = "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz"; | ||
13 | sha1 = "86246758c7dd6d21a6474ff084a4740ec05eb21f"; | ||
14 | }; | ||
15 | }; | ||
16 | "ajv-5.5.2" = { | ||
17 | name = "ajv"; | ||
18 | packageName = "ajv"; | ||
19 | version = "5.5.2"; | ||
20 | src = fetchurl { | ||
21 | url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz"; | ||
22 | sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965"; | ||
23 | }; | ||
24 | }; | ||
25 | "archiver-4.0.1" = { | ||
26 | name = "archiver"; | ||
27 | packageName = "archiver"; | ||
28 | version = "4.0.1"; | ||
29 | src = fetchurl { | ||
30 | url = "https://registry.npmjs.org/archiver/-/archiver-4.0.1.tgz"; | ||
31 | sha512 = "/YV1pU4Nhpf/rJArM23W6GTUjT0l++VbjykrCRua1TSXrn+yM8Qs7XvtwSiRse0iCe49EPNf7ktXnPsWuSb91Q=="; | ||
32 | }; | ||
33 | }; | ||
34 | "archiver-utils-2.1.0" = { | ||
35 | name = "archiver-utils"; | ||
36 | packageName = "archiver-utils"; | ||
37 | version = "2.1.0"; | ||
38 | src = fetchurl { | ||
39 | url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz"; | ||
40 | sha512 = "bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw=="; | ||
41 | }; | ||
42 | }; | ||
43 | "array-flatten-1.1.1" = { | ||
44 | name = "array-flatten"; | ||
45 | packageName = "array-flatten"; | ||
46 | version = "1.1.1"; | ||
47 | src = fetchurl { | ||
48 | url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; | ||
49 | sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; | ||
50 | }; | ||
51 | }; | ||
52 | "array-union-1.0.2" = { | ||
53 | name = "array-union"; | ||
54 | packageName = "array-union"; | ||
55 | version = "1.0.2"; | ||
56 | src = fetchurl { | ||
57 | url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"; | ||
58 | sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; | ||
59 | }; | ||
60 | }; | ||
61 | "array-uniq-1.0.3" = { | ||
62 | name = "array-uniq"; | ||
63 | packageName = "array-uniq"; | ||
64 | version = "1.0.3"; | ||
65 | src = fetchurl { | ||
66 | url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"; | ||
67 | sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; | ||
68 | }; | ||
69 | }; | ||
70 | "arrify-1.0.1" = { | ||
71 | name = "arrify"; | ||
72 | packageName = "arrify"; | ||
73 | version = "1.0.1"; | ||
74 | src = fetchurl { | ||
75 | url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; | ||
76 | sha1 = "898508da2226f380df904728456849c1501a4b0d"; | ||
77 | }; | ||
78 | }; | ||
79 | "asn1-0.2.3" = { | ||
80 | name = "asn1"; | ||
81 | packageName = "asn1"; | ||
82 | version = "0.2.3"; | ||
83 | src = fetchurl { | ||
84 | url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; | ||
85 | sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; | ||
86 | }; | ||
87 | }; | ||
88 | "assert-plus-0.1.5" = { | ||
89 | name = "assert-plus"; | ||
90 | packageName = "assert-plus"; | ||
91 | version = "0.1.5"; | ||
92 | src = fetchurl { | ||
93 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; | ||
94 | sha1 = "ee74009413002d84cec7219c6ac811812e723160"; | ||
95 | }; | ||
96 | }; | ||
97 | "assert-plus-1.0.0" = { | ||
98 | name = "assert-plus"; | ||
99 | packageName = "assert-plus"; | ||
100 | version = "1.0.0"; | ||
101 | src = fetchurl { | ||
102 | url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; | ||
103 | sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; | ||
104 | }; | ||
105 | }; | ||
106 | "async-1.5.2" = { | ||
107 | name = "async"; | ||
108 | packageName = "async"; | ||
109 | version = "1.5.2"; | ||
110 | src = fetchurl { | ||
111 | url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz"; | ||
112 | sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; | ||
113 | }; | ||
114 | }; | ||
115 | "async-2.6.3" = { | ||
116 | name = "async"; | ||
117 | packageName = "async"; | ||
118 | version = "2.6.3"; | ||
119 | src = fetchurl { | ||
120 | url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; | ||
121 | sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; | ||
122 | }; | ||
123 | }; | ||
124 | "asynckit-0.4.0" = { | ||
125 | name = "asynckit"; | ||
126 | packageName = "asynckit"; | ||
127 | version = "0.4.0"; | ||
128 | src = fetchurl { | ||
129 | url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; | ||
130 | sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; | ||
131 | }; | ||
132 | }; | ||
133 | "aws-sign2-0.7.0" = { | ||
134 | name = "aws-sign2"; | ||
135 | packageName = "aws-sign2"; | ||
136 | version = "0.7.0"; | ||
137 | src = fetchurl { | ||
138 | url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; | ||
139 | sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; | ||
140 | }; | ||
141 | }; | ||
142 | "aws4-1.6.0" = { | ||
143 | name = "aws4"; | ||
144 | packageName = "aws4"; | ||
145 | version = "1.6.0"; | ||
146 | src = fetchurl { | ||
147 | url = "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz"; | ||
148 | sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e"; | ||
149 | }; | ||
150 | }; | ||
151 | "backoff-2.5.0" = { | ||
152 | name = "backoff"; | ||
153 | packageName = "backoff"; | ||
154 | version = "2.5.0"; | ||
155 | src = fetchurl { | ||
156 | url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz"; | ||
157 | sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; | ||
158 | }; | ||
159 | }; | ||
160 | "balanced-match-1.0.0" = { | ||
161 | name = "balanced-match"; | ||
162 | packageName = "balanced-match"; | ||
163 | version = "1.0.0"; | ||
164 | src = fetchurl { | ||
165 | url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; | ||
166 | sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; | ||
167 | }; | ||
168 | }; | ||
169 | "base64-js-1.3.1" = { | ||
170 | name = "base64-js"; | ||
171 | packageName = "base64-js"; | ||
172 | version = "1.3.1"; | ||
173 | src = fetchurl { | ||
174 | url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz"; | ||
175 | sha512 = "mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g=="; | ||
176 | }; | ||
177 | }; | ||
178 | "basic-auth-2.0.1" = { | ||
179 | name = "basic-auth"; | ||
180 | packageName = "basic-auth"; | ||
181 | version = "2.0.1"; | ||
182 | src = fetchurl { | ||
183 | url = "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz"; | ||
184 | sha512 = "NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg=="; | ||
185 | }; | ||
186 | }; | ||
187 | "batch-0.6.1" = { | ||
188 | name = "batch"; | ||
189 | packageName = "batch"; | ||
190 | version = "0.6.1"; | ||
191 | src = fetchurl { | ||
192 | url = "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz"; | ||
193 | sha1 = "dc34314f4e679318093fc760272525f94bf25c16"; | ||
194 | }; | ||
195 | }; | ||
196 | "bcrypt-pbkdf-1.0.1" = { | ||
197 | name = "bcrypt-pbkdf"; | ||
198 | packageName = "bcrypt-pbkdf"; | ||
199 | version = "1.0.1"; | ||
200 | src = fetchurl { | ||
201 | url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz"; | ||
202 | sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d"; | ||
203 | }; | ||
204 | }; | ||
205 | "bcryptjs-2.4.3" = { | ||
206 | name = "bcryptjs"; | ||
207 | packageName = "bcryptjs"; | ||
208 | version = "2.4.3"; | ||
209 | src = fetchurl { | ||
210 | url = "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz"; | ||
211 | sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb"; | ||
212 | }; | ||
213 | }; | ||
214 | "bl-4.0.2" = { | ||
215 | name = "bl"; | ||
216 | packageName = "bl"; | ||
217 | version = "4.0.2"; | ||
218 | src = fetchurl { | ||
219 | url = "https://registry.npmjs.org/bl/-/bl-4.0.2.tgz"; | ||
220 | sha512 = "j4OH8f6Qg2bGuWfRiltT2HYGx0e1QcBTrK9KAHNMwMZdQnDZFk0ZSYIpADjYCB3U12nicC5tVJwSIhwOWjb4RQ=="; | ||
221 | }; | ||
222 | }; | ||
223 | "body-parser-1.18.2" = { | ||
224 | name = "body-parser"; | ||
225 | packageName = "body-parser"; | ||
226 | version = "1.18.2"; | ||
227 | src = fetchurl { | ||
228 | url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz"; | ||
229 | sha1 = "87678a19d84b47d859b83199bd59bce222b10454"; | ||
230 | }; | ||
231 | }; | ||
232 | "boom-4.3.1" = { | ||
233 | name = "boom"; | ||
234 | packageName = "boom"; | ||
235 | version = "4.3.1"; | ||
236 | src = fetchurl { | ||
237 | url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz"; | ||
238 | sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31"; | ||
239 | }; | ||
240 | }; | ||
241 | "boom-5.2.0" = { | ||
242 | name = "boom"; | ||
243 | packageName = "boom"; | ||
244 | version = "5.2.0"; | ||
245 | src = fetchurl { | ||
246 | url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz"; | ||
247 | sha512 = "Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw=="; | ||
248 | }; | ||
249 | }; | ||
250 | "brace-expansion-1.1.8" = { | ||
251 | name = "brace-expansion"; | ||
252 | packageName = "brace-expansion"; | ||
253 | version = "1.1.8"; | ||
254 | src = fetchurl { | ||
255 | url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz"; | ||
256 | sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292"; | ||
257 | }; | ||
258 | }; | ||
259 | "buffer-5.6.0" = { | ||
260 | name = "buffer"; | ||
261 | packageName = "buffer"; | ||
262 | version = "5.6.0"; | ||
263 | src = fetchurl { | ||
264 | url = "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz"; | ||
265 | sha512 = "/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw=="; | ||
266 | }; | ||
267 | }; | ||
268 | "buffer-crc32-0.2.13" = { | ||
269 | name = "buffer-crc32"; | ||
270 | packageName = "buffer-crc32"; | ||
271 | version = "0.2.13"; | ||
272 | src = fetchurl { | ||
273 | url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; | ||
274 | sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"; | ||
275 | }; | ||
276 | }; | ||
277 | "bunyan-1.8.12" = { | ||
278 | name = "bunyan"; | ||
279 | packageName = "bunyan"; | ||
280 | version = "1.8.12"; | ||
281 | src = fetchurl { | ||
282 | url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz"; | ||
283 | sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797"; | ||
284 | }; | ||
285 | }; | ||
286 | "bytes-3.0.0" = { | ||
287 | name = "bytes"; | ||
288 | packageName = "bytes"; | ||
289 | version = "3.0.0"; | ||
290 | src = fetchurl { | ||
291 | url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"; | ||
292 | sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; | ||
293 | }; | ||
294 | }; | ||
295 | "caseless-0.12.0" = { | ||
296 | name = "caseless"; | ||
297 | packageName = "caseless"; | ||
298 | version = "0.12.0"; | ||
299 | src = fetchurl { | ||
300 | url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; | ||
301 | sha1 = "1b681c21ff84033c826543090689420d187151dc"; | ||
302 | }; | ||
303 | }; | ||
304 | "co-4.6.0" = { | ||
305 | name = "co"; | ||
306 | packageName = "co"; | ||
307 | version = "4.6.0"; | ||
308 | src = fetchurl { | ||
309 | url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz"; | ||
310 | sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; | ||
311 | }; | ||
312 | }; | ||
313 | "colors-1.1.2" = { | ||
314 | name = "colors"; | ||
315 | packageName = "colors"; | ||
316 | version = "1.1.2"; | ||
317 | src = fetchurl { | ||
318 | url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; | ||
319 | sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; | ||
320 | }; | ||
321 | }; | ||
322 | "combined-stream-1.0.5" = { | ||
323 | name = "combined-stream"; | ||
324 | packageName = "combined-stream"; | ||
325 | version = "1.0.5"; | ||
326 | src = fetchurl { | ||
327 | url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz"; | ||
328 | sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009"; | ||
329 | }; | ||
330 | }; | ||
331 | "combined-stream-1.0.6" = { | ||
332 | name = "combined-stream"; | ||
333 | packageName = "combined-stream"; | ||
334 | version = "1.0.6"; | ||
335 | src = fetchurl { | ||
336 | url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz"; | ||
337 | sha1 = "723e7df6e801ac5613113a7e445a9b69cb632818"; | ||
338 | }; | ||
339 | }; | ||
340 | "combined-stream-1.0.8" = { | ||
341 | name = "combined-stream"; | ||
342 | packageName = "combined-stream"; | ||
343 | version = "1.0.8"; | ||
344 | src = fetchurl { | ||
345 | url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; | ||
346 | sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; | ||
347 | }; | ||
348 | }; | ||
349 | "commander-2.14.1" = { | ||
350 | name = "commander"; | ||
351 | packageName = "commander"; | ||
352 | version = "2.14.1"; | ||
353 | src = fetchurl { | ||
354 | url = "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz"; | ||
355 | sha512 = "+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw=="; | ||
356 | }; | ||
357 | }; | ||
358 | "component-emitter-1.3.0" = { | ||
359 | name = "component-emitter"; | ||
360 | packageName = "component-emitter"; | ||
361 | version = "1.3.0"; | ||
362 | src = fetchurl { | ||
363 | url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"; | ||
364 | sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="; | ||
365 | }; | ||
366 | }; | ||
367 | "compress-commons-3.0.0" = { | ||
368 | name = "compress-commons"; | ||
369 | packageName = "compress-commons"; | ||
370 | version = "3.0.0"; | ||
371 | src = fetchurl { | ||
372 | url = "https://registry.npmjs.org/compress-commons/-/compress-commons-3.0.0.tgz"; | ||
373 | sha512 = "FyDqr8TKX5/X0qo+aVfaZ+PVmNJHJeckFBlq8jZGSJOgnynhfifoyl24qaqdUdDIBe0EVTHByN6NAkqYvE/2Xg=="; | ||
374 | }; | ||
375 | }; | ||
376 | "compressible-2.0.13" = { | ||
377 | name = "compressible"; | ||
378 | packageName = "compressible"; | ||
379 | version = "2.0.13"; | ||
380 | src = fetchurl { | ||
381 | url = "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz"; | ||
382 | sha1 = "0d1020ab924b2fdb4d6279875c7d6daba6baa7a9"; | ||
383 | }; | ||
384 | }; | ||
385 | "compression-1.7.2" = { | ||
386 | name = "compression"; | ||
387 | packageName = "compression"; | ||
388 | version = "1.7.2"; | ||
389 | src = fetchurl { | ||
390 | url = "https://registry.npmjs.org/compression/-/compression-1.7.2.tgz"; | ||
391 | sha1 = "aaffbcd6aaf854b44ebb280353d5ad1651f59a69"; | ||
392 | }; | ||
393 | }; | ||
394 | "concat-map-0.0.1" = { | ||
395 | name = "concat-map"; | ||
396 | packageName = "concat-map"; | ||
397 | version = "0.0.1"; | ||
398 | src = fetchurl { | ||
399 | url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; | ||
400 | sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; | ||
401 | }; | ||
402 | }; | ||
403 | "connect-lastmile-1.2.2" = { | ||
404 | name = "connect-lastmile"; | ||
405 | packageName = "connect-lastmile"; | ||
406 | version = "1.2.2"; | ||
407 | src = fetchurl { | ||
408 | url = "https://registry.npmjs.org/connect-lastmile/-/connect-lastmile-1.2.2.tgz"; | ||
409 | sha512 = "laKBrYAoYNuUYAsJQVUdmCqzi825A0GJ7YuiT8zWP0wU6s0Cv9h1eSdHvXh0DgxaVe0dQaYFufcL1htzPCJIpQ=="; | ||
410 | }; | ||
411 | }; | ||
412 | "connect-timeout-1.9.0" = { | ||
413 | name = "connect-timeout"; | ||
414 | packageName = "connect-timeout"; | ||
415 | version = "1.9.0"; | ||
416 | src = fetchurl { | ||
417 | url = "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.9.0.tgz"; | ||
418 | sha1 = "bc27326b122103714bebfa0d958bab33f6522e3a"; | ||
419 | }; | ||
420 | }; | ||
421 | "content-disposition-0.5.2" = { | ||
422 | name = "content-disposition"; | ||
423 | packageName = "content-disposition"; | ||
424 | version = "0.5.2"; | ||
425 | src = fetchurl { | ||
426 | url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz"; | ||
427 | sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; | ||
428 | }; | ||
429 | }; | ||
430 | "content-type-1.0.4" = { | ||
431 | name = "content-type"; | ||
432 | packageName = "content-type"; | ||
433 | version = "1.0.4"; | ||
434 | src = fetchurl { | ||
435 | url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; | ||
436 | sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; | ||
437 | }; | ||
438 | }; | ||
439 | "cookie-0.3.1" = { | ||
440 | name = "cookie"; | ||
441 | packageName = "cookie"; | ||
442 | version = "0.3.1"; | ||
443 | src = fetchurl { | ||
444 | url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"; | ||
445 | sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; | ||
446 | }; | ||
447 | }; | ||
448 | "cookie-parser-1.4.3" = { | ||
449 | name = "cookie-parser"; | ||
450 | packageName = "cookie-parser"; | ||
451 | version = "1.4.3"; | ||
452 | src = fetchurl { | ||
453 | url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.3.tgz"; | ||
454 | sha1 = "0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5"; | ||
455 | }; | ||
456 | }; | ||
457 | "cookie-signature-1.0.6" = { | ||
458 | name = "cookie-signature"; | ||
459 | packageName = "cookie-signature"; | ||
460 | version = "1.0.6"; | ||
461 | src = fetchurl { | ||
462 | url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; | ||
463 | sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; | ||
464 | }; | ||
465 | }; | ||
466 | "cookiejar-2.1.2" = { | ||
467 | name = "cookiejar"; | ||
468 | packageName = "cookiejar"; | ||
469 | version = "2.1.2"; | ||
470 | src = fetchurl { | ||
471 | url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz"; | ||
472 | sha512 = "Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA=="; | ||
473 | }; | ||
474 | }; | ||
475 | "core-util-is-1.0.2" = { | ||
476 | name = "core-util-is"; | ||
477 | packageName = "core-util-is"; | ||
478 | version = "1.0.2"; | ||
479 | src = fetchurl { | ||
480 | url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; | ||
481 | sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; | ||
482 | }; | ||
483 | }; | ||
484 | "crc-3.4.4" = { | ||
485 | name = "crc"; | ||
486 | packageName = "crc"; | ||
487 | version = "3.4.4"; | ||
488 | src = fetchurl { | ||
489 | url = "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz"; | ||
490 | sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b"; | ||
491 | }; | ||
492 | }; | ||
493 | "crc32-stream-3.0.1" = { | ||
494 | name = "crc32-stream"; | ||
495 | packageName = "crc32-stream"; | ||
496 | version = "3.0.1"; | ||
497 | src = fetchurl { | ||
498 | url = "https://registry.npmjs.org/crc32-stream/-/crc32-stream-3.0.1.tgz"; | ||
499 | sha512 = "mctvpXlbzsvK+6z8kJwSJ5crm7yBwrQMTybJzMw1O4lLGJqjlDCXY2Zw7KheiA6XBEcBmfLx1D88mjRGVJtY9w=="; | ||
500 | }; | ||
501 | }; | ||
502 | "cryptiles-3.1.2" = { | ||
503 | name = "cryptiles"; | ||
504 | packageName = "cryptiles"; | ||
505 | version = "3.1.2"; | ||
506 | src = fetchurl { | ||
507 | url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz"; | ||
508 | sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"; | ||
509 | }; | ||
510 | }; | ||
511 | "dashdash-1.14.1" = { | ||
512 | name = "dashdash"; | ||
513 | packageName = "dashdash"; | ||
514 | version = "1.14.1"; | ||
515 | src = fetchurl { | ||
516 | url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; | ||
517 | sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; | ||
518 | }; | ||
519 | }; | ||
520 | "debug-2.6.9" = { | ||
521 | name = "debug"; | ||
522 | packageName = "debug"; | ||
523 | version = "2.6.9"; | ||
524 | src = fetchurl { | ||
525 | url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; | ||
526 | sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; | ||
527 | }; | ||
528 | }; | ||
529 | "debug-4.1.1" = { | ||
530 | name = "debug"; | ||
531 | packageName = "debug"; | ||
532 | version = "4.1.1"; | ||
533 | src = fetchurl { | ||
534 | url = "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"; | ||
535 | sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; | ||
536 | }; | ||
537 | }; | ||
538 | "del-2.2.2" = { | ||
539 | name = "del"; | ||
540 | packageName = "del"; | ||
541 | version = "2.2.2"; | ||
542 | src = fetchurl { | ||
543 | url = "https://registry.npmjs.org/del/-/del-2.2.2.tgz"; | ||
544 | sha1 = "c12c981d067846c84bcaf862cff930d907ffd1a8"; | ||
545 | }; | ||
546 | }; | ||
547 | "delayed-stream-1.0.0" = { | ||
548 | name = "delayed-stream"; | ||
549 | packageName = "delayed-stream"; | ||
550 | version = "1.0.0"; | ||
551 | src = fetchurl { | ||
552 | url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; | ||
553 | sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; | ||
554 | }; | ||
555 | }; | ||
556 | "depd-1.1.0" = { | ||
557 | name = "depd"; | ||
558 | packageName = "depd"; | ||
559 | version = "1.1.0"; | ||
560 | src = fetchurl { | ||
561 | url = "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz"; | ||
562 | sha1 = "e1bd82c6aab6ced965b97b88b17ed3e528ca18c3"; | ||
563 | }; | ||
564 | }; | ||
565 | "depd-1.1.1" = { | ||
566 | name = "depd"; | ||
567 | packageName = "depd"; | ||
568 | version = "1.1.1"; | ||
569 | src = fetchurl { | ||
570 | url = "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz"; | ||
571 | sha1 = "5783b4e1c459f06fa5ca27f991f3d06e7a310359"; | ||
572 | }; | ||
573 | }; | ||
574 | "depd-1.1.2" = { | ||
575 | name = "depd"; | ||
576 | packageName = "depd"; | ||
577 | version = "1.1.2"; | ||
578 | src = fetchurl { | ||
579 | url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; | ||
580 | sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; | ||
581 | }; | ||
582 | }; | ||
583 | "destroy-1.0.4" = { | ||
584 | name = "destroy"; | ||
585 | packageName = "destroy"; | ||
586 | version = "1.0.4"; | ||
587 | src = fetchurl { | ||
588 | url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; | ||
589 | sha1 = "978857442c44749e4206613e37946205826abd80"; | ||
590 | }; | ||
591 | }; | ||
592 | "dtrace-provider-0.8.7" = { | ||
593 | name = "dtrace-provider"; | ||
594 | packageName = "dtrace-provider"; | ||
595 | version = "0.8.7"; | ||
596 | src = fetchurl { | ||
597 | url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz"; | ||
598 | sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04"; | ||
599 | }; | ||
600 | }; | ||
601 | "ecc-jsbn-0.1.1" = { | ||
602 | name = "ecc-jsbn"; | ||
603 | packageName = "ecc-jsbn"; | ||
604 | version = "0.1.1"; | ||
605 | src = fetchurl { | ||
606 | url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz"; | ||
607 | sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505"; | ||
608 | }; | ||
609 | }; | ||
610 | "ee-first-1.1.1" = { | ||
611 | name = "ee-first"; | ||
612 | packageName = "ee-first"; | ||
613 | version = "1.1.1"; | ||
614 | src = fetchurl { | ||
615 | url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; | ||
616 | sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; | ||
617 | }; | ||
618 | }; | ||
619 | "encodeurl-1.0.2" = { | ||
620 | name = "encodeurl"; | ||
621 | packageName = "encodeurl"; | ||
622 | version = "1.0.2"; | ||
623 | src = fetchurl { | ||
624 | url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; | ||
625 | sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; | ||
626 | }; | ||
627 | }; | ||
628 | "end-of-stream-1.4.4" = { | ||
629 | name = "end-of-stream"; | ||
630 | packageName = "end-of-stream"; | ||
631 | version = "1.4.4"; | ||
632 | src = fetchurl { | ||
633 | url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"; | ||
634 | sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; | ||
635 | }; | ||
636 | }; | ||
637 | "escape-html-1.0.3" = { | ||
638 | name = "escape-html"; | ||
639 | packageName = "escape-html"; | ||
640 | version = "1.0.3"; | ||
641 | src = fetchurl { | ||
642 | url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; | ||
643 | sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; | ||
644 | }; | ||
645 | }; | ||
646 | "etag-1.8.1" = { | ||
647 | name = "etag"; | ||
648 | packageName = "etag"; | ||
649 | version = "1.8.1"; | ||
650 | src = fetchurl { | ||
651 | url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; | ||
652 | sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; | ||
653 | }; | ||
654 | }; | ||
655 | "express-4.16.2" = { | ||
656 | name = "express"; | ||
657 | packageName = "express"; | ||
658 | version = "4.16.2"; | ||
659 | src = fetchurl { | ||
660 | url = "https://registry.npmjs.org/express/-/express-4.16.2.tgz"; | ||
661 | sha1 = "e35c6dfe2d64b7dca0a5cd4f21781be3299e076c"; | ||
662 | }; | ||
663 | }; | ||
664 | "express-session-1.15.6" = { | ||
665 | name = "express-session"; | ||
666 | packageName = "express-session"; | ||
667 | version = "1.15.6"; | ||
668 | src = fetchurl { | ||
669 | url = "https://registry.npmjs.org/express-session/-/express-session-1.15.6.tgz"; | ||
670 | sha512 = "r0nrHTCYtAMrFwZ0kBzZEXa1vtPVrw0dKvGSrKP4dahwBQ1BJpF2/y1Pp4sCD/0kvxV4zZeclyvfmw0B4RMJQA=="; | ||
671 | }; | ||
672 | }; | ||
673 | "extend-3.0.2" = { | ||
674 | name = "extend"; | ||
675 | packageName = "extend"; | ||
676 | version = "3.0.2"; | ||
677 | src = fetchurl { | ||
678 | url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; | ||
679 | sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; | ||
680 | }; | ||
681 | }; | ||
682 | "extsprintf-1.2.0" = { | ||
683 | name = "extsprintf"; | ||
684 | packageName = "extsprintf"; | ||
685 | version = "1.2.0"; | ||
686 | src = fetchurl { | ||
687 | url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz"; | ||
688 | sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; | ||
689 | }; | ||
690 | }; | ||
691 | "extsprintf-1.3.0" = { | ||
692 | name = "extsprintf"; | ||
693 | packageName = "extsprintf"; | ||
694 | version = "1.3.0"; | ||
695 | src = fetchurl { | ||
696 | url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; | ||
697 | sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; | ||
698 | }; | ||
699 | }; | ||
700 | "fast-deep-equal-1.0.0" = { | ||
701 | name = "fast-deep-equal"; | ||
702 | packageName = "fast-deep-equal"; | ||
703 | version = "1.0.0"; | ||
704 | src = fetchurl { | ||
705 | url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz"; | ||
706 | sha1 = "96256a3bc975595eb36d82e9929d060d893439ff"; | ||
707 | }; | ||
708 | }; | ||
709 | "fast-json-stable-stringify-2.0.0" = { | ||
710 | name = "fast-json-stable-stringify"; | ||
711 | packageName = "fast-json-stable-stringify"; | ||
712 | version = "2.0.0"; | ||
713 | src = fetchurl { | ||
714 | url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; | ||
715 | sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; | ||
716 | }; | ||
717 | }; | ||
718 | "fast-safe-stringify-2.0.7" = { | ||
719 | name = "fast-safe-stringify"; | ||
720 | packageName = "fast-safe-stringify"; | ||
721 | version = "2.0.7"; | ||
722 | src = fetchurl { | ||
723 | url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz"; | ||
724 | sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; | ||
725 | }; | ||
726 | }; | ||
727 | "fd-slicer-1.0.1" = { | ||
728 | name = "fd-slicer"; | ||
729 | packageName = "fd-slicer"; | ||
730 | version = "1.0.1"; | ||
731 | src = fetchurl { | ||
732 | url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz"; | ||
733 | sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"; | ||
734 | }; | ||
735 | }; | ||
736 | "finalhandler-1.1.0" = { | ||
737 | name = "finalhandler"; | ||
738 | packageName = "finalhandler"; | ||
739 | version = "1.1.0"; | ||
740 | src = fetchurl { | ||
741 | url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz"; | ||
742 | sha1 = "ce0b6855b45853e791b2fcc680046d88253dd7f5"; | ||
743 | }; | ||
744 | }; | ||
745 | "forever-agent-0.6.1" = { | ||
746 | name = "forever-agent"; | ||
747 | packageName = "forever-agent"; | ||
748 | version = "0.6.1"; | ||
749 | src = fetchurl { | ||
750 | url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; | ||
751 | sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; | ||
752 | }; | ||
753 | }; | ||
754 | "form-data-2.3.2" = { | ||
755 | name = "form-data"; | ||
756 | packageName = "form-data"; | ||
757 | version = "2.3.2"; | ||
758 | src = fetchurl { | ||
759 | url = "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz"; | ||
760 | sha1 = "4970498be604c20c005d4f5c23aecd21d6b49099"; | ||
761 | }; | ||
762 | }; | ||
763 | "form-data-3.0.0" = { | ||
764 | name = "form-data"; | ||
765 | packageName = "form-data"; | ||
766 | version = "3.0.0"; | ||
767 | src = fetchurl { | ||
768 | url = "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz"; | ||
769 | sha512 = "CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg=="; | ||
770 | }; | ||
771 | }; | ||
772 | "formidable-1.2.1" = { | ||
773 | name = "formidable"; | ||
774 | packageName = "formidable"; | ||
775 | version = "1.2.1"; | ||
776 | src = fetchurl { | ||
777 | url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz"; | ||
778 | sha512 = "Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg=="; | ||
779 | }; | ||
780 | }; | ||
781 | "forwarded-0.1.2" = { | ||
782 | name = "forwarded"; | ||
783 | packageName = "forwarded"; | ||
784 | version = "0.1.2"; | ||
785 | src = fetchurl { | ||
786 | url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; | ||
787 | sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; | ||
788 | }; | ||
789 | }; | ||
790 | "fresh-0.5.2" = { | ||
791 | name = "fresh"; | ||
792 | packageName = "fresh"; | ||
793 | version = "0.5.2"; | ||
794 | src = fetchurl { | ||
795 | url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; | ||
796 | sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; | ||
797 | }; | ||
798 | }; | ||
799 | "fs-constants-1.0.0" = { | ||
800 | name = "fs-constants"; | ||
801 | packageName = "fs-constants"; | ||
802 | version = "1.0.0"; | ||
803 | src = fetchurl { | ||
804 | url = "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz"; | ||
805 | sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; | ||
806 | }; | ||
807 | }; | ||
808 | "fs.realpath-1.0.0" = { | ||
809 | name = "fs.realpath"; | ||
810 | packageName = "fs.realpath"; | ||
811 | version = "1.0.0"; | ||
812 | src = fetchurl { | ||
813 | url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; | ||
814 | sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; | ||
815 | }; | ||
816 | }; | ||
817 | "getpass-0.1.7" = { | ||
818 | name = "getpass"; | ||
819 | packageName = "getpass"; | ||
820 | version = "0.1.7"; | ||
821 | src = fetchurl { | ||
822 | url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; | ||
823 | sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; | ||
824 | }; | ||
825 | }; | ||
826 | "glob-6.0.4" = { | ||
827 | name = "glob"; | ||
828 | packageName = "glob"; | ||
829 | version = "6.0.4"; | ||
830 | src = fetchurl { | ||
831 | url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; | ||
832 | sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; | ||
833 | }; | ||
834 | }; | ||
835 | "glob-7.1.2" = { | ||
836 | name = "glob"; | ||
837 | packageName = "glob"; | ||
838 | version = "7.1.2"; | ||
839 | src = fetchurl { | ||
840 | url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz"; | ||
841 | sha1 = "c19c9df9a028702d678612384a6552404c636d15"; | ||
842 | }; | ||
843 | }; | ||
844 | "glob-7.1.6" = { | ||
845 | name = "glob"; | ||
846 | packageName = "glob"; | ||
847 | version = "7.1.6"; | ||
848 | src = fetchurl { | ||
849 | url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; | ||
850 | sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; | ||
851 | }; | ||
852 | }; | ||
853 | "globby-5.0.0" = { | ||
854 | name = "globby"; | ||
855 | packageName = "globby"; | ||
856 | version = "5.0.0"; | ||
857 | src = fetchurl { | ||
858 | url = "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz"; | ||
859 | sha1 = "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d"; | ||
860 | }; | ||
861 | }; | ||
862 | "graceful-fs-4.2.4" = { | ||
863 | name = "graceful-fs"; | ||
864 | packageName = "graceful-fs"; | ||
865 | version = "4.2.4"; | ||
866 | src = fetchurl { | ||
867 | url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"; | ||
868 | sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; | ||
869 | }; | ||
870 | }; | ||
871 | "har-schema-2.0.0" = { | ||
872 | name = "har-schema"; | ||
873 | packageName = "har-schema"; | ||
874 | version = "2.0.0"; | ||
875 | src = fetchurl { | ||
876 | url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; | ||
877 | sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; | ||
878 | }; | ||
879 | }; | ||
880 | "har-validator-5.0.3" = { | ||
881 | name = "har-validator"; | ||
882 | packageName = "har-validator"; | ||
883 | version = "5.0.3"; | ||
884 | src = fetchurl { | ||
885 | url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz"; | ||
886 | sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd"; | ||
887 | }; | ||
888 | }; | ||
889 | "hawk-6.0.2" = { | ||
890 | name = "hawk"; | ||
891 | packageName = "hawk"; | ||
892 | version = "6.0.2"; | ||
893 | src = fetchurl { | ||
894 | url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz"; | ||
895 | sha512 = "miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ=="; | ||
896 | }; | ||
897 | }; | ||
898 | "hoek-4.2.1" = { | ||
899 | name = "hoek"; | ||
900 | packageName = "hoek"; | ||
901 | version = "4.2.1"; | ||
902 | src = fetchurl { | ||
903 | url = "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz"; | ||
904 | sha512 = "QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA=="; | ||
905 | }; | ||
906 | }; | ||
907 | "http-errors-1.6.1" = { | ||
908 | name = "http-errors"; | ||
909 | packageName = "http-errors"; | ||
910 | version = "1.6.1"; | ||
911 | src = fetchurl { | ||
912 | url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz"; | ||
913 | sha1 = "5f8b8ed98aca545656bf572997387f904a722257"; | ||
914 | }; | ||
915 | }; | ||
916 | "http-errors-1.6.2" = { | ||
917 | name = "http-errors"; | ||
918 | packageName = "http-errors"; | ||
919 | version = "1.6.2"; | ||
920 | src = fetchurl { | ||
921 | url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz"; | ||
922 | sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736"; | ||
923 | }; | ||
924 | }; | ||
925 | "http-errors-1.6.3" = { | ||
926 | name = "http-errors"; | ||
927 | packageName = "http-errors"; | ||
928 | version = "1.6.3"; | ||
929 | src = fetchurl { | ||
930 | url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz"; | ||
931 | sha1 = "8b55680bb4be283a0b5bf4ea2e38580be1d9320d"; | ||
932 | }; | ||
933 | }; | ||
934 | "http-signature-1.2.0" = { | ||
935 | name = "http-signature"; | ||
936 | packageName = "http-signature"; | ||
937 | version = "1.2.0"; | ||
938 | src = fetchurl { | ||
939 | url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; | ||
940 | sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; | ||
941 | }; | ||
942 | }; | ||
943 | "iconv-lite-0.4.19" = { | ||
944 | name = "iconv-lite"; | ||
945 | packageName = "iconv-lite"; | ||
946 | version = "0.4.19"; | ||
947 | src = fetchurl { | ||
948 | url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"; | ||
949 | sha512 = "oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ=="; | ||
950 | }; | ||
951 | }; | ||
952 | "ieee754-1.1.13" = { | ||
953 | name = "ieee754"; | ||
954 | packageName = "ieee754"; | ||
955 | version = "1.1.13"; | ||
956 | src = fetchurl { | ||
957 | url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz"; | ||
958 | sha512 = "4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="; | ||
959 | }; | ||
960 | }; | ||
961 | "inflight-1.0.6" = { | ||
962 | name = "inflight"; | ||
963 | packageName = "inflight"; | ||
964 | version = "1.0.6"; | ||
965 | src = fetchurl { | ||
966 | url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; | ||
967 | sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; | ||
968 | }; | ||
969 | }; | ||
970 | "inherits-2.0.3" = { | ||
971 | name = "inherits"; | ||
972 | packageName = "inherits"; | ||
973 | version = "2.0.3"; | ||
974 | src = fetchurl { | ||
975 | url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; | ||
976 | sha1 = "633c2c83e3da42a502f52466022480f4208261de"; | ||
977 | }; | ||
978 | }; | ||
979 | "inherits-2.0.4" = { | ||
980 | name = "inherits"; | ||
981 | packageName = "inherits"; | ||
982 | version = "2.0.4"; | ||
983 | src = fetchurl { | ||
984 | url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; | ||
985 | sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; | ||
986 | }; | ||
987 | }; | ||
988 | "ipaddr.js-1.5.2" = { | ||
989 | name = "ipaddr.js"; | ||
990 | packageName = "ipaddr.js"; | ||
991 | version = "1.5.2"; | ||
992 | src = fetchurl { | ||
993 | url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz"; | ||
994 | sha1 = "d4b505bde9946987ccf0fc58d9010ff9607e3fa0"; | ||
995 | }; | ||
996 | }; | ||
997 | "is-path-cwd-1.0.0" = { | ||
998 | name = "is-path-cwd"; | ||
999 | packageName = "is-path-cwd"; | ||
1000 | version = "1.0.0"; | ||
1001 | src = fetchurl { | ||
1002 | url = "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz"; | ||
1003 | sha1 = "d225ec23132e89edd38fda767472e62e65f1106d"; | ||
1004 | }; | ||
1005 | }; | ||
1006 | "is-path-in-cwd-1.0.0" = { | ||
1007 | name = "is-path-in-cwd"; | ||
1008 | packageName = "is-path-in-cwd"; | ||
1009 | version = "1.0.0"; | ||
1010 | src = fetchurl { | ||
1011 | url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz"; | ||
1012 | sha1 = "6477582b8214d602346094567003be8a9eac04dc"; | ||
1013 | }; | ||
1014 | }; | ||
1015 | "is-path-inside-1.0.0" = { | ||
1016 | name = "is-path-inside"; | ||
1017 | packageName = "is-path-inside"; | ||
1018 | version = "1.0.0"; | ||
1019 | src = fetchurl { | ||
1020 | url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz"; | ||
1021 | sha1 = "fc06e5a1683fbda13de667aff717bbc10a48f37f"; | ||
1022 | }; | ||
1023 | }; | ||
1024 | "is-typedarray-1.0.0" = { | ||
1025 | name = "is-typedarray"; | ||
1026 | packageName = "is-typedarray"; | ||
1027 | version = "1.0.0"; | ||
1028 | src = fetchurl { | ||
1029 | url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; | ||
1030 | sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; | ||
1031 | }; | ||
1032 | }; | ||
1033 | "isarray-1.0.0" = { | ||
1034 | name = "isarray"; | ||
1035 | packageName = "isarray"; | ||
1036 | version = "1.0.0"; | ||
1037 | src = fetchurl { | ||
1038 | url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; | ||
1039 | sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; | ||
1040 | }; | ||
1041 | }; | ||
1042 | "isstream-0.1.2" = { | ||
1043 | name = "isstream"; | ||
1044 | packageName = "isstream"; | ||
1045 | version = "0.1.2"; | ||
1046 | src = fetchurl { | ||
1047 | url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; | ||
1048 | sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; | ||
1049 | }; | ||
1050 | }; | ||
1051 | "jsbn-0.1.1" = { | ||
1052 | name = "jsbn"; | ||
1053 | packageName = "jsbn"; | ||
1054 | version = "0.1.1"; | ||
1055 | src = fetchurl { | ||
1056 | url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; | ||
1057 | sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; | ||
1058 | }; | ||
1059 | }; | ||
1060 | "json-schema-0.2.3" = { | ||
1061 | name = "json-schema"; | ||
1062 | packageName = "json-schema"; | ||
1063 | version = "0.2.3"; | ||
1064 | src = fetchurl { | ||
1065 | url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; | ||
1066 | sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; | ||
1067 | }; | ||
1068 | }; | ||
1069 | "json-schema-traverse-0.3.1" = { | ||
1070 | name = "json-schema-traverse"; | ||
1071 | packageName = "json-schema-traverse"; | ||
1072 | version = "0.3.1"; | ||
1073 | src = fetchurl { | ||
1074 | url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; | ||
1075 | sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340"; | ||
1076 | }; | ||
1077 | }; | ||
1078 | "json-stringify-safe-5.0.1" = { | ||
1079 | name = "json-stringify-safe"; | ||
1080 | packageName = "json-stringify-safe"; | ||
1081 | version = "5.0.1"; | ||
1082 | src = fetchurl { | ||
1083 | url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; | ||
1084 | sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; | ||
1085 | }; | ||
1086 | }; | ||
1087 | "jsprim-1.4.1" = { | ||
1088 | name = "jsprim"; | ||
1089 | packageName = "jsprim"; | ||
1090 | version = "1.4.1"; | ||
1091 | src = fetchurl { | ||
1092 | url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; | ||
1093 | sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; | ||
1094 | }; | ||
1095 | }; | ||
1096 | "lazystream-1.0.0" = { | ||
1097 | name = "lazystream"; | ||
1098 | packageName = "lazystream"; | ||
1099 | version = "1.0.0"; | ||
1100 | src = fetchurl { | ||
1101 | url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz"; | ||
1102 | sha1 = "f6995fe0f820392f61396be89462407bb77168e4"; | ||
1103 | }; | ||
1104 | }; | ||
1105 | "ldap-filter-0.2.2" = { | ||
1106 | name = "ldap-filter"; | ||
1107 | packageName = "ldap-filter"; | ||
1108 | version = "0.2.2"; | ||
1109 | src = fetchurl { | ||
1110 | url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.2.2.tgz"; | ||
1111 | sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; | ||
1112 | }; | ||
1113 | }; | ||
1114 | "ldapjs-1.0.2" = { | ||
1115 | name = "ldapjs"; | ||
1116 | packageName = "ldapjs"; | ||
1117 | version = "1.0.2"; | ||
1118 | src = fetchurl { | ||
1119 | url = "https://registry.npmjs.org/ldapjs/-/ldapjs-1.0.2.tgz"; | ||
1120 | sha1 = "544ff7032b7b83c68f0701328d9297aa694340f9"; | ||
1121 | }; | ||
1122 | }; | ||
1123 | "lodash-4.17.15" = { | ||
1124 | name = "lodash"; | ||
1125 | packageName = "lodash"; | ||
1126 | version = "4.17.15"; | ||
1127 | src = fetchurl { | ||
1128 | url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; | ||
1129 | sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; | ||
1130 | }; | ||
1131 | }; | ||
1132 | "lodash.defaults-4.2.0" = { | ||
1133 | name = "lodash.defaults"; | ||
1134 | packageName = "lodash.defaults"; | ||
1135 | version = "4.2.0"; | ||
1136 | src = fetchurl { | ||
1137 | url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz"; | ||
1138 | sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c"; | ||
1139 | }; | ||
1140 | }; | ||
1141 | "lodash.difference-4.5.0" = { | ||
1142 | name = "lodash.difference"; | ||
1143 | packageName = "lodash.difference"; | ||
1144 | version = "4.5.0"; | ||
1145 | src = fetchurl { | ||
1146 | url = "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz"; | ||
1147 | sha1 = "9ccb4e505d486b91651345772885a2df27fd017c"; | ||
1148 | }; | ||
1149 | }; | ||
1150 | "lodash.flatten-4.4.0" = { | ||
1151 | name = "lodash.flatten"; | ||
1152 | packageName = "lodash.flatten"; | ||
1153 | version = "4.4.0"; | ||
1154 | src = fetchurl { | ||
1155 | url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; | ||
1156 | sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; | ||
1157 | }; | ||
1158 | }; | ||
1159 | "lodash.isplainobject-4.0.6" = { | ||
1160 | name = "lodash.isplainobject"; | ||
1161 | packageName = "lodash.isplainobject"; | ||
1162 | version = "4.0.6"; | ||
1163 | src = fetchurl { | ||
1164 | url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz"; | ||
1165 | sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb"; | ||
1166 | }; | ||
1167 | }; | ||
1168 | "lodash.union-4.6.0" = { | ||
1169 | name = "lodash.union"; | ||
1170 | packageName = "lodash.union"; | ||
1171 | version = "4.6.0"; | ||
1172 | src = fetchurl { | ||
1173 | url = "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz"; | ||
1174 | sha1 = "48bb5088409f16f1821666641c44dd1aaae3cd88"; | ||
1175 | }; | ||
1176 | }; | ||
1177 | "media-typer-0.3.0" = { | ||
1178 | name = "media-typer"; | ||
1179 | packageName = "media-typer"; | ||
1180 | version = "0.3.0"; | ||
1181 | src = fetchurl { | ||
1182 | url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; | ||
1183 | sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; | ||
1184 | }; | ||
1185 | }; | ||
1186 | "merge-descriptors-1.0.1" = { | ||
1187 | name = "merge-descriptors"; | ||
1188 | packageName = "merge-descriptors"; | ||
1189 | version = "1.0.1"; | ||
1190 | src = fetchurl { | ||
1191 | url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; | ||
1192 | sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; | ||
1193 | }; | ||
1194 | }; | ||
1195 | "methods-1.1.2" = { | ||
1196 | name = "methods"; | ||
1197 | packageName = "methods"; | ||
1198 | version = "1.1.2"; | ||
1199 | src = fetchurl { | ||
1200 | url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; | ||
1201 | sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; | ||
1202 | }; | ||
1203 | }; | ||
1204 | "mime-1.4.1" = { | ||
1205 | name = "mime"; | ||
1206 | packageName = "mime"; | ||
1207 | version = "1.4.1"; | ||
1208 | src = fetchurl { | ||
1209 | url = "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz"; | ||
1210 | sha512 = "KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ=="; | ||
1211 | }; | ||
1212 | }; | ||
1213 | "mime-2.4.4" = { | ||
1214 | name = "mime"; | ||
1215 | packageName = "mime"; | ||
1216 | version = "2.4.4"; | ||
1217 | src = fetchurl { | ||
1218 | url = "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz"; | ||
1219 | sha512 = "LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA=="; | ||
1220 | }; | ||
1221 | }; | ||
1222 | "mime-db-1.27.0" = { | ||
1223 | name = "mime-db"; | ||
1224 | packageName = "mime-db"; | ||
1225 | version = "1.27.0"; | ||
1226 | src = fetchurl { | ||
1227 | url = "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz"; | ||
1228 | sha1 = "820f572296bbd20ec25ed55e5b5de869e5436eb1"; | ||
1229 | }; | ||
1230 | }; | ||
1231 | "mime-db-1.33.0" = { | ||
1232 | name = "mime-db"; | ||
1233 | packageName = "mime-db"; | ||
1234 | version = "1.33.0"; | ||
1235 | src = fetchurl { | ||
1236 | url = "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz"; | ||
1237 | sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="; | ||
1238 | }; | ||
1239 | }; | ||
1240 | "mime-db-1.38.0" = { | ||
1241 | name = "mime-db"; | ||
1242 | packageName = "mime-db"; | ||
1243 | version = "1.38.0"; | ||
1244 | src = fetchurl { | ||
1245 | url = "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz"; | ||
1246 | sha512 = "bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg=="; | ||
1247 | }; | ||
1248 | }; | ||
1249 | "mime-db-1.44.0" = { | ||
1250 | name = "mime-db"; | ||
1251 | packageName = "mime-db"; | ||
1252 | version = "1.44.0"; | ||
1253 | src = fetchurl { | ||
1254 | url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"; | ||
1255 | sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; | ||
1256 | }; | ||
1257 | }; | ||
1258 | "mime-types-2.1.15" = { | ||
1259 | name = "mime-types"; | ||
1260 | packageName = "mime-types"; | ||
1261 | version = "2.1.15"; | ||
1262 | src = fetchurl { | ||
1263 | url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz"; | ||
1264 | sha1 = "a4ebf5064094569237b8cf70046776d09fc92aed"; | ||
1265 | }; | ||
1266 | }; | ||
1267 | "mime-types-2.1.18" = { | ||
1268 | name = "mime-types"; | ||
1269 | packageName = "mime-types"; | ||
1270 | version = "2.1.18"; | ||
1271 | src = fetchurl { | ||
1272 | url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz"; | ||
1273 | sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ=="; | ||
1274 | }; | ||
1275 | }; | ||
1276 | "mime-types-2.1.22" = { | ||
1277 | name = "mime-types"; | ||
1278 | packageName = "mime-types"; | ||
1279 | version = "2.1.22"; | ||
1280 | src = fetchurl { | ||
1281 | url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz"; | ||
1282 | sha512 = "aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog=="; | ||
1283 | }; | ||
1284 | }; | ||
1285 | "mime-types-2.1.27" = { | ||
1286 | name = "mime-types"; | ||
1287 | packageName = "mime-types"; | ||
1288 | version = "2.1.27"; | ||
1289 | src = fetchurl { | ||
1290 | url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"; | ||
1291 | sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; | ||
1292 | }; | ||
1293 | }; | ||
1294 | "minimatch-3.0.4" = { | ||
1295 | name = "minimatch"; | ||
1296 | packageName = "minimatch"; | ||
1297 | version = "3.0.4"; | ||
1298 | src = fetchurl { | ||
1299 | url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; | ||
1300 | sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; | ||
1301 | }; | ||
1302 | }; | ||
1303 | "minimist-0.0.8" = { | ||
1304 | name = "minimist"; | ||
1305 | packageName = "minimist"; | ||
1306 | version = "0.0.8"; | ||
1307 | src = fetchurl { | ||
1308 | url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; | ||
1309 | sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; | ||
1310 | }; | ||
1311 | }; | ||
1312 | "mkdirp-0.5.1" = { | ||
1313 | name = "mkdirp"; | ||
1314 | packageName = "mkdirp"; | ||
1315 | version = "0.5.1"; | ||
1316 | src = fetchurl { | ||
1317 | url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; | ||
1318 | sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; | ||
1319 | }; | ||
1320 | }; | ||
1321 | "moment-2.24.0" = { | ||
1322 | name = "moment"; | ||
1323 | packageName = "moment"; | ||
1324 | version = "2.24.0"; | ||
1325 | src = fetchurl { | ||
1326 | url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz"; | ||
1327 | sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; | ||
1328 | }; | ||
1329 | }; | ||
1330 | "morgan-1.9.1" = { | ||
1331 | name = "morgan"; | ||
1332 | packageName = "morgan"; | ||
1333 | version = "1.9.1"; | ||
1334 | src = fetchurl { | ||
1335 | url = "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz"; | ||
1336 | sha512 = "HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA=="; | ||
1337 | }; | ||
1338 | }; | ||
1339 | "ms-2.0.0" = { | ||
1340 | name = "ms"; | ||
1341 | packageName = "ms"; | ||
1342 | version = "2.0.0"; | ||
1343 | src = fetchurl { | ||
1344 | url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; | ||
1345 | sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; | ||
1346 | }; | ||
1347 | }; | ||
1348 | "ms-2.1.2" = { | ||
1349 | name = "ms"; | ||
1350 | packageName = "ms"; | ||
1351 | version = "2.1.2"; | ||
1352 | src = fetchurl { | ||
1353 | url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; | ||
1354 | sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; | ||
1355 | }; | ||
1356 | }; | ||
1357 | "multiparty-4.1.3" = { | ||
1358 | name = "multiparty"; | ||
1359 | packageName = "multiparty"; | ||
1360 | version = "4.1.3"; | ||
1361 | src = fetchurl { | ||
1362 | url = "https://registry.npmjs.org/multiparty/-/multiparty-4.1.3.tgz"; | ||
1363 | sha1 = "3c43c7fcb1896e17460436a9dd0b6ef1668e4f94"; | ||
1364 | }; | ||
1365 | }; | ||
1366 | "mv-2.1.1" = { | ||
1367 | name = "mv"; | ||
1368 | packageName = "mv"; | ||
1369 | version = "2.1.1"; | ||
1370 | src = fetchurl { | ||
1371 | url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"; | ||
1372 | sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; | ||
1373 | }; | ||
1374 | }; | ||
1375 | "nan-2.12.1" = { | ||
1376 | name = "nan"; | ||
1377 | packageName = "nan"; | ||
1378 | version = "2.12.1"; | ||
1379 | src = fetchurl { | ||
1380 | url = "https://registry.npmjs.org/nan/-/nan-2.12.1.tgz"; | ||
1381 | sha512 = "JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw=="; | ||
1382 | }; | ||
1383 | }; | ||
1384 | "ncp-2.0.0" = { | ||
1385 | name = "ncp"; | ||
1386 | packageName = "ncp"; | ||
1387 | version = "2.0.0"; | ||
1388 | src = fetchurl { | ||
1389 | url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; | ||
1390 | sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; | ||
1391 | }; | ||
1392 | }; | ||
1393 | "negotiator-0.6.1" = { | ||
1394 | name = "negotiator"; | ||
1395 | packageName = "negotiator"; | ||
1396 | version = "0.6.1"; | ||
1397 | src = fetchurl { | ||
1398 | url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz"; | ||
1399 | sha1 = "2b327184e8992101177b28563fb5e7102acd0ca9"; | ||
1400 | }; | ||
1401 | }; | ||
1402 | "normalize-path-3.0.0" = { | ||
1403 | name = "normalize-path"; | ||
1404 | packageName = "normalize-path"; | ||
1405 | version = "3.0.0"; | ||
1406 | src = fetchurl { | ||
1407 | url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; | ||
1408 | sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; | ||
1409 | }; | ||
1410 | }; | ||
1411 | "oauth-sign-0.8.2" = { | ||
1412 | name = "oauth-sign"; | ||
1413 | packageName = "oauth-sign"; | ||
1414 | version = "0.8.2"; | ||
1415 | src = fetchurl { | ||
1416 | url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz"; | ||
1417 | sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; | ||
1418 | }; | ||
1419 | }; | ||
1420 | "object-assign-4.1.1" = { | ||
1421 | name = "object-assign"; | ||
1422 | packageName = "object-assign"; | ||
1423 | version = "4.1.1"; | ||
1424 | src = fetchurl { | ||
1425 | url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; | ||
1426 | sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; | ||
1427 | }; | ||
1428 | }; | ||
1429 | "on-finished-2.3.0" = { | ||
1430 | name = "on-finished"; | ||
1431 | packageName = "on-finished"; | ||
1432 | version = "2.3.0"; | ||
1433 | src = fetchurl { | ||
1434 | url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; | ||
1435 | sha1 = "20f1336481b083cd75337992a16971aa2d906947"; | ||
1436 | }; | ||
1437 | }; | ||
1438 | "on-headers-1.0.1" = { | ||
1439 | name = "on-headers"; | ||
1440 | packageName = "on-headers"; | ||
1441 | version = "1.0.1"; | ||
1442 | src = fetchurl { | ||
1443 | url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz"; | ||
1444 | sha1 = "928f5d0f470d49342651ea6794b0857c100693f7"; | ||
1445 | }; | ||
1446 | }; | ||
1447 | "once-1.4.0" = { | ||
1448 | name = "once"; | ||
1449 | packageName = "once"; | ||
1450 | version = "1.4.0"; | ||
1451 | src = fetchurl { | ||
1452 | url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; | ||
1453 | sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; | ||
1454 | }; | ||
1455 | }; | ||
1456 | "parseurl-1.3.2" = { | ||
1457 | name = "parseurl"; | ||
1458 | packageName = "parseurl"; | ||
1459 | version = "1.3.2"; | ||
1460 | src = fetchurl { | ||
1461 | url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz"; | ||
1462 | sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3"; | ||
1463 | }; | ||
1464 | }; | ||
1465 | "path-is-absolute-1.0.1" = { | ||
1466 | name = "path-is-absolute"; | ||
1467 | packageName = "path-is-absolute"; | ||
1468 | version = "1.0.1"; | ||
1469 | src = fetchurl { | ||
1470 | url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; | ||
1471 | sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; | ||
1472 | }; | ||
1473 | }; | ||
1474 | "path-is-inside-1.0.2" = { | ||
1475 | name = "path-is-inside"; | ||
1476 | packageName = "path-is-inside"; | ||
1477 | version = "1.0.2"; | ||
1478 | src = fetchurl { | ||
1479 | url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; | ||
1480 | sha1 = "365417dede44430d1c11af61027facf074bdfc53"; | ||
1481 | }; | ||
1482 | }; | ||
1483 | "path-to-regexp-0.1.7" = { | ||
1484 | name = "path-to-regexp"; | ||
1485 | packageName = "path-to-regexp"; | ||
1486 | version = "0.1.7"; | ||
1487 | src = fetchurl { | ||
1488 | url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; | ||
1489 | sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; | ||
1490 | }; | ||
1491 | }; | ||
1492 | "pend-1.2.0" = { | ||
1493 | name = "pend"; | ||
1494 | packageName = "pend"; | ||
1495 | version = "1.2.0"; | ||
1496 | src = fetchurl { | ||
1497 | url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz"; | ||
1498 | sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; | ||
1499 | }; | ||
1500 | }; | ||
1501 | "performance-now-2.1.0" = { | ||
1502 | name = "performance-now"; | ||
1503 | packageName = "performance-now"; | ||
1504 | version = "2.1.0"; | ||
1505 | src = fetchurl { | ||
1506 | url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; | ||
1507 | sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; | ||
1508 | }; | ||
1509 | }; | ||
1510 | "pify-2.3.0" = { | ||
1511 | name = "pify"; | ||
1512 | packageName = "pify"; | ||
1513 | version = "2.3.0"; | ||
1514 | src = fetchurl { | ||
1515 | url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; | ||
1516 | sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; | ||
1517 | }; | ||
1518 | }; | ||
1519 | "pinkie-2.0.4" = { | ||
1520 | name = "pinkie"; | ||
1521 | packageName = "pinkie"; | ||
1522 | version = "2.0.4"; | ||
1523 | src = fetchurl { | ||
1524 | url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; | ||
1525 | sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; | ||
1526 | }; | ||
1527 | }; | ||
1528 | "pinkie-promise-2.0.1" = { | ||
1529 | name = "pinkie-promise"; | ||
1530 | packageName = "pinkie-promise"; | ||
1531 | version = "2.0.1"; | ||
1532 | src = fetchurl { | ||
1533 | url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; | ||
1534 | sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; | ||
1535 | }; | ||
1536 | }; | ||
1537 | "precond-0.2.3" = { | ||
1538 | name = "precond"; | ||
1539 | packageName = "precond"; | ||
1540 | version = "0.2.3"; | ||
1541 | src = fetchurl { | ||
1542 | url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz"; | ||
1543 | sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; | ||
1544 | }; | ||
1545 | }; | ||
1546 | "process-nextick-args-2.0.1" = { | ||
1547 | name = "process-nextick-args"; | ||
1548 | packageName = "process-nextick-args"; | ||
1549 | version = "2.0.1"; | ||
1550 | src = fetchurl { | ||
1551 | url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; | ||
1552 | sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; | ||
1553 | }; | ||
1554 | }; | ||
1555 | "proxy-addr-2.0.2" = { | ||
1556 | name = "proxy-addr"; | ||
1557 | packageName = "proxy-addr"; | ||
1558 | version = "2.0.2"; | ||
1559 | src = fetchurl { | ||
1560 | url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz"; | ||
1561 | sha1 = "6571504f47bb988ec8180253f85dd7e14952bdec"; | ||
1562 | }; | ||
1563 | }; | ||
1564 | "punycode-1.4.1" = { | ||
1565 | name = "punycode"; | ||
1566 | packageName = "punycode"; | ||
1567 | version = "1.4.1"; | ||
1568 | src = fetchurl { | ||
1569 | url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; | ||
1570 | sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; | ||
1571 | }; | ||
1572 | }; | ||
1573 | "qs-6.5.1" = { | ||
1574 | name = "qs"; | ||
1575 | packageName = "qs"; | ||
1576 | version = "6.5.1"; | ||
1577 | src = fetchurl { | ||
1578 | url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz"; | ||
1579 | sha512 = "eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="; | ||
1580 | }; | ||
1581 | }; | ||
1582 | "qs-6.9.1" = { | ||
1583 | name = "qs"; | ||
1584 | packageName = "qs"; | ||
1585 | version = "6.9.1"; | ||
1586 | src = fetchurl { | ||
1587 | url = "https://registry.npmjs.org/qs/-/qs-6.9.1.tgz"; | ||
1588 | sha512 = "Cxm7/SS/y/Z3MHWSxXb8lIFqgqBowP5JMlTUFyJN88y0SGQhVmZnqFK/PeuMX9LzUyWsqqhNxIyg0jlzq946yA=="; | ||
1589 | }; | ||
1590 | }; | ||
1591 | "random-bytes-1.0.0" = { | ||
1592 | name = "random-bytes"; | ||
1593 | packageName = "random-bytes"; | ||
1594 | version = "1.0.0"; | ||
1595 | src = fetchurl { | ||
1596 | url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz"; | ||
1597 | sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b"; | ||
1598 | }; | ||
1599 | }; | ||
1600 | "range-parser-1.2.0" = { | ||
1601 | name = "range-parser"; | ||
1602 | packageName = "range-parser"; | ||
1603 | version = "1.2.0"; | ||
1604 | src = fetchurl { | ||
1605 | url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz"; | ||
1606 | sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e"; | ||
1607 | }; | ||
1608 | }; | ||
1609 | "raw-body-2.3.2" = { | ||
1610 | name = "raw-body"; | ||
1611 | packageName = "raw-body"; | ||
1612 | version = "2.3.2"; | ||
1613 | src = fetchurl { | ||
1614 | url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz"; | ||
1615 | sha1 = "bcd60c77d3eb93cde0050295c3f379389bc88f89"; | ||
1616 | }; | ||
1617 | }; | ||
1618 | "readable-stream-2.3.7" = { | ||
1619 | name = "readable-stream"; | ||
1620 | packageName = "readable-stream"; | ||
1621 | version = "2.3.7"; | ||
1622 | src = fetchurl { | ||
1623 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; | ||
1624 | sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; | ||
1625 | }; | ||
1626 | }; | ||
1627 | "readable-stream-3.4.0" = { | ||
1628 | name = "readable-stream"; | ||
1629 | packageName = "readable-stream"; | ||
1630 | version = "3.4.0"; | ||
1631 | src = fetchurl { | ||
1632 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz"; | ||
1633 | sha512 = "jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ=="; | ||
1634 | }; | ||
1635 | }; | ||
1636 | "readable-stream-3.6.0" = { | ||
1637 | name = "readable-stream"; | ||
1638 | packageName = "readable-stream"; | ||
1639 | version = "3.6.0"; | ||
1640 | src = fetchurl { | ||
1641 | url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; | ||
1642 | sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; | ||
1643 | }; | ||
1644 | }; | ||
1645 | "readline-sync-1.4.9" = { | ||
1646 | name = "readline-sync"; | ||
1647 | packageName = "readline-sync"; | ||
1648 | version = "1.4.9"; | ||
1649 | src = fetchurl { | ||
1650 | url = "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.9.tgz"; | ||
1651 | sha1 = "3eda8e65f23cd2a17e61301b1f0003396af5ecda"; | ||
1652 | }; | ||
1653 | }; | ||
1654 | "request-2.83.0" = { | ||
1655 | name = "request"; | ||
1656 | packageName = "request"; | ||
1657 | version = "2.83.0"; | ||
1658 | src = fetchurl { | ||
1659 | url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz"; | ||
1660 | sha512 = "lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw=="; | ||
1661 | }; | ||
1662 | }; | ||
1663 | "rimraf-2.4.5" = { | ||
1664 | name = "rimraf"; | ||
1665 | packageName = "rimraf"; | ||
1666 | version = "2.4.5"; | ||
1667 | src = fetchurl { | ||
1668 | url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; | ||
1669 | sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; | ||
1670 | }; | ||
1671 | }; | ||
1672 | "rimraf-2.6.1" = { | ||
1673 | name = "rimraf"; | ||
1674 | packageName = "rimraf"; | ||
1675 | version = "2.6.1"; | ||
1676 | src = fetchurl { | ||
1677 | url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz"; | ||
1678 | sha1 = "c2338ec643df7a1b7fe5c54fa86f57428a55f33d"; | ||
1679 | }; | ||
1680 | }; | ||
1681 | "safe-buffer-5.1.1" = { | ||
1682 | name = "safe-buffer"; | ||
1683 | packageName = "safe-buffer"; | ||
1684 | version = "5.1.1"; | ||
1685 | src = fetchurl { | ||
1686 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz"; | ||
1687 | sha512 = "kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="; | ||
1688 | }; | ||
1689 | }; | ||
1690 | "safe-buffer-5.1.2" = { | ||
1691 | name = "safe-buffer"; | ||
1692 | packageName = "safe-buffer"; | ||
1693 | version = "5.1.2"; | ||
1694 | src = fetchurl { | ||
1695 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; | ||
1696 | sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; | ||
1697 | }; | ||
1698 | }; | ||
1699 | "safe-buffer-5.2.0" = { | ||
1700 | name = "safe-buffer"; | ||
1701 | packageName = "safe-buffer"; | ||
1702 | version = "5.2.0"; | ||
1703 | src = fetchurl { | ||
1704 | url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; | ||
1705 | sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; | ||
1706 | }; | ||
1707 | }; | ||
1708 | "safe-json-stringify-1.2.0" = { | ||
1709 | name = "safe-json-stringify"; | ||
1710 | packageName = "safe-json-stringify"; | ||
1711 | version = "1.2.0"; | ||
1712 | src = fetchurl { | ||
1713 | url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; | ||
1714 | sha512 = "gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg=="; | ||
1715 | }; | ||
1716 | }; | ||
1717 | "safer-buffer-2.1.2" = { | ||
1718 | name = "safer-buffer"; | ||
1719 | packageName = "safer-buffer"; | ||
1720 | version = "2.1.2"; | ||
1721 | src = fetchurl { | ||
1722 | url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; | ||
1723 | sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; | ||
1724 | }; | ||
1725 | }; | ||
1726 | "safetydance-0.1.1" = { | ||
1727 | name = "safetydance"; | ||
1728 | packageName = "safetydance"; | ||
1729 | version = "0.1.1"; | ||
1730 | src = fetchurl { | ||
1731 | url = "https://registry.npmjs.org/safetydance/-/safetydance-0.1.1.tgz"; | ||
1732 | sha1 = "1588c69133a7c69cddfd6a2d1d334381d0b7b2f7"; | ||
1733 | }; | ||
1734 | }; | ||
1735 | "sax-1.2.4" = { | ||
1736 | name = "sax"; | ||
1737 | packageName = "sax"; | ||
1738 | version = "1.2.4"; | ||
1739 | src = fetchurl { | ||
1740 | url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; | ||
1741 | sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; | ||
1742 | }; | ||
1743 | }; | ||
1744 | "semver-6.3.0" = { | ||
1745 | name = "semver"; | ||
1746 | packageName = "semver"; | ||
1747 | version = "6.3.0"; | ||
1748 | src = fetchurl { | ||
1749 | url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; | ||
1750 | sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; | ||
1751 | }; | ||
1752 | }; | ||
1753 | "send-0.16.1" = { | ||
1754 | name = "send"; | ||
1755 | packageName = "send"; | ||
1756 | version = "0.16.1"; | ||
1757 | src = fetchurl { | ||
1758 | url = "https://registry.npmjs.org/send/-/send-0.16.1.tgz"; | ||
1759 | sha512 = "ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A=="; | ||
1760 | }; | ||
1761 | }; | ||
1762 | "serve-index-1.9.1" = { | ||
1763 | name = "serve-index"; | ||
1764 | packageName = "serve-index"; | ||
1765 | version = "1.9.1"; | ||
1766 | src = fetchurl { | ||
1767 | url = "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz"; | ||
1768 | sha1 = "d3768d69b1e7d82e5ce050fff5b453bea12a9239"; | ||
1769 | }; | ||
1770 | }; | ||
1771 | "serve-static-1.13.1" = { | ||
1772 | name = "serve-static"; | ||
1773 | packageName = "serve-static"; | ||
1774 | version = "1.13.1"; | ||
1775 | src = fetchurl { | ||
1776 | url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz"; | ||
1777 | sha512 = "hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ=="; | ||
1778 | }; | ||
1779 | }; | ||
1780 | "setprototypeof-1.0.3" = { | ||
1781 | name = "setprototypeof"; | ||
1782 | packageName = "setprototypeof"; | ||
1783 | version = "1.0.3"; | ||
1784 | src = fetchurl { | ||
1785 | url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz"; | ||
1786 | sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04"; | ||
1787 | }; | ||
1788 | }; | ||
1789 | "setprototypeof-1.1.0" = { | ||
1790 | name = "setprototypeof"; | ||
1791 | packageName = "setprototypeof"; | ||
1792 | version = "1.1.0"; | ||
1793 | src = fetchurl { | ||
1794 | url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz"; | ||
1795 | sha512 = "BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ=="; | ||
1796 | }; | ||
1797 | }; | ||
1798 | "sntp-2.1.0" = { | ||
1799 | name = "sntp"; | ||
1800 | packageName = "sntp"; | ||
1801 | version = "2.1.0"; | ||
1802 | src = fetchurl { | ||
1803 | url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz"; | ||
1804 | sha512 = "FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg=="; | ||
1805 | }; | ||
1806 | }; | ||
1807 | "sshpk-1.16.1" = { | ||
1808 | name = "sshpk"; | ||
1809 | packageName = "sshpk"; | ||
1810 | version = "1.16.1"; | ||
1811 | src = fetchurl { | ||
1812 | url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; | ||
1813 | sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; | ||
1814 | }; | ||
1815 | }; | ||
1816 | "statuses-1.3.1" = { | ||
1817 | name = "statuses"; | ||
1818 | packageName = "statuses"; | ||
1819 | version = "1.3.1"; | ||
1820 | src = fetchurl { | ||
1821 | url = "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz"; | ||
1822 | sha1 = "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"; | ||
1823 | }; | ||
1824 | }; | ||
1825 | "statuses-1.5.0" = { | ||
1826 | name = "statuses"; | ||
1827 | packageName = "statuses"; | ||
1828 | version = "1.5.0"; | ||
1829 | src = fetchurl { | ||
1830 | url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; | ||
1831 | sha1 = "161c7dac177659fd9811f43771fa99381478628c"; | ||
1832 | }; | ||
1833 | }; | ||
1834 | "string_decoder-1.1.1" = { | ||
1835 | name = "string_decoder"; | ||
1836 | packageName = "string_decoder"; | ||
1837 | version = "1.1.1"; | ||
1838 | src = fetchurl { | ||
1839 | url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; | ||
1840 | sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; | ||
1841 | }; | ||
1842 | }; | ||
1843 | "string_decoder-1.3.0" = { | ||
1844 | name = "string_decoder"; | ||
1845 | packageName = "string_decoder"; | ||
1846 | version = "1.3.0"; | ||
1847 | src = fetchurl { | ||
1848 | url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; | ||
1849 | sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; | ||
1850 | }; | ||
1851 | }; | ||
1852 | "stringstream-0.0.6" = { | ||
1853 | name = "stringstream"; | ||
1854 | packageName = "stringstream"; | ||
1855 | version = "0.0.6"; | ||
1856 | src = fetchurl { | ||
1857 | url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz"; | ||
1858 | sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA=="; | ||
1859 | }; | ||
1860 | }; | ||
1861 | "superagent-5.1.3" = { | ||
1862 | name = "superagent"; | ||
1863 | packageName = "superagent"; | ||
1864 | version = "5.1.3"; | ||
1865 | src = fetchurl { | ||
1866 | url = "https://registry.npmjs.org/superagent/-/superagent-5.1.3.tgz"; | ||
1867 | sha512 = "2bno1Nb4uvZPECTJ7NDYlae6Q8LLQoZZZ9Vumd346jU1UGVkNC/lQI42jHwtrqVoepyt0QxNKFty01IRKgD4CA=="; | ||
1868 | }; | ||
1869 | }; | ||
1870 | "tar-stream-2.1.2" = { | ||
1871 | name = "tar-stream"; | ||
1872 | packageName = "tar-stream"; | ||
1873 | version = "2.1.2"; | ||
1874 | src = fetchurl { | ||
1875 | url = "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.2.tgz"; | ||
1876 | sha512 = "UaF6FoJ32WqALZGOIAApXx+OdxhekNMChu6axLJR85zMMjXKWFGjbIRe+J6P4UnRGg9rAwWvbTT0oI7hD/Un7Q=="; | ||
1877 | }; | ||
1878 | }; | ||
1879 | "tough-cookie-2.3.3" = { | ||
1880 | name = "tough-cookie"; | ||
1881 | packageName = "tough-cookie"; | ||
1882 | version = "2.3.3"; | ||
1883 | src = fetchurl { | ||
1884 | url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz"; | ||
1885 | sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561"; | ||
1886 | }; | ||
1887 | }; | ||
1888 | "tunnel-agent-0.6.0" = { | ||
1889 | name = "tunnel-agent"; | ||
1890 | packageName = "tunnel-agent"; | ||
1891 | version = "0.6.0"; | ||
1892 | src = fetchurl { | ||
1893 | url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; | ||
1894 | sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; | ||
1895 | }; | ||
1896 | }; | ||
1897 | "tweetnacl-0.14.5" = { | ||
1898 | name = "tweetnacl"; | ||
1899 | packageName = "tweetnacl"; | ||
1900 | version = "0.14.5"; | ||
1901 | src = fetchurl { | ||
1902 | url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; | ||
1903 | sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; | ||
1904 | }; | ||
1905 | }; | ||
1906 | "type-is-1.6.16" = { | ||
1907 | name = "type-is"; | ||
1908 | packageName = "type-is"; | ||
1909 | version = "1.6.16"; | ||
1910 | src = fetchurl { | ||
1911 | url = "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz"; | ||
1912 | sha512 = "HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q=="; | ||
1913 | }; | ||
1914 | }; | ||
1915 | "uid-safe-2.1.5" = { | ||
1916 | name = "uid-safe"; | ||
1917 | packageName = "uid-safe"; | ||
1918 | version = "2.1.5"; | ||
1919 | src = fetchurl { | ||
1920 | url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz"; | ||
1921 | sha512 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA=="; | ||
1922 | }; | ||
1923 | }; | ||
1924 | "underscore-1.8.3" = { | ||
1925 | name = "underscore"; | ||
1926 | packageName = "underscore"; | ||
1927 | version = "1.8.3"; | ||
1928 | src = fetchurl { | ||
1929 | url = "http://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; | ||
1930 | sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; | ||
1931 | }; | ||
1932 | }; | ||
1933 | "underscore-1.9.1" = { | ||
1934 | name = "underscore"; | ||
1935 | packageName = "underscore"; | ||
1936 | version = "1.9.1"; | ||
1937 | src = fetchurl { | ||
1938 | url = "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz"; | ||
1939 | sha512 = "5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg=="; | ||
1940 | }; | ||
1941 | }; | ||
1942 | "unpipe-1.0.0" = { | ||
1943 | name = "unpipe"; | ||
1944 | packageName = "unpipe"; | ||
1945 | version = "1.0.0"; | ||
1946 | src = fetchurl { | ||
1947 | url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; | ||
1948 | sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; | ||
1949 | }; | ||
1950 | }; | ||
1951 | "util-deprecate-1.0.2" = { | ||
1952 | name = "util-deprecate"; | ||
1953 | packageName = "util-deprecate"; | ||
1954 | version = "1.0.2"; | ||
1955 | src = fetchurl { | ||
1956 | url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; | ||
1957 | sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; | ||
1958 | }; | ||
1959 | }; | ||
1960 | "utils-merge-1.0.1" = { | ||
1961 | name = "utils-merge"; | ||
1962 | packageName = "utils-merge"; | ||
1963 | version = "1.0.1"; | ||
1964 | src = fetchurl { | ||
1965 | url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; | ||
1966 | sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; | ||
1967 | }; | ||
1968 | }; | ||
1969 | "uuid-3.2.1" = { | ||
1970 | name = "uuid"; | ||
1971 | packageName = "uuid"; | ||
1972 | version = "3.2.1"; | ||
1973 | src = fetchurl { | ||
1974 | url = "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz"; | ||
1975 | sha512 = "jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="; | ||
1976 | }; | ||
1977 | }; | ||
1978 | "vary-1.1.2" = { | ||
1979 | name = "vary"; | ||
1980 | packageName = "vary"; | ||
1981 | version = "1.1.2"; | ||
1982 | src = fetchurl { | ||
1983 | url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; | ||
1984 | sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; | ||
1985 | }; | ||
1986 | }; | ||
1987 | "vasync-1.6.4" = { | ||
1988 | name = "vasync"; | ||
1989 | packageName = "vasync"; | ||
1990 | version = "1.6.4"; | ||
1991 | src = fetchurl { | ||
1992 | url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; | ||
1993 | sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; | ||
1994 | }; | ||
1995 | }; | ||
1996 | "verror-1.10.0" = { | ||
1997 | name = "verror"; | ||
1998 | packageName = "verror"; | ||
1999 | version = "1.10.0"; | ||
2000 | src = fetchurl { | ||
2001 | url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; | ||
2002 | sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; | ||
2003 | }; | ||
2004 | }; | ||
2005 | "verror-1.6.0" = { | ||
2006 | name = "verror"; | ||
2007 | packageName = "verror"; | ||
2008 | version = "1.6.0"; | ||
2009 | src = fetchurl { | ||
2010 | url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; | ||
2011 | sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; | ||
2012 | }; | ||
2013 | }; | ||
2014 | "webdav-server-2.4.6" = { | ||
2015 | name = "webdav-server"; | ||
2016 | packageName = "webdav-server"; | ||
2017 | version = "2.4.6"; | ||
2018 | src = fetchurl { | ||
2019 | url = "https://registry.npmjs.org/webdav-server/-/webdav-server-2.4.6.tgz"; | ||
2020 | sha512 = "YhqjqlQdD4H55UEnRgk99a9epTuulKMW05m6KBTtG6fBXcc4/2H87F2DRJHH7a33PibNn3jWv8u9AgcMHLGUrw=="; | ||
2021 | }; | ||
2022 | }; | ||
2023 | "wrappy-1.0.2" = { | ||
2024 | name = "wrappy"; | ||
2025 | packageName = "wrappy"; | ||
2026 | version = "1.0.2"; | ||
2027 | src = fetchurl { | ||
2028 | url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; | ||
2029 | sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; | ||
2030 | }; | ||
2031 | }; | ||
2032 | "xml-js-1.6.11" = { | ||
2033 | name = "xml-js"; | ||
2034 | packageName = "xml-js"; | ||
2035 | version = "1.6.11"; | ||
2036 | src = fetchurl { | ||
2037 | url = "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz"; | ||
2038 | sha512 = "7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g=="; | ||
2039 | }; | ||
2040 | }; | ||
2041 | "xml-js-builder-1.0.3" = { | ||
2042 | name = "xml-js-builder"; | ||
2043 | packageName = "xml-js-builder"; | ||
2044 | version = "1.0.3"; | ||
2045 | src = fetchurl { | ||
2046 | url = "https://registry.npmjs.org/xml-js-builder/-/xml-js-builder-1.0.3.tgz"; | ||
2047 | sha512 = "BoLgG/glT45M0jK5PGh9h+iGrQxa8jJk9ofR63GroRifl2tbGB3/yYiVY3wQWHrZgWWfl9+7fhEB/VoD9mWnSg=="; | ||
2048 | }; | ||
2049 | }; | ||
2050 | "zip-stream-3.0.1" = { | ||
2051 | name = "zip-stream"; | ||
2052 | packageName = "zip-stream"; | ||
2053 | version = "3.0.1"; | ||
2054 | src = fetchurl { | ||
2055 | url = "https://registry.npmjs.org/zip-stream/-/zip-stream-3.0.1.tgz"; | ||
2056 | sha512 = "r+JdDipt93ttDjsOVPU5zaq5bAyY+3H19bDrThkvuVxC0xMQzU1PJcS6D+KrP3u96gH9XLomcHPb+2skoDjulQ=="; | ||
2057 | }; | ||
2058 | }; | ||
2059 | }; | ||
2060 | args = { | ||
2061 | name = "cloudron-surfer"; | ||
2062 | packageName = "cloudron-surfer"; | ||
2063 | version = "5.10.0"; | ||
2064 | inherit src; | ||
2065 | dependencies = [ | ||
2066 | (sources."accepts-1.3.4" // { | ||
2067 | dependencies = [ | ||
2068 | sources."mime-db-1.33.0" | ||
2069 | sources."mime-types-2.1.18" | ||
2070 | ]; | ||
2071 | }) | ||
2072 | sources."ajv-5.5.2" | ||
2073 | (sources."archiver-4.0.1" // { | ||
2074 | dependencies = [ | ||
2075 | sources."async-2.6.3" | ||
2076 | sources."glob-7.1.6" | ||
2077 | sources."readable-stream-3.6.0" | ||
2078 | ]; | ||
2079 | }) | ||
2080 | (sources."archiver-utils-2.1.0" // { | ||
2081 | dependencies = [ | ||
2082 | sources."glob-7.1.6" | ||
2083 | sources."readable-stream-2.3.7" | ||
2084 | sources."string_decoder-1.1.1" | ||
2085 | ]; | ||
2086 | }) | ||
2087 | sources."array-flatten-1.1.1" | ||
2088 | sources."array-union-1.0.2" | ||
2089 | sources."array-uniq-1.0.3" | ||
2090 | sources."arrify-1.0.1" | ||
2091 | sources."asn1-0.2.3" | ||
2092 | sources."assert-plus-1.0.0" | ||
2093 | sources."async-1.5.2" | ||
2094 | sources."asynckit-0.4.0" | ||
2095 | sources."aws-sign2-0.7.0" | ||
2096 | sources."aws4-1.6.0" | ||
2097 | sources."backoff-2.5.0" | ||
2098 | sources."balanced-match-1.0.0" | ||
2099 | sources."base64-js-1.3.1" | ||
2100 | (sources."basic-auth-2.0.1" // { | ||
2101 | dependencies = [ | ||
2102 | sources."safe-buffer-5.1.2" | ||
2103 | ]; | ||
2104 | }) | ||
2105 | sources."batch-0.6.1" | ||
2106 | sources."bcrypt-pbkdf-1.0.1" | ||
2107 | sources."bcryptjs-2.4.3" | ||
2108 | (sources."bl-4.0.2" // { | ||
2109 | dependencies = [ | ||
2110 | sources."inherits-2.0.4" | ||
2111 | ]; | ||
2112 | }) | ||
2113 | (sources."body-parser-1.18.2" // { | ||
2114 | dependencies = [ | ||
2115 | sources."depd-1.1.2" | ||
2116 | (sources."http-errors-1.6.2" // { | ||
2117 | dependencies = [ | ||
2118 | sources."depd-1.1.1" | ||
2119 | ]; | ||
2120 | }) | ||
2121 | ]; | ||
2122 | }) | ||
2123 | sources."boom-4.3.1" | ||
2124 | sources."brace-expansion-1.1.8" | ||
2125 | sources."buffer-5.6.0" | ||
2126 | sources."buffer-crc32-0.2.13" | ||
2127 | sources."bunyan-1.8.12" | ||
2128 | sources."bytes-3.0.0" | ||
2129 | sources."caseless-0.12.0" | ||
2130 | sources."co-4.6.0" | ||
2131 | sources."colors-1.1.2" | ||
2132 | sources."combined-stream-1.0.5" | ||
2133 | sources."commander-2.14.1" | ||
2134 | sources."component-emitter-1.3.0" | ||
2135 | (sources."compress-commons-3.0.0" // { | ||
2136 | dependencies = [ | ||
2137 | sources."readable-stream-2.3.7" | ||
2138 | sources."string_decoder-1.1.1" | ||
2139 | ]; | ||
2140 | }) | ||
2141 | (sources."compressible-2.0.13" // { | ||
2142 | dependencies = [ | ||
2143 | sources."mime-db-1.33.0" | ||
2144 | ]; | ||
2145 | }) | ||
2146 | sources."compression-1.7.2" | ||
2147 | sources."concat-map-0.0.1" | ||
2148 | (sources."connect-lastmile-1.2.2" // { | ||
2149 | dependencies = [ | ||
2150 | sources."debug-4.1.1" | ||
2151 | sources."ms-2.1.2" | ||
2152 | sources."underscore-1.9.1" | ||
2153 | ]; | ||
2154 | }) | ||
2155 | sources."connect-timeout-1.9.0" | ||
2156 | sources."content-disposition-0.5.2" | ||
2157 | sources."content-type-1.0.4" | ||
2158 | sources."cookie-0.3.1" | ||
2159 | sources."cookie-parser-1.4.3" | ||
2160 | sources."cookie-signature-1.0.6" | ||
2161 | sources."cookiejar-2.1.2" | ||
2162 | sources."core-util-is-1.0.2" | ||
2163 | sources."crc-3.4.4" | ||
2164 | sources."crc32-stream-3.0.1" | ||
2165 | (sources."cryptiles-3.1.2" // { | ||
2166 | dependencies = [ | ||
2167 | sources."boom-5.2.0" | ||
2168 | ]; | ||
2169 | }) | ||
2170 | (sources."dashdash-1.14.1" // { | ||
2171 | dependencies = [ | ||
2172 | sources."assert-plus-1.0.0" | ||
2173 | ]; | ||
2174 | }) | ||
2175 | sources."debug-2.6.9" | ||
2176 | sources."del-2.2.2" | ||
2177 | sources."delayed-stream-1.0.0" | ||
2178 | sources."depd-1.1.0" | ||
2179 | sources."destroy-1.0.4" | ||
2180 | sources."dtrace-provider-0.8.7" | ||
2181 | sources."ecc-jsbn-0.1.1" | ||
2182 | sources."ee-first-1.1.1" | ||
2183 | sources."encodeurl-1.0.2" | ||
2184 | sources."end-of-stream-1.4.4" | ||
2185 | sources."escape-html-1.0.3" | ||
2186 | sources."etag-1.8.1" | ||
2187 | (sources."express-4.16.2" // { | ||
2188 | dependencies = [ | ||
2189 | sources."depd-1.1.2" | ||
2190 | sources."setprototypeof-1.1.0" | ||
2191 | ]; | ||
2192 | }) | ||
2193 | (sources."express-session-1.15.6" // { | ||
2194 | dependencies = [ | ||
2195 | sources."depd-1.1.2" | ||
2196 | ]; | ||
2197 | }) | ||
2198 | sources."extend-3.0.2" | ||
2199 | sources."extsprintf-1.2.0" | ||
2200 | sources."fast-deep-equal-1.0.0" | ||
2201 | sources."fast-json-stable-stringify-2.0.0" | ||
2202 | sources."fast-safe-stringify-2.0.7" | ||
2203 | sources."fd-slicer-1.0.1" | ||
2204 | sources."finalhandler-1.1.0" | ||
2205 | sources."forever-agent-0.6.1" | ||
2206 | (sources."form-data-2.3.2" // { | ||
2207 | dependencies = [ | ||
2208 | sources."combined-stream-1.0.6" | ||
2209 | ]; | ||
2210 | }) | ||
2211 | sources."formidable-1.2.1" | ||
2212 | sources."forwarded-0.1.2" | ||
2213 | sources."fresh-0.5.2" | ||
2214 | sources."fs-constants-1.0.0" | ||
2215 | sources."fs.realpath-1.0.0" | ||
2216 | (sources."getpass-0.1.7" // { | ||
2217 | dependencies = [ | ||
2218 | sources."assert-plus-1.0.0" | ||
2219 | ]; | ||
2220 | }) | ||
2221 | sources."glob-7.1.2" | ||
2222 | sources."globby-5.0.0" | ||
2223 | sources."graceful-fs-4.2.4" | ||
2224 | sources."har-schema-2.0.0" | ||
2225 | sources."har-validator-5.0.3" | ||
2226 | sources."hawk-6.0.2" | ||
2227 | sources."hoek-4.2.1" | ||
2228 | sources."http-errors-1.6.1" | ||
2229 | (sources."http-signature-1.2.0" // { | ||
2230 | dependencies = [ | ||
2231 | sources."assert-plus-1.0.0" | ||
2232 | sources."extsprintf-1.3.0" | ||
2233 | sources."json-schema-0.2.3" | ||
2234 | sources."jsprim-1.4.1" | ||
2235 | sources."verror-1.10.0" | ||
2236 | ]; | ||
2237 | }) | ||
2238 | sources."iconv-lite-0.4.19" | ||
2239 | sources."ieee754-1.1.13" | ||
2240 | sources."inflight-1.0.6" | ||
2241 | sources."inherits-2.0.3" | ||
2242 | sources."ipaddr.js-1.5.2" | ||
2243 | sources."is-path-cwd-1.0.0" | ||
2244 | sources."is-path-in-cwd-1.0.0" | ||
2245 | sources."is-path-inside-1.0.0" | ||
2246 | sources."is-typedarray-1.0.0" | ||
2247 | sources."isarray-1.0.0" | ||
2248 | sources."isstream-0.1.2" | ||
2249 | sources."jsbn-0.1.1" | ||
2250 | sources."json-schema-traverse-0.3.1" | ||
2251 | sources."json-stringify-safe-5.0.1" | ||
2252 | (sources."lazystream-1.0.0" // { | ||
2253 | dependencies = [ | ||
2254 | sources."readable-stream-2.3.7" | ||
2255 | sources."string_decoder-1.1.1" | ||
2256 | ]; | ||
2257 | }) | ||
2258 | (sources."ldap-filter-0.2.2" // { | ||
2259 | dependencies = [ | ||
2260 | sources."assert-plus-0.1.5" | ||
2261 | ]; | ||
2262 | }) | ||
2263 | sources."ldapjs-1.0.2" | ||
2264 | sources."lodash-4.17.15" | ||
2265 | sources."lodash.defaults-4.2.0" | ||
2266 | sources."lodash.difference-4.5.0" | ||
2267 | sources."lodash.flatten-4.4.0" | ||
2268 | sources."lodash.isplainobject-4.0.6" | ||
2269 | sources."lodash.union-4.6.0" | ||
2270 | sources."media-typer-0.3.0" | ||
2271 | sources."merge-descriptors-1.0.1" | ||
2272 | sources."methods-1.1.2" | ||
2273 | sources."mime-2.4.4" | ||
2274 | sources."mime-db-1.27.0" | ||
2275 | sources."mime-types-2.1.15" | ||
2276 | sources."minimatch-3.0.4" | ||
2277 | sources."minimist-0.0.8" | ||
2278 | sources."mkdirp-0.5.1" | ||
2279 | sources."moment-2.24.0" | ||
2280 | (sources."morgan-1.9.1" // { | ||
2281 | dependencies = [ | ||
2282 | sources."depd-1.1.2" | ||
2283 | ]; | ||
2284 | }) | ||
2285 | sources."ms-2.0.0" | ||
2286 | sources."multiparty-4.1.3" | ||
2287 | (sources."mv-2.1.1" // { | ||
2288 | dependencies = [ | ||
2289 | sources."glob-6.0.4" | ||
2290 | sources."rimraf-2.4.5" | ||
2291 | ]; | ||
2292 | }) | ||
2293 | sources."nan-2.12.1" | ||
2294 | sources."ncp-2.0.0" | ||
2295 | sources."negotiator-0.6.1" | ||
2296 | sources."normalize-path-3.0.0" | ||
2297 | sources."oauth-sign-0.8.2" | ||
2298 | sources."object-assign-4.1.1" | ||
2299 | sources."on-finished-2.3.0" | ||
2300 | sources."on-headers-1.0.1" | ||
2301 | sources."once-1.4.0" | ||
2302 | sources."parseurl-1.3.2" | ||
2303 | sources."path-is-absolute-1.0.1" | ||
2304 | sources."path-is-inside-1.0.2" | ||
2305 | sources."path-to-regexp-0.1.7" | ||
2306 | sources."pend-1.2.0" | ||
2307 | sources."performance-now-2.1.0" | ||
2308 | sources."pify-2.3.0" | ||
2309 | sources."pinkie-2.0.4" | ||
2310 | sources."pinkie-promise-2.0.1" | ||
2311 | sources."precond-0.2.3" | ||
2312 | sources."process-nextick-args-2.0.1" | ||
2313 | sources."proxy-addr-2.0.2" | ||
2314 | sources."punycode-1.4.1" | ||
2315 | sources."qs-6.5.1" | ||
2316 | sources."random-bytes-1.0.0" | ||
2317 | sources."range-parser-1.2.0" | ||
2318 | (sources."raw-body-2.3.2" // { | ||
2319 | dependencies = [ | ||
2320 | sources."depd-1.1.1" | ||
2321 | sources."http-errors-1.6.2" | ||
2322 | ]; | ||
2323 | }) | ||
2324 | sources."readable-stream-3.4.0" | ||
2325 | sources."readline-sync-1.4.9" | ||
2326 | (sources."request-2.83.0" // { | ||
2327 | dependencies = [ | ||
2328 | sources."mime-db-1.33.0" | ||
2329 | sources."mime-types-2.1.18" | ||
2330 | ]; | ||
2331 | }) | ||
2332 | sources."rimraf-2.6.1" | ||
2333 | sources."safe-buffer-5.1.1" | ||
2334 | sources."safe-json-stringify-1.2.0" | ||
2335 | sources."safer-buffer-2.1.2" | ||
2336 | sources."safetydance-0.1.1" | ||
2337 | (sources."send-0.16.1" // { | ||
2338 | dependencies = [ | ||
2339 | sources."depd-1.1.2" | ||
2340 | (sources."http-errors-1.6.2" // { | ||
2341 | dependencies = [ | ||
2342 | sources."depd-1.1.1" | ||
2343 | ]; | ||
2344 | }) | ||
2345 | sources."mime-1.4.1" | ||
2346 | ]; | ||
2347 | }) | ||
2348 | (sources."serve-index-1.9.1" // { | ||
2349 | dependencies = [ | ||
2350 | sources."depd-1.1.2" | ||
2351 | sources."http-errors-1.6.3" | ||
2352 | sources."mime-db-1.44.0" | ||
2353 | sources."mime-types-2.1.27" | ||
2354 | sources."setprototypeof-1.1.0" | ||
2355 | sources."statuses-1.5.0" | ||
2356 | ]; | ||
2357 | }) | ||
2358 | sources."serve-static-1.13.1" | ||
2359 | sources."setprototypeof-1.0.3" | ||
2360 | sources."sntp-2.1.0" | ||
2361 | sources."sshpk-1.16.1" | ||
2362 | sources."statuses-1.3.1" | ||
2363 | (sources."string_decoder-1.3.0" // { | ||
2364 | dependencies = [ | ||
2365 | sources."safe-buffer-5.2.0" | ||
2366 | ]; | ||
2367 | }) | ||
2368 | sources."stringstream-0.0.6" | ||
2369 | (sources."superagent-5.1.3" // { | ||
2370 | dependencies = [ | ||
2371 | sources."combined-stream-1.0.8" | ||
2372 | sources."debug-4.1.1" | ||
2373 | sources."form-data-3.0.0" | ||
2374 | sources."ms-2.1.2" | ||
2375 | sources."qs-6.9.1" | ||
2376 | sources."semver-6.3.0" | ||
2377 | ]; | ||
2378 | }) | ||
2379 | sources."tar-stream-2.1.2" | ||
2380 | sources."tough-cookie-2.3.3" | ||
2381 | sources."tunnel-agent-0.6.0" | ||
2382 | sources."tweetnacl-0.14.5" | ||
2383 | (sources."type-is-1.6.16" // { | ||
2384 | dependencies = [ | ||
2385 | sources."mime-db-1.33.0" | ||
2386 | sources."mime-types-2.1.18" | ||
2387 | ]; | ||
2388 | }) | ||
2389 | sources."uid-safe-2.1.5" | ||
2390 | sources."underscore-1.8.3" | ||
2391 | sources."unpipe-1.0.0" | ||
2392 | sources."util-deprecate-1.0.2" | ||
2393 | sources."utils-merge-1.0.1" | ||
2394 | sources."uuid-3.2.1" | ||
2395 | sources."vary-1.1.2" | ||
2396 | (sources."vasync-1.6.4" // { | ||
2397 | dependencies = [ | ||
2398 | sources."verror-1.6.0" | ||
2399 | ]; | ||
2400 | }) | ||
2401 | sources."verror-1.10.0" | ||
2402 | (sources."webdav-server-2.4.6" // { | ||
2403 | dependencies = [ | ||
2404 | sources."mime-db-1.38.0" | ||
2405 | sources."mime-types-2.1.22" | ||
2406 | ]; | ||
2407 | }) | ||
2408 | sources."wrappy-1.0.2" | ||
2409 | (sources."xml-js-1.6.11" // { | ||
2410 | dependencies = [ | ||
2411 | sources."sax-1.2.4" | ||
2412 | ]; | ||
2413 | }) | ||
2414 | sources."xml-js-builder-1.0.3" | ||
2415 | (sources."zip-stream-3.0.1" // { | ||
2416 | dependencies = [ | ||
2417 | sources."readable-stream-3.6.0" | ||
2418 | ]; | ||
2419 | }) | ||
2420 | ]; | ||
2421 | buildInputs = globalBuildInputs; | ||
2422 | meta = { | ||
2423 | description = "Simple file server"; | ||
2424 | license = "MIT"; | ||
2425 | }; | ||
2426 | production = true; | ||
2427 | bypassCache = true; | ||
2428 | reconstructLock = false; | ||
2429 | }; | ||
2430 | in | ||
2431 | { | ||
2432 | args = args; | ||
2433 | sources = sources; | ||
2434 | tarball = nodeEnv.buildNodeSourceDist args; | ||
2435 | package = nodeEnv.buildNodePackage args; | ||
2436 | shell = nodeEnv.buildNodeShell args; | ||
2437 | } | ||
diff --git a/pkgs/webapps/taskwarrior-web/Gemfile.lock b/pkgs/webapps/taskwarrior-web/Gemfile.lock deleted file mode 100644 index 1b2f5ba..0000000 --- a/pkgs/webapps/taskwarrior-web/Gemfile.lock +++ /dev/null | |||
@@ -1,139 +0,0 @@ | |||
1 | PATH | ||
2 | remote: . | ||
3 | specs: | ||
4 | taskwarrior-web (1.1.12) | ||
5 | activesupport (~> 3) | ||
6 | json (~> 1.8) | ||
7 | parseconfig | ||
8 | rack-flash3 | ||
9 | rinku | ||
10 | sinatra | ||
11 | sinatra-simple-navigation | ||
12 | vegas | ||
13 | versionomy | ||
14 | |||
15 | GEM | ||
16 | remote: http://rubygems.org/ | ||
17 | specs: | ||
18 | activesupport (3.2.22.5) | ||
19 | i18n (~> 0.6, >= 0.6.4) | ||
20 | multi_json (~> 1.0) | ||
21 | blockenspiel (0.5.0) | ||
22 | coderay (1.1.2) | ||
23 | concurrent-ruby (1.1.4) | ||
24 | daemons (1.3.1) | ||
25 | diff-lcs (1.3) | ||
26 | docile (1.3.1) | ||
27 | eventmachine (1.2.7) | ||
28 | ffi (1.10.0) | ||
29 | formatador (0.2.5) | ||
30 | growl (1.0.3) | ||
31 | guard (2.15.0) | ||
32 | formatador (>= 0.2.4) | ||
33 | listen (>= 2.7, < 4.0) | ||
34 | lumberjack (>= 1.0.12, < 2.0) | ||
35 | nenv (~> 0.1) | ||
36 | notiffany (~> 0.0) | ||
37 | pry (>= 0.9.12) | ||
38 | shellany (~> 0.0) | ||
39 | thor (>= 0.18.1) | ||
40 | guard-bundler (2.2.1) | ||
41 | bundler (>= 1.3.0, < 3) | ||
42 | guard (~> 2.2) | ||
43 | guard-compat (~> 1.1) | ||
44 | guard-compat (1.2.1) | ||
45 | guard-rspec (4.7.3) | ||
46 | guard (~> 2.1) | ||
47 | guard-compat (~> 1.1) | ||
48 | rspec (>= 2.99.0, < 4.0) | ||
49 | i18n (0.9.5) | ||
50 | concurrent-ruby (~> 1.0) | ||
51 | json (1.8.6) | ||
52 | listen (3.1.5) | ||
53 | rb-fsevent (~> 0.9, >= 0.9.4) | ||
54 | rb-inotify (~> 0.9, >= 0.9.7) | ||
55 | ruby_dep (~> 1.2) | ||
56 | lumberjack (1.0.13) | ||
57 | method_source (0.9.2) | ||
58 | mini_portile2 (2.4.0) | ||
59 | multi_json (1.13.1) | ||
60 | mustermann (1.0.3) | ||
61 | nenv (0.3.0) | ||
62 | nokogiri (1.10.1) | ||
63 | mini_portile2 (~> 2.4.0) | ||
64 | notiffany (0.1.1) | ||
65 | nenv (~> 0.1) | ||
66 | shellany (~> 0.0) | ||
67 | parseconfig (1.0.8) | ||
68 | pry (0.12.2) | ||
69 | coderay (~> 1.1.0) | ||
70 | method_source (~> 0.9.0) | ||
71 | rack (2.0.6) | ||
72 | rack-flash3 (1.0.5) | ||
73 | rack | ||
74 | rack-protection (2.0.5) | ||
75 | rack | ||
76 | rack-test (1.1.0) | ||
77 | rack (>= 1.0, < 3) | ||
78 | rake (10.5.0) | ||
79 | rb-fsevent (0.10.3) | ||
80 | rb-inotify (0.10.0) | ||
81 | ffi (~> 1.0) | ||
82 | rinku (2.0.5) | ||
83 | rspec (2.99.0) | ||
84 | rspec-core (~> 2.99.0) | ||
85 | rspec-expectations (~> 2.99.0) | ||
86 | rspec-mocks (~> 2.99.0) | ||
87 | rspec-core (2.99.2) | ||
88 | rspec-expectations (2.99.2) | ||
89 | diff-lcs (>= 1.1.3, < 2.0) | ||
90 | rspec-html-matchers (0.5.0) | ||
91 | nokogiri (~> 1) | ||
92 | rspec (~> 2, >= 2.11.0) | ||
93 | rspec-mocks (2.99.4) | ||
94 | ruby_dep (1.5.0) | ||
95 | shellany (0.0.1) | ||
96 | simple-navigation (4.0.5) | ||
97 | activesupport (>= 2.3.2) | ||
98 | simplecov (0.16.1) | ||
99 | docile (~> 1.1) | ||
100 | json (>= 1.8, < 3) | ||
101 | simplecov-html (~> 0.10.0) | ||
102 | simplecov-html (0.10.2) | ||
103 | sinatra (2.0.5) | ||
104 | mustermann (~> 1.0) | ||
105 | rack (~> 2.0) | ||
106 | rack-protection (= 2.0.5) | ||
107 | tilt (~> 2.0) | ||
108 | sinatra-simple-navigation (4.1.0) | ||
109 | simple-navigation (~> 4.0) | ||
110 | sinatra (>= 1.0, < 3.0) | ||
111 | thin (1.7.2) | ||
112 | daemons (~> 1.0, >= 1.0.9) | ||
113 | eventmachine (~> 1.0, >= 1.0.4) | ||
114 | rack (>= 1, < 3) | ||
115 | thor (0.20.3) | ||
116 | tilt (2.0.9) | ||
117 | vegas (0.1.11) | ||
118 | rack (>= 1.0.0) | ||
119 | versionomy (0.5.0) | ||
120 | blockenspiel (~> 0.5) | ||
121 | |||
122 | PLATFORMS | ||
123 | ruby | ||
124 | |||
125 | DEPENDENCIES | ||
126 | growl | ||
127 | guard-bundler | ||
128 | guard-rspec | ||
129 | rack-test | ||
130 | rake (< 11) | ||
131 | rb-fsevent | ||
132 | rspec (~> 2) | ||
133 | rspec-html-matchers | ||
134 | simplecov | ||
135 | taskwarrior-web! | ||
136 | thin | ||
137 | |||
138 | BUNDLED WITH | ||
139 | 1.16.2 | ||
diff --git a/pkgs/webapps/taskwarrior-web/default.nix b/pkgs/webapps/taskwarrior-web/default.nix deleted file mode 100644 index d5368c5..0000000 --- a/pkgs/webapps/taskwarrior-web/default.nix +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | { ruby_2_6, bundlerEnv, mylibs, stdenv }: | ||
2 | let | ||
3 | gems = bundlerEnv { | ||
4 | name = "taskwarrior-web-env"; | ||
5 | ruby = ruby_2_6; | ||
6 | pname = "taskwarrior-web"; | ||
7 | gemset = ./gemset.nix; | ||
8 | gemdir = package.out; | ||
9 | groups = [ "default" "local" "development" ]; | ||
10 | }; | ||
11 | package = stdenv.mkDerivation (mylibs.fetchedGithub ./taskwarrior-web.json // rec { | ||
12 | phases = [ "unpackPhase" "patchPhase" "installPhase" ]; | ||
13 | patches = [ ./fixes.patch ./thin.patch ]; | ||
14 | installPhase = '' | ||
15 | cp -a . $out | ||
16 | cp ${./Gemfile.lock} $out/Gemfile.lock | ||
17 | ''; | ||
18 | passthru = { | ||
19 | inherit gems; | ||
20 | }; | ||
21 | }); | ||
22 | in package | ||
diff --git a/pkgs/webapps/taskwarrior-web/fixes.patch b/pkgs/webapps/taskwarrior-web/fixes.patch deleted file mode 100644 index 851f9f0..0000000 --- a/pkgs/webapps/taskwarrior-web/fixes.patch +++ /dev/null | |||
@@ -1,56 +0,0 @@ | |||
1 | diff --git a/lib/taskwarrior-web/helpers.rb b/lib/taskwarrior-web/helpers.rb | ||
2 | index 212aed7..94c57df 100644 | ||
3 | --- a/lib/taskwarrior-web/helpers.rb | ||
4 | +++ b/lib/taskwarrior-web/helpers.rb | ||
5 | @@ -1,6 +1,8 @@ | ||
6 | require 'active_support/core_ext/date/calculations' | ||
7 | |||
8 | module TaskwarriorWeb::App::Helpers | ||
9 | + include ERB::Util | ||
10 | + | ||
11 | def format_date(timestamp) | ||
12 | format = TaskwarriorWeb::Config.dateformat || '%-m/%-d/%Y' | ||
13 | Time.parse(timestamp).localtime.strftime(format) | ||
14 | diff --git a/lib/taskwarrior-web/services/builder/base.rb b/lib/taskwarrior-web/services/builder/base.rb | ||
15 | index 58d246e..8f716ac 100644 | ||
16 | --- a/lib/taskwarrior-web/services/builder/base.rb | ||
17 | +++ b/lib/taskwarrior-web/services/builder/base.rb | ||
18 | @@ -10,7 +10,7 @@ module TaskwarriorWeb::CommandBuilder::Base | ||
19 | :complete => ':id done', | ||
20 | :annotate => ':id annotate', | ||
21 | :denotate => ':id denotate', | ||
22 | - :projects => '_projects', | ||
23 | + :projects => '_unique project', | ||
24 | :tags => '_tags', | ||
25 | :sync => 'sync' | ||
26 | } | ||
27 | diff --git a/lib/taskwarrior-web/views/tasks/_form.erb b/lib/taskwarrior-web/views/tasks/_form.erb | ||
28 | index 789e7a1..fa08698 100644 | ||
29 | --- a/lib/taskwarrior-web/views/tasks/_form.erb | ||
30 | +++ b/lib/taskwarrior-web/views/tasks/_form.erb | ||
31 | @@ -1,14 +1,14 @@ | ||
32 | <div class="control-group"> | ||
33 | <label for="task-description" class="control-label">Description</label> | ||
34 | <div class="controls"> | ||
35 | - <input type="text" required="required" id="task-description" name="task[description]" value="<%= @task.description unless @task.nil? %>" /> | ||
36 | + <input type="text" required="required" id="task-description" name="task[description]" value="<%=h @task.description unless @task.nil? %>" /> | ||
37 | </div> | ||
38 | </div> | ||
39 | |||
40 | <div class="control-group"> | ||
41 | <label for="task-project" class="control-label">Project</label> | ||
42 | <div class="controls"> | ||
43 | - <input type="text" id="task-project" name="task[project]" value="<%= @task.project unless @task.nil? %>" autocomplete="off" /> | ||
44 | + <input type="text" id="task-project" name="task[project]" value="<%=h @task.project unless @task.nil? %>" autocomplete="off" /> | ||
45 | </div> | ||
46 | </div> | ||
47 | |||
48 | @@ -45,7 +45,7 @@ | ||
49 | <div class="control-group"> | ||
50 | <label for="task-tags" class="control-label">Tags</label> | ||
51 | <div class="controls"> | ||
52 | - <input type="text" id="task-tags" name="task[tags]" value="<%= @task.tags.join(', ') unless @task.nil? %>" autocomplete="off" /> | ||
53 | + <input type="text" id="task-tags" name="task[tags]" value="<%=h @task.tags.join(', ') unless @task.nil? %>" autocomplete="off" /> | ||
54 | <span class="help-block">Enter tags separated by commas or spaces (e.g. <em>each, word will,be a tag</em>)</span> | ||
55 | </div> | ||
56 | </div> | ||
diff --git a/pkgs/webapps/taskwarrior-web/gemset.nix b/pkgs/webapps/taskwarrior-web/gemset.nix deleted file mode 100644 index 35d13c6..0000000 --- a/pkgs/webapps/taskwarrior-web/gemset.nix +++ /dev/null | |||
@@ -1,567 +0,0 @@ | |||
1 | { | ||
2 | activesupport = { | ||
3 | dependencies = ["i18n" "multi_json"]; | ||
4 | groups = ["default"]; | ||
5 | platforms = []; | ||
6 | source = { | ||
7 | remotes = ["http://rubygems.org"]; | ||
8 | sha256 = "0fyxqkkws4px4lzkbcqzp0bwai7nn7jk4p0bgfy0dny9cwm0qc9r"; | ||
9 | type = "gem"; | ||
10 | }; | ||
11 | version = "3.2.22.5"; | ||
12 | }; | ||
13 | blockenspiel = { | ||
14 | groups = ["default"]; | ||
15 | platforms = []; | ||
16 | source = { | ||
17 | remotes = ["http://rubygems.org"]; | ||
18 | sha256 = "1h701s45n5qprvcpc7fnr45n88p56x07pznkxqnhz1dbdbhb7xx8"; | ||
19 | type = "gem"; | ||
20 | }; | ||
21 | version = "0.5.0"; | ||
22 | }; | ||
23 | coderay = { | ||
24 | groups = ["default" "local"]; | ||
25 | platforms = []; | ||
26 | source = { | ||
27 | remotes = ["http://rubygems.org"]; | ||
28 | sha256 = "15vav4bhcc2x3jmi3izb11l4d9f3xv8hp2fszb7iqmpsccv1pz4y"; | ||
29 | type = "gem"; | ||
30 | }; | ||
31 | version = "1.1.2"; | ||
32 | }; | ||
33 | concurrent-ruby = { | ||
34 | groups = ["default"]; | ||
35 | platforms = []; | ||
36 | source = { | ||
37 | remotes = ["http://rubygems.org"]; | ||
38 | sha256 = "1ixcx9pfissxrga53jbdpza85qd5f6b5nq1sfqa9rnfq82qnlbp1"; | ||
39 | type = "gem"; | ||
40 | }; | ||
41 | version = "1.1.4"; | ||
42 | }; | ||
43 | daemons = { | ||
44 | groups = ["default"]; | ||
45 | platforms = []; | ||
46 | source = { | ||
47 | remotes = ["http://rubygems.org"]; | ||
48 | sha256 = "0l5gai3vd4g7aqff0k1mp41j9zcsvm2rbwmqn115a325k9r7pf4w"; | ||
49 | type = "gem"; | ||
50 | }; | ||
51 | version = "1.3.1"; | ||
52 | }; | ||
53 | diff-lcs = { | ||
54 | groups = ["default" "development" "local"]; | ||
55 | platforms = []; | ||
56 | source = { | ||
57 | remotes = ["http://rubygems.org"]; | ||
58 | sha256 = "18w22bjz424gzafv6nzv98h0aqkwz3d9xhm7cbr1wfbyas8zayza"; | ||
59 | type = "gem"; | ||
60 | }; | ||
61 | version = "1.3"; | ||
62 | }; | ||
63 | docile = { | ||
64 | groups = ["default" "local"]; | ||
65 | platforms = []; | ||
66 | source = { | ||
67 | remotes = ["http://rubygems.org"]; | ||
68 | sha256 = "04d2izkna3ahfn6fwq4xrcafa715d3bbqczxm16fq40fqy87xn17"; | ||
69 | type = "gem"; | ||
70 | }; | ||
71 | version = "1.3.1"; | ||
72 | }; | ||
73 | eventmachine = { | ||
74 | groups = ["default"]; | ||
75 | platforms = []; | ||
76 | source = { | ||
77 | remotes = ["http://rubygems.org"]; | ||
78 | sha256 = "0wh9aqb0skz80fhfn66lbpr4f86ya2z5rx6gm5xlfhd05bj1ch4r"; | ||
79 | type = "gem"; | ||
80 | }; | ||
81 | version = "1.2.7"; | ||
82 | }; | ||
83 | ffi = { | ||
84 | groups = ["default" "local"]; | ||
85 | platforms = []; | ||
86 | source = { | ||
87 | remotes = ["http://rubygems.org"]; | ||
88 | sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p"; | ||
89 | type = "gem"; | ||
90 | }; | ||
91 | version = "1.10.0"; | ||
92 | }; | ||
93 | formatador = { | ||
94 | groups = ["default" "local"]; | ||
95 | platforms = []; | ||
96 | source = { | ||
97 | remotes = ["http://rubygems.org"]; | ||
98 | sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; | ||
99 | type = "gem"; | ||
100 | }; | ||
101 | version = "0.2.5"; | ||
102 | }; | ||
103 | growl = { | ||
104 | groups = ["local"]; | ||
105 | platforms = []; | ||
106 | source = { | ||
107 | remotes = ["http://rubygems.org"]; | ||
108 | sha256 = "0s0y7maljnalpbv2q1j5j5hvb4wcc31y9af0n7x1q2l0fzxgc9n9"; | ||
109 | type = "gem"; | ||
110 | }; | ||
111 | version = "1.0.3"; | ||
112 | }; | ||
113 | guard = { | ||
114 | dependencies = ["formatador" "listen" "lumberjack" "nenv" "notiffany" "pry" "shellany" "thor"]; | ||
115 | groups = ["default" "local"]; | ||
116 | platforms = []; | ||
117 | source = { | ||
118 | remotes = ["http://rubygems.org"]; | ||
119 | sha256 = "0h84ja6qvii3hx86w9l4vjpbgl4m8ma8fbawwp7s8l791cgkdcmk"; | ||
120 | type = "gem"; | ||
121 | }; | ||
122 | version = "2.15.0"; | ||
123 | }; | ||
124 | guard-bundler = { | ||
125 | dependencies = ["guard" "guard-compat"]; | ||
126 | groups = ["local"]; | ||
127 | platforms = []; | ||
128 | source = { | ||
129 | remotes = ["http://rubygems.org"]; | ||
130 | sha256 = "0lji8f8w7y4prmpr2lqmlljvkqgkgnlsiwqgwvq7b1y3sxlsvy62"; | ||
131 | type = "gem"; | ||
132 | }; | ||
133 | version = "2.2.1"; | ||
134 | }; | ||
135 | guard-compat = { | ||
136 | groups = ["default" "local"]; | ||
137 | platforms = []; | ||
138 | source = { | ||
139 | remotes = ["http://rubygems.org"]; | ||
140 | sha256 = "1zj6sr1k8w59mmi27rsii0v8xyy2rnsi09nqvwpgj1q10yq1mlis"; | ||
141 | type = "gem"; | ||
142 | }; | ||
143 | version = "1.2.1"; | ||
144 | }; | ||
145 | guard-rspec = { | ||
146 | dependencies = ["guard" "guard-compat" "rspec"]; | ||
147 | groups = ["local"]; | ||
148 | platforms = []; | ||
149 | source = { | ||
150 | remotes = ["http://rubygems.org"]; | ||
151 | sha256 = "1jkm5xp90gm4c5s51pmf92i9hc10gslwwic6mvk72g0yplya0yx4"; | ||
152 | type = "gem"; | ||
153 | }; | ||
154 | version = "4.7.3"; | ||
155 | }; | ||
156 | i18n = { | ||
157 | dependencies = ["concurrent-ruby"]; | ||
158 | groups = ["default"]; | ||
159 | platforms = []; | ||
160 | source = { | ||
161 | remotes = ["http://rubygems.org"]; | ||
162 | sha256 = "038qvz7kd3cfxk8bvagqhakx68pfbnmghpdkx7573wbf0maqp9a3"; | ||
163 | type = "gem"; | ||
164 | }; | ||
165 | version = "0.9.5"; | ||
166 | }; | ||
167 | json = { | ||
168 | groups = ["default" "local"]; | ||
169 | platforms = []; | ||
170 | source = { | ||
171 | remotes = ["http://rubygems.org"]; | ||
172 | sha256 = "0qmj7fypgb9vag723w1a49qihxrcf5shzars106ynw2zk352gbv5"; | ||
173 | type = "gem"; | ||
174 | }; | ||
175 | version = "1.8.6"; | ||
176 | }; | ||
177 | listen = { | ||
178 | dependencies = ["rb-fsevent" "rb-inotify" "ruby_dep"]; | ||
179 | groups = ["default" "local"]; | ||
180 | platforms = []; | ||
181 | source = { | ||
182 | remotes = ["http://rubygems.org"]; | ||
183 | sha256 = "01v5mrnfqm6sgm8xn2v5swxsn1wlmq7rzh2i48d4jzjsc7qvb6mx"; | ||
184 | type = "gem"; | ||
185 | }; | ||
186 | version = "3.1.5"; | ||
187 | }; | ||
188 | lumberjack = { | ||
189 | groups = ["default" "local"]; | ||
190 | platforms = []; | ||
191 | source = { | ||
192 | remotes = ["http://rubygems.org"]; | ||
193 | sha256 = "06im7gcg42x77yhz2w5da2ly9xz0n0c36y5ks7xs53v0l9g0vf5n"; | ||
194 | type = "gem"; | ||
195 | }; | ||
196 | version = "1.0.13"; | ||
197 | }; | ||
198 | method_source = { | ||
199 | groups = ["default" "local"]; | ||
200 | platforms = []; | ||
201 | source = { | ||
202 | remotes = ["http://rubygems.org"]; | ||
203 | sha256 = "1pviwzvdqd90gn6y7illcdd9adapw8fczml933p5vl739dkvl3lq"; | ||
204 | type = "gem"; | ||
205 | }; | ||
206 | version = "0.9.2"; | ||
207 | }; | ||
208 | mini_portile2 = { | ||
209 | groups = ["default" "development"]; | ||
210 | platforms = []; | ||
211 | source = { | ||
212 | remotes = ["http://rubygems.org"]; | ||
213 | sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy"; | ||
214 | type = "gem"; | ||
215 | }; | ||
216 | version = "2.4.0"; | ||
217 | }; | ||
218 | multi_json = { | ||
219 | groups = ["default"]; | ||
220 | platforms = []; | ||
221 | source = { | ||
222 | remotes = ["http://rubygems.org"]; | ||
223 | sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv"; | ||
224 | type = "gem"; | ||
225 | }; | ||
226 | version = "1.13.1"; | ||
227 | }; | ||
228 | mustermann = { | ||
229 | groups = ["default"]; | ||
230 | platforms = []; | ||
231 | source = { | ||
232 | remotes = ["http://rubygems.org"]; | ||
233 | sha256 = "0lycgkmnyy0bf29nnd2zql5a6pcf8sp69g9v4xw0gcfcxgpwp7i1"; | ||
234 | type = "gem"; | ||
235 | }; | ||
236 | version = "1.0.3"; | ||
237 | }; | ||
238 | nenv = { | ||
239 | groups = ["default" "local"]; | ||
240 | platforms = []; | ||
241 | source = { | ||
242 | remotes = ["http://rubygems.org"]; | ||
243 | sha256 = "0r97jzknll9bhd8yyg2bngnnkj8rjhal667n7d32h8h7ny7nvpnr"; | ||
244 | type = "gem"; | ||
245 | }; | ||
246 | version = "0.3.0"; | ||
247 | }; | ||
248 | nokogiri = { | ||
249 | dependencies = ["mini_portile2"]; | ||
250 | groups = ["default" "development"]; | ||
251 | platforms = []; | ||
252 | source = { | ||
253 | remotes = ["http://rubygems.org"]; | ||
254 | sha256 = "09zll7c6j7xr6wyvh5mm5ncj6pkryp70ybcsxdbw1nyphx5dh184"; | ||
255 | type = "gem"; | ||
256 | }; | ||
257 | version = "1.10.1"; | ||
258 | }; | ||
259 | notiffany = { | ||
260 | dependencies = ["nenv" "shellany"]; | ||
261 | groups = ["default" "local"]; | ||
262 | platforms = []; | ||
263 | source = { | ||
264 | remotes = ["http://rubygems.org"]; | ||
265 | sha256 = "0x838fa5il0dd9zbm3lxkpbfxcf5fxv9556mayc2mxsdl5ghv8nx"; | ||
266 | type = "gem"; | ||
267 | }; | ||
268 | version = "0.1.1"; | ||
269 | }; | ||
270 | parseconfig = { | ||
271 | groups = ["default"]; | ||
272 | platforms = []; | ||
273 | source = { | ||
274 | remotes = ["http://rubygems.org"]; | ||
275 | sha256 = "0br2g9k6zc4ygah52aa8cwvpnnkszia29bnvnr8bhpk3rdzi2vmq"; | ||
276 | type = "gem"; | ||
277 | }; | ||
278 | version = "1.0.8"; | ||
279 | }; | ||
280 | pry = { | ||
281 | dependencies = ["coderay" "method_source"]; | ||
282 | groups = ["default" "local"]; | ||
283 | platforms = []; | ||
284 | source = { | ||
285 | remotes = ["http://rubygems.org"]; | ||
286 | sha256 = "00rm71x0r1jdycwbs83lf9l6p494m99asakbvqxh8rz7zwnlzg69"; | ||
287 | type = "gem"; | ||
288 | }; | ||
289 | version = "0.12.2"; | ||
290 | }; | ||
291 | rack = { | ||
292 | groups = ["default" "development"]; | ||
293 | platforms = []; | ||
294 | source = { | ||
295 | remotes = ["http://rubygems.org"]; | ||
296 | sha256 = "1pcgv8dv4vkaczzlix8q3j68capwhk420cddzijwqgi2qb4lm1zm"; | ||
297 | type = "gem"; | ||
298 | }; | ||
299 | version = "2.0.6"; | ||
300 | }; | ||
301 | rack-flash3 = { | ||
302 | dependencies = ["rack"]; | ||
303 | groups = ["default"]; | ||
304 | platforms = []; | ||
305 | source = { | ||
306 | remotes = ["http://rubygems.org"]; | ||
307 | sha256 = "0rim9afrns6s8zc4apiymncysyvijpdg18k57kdpz66p55jf4mqz"; | ||
308 | type = "gem"; | ||
309 | }; | ||
310 | version = "1.0.5"; | ||
311 | }; | ||
312 | rack-protection = { | ||
313 | dependencies = ["rack"]; | ||
314 | groups = ["default"]; | ||
315 | platforms = []; | ||
316 | source = { | ||
317 | remotes = ["http://rubygems.org"]; | ||
318 | sha256 = "15167q25rmxipqwi6hjqj3i1byi9iwl3xq9b7mdar7qiz39pmjsk"; | ||
319 | type = "gem"; | ||
320 | }; | ||
321 | version = "2.0.5"; | ||
322 | }; | ||
323 | rack-test = { | ||
324 | dependencies = ["rack"]; | ||
325 | groups = ["development"]; | ||
326 | platforms = []; | ||
327 | source = { | ||
328 | remotes = ["http://rubygems.org"]; | ||
329 | sha256 = "0rh8h376mx71ci5yklnpqqn118z3bl67nnv5k801qaqn1zs62h8m"; | ||
330 | type = "gem"; | ||
331 | }; | ||
332 | version = "1.1.0"; | ||
333 | }; | ||
334 | rake = { | ||
335 | groups = ["development"]; | ||
336 | platforms = []; | ||
337 | source = { | ||
338 | remotes = ["http://rubygems.org"]; | ||
339 | sha256 = "0jcabbgnjc788chx31sihc5pgbqnlc1c75wakmqlbjdm8jns2m9b"; | ||
340 | type = "gem"; | ||
341 | }; | ||
342 | version = "10.5.0"; | ||
343 | }; | ||
344 | rb-fsevent = { | ||
345 | groups = ["local"]; | ||
346 | platforms = []; | ||
347 | source = { | ||
348 | remotes = ["http://rubygems.org"]; | ||
349 | sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8"; | ||
350 | type = "gem"; | ||
351 | }; | ||
352 | version = "0.10.3"; | ||
353 | }; | ||
354 | rb-inotify = { | ||
355 | dependencies = ["ffi"]; | ||
356 | groups = ["default" "local"]; | ||
357 | platforms = []; | ||
358 | source = { | ||
359 | remotes = ["http://rubygems.org"]; | ||
360 | sha256 = "1fs7hxm9g6ywv2yih83b879klhc4fs8i0p9166z795qmd77dk0a4"; | ||
361 | type = "gem"; | ||
362 | }; | ||
363 | version = "0.10.0"; | ||
364 | }; | ||
365 | rinku = { | ||
366 | groups = ["default"]; | ||
367 | platforms = []; | ||
368 | source = { | ||
369 | remotes = ["http://rubygems.org"]; | ||
370 | sha256 = "1smkk299v18brk98gqbdnqrfwm3143kikl30scidqb5j3pzlbz91"; | ||
371 | type = "gem"; | ||
372 | }; | ||
373 | version = "2.0.5"; | ||
374 | }; | ||
375 | rspec = { | ||
376 | dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; | ||
377 | groups = ["development" "local"]; | ||
378 | platforms = []; | ||
379 | source = { | ||
380 | remotes = ["http://rubygems.org"]; | ||
381 | sha256 = "14q3hxvngk4ks8h41yw50d5fqbf2dhzwi9rz5ccxvh5a53ak2as3"; | ||
382 | type = "gem"; | ||
383 | }; | ||
384 | version = "2.99.0"; | ||
385 | }; | ||
386 | rspec-core = { | ||
387 | groups = ["default" "development" "local"]; | ||
388 | platforms = []; | ||
389 | source = { | ||
390 | remotes = ["http://rubygems.org"]; | ||
391 | sha256 = "1wwz21lcz2lwd2jcp2pvq7n1677v23acf7wxsyszp8msb47mw38i"; | ||
392 | type = "gem"; | ||
393 | }; | ||
394 | version = "2.99.2"; | ||
395 | }; | ||
396 | rspec-expectations = { | ||
397 | dependencies = ["diff-lcs"]; | ||
398 | groups = ["default" "development" "local"]; | ||
399 | platforms = []; | ||
400 | source = { | ||
401 | remotes = ["http://rubygems.org"]; | ||
402 | sha256 = "11a5pph3anp4xr591dnlcy8xfkdf54qi2lvg4ykpqhxk37si1py3"; | ||
403 | type = "gem"; | ||
404 | }; | ||
405 | version = "2.99.2"; | ||
406 | }; | ||
407 | rspec-html-matchers = { | ||
408 | dependencies = ["nokogiri" "rspec"]; | ||
409 | groups = ["development"]; | ||
410 | platforms = []; | ||
411 | source = { | ||
412 | remotes = ["http://rubygems.org"]; | ||
413 | sha256 = "148grzvk0cvh24avhl0shjzz7ldhj138svf48pc5h1fdsb0pnqcv"; | ||
414 | type = "gem"; | ||
415 | }; | ||
416 | version = "0.5.0"; | ||
417 | }; | ||
418 | rspec-mocks = { | ||
419 | groups = ["default" "development" "local"]; | ||
420 | platforms = []; | ||
421 | source = { | ||
422 | remotes = ["http://rubygems.org"]; | ||
423 | sha256 = "0bzhqahbiswq41nqi6y2dka1k42n0hl14jb6bldb206zp4hikz8r"; | ||
424 | type = "gem"; | ||
425 | }; | ||
426 | version = "2.99.4"; | ||
427 | }; | ||
428 | ruby_dep = { | ||
429 | groups = ["default" "local"]; | ||
430 | platforms = []; | ||
431 | source = { | ||
432 | remotes = ["http://rubygems.org"]; | ||
433 | sha256 = "1c1bkl97i9mkcvkn1jks346ksnvnnp84cs22gwl0vd7radybrgy5"; | ||
434 | type = "gem"; | ||
435 | }; | ||
436 | version = "1.5.0"; | ||
437 | }; | ||
438 | shellany = { | ||
439 | groups = ["default" "local"]; | ||
440 | platforms = []; | ||
441 | source = { | ||
442 | remotes = ["http://rubygems.org"]; | ||
443 | sha256 = "1ryyzrj1kxmnpdzhlv4ys3dnl2r5r3d2rs2jwzbnd1v96a8pl4hf"; | ||
444 | type = "gem"; | ||
445 | }; | ||
446 | version = "0.0.1"; | ||
447 | }; | ||
448 | simple-navigation = { | ||
449 | dependencies = ["activesupport"]; | ||
450 | groups = ["default"]; | ||
451 | platforms = []; | ||
452 | source = { | ||
453 | remotes = ["http://rubygems.org"]; | ||
454 | sha256 = "08a2s18an3br3xj5j86r33q0hrkai0y157xg67h1khdskb08yylk"; | ||
455 | type = "gem"; | ||
456 | }; | ||
457 | version = "4.0.5"; | ||
458 | }; | ||
459 | simplecov = { | ||
460 | dependencies = ["docile" "json" "simplecov-html"]; | ||
461 | groups = ["local"]; | ||
462 | platforms = []; | ||
463 | source = { | ||
464 | remotes = ["http://rubygems.org"]; | ||
465 | sha256 = "1sfyfgf7zrp2n42v7rswkqgk3bbwk1bnsphm24y7laxv3f8z0947"; | ||
466 | type = "gem"; | ||
467 | }; | ||
468 | version = "0.16.1"; | ||
469 | }; | ||
470 | simplecov-html = { | ||
471 | groups = ["default" "local"]; | ||
472 | platforms = []; | ||
473 | source = { | ||
474 | remotes = ["http://rubygems.org"]; | ||
475 | sha256 = "1lihraa4rgxk8wbfl77fy9sf0ypk31iivly8vl3w04srd7i0clzn"; | ||
476 | type = "gem"; | ||
477 | }; | ||
478 | version = "0.10.2"; | ||
479 | }; | ||
480 | sinatra = { | ||
481 | dependencies = ["mustermann" "rack" "rack-protection" "tilt"]; | ||
482 | groups = ["default"]; | ||
483 | platforms = []; | ||
484 | source = { | ||
485 | remotes = ["http://rubygems.org"]; | ||
486 | sha256 = "1gasgn5f15myv08k10i16p326pchxjsy37pgqfw0xm66kcc5d7ry"; | ||
487 | type = "gem"; | ||
488 | }; | ||
489 | version = "2.0.5"; | ||
490 | }; | ||
491 | sinatra-simple-navigation = { | ||
492 | dependencies = ["simple-navigation" "sinatra"]; | ||
493 | groups = ["default"]; | ||
494 | platforms = []; | ||
495 | source = { | ||
496 | remotes = ["http://rubygems.org"]; | ||
497 | sha256 = "1gishxd23qw6bwsk7fkagkfc7ihqyvvvb98j9bmwc6wwpsfs4prs"; | ||
498 | type = "gem"; | ||
499 | }; | ||
500 | version = "4.1.0"; | ||
501 | }; | ||
502 | taskwarrior-web = { | ||
503 | dependencies = ["activesupport" "json" "parseconfig" "rack-flash3" "rinku" "sinatra" "sinatra-simple-navigation" "vegas" "versionomy"]; | ||
504 | groups = ["default"]; | ||
505 | platforms = []; | ||
506 | bundledByPath = true; | ||
507 | path = ./.; | ||
508 | source = { | ||
509 | path = ./.; | ||
510 | type = "path"; | ||
511 | }; | ||
512 | version = "1.1.12"; | ||
513 | }; | ||
514 | thin = { | ||
515 | dependencies = ["daemons" "eventmachine" "rack"]; | ||
516 | groups = ["default"]; | ||
517 | platforms = []; | ||
518 | source = { | ||
519 | remotes = ["http://rubygems.org"]; | ||
520 | sha256 = "0nagbf9pwy1vg09k6j4xqhbjjzrg5dwzvkn4ffvlj76fsn6vv61f"; | ||
521 | type = "gem"; | ||
522 | }; | ||
523 | version = "1.7.2"; | ||
524 | }; | ||
525 | thor = { | ||
526 | groups = ["default" "local"]; | ||
527 | platforms = []; | ||
528 | source = { | ||
529 | remotes = ["http://rubygems.org"]; | ||
530 | sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29"; | ||
531 | type = "gem"; | ||
532 | }; | ||
533 | version = "0.20.3"; | ||
534 | }; | ||
535 | tilt = { | ||
536 | groups = ["default"]; | ||
537 | platforms = []; | ||
538 | source = { | ||
539 | remotes = ["http://rubygems.org"]; | ||
540 | sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz"; | ||
541 | type = "gem"; | ||
542 | }; | ||
543 | version = "2.0.9"; | ||
544 | }; | ||
545 | vegas = { | ||
546 | dependencies = ["rack"]; | ||
547 | groups = ["default"]; | ||
548 | platforms = []; | ||
549 | source = { | ||
550 | remotes = ["http://rubygems.org"]; | ||
551 | sha256 = "0kzv0v1zb8vvm188q4pqwahb6468bmiamn6wpsbiq6r5i69s1bs5"; | ||
552 | type = "gem"; | ||
553 | }; | ||
554 | version = "0.1.11"; | ||
555 | }; | ||
556 | versionomy = { | ||
557 | dependencies = ["blockenspiel"]; | ||
558 | groups = ["default"]; | ||
559 | platforms = []; | ||
560 | source = { | ||
561 | remotes = ["http://rubygems.org"]; | ||
562 | sha256 = "0i0l4pzrl1vyp4lpg2cxhgkk56spki3lld943d6h7168fj8qyv33"; | ||
563 | type = "gem"; | ||
564 | }; | ||
565 | version = "0.5.0"; | ||
566 | }; | ||
567 | } | ||
diff --git a/pkgs/webapps/taskwarrior-web/taskwarrior-web.json b/pkgs/webapps/taskwarrior-web/taskwarrior-web.json deleted file mode 100644 index 70f396d..0000000 --- a/pkgs/webapps/taskwarrior-web/taskwarrior-web.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "a79cfe2-master", | ||
3 | "meta": { | ||
4 | "name": "taskwarrior-web", | ||
5 | "url": "https://github.com/theunraveler/taskwarrior-web", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "theunraveler", | ||
10 | "repo": "taskwarrior-web", | ||
11 | "rev": "a79cfe2b42791b62364118e58b21b892fff6ded8", | ||
12 | "sha256": "028rb4wry2an19707bvy4n305f3s0hipg214224p1m0mb61c3cq4", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/taskwarrior-web/thin.patch b/pkgs/webapps/taskwarrior-web/thin.patch deleted file mode 100644 index a7df3e3..0000000 --- a/pkgs/webapps/taskwarrior-web/thin.patch +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | diff --git a/Gemfile b/Gemfile | ||
2 | index 8544e15..9c4279c 100644 | ||
3 | --- a/Gemfile | ||
4 | +++ b/Gemfile | ||
5 | @@ -3,6 +3,8 @@ source "http://rubygems.org" | ||
6 | # Specify your gem's dependencies in taskwarrior-web.gemspec | ||
7 | gemspec | ||
8 | |||
9 | +gem 'thin' | ||
10 | + | ||
11 | group :local do | ||
12 | gem 'rb-fsevent', :require => false | ||
13 | gem 'growl', :require => false | ||
14 | diff --git a/config.ru b/config.ru | ||
15 | index c3050c6..52387d8 100644 | ||
16 | --- a/config.ru | ||
17 | +++ b/config.ru | ||
18 | @@ -1,5 +1,4 @@ | ||
19 | require File.join(File.dirname(__FILE__), 'lib', 'taskwarrior-web') | ||
20 | |||
21 | -disable :run | ||
22 | TaskwarriorWeb::App.set({ :environment => :production }) | ||
23 | run TaskwarriorWeb::App | ||
diff --git a/pkgs/webapps/ttrss/default.nix b/pkgs/webapps/ttrss/default.nix deleted file mode 100644 index aeb573c..0000000 --- a/pkgs/webapps/ttrss/default.nix +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | { ttrss_config ? "/etc/ttrss/config.php" | ||
2 | , varDir ? "/var/lib/ttrss" | ||
3 | , stdenv, lib, callPackage, sources }: | ||
4 | let | ||
5 | pluginNames = [ "auth_ldap" "af_feedmod" "feediron" "ff_instagram" "tumblr_gdpr_ua" ]; | ||
6 | allPlugins = lib.attrsets.genAttrs pluginNames | ||
7 | (name: callPackage (./plugins + "/${name}") {}); | ||
8 | toPassthru = pkg: plugins: { | ||
9 | inherit plugins allPlugins; | ||
10 | withPlugins = withPlugins pkg; | ||
11 | }; | ||
12 | withPlugins = pkg: toPlugins: | ||
13 | let | ||
14 | plugins = toPlugins allPlugins; | ||
15 | toInstallPlugin = n: | ||
16 | "ln -sf ${n} $out/plugins/${n.pluginName}"; | ||
17 | newTtrss = pkg.overrideAttrs(old: { | ||
18 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallPlugin plugins); | ||
19 | passthru = toPassthru newTtrss (pkg.plugins ++ plugins); | ||
20 | }); | ||
21 | in newTtrss; | ||
22 | package = stdenv.mkDerivation rec { | ||
23 | pname = "tt-rss"; | ||
24 | version = sources.webapps-ttrss.version; | ||
25 | name = "${pname}-${version}"; | ||
26 | src = sources.webapps-ttrss; | ||
27 | buildPhase = '' | ||
28 | rm -rf lock feed-icons cache | ||
29 | ln -sf ${varDir}/{lock,feed-icons,cache} . | ||
30 | ''; | ||
31 | installPhase = '' | ||
32 | cp -a . $out | ||
33 | ln -s ${ttrss_config} $out/config.php | ||
34 | ''; | ||
35 | passthru = toPassthru package []; | ||
36 | }; | ||
37 | in package | ||
diff --git a/pkgs/webapps/ttrss/plugins/af_feedmod/af_feedmod.json b/pkgs/webapps/ttrss/plugins/af_feedmod/af_feedmod.json deleted file mode 100644 index e57fcce..0000000 --- a/pkgs/webapps/ttrss/plugins/af_feedmod/af_feedmod.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "0ea2092-master", | ||
3 | "meta": { | ||
4 | "name": "ttrss-af_feedmod", | ||
5 | "url": "https://github.com/mbirth/ttrss_plugin-af_feedmod", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "mbirth", | ||
10 | "repo": "ttrss_plugin-af_feedmod", | ||
11 | "rev": "0ea2092dd34067ecd898802cfca3570023d1ecfe", | ||
12 | "sha256": "02ibf47zcrsc2rr45wsix8gxyyf371davj8n8i0gj1zdq95klvnv", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/ttrss/plugins/af_feedmod/default.nix b/pkgs/webapps/ttrss/plugins/af_feedmod/default.nix deleted file mode 100644 index 8512be3..0000000 --- a/pkgs/webapps/ttrss/plugins/af_feedmod/default.nix +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | { patched ? false, stdenv, mylibs, lib }: | ||
2 | stdenv.mkDerivation (mylibs.fetchedGithub ./af_feedmod.json // { | ||
3 | patches = lib.optionals patched [ ./type_replace.patch ]; | ||
4 | installPhase = '' | ||
5 | mkdir $out | ||
6 | cp init.php $out | ||
7 | ''; | ||
8 | passthru.pluginName = "af_feedmod"; | ||
9 | }) | ||
diff --git a/pkgs/webapps/ttrss/plugins/af_feedmod/type_replace.patch b/pkgs/webapps/ttrss/plugins/af_feedmod/type_replace.patch deleted file mode 100644 index d622577..0000000 --- a/pkgs/webapps/ttrss/plugins/af_feedmod/type_replace.patch +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | --- a/init.php 2014-06-16 14:21:06.995480038 +0200 | ||
2 | +++ b/init.php 2014-06-16 14:22:00.151027654 +0200 | ||
3 | @@ -147,6 +147,9 @@ | ||
4 | } | ||
5 | } | ||
6 | break; | ||
7 | + case 'replace': | ||
8 | + $article['content'] = preg_replace("/".$config['pattern']."/",$config['replacement'],$article['content']); | ||
9 | + break; | ||
10 | |||
11 | default: | ||
12 | // unknown type or invalid config | ||
diff --git a/pkgs/webapps/ttrss/plugins/auth_ldap/auth-ldap.json b/pkgs/webapps/ttrss/plugins/auth_ldap/auth-ldap.json deleted file mode 100644 index c8aaab5..0000000 --- a/pkgs/webapps/ttrss/plugins/auth_ldap/auth-ldap.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "4d751b0-master", | ||
3 | "meta": { | ||
4 | "name": "ttrss-auth-ldap", | ||
5 | "url": "https://github.com/hydrian/TTRSS-Auth-LDAP", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "hydrian", | ||
10 | "repo": "TTRSS-Auth-LDAP", | ||
11 | "rev": "4d751b095c29a8dbe2dc7bb07777742956136e94", | ||
12 | "sha256": "0b9fl86acrzpcv41r7pj3bl8b3n72hpkdywzx9zjyfqv5pskxyim", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/ttrss/plugins/auth_ldap/default.nix b/pkgs/webapps/ttrss/plugins/auth_ldap/default.nix deleted file mode 100644 index 424a9f7..0000000 --- a/pkgs/webapps/ttrss/plugins/auth_ldap/default.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { stdenv, mylibs }: | ||
2 | stdenv.mkDerivation (mylibs.fetchedGithub ./auth-ldap.json // { | ||
3 | installPhase = '' | ||
4 | mkdir $out | ||
5 | cp plugins/auth_ldap/init.php $out | ||
6 | ''; | ||
7 | passthru.pluginName = "auth_ldap"; | ||
8 | }) | ||
diff --git a/pkgs/webapps/ttrss/plugins/feediron/default.nix b/pkgs/webapps/ttrss/plugins/feediron/default.nix deleted file mode 100644 index 80bfda4..0000000 --- a/pkgs/webapps/ttrss/plugins/feediron/default.nix +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | { patched ? false, stdenv, mylibs, lib }: | ||
2 | stdenv.mkDerivation (mylibs.fetchedGithub ./feediron.json // { | ||
3 | patches = lib.optionals patched [ ./json_reformat.patch ]; | ||
4 | installPhase = '' | ||
5 | mkdir $out | ||
6 | cp -a . $out | ||
7 | ''; | ||
8 | passthru.pluginName = "feediron"; | ||
9 | }) | ||
diff --git a/pkgs/webapps/ttrss/plugins/feediron/feediron.json b/pkgs/webapps/ttrss/plugins/feediron/feediron.json deleted file mode 100644 index 5dbec92..0000000 --- a/pkgs/webapps/ttrss/plugins/feediron/feediron.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "407168c-master", | ||
3 | "meta": { | ||
4 | "name": "ttrss-feediron", | ||
5 | "url": "https://github.com/m42e/ttrss_plugin-feediron", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "m42e", | ||
10 | "repo": "ttrss_plugin-feediron", | ||
11 | "rev": "407168c628880b5ced572cc549db6d50e866d3c8", | ||
12 | "sha256": "17b95ifpcph6m03hjd1mhi8gi1hw9yd3fnffmw66fqr5c9l3zd9r", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/ttrss/plugins/feediron/json_reformat.patch b/pkgs/webapps/ttrss/plugins/feediron/json_reformat.patch deleted file mode 100644 index e1c44d9..0000000 --- a/pkgs/webapps/ttrss/plugins/feediron/json_reformat.patch +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | diff --git a/init.php b/init.php | ||
2 | index 3c0f2f9..1aad146 100644 | ||
3 | --- a/init.php | ||
4 | +++ b/init.php | ||
5 | @@ -600,10 +600,11 @@ class Feediron extends Plugin implements IHandler | ||
6 | return false; | ||
7 | } | ||
8 | |||
9 | - $this->host->set($this, 'json_conf', Feediron_Json::format($json_conf)); | ||
10 | + $new_conf = json_encode(json_decode($json_conf), JSON_PRETTY_PRINT); | ||
11 | + $this->host->set($this, 'json_conf', $new_conf); | ||
12 | $json_reply['success'] = true; | ||
13 | $json_reply['message'] = __('Configuration saved.'); | ||
14 | - $json_reply['json_conf'] = Feediron_Json::format($json_conf); | ||
15 | + $json_reply['json_conf'] = $new_conf; | ||
16 | echo json_encode($json_reply); | ||
17 | } | ||
18 | |||
diff --git a/pkgs/webapps/ttrss/plugins/ff_instagram/default.nix b/pkgs/webapps/ttrss/plugins/ff_instagram/default.nix deleted file mode 100644 index 3540f73..0000000 --- a/pkgs/webapps/ttrss/plugins/ff_instagram/default.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { stdenv, mylibs }: | ||
2 | stdenv.mkDerivation (mylibs.fetchedGithub ./ff_instagram.json // { | ||
3 | installPhase = '' | ||
4 | mkdir $out | ||
5 | cp -a . $out | ||
6 | ''; | ||
7 | passthru.pluginName = "ff_instagram"; | ||
8 | }) | ||
diff --git a/pkgs/webapps/ttrss/plugins/ff_instagram/ff_instagram.json b/pkgs/webapps/ttrss/plugins/ff_instagram/ff_instagram.json deleted file mode 100644 index 1f241b9..0000000 --- a/pkgs/webapps/ttrss/plugins/ff_instagram/ff_instagram.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "0366ffb-master", | ||
3 | "meta": { | ||
4 | "name": "ttrss-ff_instagram", | ||
5 | "url": "https://github.com/wltb/ff_instagram", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "wltb", | ||
10 | "repo": "ff_instagram", | ||
11 | "rev": "0366ffb18c4d490c8fbfba2f5f3367a5af23cfe8", | ||
12 | "sha256": "0vvzl6wi6jmrqknsfddvckjgsgfizz1d923d1nyrpzjfn6bda1vk", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/ttrss/plugins/tumblr_gdpr_ua/default.nix b/pkgs/webapps/ttrss/plugins/tumblr_gdpr_ua/default.nix deleted file mode 100644 index 2cf3e05..0000000 --- a/pkgs/webapps/ttrss/plugins/tumblr_gdpr_ua/default.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { stdenv, mylibs }: | ||
2 | stdenv.mkDerivation (mylibs.fetchedGithub ./tumblr_gdpr_ua.json // { | ||
3 | installPhase = '' | ||
4 | mkdir $out | ||
5 | cp -a . $out | ||
6 | ''; | ||
7 | passthru.pluginName = "tumblr_gdpr_ua"; | ||
8 | }) | ||
diff --git a/pkgs/webapps/ttrss/plugins/tumblr_gdpr_ua/tumblr_gdpr_ua.json b/pkgs/webapps/ttrss/plugins/tumblr_gdpr_ua/tumblr_gdpr_ua.json deleted file mode 100644 index eafbcfe..0000000 --- a/pkgs/webapps/ttrss/plugins/tumblr_gdpr_ua/tumblr_gdpr_ua.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "287c584-master", | ||
3 | "meta": { | ||
4 | "name": "ttrss-tumblr_gdpr_ua", | ||
5 | "url": "https://github.com/hkockerbeck/ttrss-tumblr-gdpr-ua", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "hkockerbeck", | ||
10 | "repo": "ttrss-tumblr-gdpr-ua", | ||
11 | "rev": "287c584e68845d524f920156bff0b2eaa6f65117", | ||
12 | "sha256": "1fviawgcclqky4k4xv1sqzvpb8i74w9f0pclm09m78s8l85wh9py", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/wallabag/default.nix b/pkgs/webapps/wallabag/default.nix deleted file mode 100644 index bd420d4..0000000 --- a/pkgs/webapps/wallabag/default.nix +++ /dev/null | |||
@@ -1,54 +0,0 @@ | |||
1 | { varDir ? "/var/lib/wallabag" | ||
2 | , wallabag_config ? "/etc/wallabag/parameters.yml" | ||
3 | , ldap ? false | ||
4 | , composerEnv, fetchurl, lib }: | ||
5 | composerEnv.buildPackage rec { | ||
6 | packages = { | ||
7 | "fr3d/ldap-bundle" = { | ||
8 | targetDir = ""; | ||
9 | src = composerEnv.buildZipPackage { | ||
10 | name = "fr3d-ldap-bundle-5a8927c11af45fa06331b97221c6da1a4a237475"; | ||
11 | src = fetchurl { | ||
12 | url = https://api.github.com/repos/Maks3w/FR3DLdapBundle/zipball/5a8927c11af45fa06331b97221c6da1a4a237475; | ||
13 | sha256 = "168zkd82j200wd6h0a3lq81g5s2pifg889rv27q2g429nppsbfxc"; | ||
14 | }; | ||
15 | }; | ||
16 | }; | ||
17 | "zendframework/zend-ldap" = { | ||
18 | targetDir = ""; | ||
19 | src = composerEnv.buildZipPackage { | ||
20 | name = "zendframework-zend-ldap-b63c7884a08d3a6bda60ebcf7d6238cf8ad89f49"; | ||
21 | src = fetchurl { | ||
22 | url = https://api.github.com/repos/zendframework/zend-ldap/zipball/b63c7884a08d3a6bda60ebcf7d6238cf8ad89f49; | ||
23 | sha256 = "0mn4yqnb5prqhrbbybmw1i2rx7xf4s4wagbdq9qi55fa0vk3jgw9"; | ||
24 | }; | ||
25 | }; | ||
26 | }; | ||
27 | }; | ||
28 | noDev = true; | ||
29 | doRemoveVendor = false; | ||
30 | # Beware when upgrading, I probably messed up with the migrations table | ||
31 | # (due to a psql bug in wallabag) | ||
32 | version = "2.3.8"; | ||
33 | name = "wallabag-${version}"; | ||
34 | src = fetchurl { | ||
35 | url = "https://static.wallabag.org/releases/wallabag-release-${version}.tar.gz"; | ||
36 | sha256 = "1sr62hfk2f2rl5by48dg8yd1gchngjnc850as17wr3w287p1kwsq"; | ||
37 | }; | ||
38 | unpackPhase = '' | ||
39 | unpackFile "$src" | ||
40 | sourceRoot=${version} | ||
41 | src=$PWD/${version} | ||
42 | ''; | ||
43 | patches = lib.optionals ldap [ ./ldap.patch ]; | ||
44 | preInstall = '' | ||
45 | export SYMFONY_ENV="prod" | ||
46 | ''; | ||
47 | postInstall = '' | ||
48 | rm -rf web/assets var/{cache,logs,sessions} app/config/parameters.yml data | ||
49 | ln -sf ${wallabag_config} app/config/parameters.yml | ||
50 | ln -sf ${varDir}/var/{cache,logs,sessions} var | ||
51 | ln -sf ${varDir}/data data | ||
52 | ln -sf ${varDir}/assets web/assets | ||
53 | ''; | ||
54 | } | ||
diff --git a/pkgs/webapps/wallabag/ldap.patch b/pkgs/webapps/wallabag/ldap.patch deleted file mode 100644 index e04dae1..0000000 --- a/pkgs/webapps/wallabag/ldap.patch +++ /dev/null | |||
@@ -1,664 +0,0 @@ | |||
1 | diff --git a/.travis.yml b/.travis.yml | ||
2 | index 04cea258..56b1f576 100644 | ||
3 | --- a/.travis.yml | ||
4 | +++ b/.travis.yml | ||
5 | @@ -58,6 +58,7 @@ install: | ||
6 | |||
7 | before_script: | ||
8 | - PHP=$TRAVIS_PHP_VERSION | ||
9 | + - echo "extension=ldap.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini | ||
10 | - if [[ ! $PHP = hhvm* ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; | ||
11 | # xdebug isn't enable for PHP 7.1 | ||
12 | - if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi | ||
13 | diff --git a/app/AppKernel.php b/app/AppKernel.php | ||
14 | index 40726f05..c4f465dc 100644 | ||
15 | --- a/app/AppKernel.php | ||
16 | +++ b/app/AppKernel.php | ||
17 | @@ -42,6 +42,10 @@ class AppKernel extends Kernel | ||
18 | new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(), | ||
19 | ]; | ||
20 | |||
21 | + if (class_exists('FR3D\\LdapBundle\\FR3DLdapBundle')) { | ||
22 | + $bundles[] = new FR3D\LdapBundle\FR3DLdapBundle(); | ||
23 | + } | ||
24 | + | ||
25 | if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { | ||
26 | $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); | ||
27 | $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); | ||
28 | diff --git a/app/DoctrineMigrations/Version20170710113900.php b/app/DoctrineMigrations/Version20170710113900.php | ||
29 | new file mode 100644 | ||
30 | index 00000000..7be83110 | ||
31 | --- /dev/null | ||
32 | +++ b/app/DoctrineMigrations/Version20170710113900.php | ||
33 | @@ -0,0 +1,54 @@ | ||
34 | +<?php | ||
35 | + | ||
36 | +namespace Application\Migrations; | ||
37 | + | ||
38 | +use Doctrine\DBAL\Migrations\AbstractMigration; | ||
39 | +use Doctrine\DBAL\Schema\Schema; | ||
40 | +use Symfony\Component\DependencyInjection\ContainerAwareInterface; | ||
41 | +use Symfony\Component\DependencyInjection\ContainerInterface; | ||
42 | + | ||
43 | +/** | ||
44 | + * Added dn field on wallabag_users | ||
45 | + */ | ||
46 | +class Version20170710113900 extends AbstractMigration implements ContainerAwareInterface | ||
47 | +{ | ||
48 | + /** | ||
49 | + * @var ContainerInterface | ||
50 | + */ | ||
51 | + private $container; | ||
52 | + | ||
53 | + public function setContainer(ContainerInterface $container = null) | ||
54 | + { | ||
55 | + $this->container = $container; | ||
56 | + } | ||
57 | + | ||
58 | + private function getTable($tableName) | ||
59 | + { | ||
60 | + return $this->container->getParameter('database_table_prefix').$tableName; | ||
61 | + } | ||
62 | + | ||
63 | + /** | ||
64 | + * @param Schema $schema | ||
65 | + */ | ||
66 | + public function up(Schema $schema) | ||
67 | + { | ||
68 | + $usersTable = $schema->getTable($this->getTable('user')); | ||
69 | + | ||
70 | + $this->skipIf($usersTable->hasColumn('dn'), 'It seems that you already played this migration.'); | ||
71 | + | ||
72 | + $usersTable->addColumn('dn', 'text', [ | ||
73 | + 'default' => null, | ||
74 | + 'notnull' => false, | ||
75 | + ]); | ||
76 | + } | ||
77 | + | ||
78 | + /** | ||
79 | + * @param Schema $schema | ||
80 | + */ | ||
81 | + public function down(Schema $schema) | ||
82 | + { | ||
83 | + $usersTable = $schema->getTable($this->getTable('user')); | ||
84 | + $usersTable->dropColumn('dn'); | ||
85 | + } | ||
86 | +} | ||
87 | + | ||
88 | diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist | ||
89 | index 6b0cb8e8..cfd41b69 100644 | ||
90 | --- a/app/config/parameters.yml.dist | ||
91 | +++ b/app/config/parameters.yml.dist | ||
92 | @@ -62,3 +62,23 @@ parameters: | ||
93 | redis_port: 6379 | ||
94 | redis_path: null | ||
95 | redis_password: null | ||
96 | + | ||
97 | + # ldap configuration | ||
98 | + # To enable, you need to require fr3d/ldap-bundle | ||
99 | + ldap_enabled: false | ||
100 | + ldap_host: localhost | ||
101 | + ldap_port: 389 | ||
102 | + ldap_tls: false | ||
103 | + ldap_ssl: false | ||
104 | + ldap_bind_requires_dn: true | ||
105 | + ldap_base: dc=example,dc=com | ||
106 | + ldap_manager_dn: ou=Manager,dc=example,dc=com | ||
107 | + ldap_manager_pw: password | ||
108 | + ldap_filter: (&(ObjectClass=Person)) | ||
109 | + # optional (if null: no ldap user is admin) | ||
110 | + ldap_admin_filter: (&(memberOf=ou=admins,dc=example,dc=com)(uid=%s)) | ||
111 | + ldap_username_attribute: uid | ||
112 | + ldap_email_attribute: mail | ||
113 | + ldap_name_attribute: cn | ||
114 | + # optional (default sets user as enabled unconditionally) | ||
115 | + ldap_enabled_attribute: ~ | ||
116 | diff --git a/app/config/security.yml b/app/config/security.yml | ||
117 | index 02afc9ea..48fbb553 100644 | ||
118 | --- a/app/config/security.yml | ||
119 | +++ b/app/config/security.yml | ||
120 | @@ -6,6 +6,7 @@ security: | ||
121 | ROLE_ADMIN: ROLE_USER | ||
122 | ROLE_SUPER_ADMIN: [ ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH ] | ||
123 | |||
124 | + # /!\ This list is modified in WallabagUserBundle when LDAP is enabled | ||
125 | providers: | ||
126 | administrators: | ||
127 | entity: | ||
128 | @@ -36,6 +37,7 @@ security: | ||
129 | pattern: ^/login$ | ||
130 | anonymous: ~ | ||
131 | |||
132 | + # /!\ This section is modified in WallabagUserBundle when LDAP is enabled | ||
133 | secured_area: | ||
134 | pattern: ^/ | ||
135 | form_login: | ||
136 | diff --git a/composer.json b/composer.json | ||
137 | index 0483da1d..e3e47bdc 100644 | ||
138 | --- a/composer.json | ||
139 | +++ b/composer.json | ||
140 | @@ -87,7 +87,11 @@ | ||
141 | "bdunogier/guzzle-site-authenticator": "^1.0.0", | ||
142 | "defuse/php-encryption": "^2.1", | ||
143 | "html2text/html2text": "^4.1", | ||
144 | - "sulu/symfony-intl-fix": "^1.0" | ||
145 | + "sulu/symfony-intl-fix": "^1.0", | ||
146 | + "fr3d/ldap-bundle": "^3.0" | ||
147 | + }, | ||
148 | + "suggest": { | ||
149 | + "fr3d/ldap-bundle": "If you want to authenticate via LDAP" | ||
150 | }, | ||
151 | "require-dev": { | ||
152 | "doctrine/doctrine-fixtures-bundle": "~2.2", | ||
153 | diff --git a/composer.lock b/composer.lock | ||
154 | index b3b0a4c6..8c8a87ee 100644 | ||
155 | --- a/composer.lock | ||
156 | +++ b/composer.lock | ||
157 | @@ -1346,6 +1346,65 @@ | ||
158 | ], | ||
159 | "time": "2019-05-09T11:53:40+00:00" | ||
160 | }, | ||
161 | + { | ||
162 | + "name": "fr3d/ldap-bundle", | ||
163 | + "version": "v3.0.0", | ||
164 | + "source": { | ||
165 | + "type": "git", | ||
166 | + "url": "https://github.com/Maks3w/FR3DLdapBundle.git", | ||
167 | + "reference": "5a8927c11af45fa06331b97221c6da1a4a237475" | ||
168 | + }, | ||
169 | + "dist": { | ||
170 | + "type": "zip", | ||
171 | + "url": "https://api.github.com/repos/Maks3w/FR3DLdapBundle/zipball/5a8927c11af45fa06331b97221c6da1a4a237475", | ||
172 | + "reference": "5a8927c11af45fa06331b97221c6da1a4a237475", | ||
173 | + "shasum": "" | ||
174 | + }, | ||
175 | + "require": { | ||
176 | + "php": ">=5.5", | ||
177 | + "psr/log": "~1.0", | ||
178 | + "symfony/config": "2.3 - 3", | ||
179 | + "symfony/dependency-injection": "2.3 - 3", | ||
180 | + "symfony/polyfill-php56": "^1.1", | ||
181 | + "symfony/security": "2.3 - 3", | ||
182 | + "symfony/security-bundle": "2.3 - 3", | ||
183 | + "zendframework/zend-ldap": "2.5 - 3" | ||
184 | + }, | ||
185 | + "require-dev": { | ||
186 | + "fabpot/php-cs-fixer": "1.11.*", | ||
187 | + "fr3d/psr3-message-assertions": "0.1.*", | ||
188 | + "friendsofsymfony/user-bundle": "~1.3", | ||
189 | + "maks3w/phpunit-methods-trait": "^4.6", | ||
190 | + "phpunit/phpunit": "^4.6", | ||
191 | + "symfony/validator": "2.3 - 3" | ||
192 | + }, | ||
193 | + "suggest": { | ||
194 | + "friendsofsymfony/user-bundle": "Integrate authentication and management for DB users, useful for unmanned LDAP servers", | ||
195 | + "symfony/validator": "Allow pre-validate for existing users before register new ones" | ||
196 | + }, | ||
197 | + "type": "symfony-bundle", | ||
198 | + "autoload": { | ||
199 | + "psr-4": { | ||
200 | + "FR3D\\LdapBundle\\": "" | ||
201 | + } | ||
202 | + }, | ||
203 | + "notification-url": "https://packagist.org/downloads/", | ||
204 | + "license": [ | ||
205 | + "MIT" | ||
206 | + ], | ||
207 | + "authors": [ | ||
208 | + { | ||
209 | + "name": "Maks3w" | ||
210 | + } | ||
211 | + ], | ||
212 | + "description": "This package provide users and authentication services based on LDAP directories for Symfony2 framework", | ||
213 | + "homepage": "https://github.com/Maks3w/FR3DLdapBundle", | ||
214 | + "keywords": [ | ||
215 | + "Authentication", | ||
216 | + "ldap" | ||
217 | + ], | ||
218 | + "time": "2016-02-12T17:45:14+00:00" | ||
219 | + }, | ||
220 | { | ||
221 | "name": "friendsofsymfony/jsrouting-bundle", | ||
222 | "version": "1.6.3", | ||
223 | @@ -7069,6 +7128,59 @@ | ||
224 | "zf2" | ||
225 | ], | ||
226 | "time": "2018-04-25T15:33:34+00:00" | ||
227 | + }, | ||
228 | + { | ||
229 | + "name": "zendframework/zend-ldap", | ||
230 | + "version": "2.10.0", | ||
231 | + "source": { | ||
232 | + "type": "git", | ||
233 | + "url": "https://github.com/zendframework/zend-ldap.git", | ||
234 | + "reference": "b63c7884a08d3a6bda60ebcf7d6238cf8ad89f49" | ||
235 | + }, | ||
236 | + "dist": { | ||
237 | + "type": "zip", | ||
238 | + "url": "https://api.github.com/repos/zendframework/zend-ldap/zipball/b63c7884a08d3a6bda60ebcf7d6238cf8ad89f49", | ||
239 | + "reference": "b63c7884a08d3a6bda60ebcf7d6238cf8ad89f49", | ||
240 | + "shasum": "" | ||
241 | + }, | ||
242 | + "require": { | ||
243 | + "ext-ldap": "*", | ||
244 | + "php": "^5.6 || ^7.0" | ||
245 | + }, | ||
246 | + "require-dev": { | ||
247 | + "php-mock/php-mock-phpunit": "^1.1.2 || ^2.1.1", | ||
248 | + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", | ||
249 | + "zendframework/zend-coding-standard": "~1.0.0", | ||
250 | + "zendframework/zend-config": "^2.5", | ||
251 | + "zendframework/zend-eventmanager": "^2.6.3 || ^3.0.1", | ||
252 | + "zendframework/zend-stdlib": "^2.7 || ^3.0" | ||
253 | + }, | ||
254 | + "suggest": { | ||
255 | + "zendframework/zend-eventmanager": "Zend\\EventManager component" | ||
256 | + }, | ||
257 | + "type": "library", | ||
258 | + "extra": { | ||
259 | + "branch-alias": { | ||
260 | + "dev-master": "2.10.x-dev", | ||
261 | + "dev-develop": "2.11.x-dev" | ||
262 | + } | ||
263 | + }, | ||
264 | + "autoload": { | ||
265 | + "psr-4": { | ||
266 | + "Zend\\Ldap\\": "src/" | ||
267 | + } | ||
268 | + }, | ||
269 | + "notification-url": "https://packagist.org/downloads/", | ||
270 | + "license": [ | ||
271 | + "BSD-3-Clause" | ||
272 | + ], | ||
273 | + "description": "Provides support for LDAP operations including but not limited to binding, searching and modifying entries in an LDAP directory", | ||
274 | + "keywords": [ | ||
275 | + "ZendFramework", | ||
276 | + "ldap", | ||
277 | + "zf" | ||
278 | + ], | ||
279 | + "time": "2018-07-05T05:05:12+00:00" | ||
280 | } | ||
281 | ], | ||
282 | "packages-dev": [ | ||
283 | diff --git a/scripts/install.sh b/scripts/install.sh | ||
284 | index affa715f..45254212 100755 | ||
285 | --- a/scripts/install.sh | ||
286 | +++ b/scripts/install.sh | ||
287 | @@ -37,5 +37,8 @@ fi | ||
288 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
289 | |||
290 | git checkout $TAG | ||
291 | +if [ -n "$LDAP_ENABLED" ]; then | ||
292 | + SYMFONY_ENV=$ENV $COMPOSER_COMMAND require --no-update fr3d/ldap-bundle | ||
293 | +fi | ||
294 | SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist | ||
295 | php bin/console wallabag:install --env=$ENV | ||
296 | diff --git a/scripts/update.sh b/scripts/update.sh | ||
297 | index 3ef10439..eeee28d6 100755 | ||
298 | --- a/scripts/update.sh | ||
299 | +++ b/scripts/update.sh | ||
300 | @@ -42,6 +42,9 @@ git fetch origin | ||
301 | git fetch --tags | ||
302 | TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
303 | git checkout $TAG --force | ||
304 | +if [ -n "$LDAP_ENABLED" ]; then | ||
305 | + SYMFONY_ENV=$ENV $COMPOSER_COMMAND require --no-update fr3d/ldap-bundle | ||
306 | +fi | ||
307 | SYMFONY_ENV=$ENV $COMPOSER_COMMAND install --no-dev -o --prefer-dist | ||
308 | php bin/console doctrine:migrations:migrate --no-interaction --env=$ENV | ||
309 | php bin/console cache:clear --env=$ENV | ||
310 | diff --git a/src/Wallabag/UserBundle/DependencyInjection/WallabagUserExtension.php b/src/Wallabag/UserBundle/DependencyInjection/WallabagUserExtension.php | ||
311 | index 5ca3482e..904a6af1 100644 | ||
312 | --- a/src/Wallabag/UserBundle/DependencyInjection/WallabagUserExtension.php | ||
313 | +++ b/src/Wallabag/UserBundle/DependencyInjection/WallabagUserExtension.php | ||
314 | @@ -6,9 +6,34 @@ use Symfony\Component\Config\FileLocator; | ||
315 | use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
316 | use Symfony\Component\DependencyInjection\Loader; | ||
317 | use Symfony\Component\HttpKernel\DependencyInjection\Extension; | ||
318 | +use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface; | ||
319 | |||
320 | -class WallabagUserExtension extends Extension | ||
321 | +class WallabagUserExtension extends Extension implements PrependExtensionInterface | ||
322 | { | ||
323 | + public function prepend(ContainerBuilder $container) | ||
324 | + { | ||
325 | + $ldap = $container->getParameter('ldap_enabled'); | ||
326 | + | ||
327 | + if ($ldap) { | ||
328 | + $container->prependExtensionConfig('security', array( | ||
329 | + 'providers' => array( | ||
330 | + 'chain_provider' => array(), | ||
331 | + ), | ||
332 | + )); | ||
333 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); | ||
334 | + $loader->load('ldap.yml'); | ||
335 | + } elseif ($container->hasExtension('fr3d_ldap')) { | ||
336 | + $container->prependExtensionConfig('fr3_d_ldap', array( | ||
337 | + 'driver' => array( | ||
338 | + 'host' => 'localhost', | ||
339 | + ), | ||
340 | + 'user' => array( | ||
341 | + 'baseDn' => 'dc=example,dc=com', | ||
342 | + ), | ||
343 | + )); | ||
344 | + } | ||
345 | + } | ||
346 | + | ||
347 | public function load(array $configs, ContainerBuilder $container) | ||
348 | { | ||
349 | $configuration = new Configuration(); | ||
350 | @@ -16,6 +41,9 @@ class WallabagUserExtension extends Extension | ||
351 | |||
352 | $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); | ||
353 | $loader->load('services.yml'); | ||
354 | + if ($container->getParameter('ldap_enabled')) { | ||
355 | + $loader->load('ldap_services.yml'); | ||
356 | + } | ||
357 | $container->setParameter('wallabag_user.registration_enabled', $config['registration_enabled']); | ||
358 | } | ||
359 | |||
360 | diff --git a/src/Wallabag/UserBundle/Entity/User.php b/src/Wallabag/UserBundle/Entity/User.php | ||
361 | index 48446e3c..f93c59c7 100644 | ||
362 | --- a/src/Wallabag/UserBundle/Entity/User.php | ||
363 | +++ b/src/Wallabag/UserBundle/Entity/User.php | ||
364 | @@ -1,5 +1,15 @@ | ||
365 | <?php | ||
366 | |||
367 | +// This permits to have the LdapUserInterface even when fr3d/ldap-bundle is not | ||
368 | +// in the packages | ||
369 | +namespace FR3D\LdapBundle\Model; | ||
370 | + | ||
371 | +interface LdapUserInterface | ||
372 | +{ | ||
373 | + public function setDn($dn); | ||
374 | + public function getDn(); | ||
375 | +} | ||
376 | + | ||
377 | namespace Wallabag\UserBundle\Entity; | ||
378 | |||
379 | use Doctrine\Common\Collections\ArrayCollection; | ||
380 | @@ -16,6 +26,7 @@ use Wallabag\ApiBundle\Entity\Client; | ||
381 | use Wallabag\CoreBundle\Entity\Config; | ||
382 | use Wallabag\CoreBundle\Entity\Entry; | ||
383 | use Wallabag\CoreBundle\Helper\EntityTimestampsTrait; | ||
384 | +use FR3D\LdapBundle\Model\LdapUserInterface; | ||
385 | |||
386 | /** | ||
387 | * User. | ||
388 | @@ -28,7 +39,7 @@ use Wallabag\CoreBundle\Helper\EntityTimestampsTrait; | ||
389 | * @UniqueEntity("email") | ||
390 | * @UniqueEntity("username") | ||
391 | */ | ||
392 | -class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterface | ||
393 | +class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterface, LdapUserInterface | ||
394 | { | ||
395 | use EntityTimestampsTrait; | ||
396 | |||
397 | @@ -67,6 +78,13 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf | ||
398 | */ | ||
399 | protected $email; | ||
400 | |||
401 | + /** | ||
402 | + * @var string | ||
403 | + * | ||
404 | + * @ORM\Column(name="dn", type="text", nullable=true) | ||
405 | + */ | ||
406 | + protected $dn; | ||
407 | + | ||
408 | /** | ||
409 | * @var \DateTime | ||
410 | * | ||
411 | @@ -309,4 +327,33 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf | ||
412 | return $this->clients->first(); | ||
413 | } | ||
414 | } | ||
415 | + | ||
416 | + /** | ||
417 | + * Set dn. | ||
418 | + * | ||
419 | + * @param string $dn | ||
420 | + * | ||
421 | + * @return User | ||
422 | + */ | ||
423 | + public function setDn($dn) | ||
424 | + { | ||
425 | + $this->dn = $dn; | ||
426 | + | ||
427 | + return $this; | ||
428 | + } | ||
429 | + | ||
430 | + /** | ||
431 | + * Get dn. | ||
432 | + * | ||
433 | + * @return string | ||
434 | + */ | ||
435 | + public function getDn() | ||
436 | + { | ||
437 | + return $this->dn; | ||
438 | + } | ||
439 | + | ||
440 | + public function isLdapUser() | ||
441 | + { | ||
442 | + return $this->dn !== null; | ||
443 | + } | ||
444 | } | ||
445 | diff --git a/src/Wallabag/UserBundle/LdapHydrator.php b/src/Wallabag/UserBundle/LdapHydrator.php | ||
446 | new file mode 100644 | ||
447 | index 00000000..cea2450f | ||
448 | --- /dev/null | ||
449 | +++ b/src/Wallabag/UserBundle/LdapHydrator.php | ||
450 | @@ -0,0 +1,103 @@ | ||
451 | +<?php | ||
452 | + | ||
453 | +namespace Wallabag\UserBundle; | ||
454 | + | ||
455 | +use FR3D\LdapBundle\Hydrator\HydratorInterface; | ||
456 | +use FOS\UserBundle\FOSUserEvents; | ||
457 | +use FOS\UserBundle\Event\UserEvent; | ||
458 | + | ||
459 | +class LdapHydrator implements HydratorInterface | ||
460 | +{ | ||
461 | + private $userManager; | ||
462 | + private $eventDispatcher; | ||
463 | + private $attributesMap; | ||
464 | + private $enabledAttribute; | ||
465 | + private $ldapBaseDn; | ||
466 | + private $ldapAdminFilter; | ||
467 | + private $ldapDriver; | ||
468 | + | ||
469 | + public function __construct( | ||
470 | + $user_manager, | ||
471 | + $event_dispatcher, | ||
472 | + array $attributes_map, | ||
473 | + $ldap_base_dn, | ||
474 | + $ldap_admin_filter, | ||
475 | + $ldap_driver | ||
476 | + ) { | ||
477 | + $this->userManager = $user_manager; | ||
478 | + $this->eventDispatcher = $event_dispatcher; | ||
479 | + | ||
480 | + $this->attributesMap = array( | ||
481 | + 'setUsername' => $attributes_map[0], | ||
482 | + 'setEmail' => $attributes_map[1], | ||
483 | + 'setName' => $attributes_map[2], | ||
484 | + ); | ||
485 | + $this->enabledAttribute = $attributes_map[3]; | ||
486 | + | ||
487 | + $this->ldapBaseDn = $ldap_base_dn; | ||
488 | + $this->ldapAdminFilter = $ldap_admin_filter; | ||
489 | + $this->ldapDriver = $ldap_driver; | ||
490 | + } | ||
491 | + | ||
492 | + public function hydrate(array $ldapEntry) | ||
493 | + { | ||
494 | + $user = $this->userManager->findUserBy(array('dn' => $ldapEntry['dn'])); | ||
495 | + | ||
496 | + if (!$user) { | ||
497 | + $user = $this->userManager->createUser(); | ||
498 | + $user->setDn($ldapEntry['dn']); | ||
499 | + $user->setPassword(''); | ||
500 | + $user->setSalt(''); | ||
501 | + $this->updateUserFields($user, $ldapEntry); | ||
502 | + | ||
503 | + $event = new UserEvent($user); | ||
504 | + $this->eventDispatcher->dispatch(FOSUserEvents::USER_CREATED, $event); | ||
505 | + | ||
506 | + $this->userManager->reloadUser($user); | ||
507 | + } else { | ||
508 | + $this->updateUserFields($user, $ldapEntry); | ||
509 | + } | ||
510 | + | ||
511 | + return $user; | ||
512 | + } | ||
513 | + | ||
514 | + private function updateUserFields($user, $ldapEntry) | ||
515 | + { | ||
516 | + foreach ($this->attributesMap as $key => $value) { | ||
517 | + if (is_array($ldapEntry[$value])) { | ||
518 | + $ldap_value = $ldapEntry[$value][0]; | ||
519 | + } else { | ||
520 | + $ldap_value = $ldapEntry[$value]; | ||
521 | + } | ||
522 | + | ||
523 | + call_user_func([$user, $key], $ldap_value); | ||
524 | + } | ||
525 | + | ||
526 | + if ($this->enabledAttribute !== null) { | ||
527 | + $user->setEnabled($ldapEntry[$this->enabledAttribute]); | ||
528 | + } else { | ||
529 | + $user->setEnabled(true); | ||
530 | + } | ||
531 | + | ||
532 | + if ($this->isAdmin($user)) { | ||
533 | + $user->addRole('ROLE_SUPER_ADMIN'); | ||
534 | + } else { | ||
535 | + $user->removeRole('ROLE_SUPER_ADMIN'); | ||
536 | + } | ||
537 | + | ||
538 | + $this->userManager->updateUser($user, true); | ||
539 | + } | ||
540 | + | ||
541 | + private function isAdmin($user) | ||
542 | + { | ||
543 | + if ($this->ldapAdminFilter === null) { | ||
544 | + return false; | ||
545 | + } | ||
546 | + | ||
547 | + $escaped_username = ldap_escape($user->getUsername(), '', LDAP_ESCAPE_FILTER); | ||
548 | + $filter = sprintf($this->ldapAdminFilter, $escaped_username); | ||
549 | + $entries = $this->ldapDriver->search($this->ldapBaseDn, $filter); | ||
550 | + | ||
551 | + return $entries['count'] == 1; | ||
552 | + } | ||
553 | +} | ||
554 | diff --git a/src/Wallabag/UserBundle/OAuthStorageLdapWrapper.php b/src/Wallabag/UserBundle/OAuthStorageLdapWrapper.php | ||
555 | new file mode 100644 | ||
556 | index 00000000..8a851f12 | ||
557 | --- /dev/null | ||
558 | +++ b/src/Wallabag/UserBundle/OAuthStorageLdapWrapper.php | ||
559 | @@ -0,0 +1,43 @@ | ||
560 | +<?php | ||
561 | + | ||
562 | +namespace Wallabag\UserBundle; | ||
563 | + | ||
564 | +use FOS\OAuthServerBundle\Storage\OAuthStorage; | ||
565 | +use OAuth2\Model\IOAuth2Client; | ||
566 | +use Symfony\Component\Security\Core\Exception\AuthenticationException; | ||
567 | + | ||
568 | +class OAuthStorageLdapWrapper extends OAuthStorage | ||
569 | +{ | ||
570 | + private $ldapManager; | ||
571 | + | ||
572 | + public function setLdapManager($ldap_manager) | ||
573 | + { | ||
574 | + $this->ldapManager = $ldap_manager; | ||
575 | + } | ||
576 | + | ||
577 | + public function checkUserCredentials(IOAuth2Client $client, $username, $password) | ||
578 | + { | ||
579 | + try { | ||
580 | + $user = $this->userProvider->loadUserByUsername($username); | ||
581 | + } catch (AuthenticationException $e) { | ||
582 | + return false; | ||
583 | + } | ||
584 | + | ||
585 | + if ($user->isLdapUser()) { | ||
586 | + return $this->checkLdapUserCredentials($user, $password); | ||
587 | + } else { | ||
588 | + return parent::checkUserCredentials($client, $username, $password); | ||
589 | + } | ||
590 | + } | ||
591 | + | ||
592 | + private function checkLdapUserCredentials($user, $password) | ||
593 | + { | ||
594 | + if ($this->ldapManager->bind($user, $password)) { | ||
595 | + return array( | ||
596 | + 'data' => $user, | ||
597 | + ); | ||
598 | + } else { | ||
599 | + return false; | ||
600 | + } | ||
601 | + } | ||
602 | +} | ||
603 | diff --git a/src/Wallabag/UserBundle/Resources/config/ldap.yml b/src/Wallabag/UserBundle/Resources/config/ldap.yml | ||
604 | new file mode 100644 | ||
605 | index 00000000..5ec16088 | ||
606 | --- /dev/null | ||
607 | +++ b/src/Wallabag/UserBundle/Resources/config/ldap.yml | ||
608 | @@ -0,0 +1,28 @@ | ||
609 | +fr3d_ldap: | ||
610 | + service: | ||
611 | + user_hydrator: ldap_user_hydrator | ||
612 | + driver: | ||
613 | + host: "%ldap_host%" | ||
614 | + port: "%ldap_port%" | ||
615 | + useSsl: "%ldap_ssl%" | ||
616 | + useStartTls: "%ldap_tls%" | ||
617 | + bindRequiresDn: "%ldap_bind_requires_dn%" | ||
618 | + username: "%ldap_manager_dn%" | ||
619 | + password: "%ldap_manager_pw%" | ||
620 | + user: | ||
621 | + baseDn: "%ldap_base%" | ||
622 | + filter: "%ldap_filter%" | ||
623 | + usernameAttribute: "%ldap_username_attribute%" | ||
624 | +security: | ||
625 | + providers: | ||
626 | + chain_provider: | ||
627 | + chain: | ||
628 | + providers: [ fr3d_ldapbundle, fos_userbundle ] | ||
629 | + fr3d_ldapbundle: | ||
630 | + id: fr3d_ldap.security.user.provider | ||
631 | + firewalls: | ||
632 | + secured_area: | ||
633 | + fr3d_ldap: ~ | ||
634 | + form_login: | ||
635 | + provider: chain_provider | ||
636 | + | ||
637 | diff --git a/src/Wallabag/UserBundle/Resources/config/ldap_services.yml b/src/Wallabag/UserBundle/Resources/config/ldap_services.yml | ||
638 | new file mode 100644 | ||
639 | index 00000000..b3e3fd8a | ||
640 | --- /dev/null | ||
641 | +++ b/src/Wallabag/UserBundle/Resources/config/ldap_services.yml | ||
642 | @@ -0,0 +1,22 @@ | ||
643 | +services: | ||
644 | + fos_oauth_server.server: | ||
645 | + class: OAuth2\OAuth2 | ||
646 | + arguments: | ||
647 | + - "@oauth_storage_ldap_wrapper" | ||
648 | + - "%fos_oauth_server.server.options%" | ||
649 | + oauth_storage_ldap_wrapper: | ||
650 | + class: Wallabag\UserBundle\OAuthStorageLdapWrapper | ||
651 | + parent: fos_oauth_server.storage | ||
652 | + calls: | ||
653 | + - [setLdapManager, ["@fr3d_ldap.ldap_manager"]] | ||
654 | + | ||
655 | + ldap_user_hydrator: | ||
656 | + class: Wallabag\UserBundle\LdapHydrator | ||
657 | + arguments: | ||
658 | + - "@fos_user.user_manager" | ||
659 | + - "@event_dispatcher" | ||
660 | + - [ "%ldap_username_attribute%", "%ldap_email_attribute%", "%ldap_name_attribute%", "%ldap_enabled_attribute%" ] | ||
661 | + - "%ldap_base%" | ||
662 | + - "%ldap_admin_filter%" | ||
663 | + - "@fr3d_ldap.ldap_driver" | ||
664 | + | ||
diff --git a/pkgs/webapps/yourls/default.nix b/pkgs/webapps/yourls/default.nix deleted file mode 100644 index d940c54..0000000 --- a/pkgs/webapps/yourls/default.nix +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | { yourls_config ? "/etc/yourls/config.php", mylibs, callPackage, lib, stdenv }: | ||
2 | let | ||
3 | pluginNames = [ "ldap" ]; | ||
4 | allPlugins = lib.attrsets.genAttrs pluginNames | ||
5 | (name: callPackage (./plugins + "/${name}") { inherit mylibs; }); | ||
6 | toPassthru = pkg: plugins: { | ||
7 | inherit plugins allPlugins; | ||
8 | withPlugins = withPlugins pkg; | ||
9 | }; | ||
10 | withPlugins = pkg: toPlugins: | ||
11 | let | ||
12 | plugins = toPlugins allPlugins; | ||
13 | toInstallPlugin = n: "ln -s ${n} $out/user/plugins/${n.pluginName}"; | ||
14 | newYourls = pkg.overrideAttrs(old: { | ||
15 | installPhase = old.installPhase + "\n" + builtins.concatStringsSep "\n" (map toInstallPlugin plugins); | ||
16 | passthru = toPassthru newYourls (pkg.plugins ++ plugins); | ||
17 | }); | ||
18 | in newYourls; | ||
19 | package = stdenv.mkDerivation (mylibs.fetchedGithub ./yourls.json // rec { | ||
20 | installPhase = '' | ||
21 | mkdir -p $out | ||
22 | cp -a */ *.php $out/ | ||
23 | cp sample-robots.txt $out/robots.txt | ||
24 | ln -sf ${yourls_config} $out/includes/config.php | ||
25 | ''; | ||
26 | passthru = toPassthru package []; | ||
27 | }); | ||
28 | in package | ||
diff --git a/pkgs/webapps/yourls/plugins/ldap/default.nix b/pkgs/webapps/yourls/plugins/ldap/default.nix deleted file mode 100644 index 01dc6fb..0000000 --- a/pkgs/webapps/yourls/plugins/ldap/default.nix +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | { stdenv, mylibs }: | ||
2 | stdenv.mkDerivation (mylibs.fetchedGithub ./ldap.json // rec { | ||
3 | installPhase = '' | ||
4 | mkdir -p $out | ||
5 | cp plugin.php $out | ||
6 | ''; | ||
7 | passthru.pluginName = "ldap"; | ||
8 | }) | ||
diff --git a/pkgs/webapps/yourls/plugins/ldap/ldap.json b/pkgs/webapps/yourls/plugins/ldap/ldap.json deleted file mode 100644 index 9411e4a..0000000 --- a/pkgs/webapps/yourls/plugins/ldap/ldap.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "2a3cb03-master", | ||
3 | "meta": { | ||
4 | "name": "yourls-ldap-plugin", | ||
5 | "url": "https://github.com/k3a/yourls-ldap-plugin", | ||
6 | "branch": "master" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "k3a", | ||
10 | "repo": "yourls-ldap-plugin", | ||
11 | "rev": "2a3cb0334b8a6b81b284a7196e614bbd2b2b1615", | ||
12 | "sha256": "0cchbnli77d295lzf7kjmn4dcxj2bmdqa9qc3f8l8qgmp4n5n0gh", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||
diff --git a/pkgs/webapps/yourls/yourls.json b/pkgs/webapps/yourls/yourls.json deleted file mode 100644 index 0a79b18..0000000 --- a/pkgs/webapps/yourls/yourls.json +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | { | ||
2 | "tag": "1.7.3", | ||
3 | "meta": { | ||
4 | "name": "yourls", | ||
5 | "url": "https://github.com/YOURLS/YOURLS", | ||
6 | "branch": "refs/tags/1.7.3" | ||
7 | }, | ||
8 | "github": { | ||
9 | "owner": "YOURLS", | ||
10 | "repo": "YOURLS", | ||
11 | "rev": "077018822d3594229daa8343310d0b40804b9ddc", | ||
12 | "sha256": "1av6h619rwqn0yn0kjn2s2h3gmrhmxaaa9hd5ns4ralxgg731imd", | ||
13 | "fetchSubmodules": true | ||
14 | } | ||
15 | } | ||