Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 3db2dee3 3521dc45

+2594 -1218
+6
maintainers/maintainer-list.nix
··· 10562 10562 githubId = 1141948; 10563 10563 name = "Zack Grannan"; 10564 10564 }; 10565 + zhaofengli = { 10566 + email = "hello@zhaofeng.li"; 10567 + github = "zhaofengli"; 10568 + githubId = 2189609; 10569 + name = "Zhaofeng Li"; 10570 + }; 10565 10571 zimbatm = { 10566 10572 email = "zimbatm@zimbatm.com"; 10567 10573 github = "zimbatm";
+1 -21
nixos/modules/system/boot/kernel_config.nix
··· 2 2 3 3 with lib; 4 4 let 5 - findWinner = candidates: winner: 6 - any (x: x == winner) candidates; 7 - 8 - # winners is an ordered list where first item wins over 2nd etc 9 - mergeAnswer = winners: locs: defs: 10 - let 11 - values = map (x: x.value) defs; 12 - inter = intersectLists values winners; 13 - winner = head winners; 14 - in 15 - if defs == [] then abort "This case should never happen." 16 - else if winner == [] then abort "Give a valid list of winner" 17 - else if inter == [] then mergeOneOption locs defs 18 - else if findWinner values winner then 19 - winner 20 - else 21 - mergeAnswer (tail winners) locs defs; 22 - 23 5 mergeFalseByDefault = locs: defs: 24 6 if defs == [] then abort "This case should never happen." 25 7 else if any (x: x == false) (getValues defs) then false ··· 28 10 kernelItem = types.submodule { 29 11 options = { 30 12 tristate = mkOption { 31 - type = types.enum [ "y" "m" "n" null ] // { 32 - merge = mergeAnswer [ "y" "m" "n" ]; 33 - }; 13 + type = types.enum [ "y" "m" "n" null ]; 34 14 default = null; 35 15 internal = true; 36 16 visible = true;
-77
pkgs/applications/audio/google-musicmanager/default.nix
··· 1 - { lib, stdenv, fetchurl 2 - , flac, expat, libidn, qtbase, qtwebkit, libvorbis }: 3 - assert stdenv.hostPlatform.system == "x86_64-linux"; 4 - 5 - stdenv.mkDerivation rec { 6 - version = "beta_1.0.467.4929-r0"; # friendly to nix-env version sorting algo 7 - product = "google-musicmanager"; 8 - name = "${product}-${version}"; 9 - 10 - # When looking for newer versions, since google doesn't let you list their repo dirs, 11 - # curl http://dl.google.com/linux/musicmanager/deb/dists/stable/Release 12 - # fetch an appropriate packages file such as main/binary-amd64/Packages: 13 - # curl http://dl.google.com/linux/musicmanager/deb/dists/stable/main/binary-amd64/Packages 14 - # which will contain the links to all available *.debs for the arch. 15 - 16 - src = fetchurl { 17 - url = "http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/${name}_amd64.deb"; 18 - sha256 = "0yaprpbp44var88kdj1h11fqkhgcklixr69jyia49v9m22529gg2"; 19 - }; 20 - 21 - unpackPhase = '' 22 - ar vx ${src} 23 - tar xvf data.tar.xz 24 - tar xvf control.tar.gz 25 - ''; 26 - 27 - prePatch = '' 28 - sed -i "s@\(Exec=\).*@\1$out/bin/google-musicmanager@" opt/google/musicmanager/google-musicmanager.desktop 29 - ''; 30 - 31 - installPhase = '' 32 - mkdir -p $out/bin 33 - mkdir -p $out/lib 34 - mkdir -p $out/share/applications 35 - 36 - cp -r opt $out 37 - find -name "*.so*" -exec cp "{}" $out/lib \; 38 - ln -s $out/opt/google/musicmanager/google-musicmanager $out/bin 39 - ln -s $out/opt/google/musicmanager/google-musicmanager.desktop $out/share/applications 40 - 41 - for i in 16 32 48 128 42 - do 43 - iconDirectory=$out/usr/share/icons/hicolor/"$i"x"$i"/apps 44 - 45 - mkdir -p $iconDirectory 46 - ln -s $out/opt/google/musicmanager/product_logo_"$i".png $iconDirectory/google-musicmanager.png 47 - done 48 - ''; 49 - 50 - postFixup = '' 51 - patchelf \ 52 - --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 53 - --set-rpath "$(patchelf --print-rpath $out/opt/google/musicmanager/minidump_upload):${lib.makeLibraryPath [ stdenv.cc.cc.lib ]}" \ 54 - $out/opt/google/musicmanager/minidump_upload 55 - 56 - patchelf \ 57 - --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 58 - --set-rpath "$(patchelf --print-rpath $out/opt/google/musicmanager/MusicManager):$out/lib:${lib.makeLibraryPath [ 59 - flac 60 - expat 61 - libidn 62 - qtbase 63 - qtwebkit 64 - libvorbis 65 - stdenv.cc.cc.lib 66 - ]}" \ 67 - $out/opt/google/musicmanager/MusicManager 68 - ''; 69 - 70 - meta = with lib; { 71 - description = "Uploads music from your computer to Google Play"; 72 - homepage = "https://support.google.com/googleplay/answer/1229970"; 73 - license = licenses.unfree; 74 - maintainers = with maintainers; [ lovek323 ]; 75 - platforms = platforms.linux; 76 - }; 77 - }
-82
pkgs/applications/audio/google-play-music-desktop-player/default.nix
··· 1 - { lib, stdenv, alsaLib, atk, at-spi2-atk, cairo, cups, dbus, dpkg, expat, fontconfig, freetype 2 - , fetchurl, GConf, gdk-pixbuf, glib, gtk2, gtk3, libpulseaudio, makeWrapper, nspr 3 - , nss, pango, udev, xorg 4 - }: 5 - 6 - let 7 - version = "4.7.1"; 8 - 9 - deps = [ 10 - alsaLib 11 - atk 12 - at-spi2-atk 13 - cairo 14 - cups 15 - dbus 16 - expat 17 - fontconfig 18 - freetype 19 - GConf 20 - gdk-pixbuf 21 - glib 22 - gtk2 23 - gtk3 24 - libpulseaudio 25 - nspr 26 - nss 27 - pango 28 - stdenv.cc.cc 29 - udev 30 - xorg.libX11 31 - xorg.libxcb 32 - xorg.libXcomposite 33 - xorg.libXcursor 34 - xorg.libXdamage 35 - xorg.libXext 36 - xorg.libXfixes 37 - xorg.libXi 38 - xorg.libXrandr 39 - xorg.libXrender 40 - xorg.libXScrnSaver 41 - xorg.libXtst 42 - ]; 43 - 44 - in 45 - 46 - stdenv.mkDerivation { 47 - pname = "google-play-music-desktop-player"; 48 - inherit version; 49 - 50 - src = fetchurl { 51 - url = "https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-/releases/download/v${version}/google-play-music-desktop-player_${version}_amd64.deb"; 52 - sha256 = "1ljm9c5sv6wa7pa483yq03wq9j1h1jdh8363z5m2imz407yzgm5r"; 53 - }; 54 - 55 - dontBuild = true; 56 - nativeBuildInputs = [ dpkg makeWrapper ]; 57 - 58 - unpackPhase = '' 59 - dpkg -x $src . 60 - ''; 61 - 62 - installPhase = '' 63 - mkdir -p $out 64 - cp -r ./usr/share $out 65 - cp -r ./usr/bin $out 66 - 67 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ 68 - "$out/share/google-play-music-desktop-player/Google Play Music Desktop Player" 69 - 70 - wrapProgram $out/bin/google-play-music-desktop-player \ 71 - --prefix LD_LIBRARY_PATH : "$out/share/google-play-music-desktop-player" \ 72 - --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath deps}" 73 - ''; 74 - 75 - meta = { 76 - homepage = "https://www.googleplaymusicdesktopplayer.com/"; 77 - description = "A beautiful cross platform Desktop Player for Google Play Music"; 78 - license = lib.licenses.mit; 79 - platforms = [ "x86_64-linux" ]; 80 - maintainers = [ lib.maintainers.SuprDewd ]; 81 - }; 82 - }
-2
pkgs/applications/audio/mopidy/default.nix
··· 12 12 13 13 mopidy = callPackage ./mopidy.nix { }; 14 14 15 - mopidy-gmusic = callPackage ./gmusic.nix { }; 16 - 17 15 mopidy-iris = callPackage ./iris.nix { }; 18 16 19 17 mopidy-local = callPackage ./local.nix { };
-29
pkgs/applications/audio/mopidy/gmusic.nix
··· 1 - { lib, python3Packages, mopidy }: 2 - 3 - python3Packages.buildPythonApplication rec { 4 - pname = "mopidy-gmusic"; 5 - version = "4.0.0"; 6 - 7 - src = python3Packages.fetchPypi { 8 - inherit version; 9 - pname = "Mopidy-GMusic"; 10 - sha256 = "14yswmlfs659rs3k595606m77lw9c6pjykb5pikqw21sb97haxl3"; 11 - }; 12 - 13 - propagatedBuildInputs = [ 14 - mopidy 15 - python3Packages.requests 16 - python3Packages.gmusicapi 17 - python3Packages.cachetools 18 - ]; 19 - 20 - doCheck = false; 21 - 22 - meta = with lib; { 23 - homepage = "https://www.mopidy.com/"; 24 - description = "Mopidy extension for playing music from Google Play Music"; 25 - license = licenses.asl20; 26 - maintainers = [ maintainers.jgillich ]; 27 - hydraPlatforms = []; 28 - }; 29 - }
+1 -1
pkgs/applications/audio/mopidy/mopidy.nix
··· 42 42 homepage = "https://www.mopidy.com/"; 43 43 description = '' 44 44 An extensible music server that plays music from local disk, Spotify, 45 - SoundCloud, Google Play Music, and more 45 + SoundCloud, and more 46 46 ''; 47 47 license = licenses.asl20; 48 48 maintainers = [ maintainers.fpletz ];
-45
pkgs/applications/audio/tuijam/default.nix
··· 1 - { buildPythonApplication 2 - , fetchFromGitHub 3 - , lib 4 - , python3Packages 5 - }: 6 - 7 - buildPythonApplication rec { 8 - pname = "tuijam"; 9 - version = "unstable-2020-06-05"; 10 - 11 - src = fetchFromGitHub { 12 - owner = "cfangmeier"; 13 - repo = pname; 14 - rev = "7baec6f6e80ee90da0d0363b430dd7d5695ff03b"; 15 - sha256 = "1l0s88jvj99jkxnczw5nfj78m8vihh29g815n4mg9jblad23mgx5"; 16 - }; 17 - 18 - buildInputs = [ python3Packages.Babel ]; 19 - 20 - # the package has no tests 21 - doCheck = false; 22 - 23 - propagatedBuildInputs = with python3Packages; [ 24 - gmusicapi 25 - google-api-python-client 26 - mpv 27 - pydbus 28 - pygobject3 29 - pyyaml 30 - requests 31 - rsa 32 - urwid 33 - ]; 34 - 35 - meta = with lib; { 36 - description = "A fancy TUI client for Google Play Music"; 37 - longDescription = '' 38 - TUIJam seeks to make a simple, attractive, terminal-based interface to 39 - listening to music for Google Play Music All-Access subscribers. 40 - ''; 41 - homepage = "https://github.com/cfangmeier/tuijam"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ kalbasit ]; 44 - }; 45 - }
+2 -2
pkgs/applications/networking/browsers/lagrange/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "lagrange"; 17 - version = "1.1.4"; 17 + version = "1.2.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "skyjake"; 21 21 repo = "lagrange"; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-EN0fQ5Scwrd7Tv31upQVbuqoNCoYudtruwtPR1IKTzE="; 23 + sha256 = "sha256-Y+BiXKxlUSZXaLcz75l333ZBkKyII9IyTmKQwjshBkE="; 24 24 fetchSubmodules = true; 25 25 }; 26 26
+111
pkgs/applications/networking/powerdns-admin/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, mkYarnPackage, writeText, python3Packages }: 2 + 3 + let 4 + version = "0.2.3"; 5 + src = fetchFromGitHub { 6 + owner = "ngoduykhanh"; 7 + repo = "PowerDNS-Admin"; 8 + rev = "v${version}"; 9 + sha256 = "16faz57d77mxkflkvwyi8gb9wvnq2vhw79b84v1fmqvxri1yaphw"; 10 + }; 11 + 12 + pythonDeps = with python3Packages; [ 13 + flask flask_assets flask_login flask_sqlalchemy flask_migrate flask-seasurf flask_mail flask-sslify 14 + mysqlclient sqlalchemy 15 + configobj bcrypt requests ldap pyotp qrcode dnspython_1 16 + gunicorn python3-saml pyopenssl pytz cssmin jsmin authlib bravado-core 17 + lima pytimeparse pyyaml 18 + ]; 19 + 20 + assets = mkYarnPackage { 21 + inherit src version; 22 + packageJSON = ./package.json; 23 + yarnNix = ./yarndeps.nix; 24 + 25 + nativeBuildInputs = pythonDeps; 26 + patchPhase = '' 27 + sed -i -r -e "s|'cssmin',\s?'cssrewrite'|'cssmin'|g" powerdnsadmin/assets.py 28 + ''; 29 + buildPhase = '' 30 + # The build process expects the directory to be writable 31 + # with node_modules at a specific path 32 + # https://github.com/ngoduykhanh/PowerDNS-Admin/blob/master/.yarnrc 33 + 34 + approot=deps/powerdns-admin-assets 35 + 36 + ln -s $node_modules $approot/powerdnsadmin/static/node_modules 37 + FLASK_APP=$approot/powerdnsadmin/__init__.py flask assets build 38 + ''; 39 + installPhase = '' 40 + # https://github.com/ngoduykhanh/PowerDNS-Admin/blob/54b257768f600c5548a1c7e50eac49c40df49f92/docker/Dockerfile#L43 41 + mkdir $out 42 + cp -r $approot/powerdnsadmin/static/{generated,assets,img} $out 43 + find $node_modules/icheck/skins/square -name '*.png' -exec cp {} $out/generated \; 44 + 45 + mkdir $out/fonts 46 + cp $node_modules/ionicons/dist/fonts/* $out/fonts 47 + cp $node_modules/bootstrap/dist/fonts/* $out/fonts 48 + cp $node_modules/font-awesome/fonts/* $out/fonts 49 + ''; 50 + distPhase = "true"; 51 + }; 52 + 53 + assetsPy = writeText "assets.py" '' 54 + from flask_assets import Environment 55 + assets = Environment() 56 + assets.register('js_login', 'generated/login.js') 57 + assets.register('js_validation', 'generated/validation.js') 58 + assets.register('css_login', 'generated/login.css') 59 + assets.register('js_main', 'generated/main.js') 60 + assets.register('css_main', 'generated/main.css') 61 + ''; 62 + in stdenv.mkDerivation rec { 63 + pname = "powerdns-admin"; 64 + 65 + inherit src version; 66 + 67 + nativeBuildInputs = [ python3Packages.wrapPython ]; 68 + 69 + pythonPath = pythonDeps; 70 + 71 + gunicornScript = '' 72 + #!/bin/sh 73 + if [ ! -z $CONFIG ]; then 74 + exec python -m gunicorn.app.wsgiapp "powerdnsadmin:create_app(config='$CONFIG')" "$@" 75 + fi 76 + 77 + exec python -m gunicorn.app.wsgiapp "powerdnsadmin:create_app()" "$@" 78 + ''; 79 + 80 + postPatch = '' 81 + rm -r powerdnsadmin/static powerdnsadmin/assets.py 82 + ''; 83 + 84 + installPhase = '' 85 + runHook preInstall 86 + 87 + # Nasty hack: call wrapPythonPrograms to set program_PYTHONPATH (see tribler) 88 + wrapPythonPrograms 89 + 90 + mkdir -p $out/share $out/bin 91 + cp -r powerdnsadmin $out/share/powerdnsadmin 92 + 93 + ln -s ${assets} $out/share/powerdnsadmin/static 94 + ln -s ${assetsPy} $out/share/powerdnsadmin/assets.py 95 + 96 + echo "$gunicornScript" > $out/bin/powerdns-admin 97 + chmod +x $out/bin/powerdns-admin 98 + wrapProgram $out/bin/powerdns-admin \ 99 + --set PATH ${python3Packages.python}/bin \ 100 + --set PYTHONPATH $out/share:$program_PYTHONPATH 101 + 102 + runHook postInstall 103 + ''; 104 + 105 + meta = with lib; { 106 + description = "A PowerDNS web interface with advanced features"; 107 + homepage = "https://github.com/ngoduykhanh/PowerDNS-Admin"; 108 + license = licenses.mit; 109 + maintainers = with maintainers; [ zhaofengli ]; 110 + }; 111 + }
+16
pkgs/applications/networking/powerdns-admin/package.json
··· 1 + { 2 + "dependencies": { 3 + "admin-lte": "2.4.9", 4 + "bootstrap": "^3.4.1", 5 + "bootstrap-validator": "^0.11.9", 6 + "datatables.net-plugins": "^1.10.19", 7 + "icheck": "^1.0.2", 8 + "jquery-slimscroll": "^1.3.8", 9 + "jquery-ui-dist": "^1.12.1", 10 + "jquery.quicksearch": "^2.4.0", 11 + "jtimeout": "^3.1.0", 12 + "multiselect": "^0.9.12" 13 + }, 14 + "name": "powerdns-admin-assets", 15 + "version": "0.2.3" 16 + }
+20
pkgs/applications/networking/powerdns-admin/update-asset-deps.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -I nixpkgs=../../../.. -i bash -p wget yarn2nix-moretea.yarn2nix jq 3 + 4 + # This script is based upon: 5 + # pkgs/applications/networking/instant-messengers/riot/update-riot-desktop.sh 6 + 7 + set -euo pipefail 8 + 9 + if [[ $# -ne 1 || $1 == -* ]]; then 10 + echo "Regenerates the Yarn dependency lock files for the powerdns-admin package." 11 + echo "Usage: $0 <git release version>" 12 + exit 1 13 + fi 14 + 15 + WEB_SRC="https://raw.githubusercontent.com/ngoduykhanh/PowerDNS-Admin/v$1" 16 + 17 + wget "$WEB_SRC/package.json" -O - | jq ".name = \"powerdns-admin-assets\" | .version = \"$1\"" > package.json 18 + wget "$WEB_SRC/yarn.lock" -O yarn.lock 19 + yarn2nix --lockfile=yarn.lock > yarndeps.nix 20 + rm yarn.lock
+1453
pkgs/applications/networking/powerdns-admin/yarndeps.nix
··· 1 + { fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec { 2 + offline_cache = linkFarm "offline" packages; 3 + packages = [ 4 + { 5 + name = "JSONStream___JSONStream_1.3.3.tgz"; 6 + path = fetchurl { 7 + name = "JSONStream___JSONStream_1.3.3.tgz"; 8 + url = "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.3.tgz"; 9 + sha1 = "27b4b8fbbfeab4e71bcf551e7f27be8d952239bf"; 10 + }; 11 + } 12 + { 13 + name = "acorn_node___acorn_node_1.3.0.tgz"; 14 + path = fetchurl { 15 + name = "acorn_node___acorn_node_1.3.0.tgz"; 16 + url = "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.3.0.tgz"; 17 + sha1 = "5f86d73346743810ef1269b901dbcbded020861b"; 18 + }; 19 + } 20 + { 21 + name = "acorn___acorn_4.0.13.tgz"; 22 + path = fetchurl { 23 + name = "acorn___acorn_4.0.13.tgz"; 24 + url = "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz"; 25 + sha1 = "105495ae5361d697bd195c825192e1ad7f253787"; 26 + }; 27 + } 28 + { 29 + name = "acorn___acorn_5.6.2.tgz"; 30 + path = fetchurl { 31 + name = "acorn___acorn_5.6.2.tgz"; 32 + url = "https://registry.yarnpkg.com/acorn/-/acorn-5.6.2.tgz"; 33 + sha1 = "b1da1d7be2ac1b4a327fb9eab851702c5045b4e7"; 34 + }; 35 + } 36 + { 37 + name = "admin_lte___admin_lte_2.4.9.tgz"; 38 + path = fetchurl { 39 + name = "admin_lte___admin_lte_2.4.9.tgz"; 40 + url = "https://registry.yarnpkg.com/admin-lte/-/admin-lte-2.4.9.tgz"; 41 + sha1 = "effc04dbb587ccb7d674d4cf663cc141f925ed73"; 42 + }; 43 + } 44 + { 45 + name = "almond___almond_0.3.3.tgz"; 46 + path = fetchurl { 47 + name = "almond___almond_0.3.3.tgz"; 48 + url = "https://registry.yarnpkg.com/almond/-/almond-0.3.3.tgz"; 49 + sha1 = "a0e7c95ac7624d6417b4494b1e68bff693168a20"; 50 + }; 51 + } 52 + { 53 + name = "array_filter___array_filter_0.0.1.tgz"; 54 + path = fetchurl { 55 + name = "array_filter___array_filter_0.0.1.tgz"; 56 + url = "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz"; 57 + sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec"; 58 + }; 59 + } 60 + { 61 + name = "array_map___array_map_0.0.0.tgz"; 62 + path = fetchurl { 63 + name = "array_map___array_map_0.0.0.tgz"; 64 + url = "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz"; 65 + sha1 = "88a2bab73d1cf7bcd5c1b118a003f66f665fa662"; 66 + }; 67 + } 68 + { 69 + name = "array_reduce___array_reduce_0.0.0.tgz"; 70 + path = fetchurl { 71 + name = "array_reduce___array_reduce_0.0.0.tgz"; 72 + url = "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz"; 73 + sha1 = "173899d3ffd1c7d9383e4479525dbe278cab5f2b"; 74 + }; 75 + } 76 + { 77 + name = "asn1.js___asn1.js_4.10.1.tgz"; 78 + path = fetchurl { 79 + name = "asn1.js___asn1.js_4.10.1.tgz"; 80 + url = "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz"; 81 + sha1 = "b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"; 82 + }; 83 + } 84 + { 85 + name = "assert___assert_1.4.1.tgz"; 86 + path = fetchurl { 87 + name = "assert___assert_1.4.1.tgz"; 88 + url = "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz"; 89 + sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91"; 90 + }; 91 + } 92 + { 93 + name = "astw___astw_2.2.0.tgz"; 94 + path = fetchurl { 95 + name = "astw___astw_2.2.0.tgz"; 96 + url = "https://registry.yarnpkg.com/astw/-/astw-2.2.0.tgz"; 97 + sha1 = "7bd41784d32493987aeb239b6b4e1c57a873b917"; 98 + }; 99 + } 100 + { 101 + name = "balanced_match___balanced_match_1.0.0.tgz"; 102 + path = fetchurl { 103 + name = "balanced_match___balanced_match_1.0.0.tgz"; 104 + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 105 + sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 106 + }; 107 + } 108 + { 109 + name = "base64_js___base64_js_1.3.0.tgz"; 110 + path = fetchurl { 111 + name = "base64_js___base64_js_1.3.0.tgz"; 112 + url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz"; 113 + sha1 = "cab1e6118f051095e58b5281aea8c1cd22bfc0e3"; 114 + }; 115 + } 116 + { 117 + name = "bn.js___bn.js_4.11.9.tgz"; 118 + path = fetchurl { 119 + name = "bn.js___bn.js_4.11.9.tgz"; 120 + url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz"; 121 + sha1 = "26d556829458f9d1e81fc48952493d0ba3507828"; 122 + }; 123 + } 124 + { 125 + name = "bootstrap_colorpicker___bootstrap_colorpicker_2.5.3.tgz"; 126 + path = fetchurl { 127 + name = "bootstrap_colorpicker___bootstrap_colorpicker_2.5.3.tgz"; 128 + url = "https://registry.yarnpkg.com/bootstrap-colorpicker/-/bootstrap-colorpicker-2.5.3.tgz"; 129 + sha1 = "b50aff8590fbaa6b5aa63a5624e4213f1659a49d"; 130 + }; 131 + } 132 + { 133 + name = "bootstrap_datepicker___bootstrap_datepicker_1.8.0.tgz"; 134 + path = fetchurl { 135 + name = "bootstrap_datepicker___bootstrap_datepicker_1.8.0.tgz"; 136 + url = "https://registry.yarnpkg.com/bootstrap-datepicker/-/bootstrap-datepicker-1.8.0.tgz"; 137 + sha1 = "c63513931e6f09f16ae9f11b62f32d950df3958e"; 138 + }; 139 + } 140 + { 141 + name = "bootstrap_daterangepicker___bootstrap_daterangepicker_2.1.30.tgz"; 142 + path = fetchurl { 143 + name = "bootstrap_daterangepicker___bootstrap_daterangepicker_2.1.30.tgz"; 144 + url = "https://registry.yarnpkg.com/bootstrap-daterangepicker/-/bootstrap-daterangepicker-2.1.30.tgz"; 145 + sha1 = "f893dbfff5a4d7dfaab75460e8ea6969bb89689a"; 146 + }; 147 + } 148 + { 149 + name = "bootstrap_slider___bootstrap_slider_9.10.0.tgz"; 150 + path = fetchurl { 151 + name = "bootstrap_slider___bootstrap_slider_9.10.0.tgz"; 152 + url = "https://registry.yarnpkg.com/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz"; 153 + sha1 = "1103d6bc00cfbfa8cfc9a2599ab518c55643da3f"; 154 + }; 155 + } 156 + { 157 + name = "bootstrap_timepicker___bootstrap_timepicker_0.5.2.tgz"; 158 + path = fetchurl { 159 + name = "bootstrap_timepicker___bootstrap_timepicker_0.5.2.tgz"; 160 + url = "https://registry.yarnpkg.com/bootstrap-timepicker/-/bootstrap-timepicker-0.5.2.tgz"; 161 + sha1 = "10ed9f2a2f0b8ccaefcde0fcf6a0738b919a3835"; 162 + }; 163 + } 164 + { 165 + name = "bootstrap_validator___bootstrap_validator_0.11.9.tgz"; 166 + path = fetchurl { 167 + name = "bootstrap_validator___bootstrap_validator_0.11.9.tgz"; 168 + url = "https://registry.yarnpkg.com/bootstrap-validator/-/bootstrap-validator-0.11.9.tgz"; 169 + sha1 = "fb7058eef53623e78f5aa7967026f98f875a9404"; 170 + }; 171 + } 172 + { 173 + name = "bootstrap___bootstrap_3.4.1.tgz"; 174 + path = fetchurl { 175 + name = "bootstrap___bootstrap_3.4.1.tgz"; 176 + url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz"; 177 + sha1 = "c3a347d419e289ad11f4033e3c4132b87c081d72"; 178 + }; 179 + } 180 + { 181 + name = "brace_expansion___brace_expansion_1.1.11.tgz"; 182 + path = fetchurl { 183 + name = "brace_expansion___brace_expansion_1.1.11.tgz"; 184 + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; 185 + sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; 186 + }; 187 + } 188 + { 189 + name = "brorand___brorand_1.1.0.tgz"; 190 + path = fetchurl { 191 + name = "brorand___brorand_1.1.0.tgz"; 192 + url = "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz"; 193 + sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f"; 194 + }; 195 + } 196 + { 197 + name = "browser_pack___browser_pack_6.1.0.tgz"; 198 + path = fetchurl { 199 + name = "browser_pack___browser_pack_6.1.0.tgz"; 200 + url = "https://registry.yarnpkg.com/browser-pack/-/browser-pack-6.1.0.tgz"; 201 + sha1 = "c34ba10d0b9ce162b5af227c7131c92c2ecd5774"; 202 + }; 203 + } 204 + { 205 + name = "browser_resolve___browser_resolve_1.11.2.tgz"; 206 + path = fetchurl { 207 + name = "browser_resolve___browser_resolve_1.11.2.tgz"; 208 + url = "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.2.tgz"; 209 + sha1 = "8ff09b0a2c421718a1051c260b32e48f442938ce"; 210 + }; 211 + } 212 + { 213 + name = "browserify_aes___browserify_aes_1.2.0.tgz"; 214 + path = fetchurl { 215 + name = "browserify_aes___browserify_aes_1.2.0.tgz"; 216 + url = "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz"; 217 + sha1 = "326734642f403dabc3003209853bb70ad428ef48"; 218 + }; 219 + } 220 + { 221 + name = "browserify_cipher___browserify_cipher_1.0.1.tgz"; 222 + path = fetchurl { 223 + name = "browserify_cipher___browserify_cipher_1.0.1.tgz"; 224 + url = "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz"; 225 + sha1 = "8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"; 226 + }; 227 + } 228 + { 229 + name = "browserify_des___browserify_des_1.0.1.tgz"; 230 + path = fetchurl { 231 + name = "browserify_des___browserify_des_1.0.1.tgz"; 232 + url = "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.1.tgz"; 233 + sha1 = "3343124db6d7ad53e26a8826318712bdc8450f9c"; 234 + }; 235 + } 236 + { 237 + name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; 238 + path = fetchurl { 239 + name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; 240 + url = "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz"; 241 + sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524"; 242 + }; 243 + } 244 + { 245 + name = "browserify_sign___browserify_sign_4.0.4.tgz"; 246 + path = fetchurl { 247 + name = "browserify_sign___browserify_sign_4.0.4.tgz"; 248 + url = "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz"; 249 + sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"; 250 + }; 251 + } 252 + { 253 + name = "browserify_zlib___browserify_zlib_0.2.0.tgz"; 254 + path = fetchurl { 255 + name = "browserify_zlib___browserify_zlib_0.2.0.tgz"; 256 + url = "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz"; 257 + sha1 = "2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"; 258 + }; 259 + } 260 + { 261 + name = "browserify___browserify_16.2.2.tgz"; 262 + path = fetchurl { 263 + name = "browserify___browserify_16.2.2.tgz"; 264 + url = "https://registry.yarnpkg.com/browserify/-/browserify-16.2.2.tgz"; 265 + sha1 = "4b1f66ba0e54fa39dbc5aa4be9629142143d91b0"; 266 + }; 267 + } 268 + { 269 + name = "buffer_from___buffer_from_1.1.0.tgz"; 270 + path = fetchurl { 271 + name = "buffer_from___buffer_from_1.1.0.tgz"; 272 + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.0.tgz"; 273 + sha1 = "87fcaa3a298358e0ade6e442cfce840740d1ad04"; 274 + }; 275 + } 276 + { 277 + name = "buffer_xor___buffer_xor_1.0.3.tgz"; 278 + path = fetchurl { 279 + name = "buffer_xor___buffer_xor_1.0.3.tgz"; 280 + url = "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz"; 281 + sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9"; 282 + }; 283 + } 284 + { 285 + name = "buffer___buffer_5.1.0.tgz"; 286 + path = fetchurl { 287 + name = "buffer___buffer_5.1.0.tgz"; 288 + url = "https://registry.yarnpkg.com/buffer/-/buffer-5.1.0.tgz"; 289 + sha1 = "c913e43678c7cb7c8bd16afbcddb6c5505e8f9fe"; 290 + }; 291 + } 292 + { 293 + name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz"; 294 + path = fetchurl { 295 + name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz"; 296 + url = "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; 297 + sha1 = "85982878e21b98e1c66425e03d0174788f569ee8"; 298 + }; 299 + } 300 + { 301 + name = "cached_path_relative___cached_path_relative_1.0.2.tgz"; 302 + path = fetchurl { 303 + name = "cached_path_relative___cached_path_relative_1.0.2.tgz"; 304 + url = "https://registry.yarnpkg.com/cached-path-relative/-/cached-path-relative-1.0.2.tgz"; 305 + sha1 = "a13df4196d26776220cc3356eb147a52dba2c6db"; 306 + }; 307 + } 308 + { 309 + name = "charm___charm_0.1.2.tgz"; 310 + path = fetchurl { 311 + name = "charm___charm_0.1.2.tgz"; 312 + url = "https://registry.yarnpkg.com/charm/-/charm-0.1.2.tgz"; 313 + sha1 = "06c21eed1a1b06aeb67553cdc53e23274bac2296"; 314 + }; 315 + } 316 + { 317 + name = "chart.js___chart.js_1.0.2.tgz"; 318 + path = fetchurl { 319 + name = "chart.js___chart.js_1.0.2.tgz"; 320 + url = "https://registry.yarnpkg.com/chart.js/-/chart.js-1.0.2.tgz"; 321 + sha1 = "ad57d2229cfd8ccf5955147e8121b4911e69dfe7"; 322 + }; 323 + } 324 + { 325 + name = "cipher_base___cipher_base_1.0.4.tgz"; 326 + path = fetchurl { 327 + name = "cipher_base___cipher_base_1.0.4.tgz"; 328 + url = "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz"; 329 + sha1 = "8760e4ecc272f4c363532f926d874aae2c1397de"; 330 + }; 331 + } 332 + { 333 + name = "ckeditor___ckeditor_4.11.3.tgz"; 334 + path = fetchurl { 335 + name = "ckeditor___ckeditor_4.11.3.tgz"; 336 + url = "https://registry.yarnpkg.com/ckeditor/-/ckeditor-4.11.3.tgz"; 337 + sha1 = "91f66d7ddb5bff3874514fe539779686874ed655"; 338 + }; 339 + } 340 + { 341 + name = "classie___classie_1.0.0.tgz"; 342 + path = fetchurl { 343 + name = "classie___classie_1.0.0.tgz"; 344 + url = "https://registry.yarnpkg.com/classie/-/classie-1.0.0.tgz"; 345 + sha1 = "fc9b29b47e64e374a2062fb624d05a61cd703ab2"; 346 + }; 347 + } 348 + { 349 + name = "combine_source_map___combine_source_map_0.8.0.tgz"; 350 + path = fetchurl { 351 + name = "combine_source_map___combine_source_map_0.8.0.tgz"; 352 + url = "https://registry.yarnpkg.com/combine-source-map/-/combine-source-map-0.8.0.tgz"; 353 + sha1 = "a58d0df042c186fcf822a8e8015f5450d2d79a8b"; 354 + }; 355 + } 356 + { 357 + name = "concat_map___concat_map_0.0.1.tgz"; 358 + path = fetchurl { 359 + name = "concat_map___concat_map_0.0.1.tgz"; 360 + url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; 361 + sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 362 + }; 363 + } 364 + { 365 + name = "concat_stream___concat_stream_1.6.2.tgz"; 366 + path = fetchurl { 367 + name = "concat_stream___concat_stream_1.6.2.tgz"; 368 + url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; 369 + sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; 370 + }; 371 + } 372 + { 373 + name = "console_browserify___console_browserify_1.1.0.tgz"; 374 + path = fetchurl { 375 + name = "console_browserify___console_browserify_1.1.0.tgz"; 376 + url = "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz"; 377 + sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10"; 378 + }; 379 + } 380 + { 381 + name = "constants_browserify___constants_browserify_1.0.0.tgz"; 382 + path = fetchurl { 383 + name = "constants_browserify___constants_browserify_1.0.0.tgz"; 384 + url = "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz"; 385 + sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 386 + }; 387 + } 388 + { 389 + name = "convert_source_map___convert_source_map_1.1.3.tgz"; 390 + path = fetchurl { 391 + name = "convert_source_map___convert_source_map_1.1.3.tgz"; 392 + url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.1.3.tgz"; 393 + sha1 = "4829c877e9fe49b3161f3bf3673888e204699860"; 394 + }; 395 + } 396 + { 397 + name = "core_util_is___core_util_is_1.0.2.tgz"; 398 + path = fetchurl { 399 + name = "core_util_is___core_util_is_1.0.2.tgz"; 400 + url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; 401 + sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 402 + }; 403 + } 404 + { 405 + name = "create_ecdh___create_ecdh_4.0.3.tgz"; 406 + path = fetchurl { 407 + name = "create_ecdh___create_ecdh_4.0.3.tgz"; 408 + url = "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz"; 409 + sha1 = "c9111b6f33045c4697f144787f9254cdc77c45ff"; 410 + }; 411 + } 412 + { 413 + name = "create_hash___create_hash_1.2.0.tgz"; 414 + path = fetchurl { 415 + name = "create_hash___create_hash_1.2.0.tgz"; 416 + url = "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz"; 417 + sha1 = "889078af11a63756bcfb59bd221996be3a9ef196"; 418 + }; 419 + } 420 + { 421 + name = "create_hmac___create_hmac_1.1.7.tgz"; 422 + path = fetchurl { 423 + name = "create_hmac___create_hmac_1.1.7.tgz"; 424 + url = "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz"; 425 + sha1 = "69170c78b3ab957147b2b8b04572e47ead2243ff"; 426 + }; 427 + } 428 + { 429 + name = "crypto_browserify___crypto_browserify_3.12.0.tgz"; 430 + path = fetchurl { 431 + name = "crypto_browserify___crypto_browserify_3.12.0.tgz"; 432 + url = "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz"; 433 + sha1 = "396cf9f3137f03e4b8e532c58f698254e00f80ec"; 434 + }; 435 + } 436 + { 437 + name = "datatables.net_bs___datatables.net_bs_1.10.19.tgz"; 438 + path = fetchurl { 439 + name = "datatables.net_bs___datatables.net_bs_1.10.19.tgz"; 440 + url = "https://registry.yarnpkg.com/datatables.net-bs/-/datatables.net-bs-1.10.19.tgz"; 441 + sha1 = "08763b4e4d0cef1a427d019dc15e717c7ed67a4d"; 442 + }; 443 + } 444 + { 445 + name = "datatables.net_plugins___datatables.net_plugins_1.10.20.tgz"; 446 + path = fetchurl { 447 + name = "datatables.net_plugins___datatables.net_plugins_1.10.20.tgz"; 448 + url = "https://registry.yarnpkg.com/datatables.net-plugins/-/datatables.net-plugins-1.10.20.tgz"; 449 + sha1 = "c89f6bed3fa7e6605cbeaa35d60f223659e84c8c"; 450 + }; 451 + } 452 + { 453 + name = "datatables.net___datatables.net_1.10.19.tgz"; 454 + path = fetchurl { 455 + name = "datatables.net___datatables.net_1.10.19.tgz"; 456 + url = "https://registry.yarnpkg.com/datatables.net/-/datatables.net-1.10.19.tgz"; 457 + sha1 = "97a1ed41c85e62d61040603481b59790a172dd1f"; 458 + }; 459 + } 460 + { 461 + name = "date_now___date_now_0.1.4.tgz"; 462 + path = fetchurl { 463 + name = "date_now___date_now_0.1.4.tgz"; 464 + url = "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz"; 465 + sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b"; 466 + }; 467 + } 468 + { 469 + name = "defined___defined_1.0.0.tgz"; 470 + path = fetchurl { 471 + name = "defined___defined_1.0.0.tgz"; 472 + url = "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz"; 473 + sha1 = "c98d9bcef75674188e110969151199e39b1fa693"; 474 + }; 475 + } 476 + { 477 + name = "deps_sort___deps_sort_2.0.0.tgz"; 478 + path = fetchurl { 479 + name = "deps_sort___deps_sort_2.0.0.tgz"; 480 + url = "https://registry.yarnpkg.com/deps-sort/-/deps-sort-2.0.0.tgz"; 481 + sha1 = "091724902e84658260eb910748cccd1af6e21fb5"; 482 + }; 483 + } 484 + { 485 + name = "des.js___des.js_1.0.0.tgz"; 486 + path = fetchurl { 487 + name = "des.js___des.js_1.0.0.tgz"; 488 + url = "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz"; 489 + sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"; 490 + }; 491 + } 492 + { 493 + name = "detective___detective_5.1.0.tgz"; 494 + path = fetchurl { 495 + name = "detective___detective_5.1.0.tgz"; 496 + url = "https://registry.yarnpkg.com/detective/-/detective-5.1.0.tgz"; 497 + sha1 = "7a20d89236d7b331ccea65832e7123b5551bb7cb"; 498 + }; 499 + } 500 + { 501 + name = "diffie_hellman___diffie_hellman_5.0.3.tgz"; 502 + path = fetchurl { 503 + name = "diffie_hellman___diffie_hellman_5.0.3.tgz"; 504 + url = "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz"; 505 + sha1 = "40e8ee98f55a2149607146921c63e1ae5f3d2875"; 506 + }; 507 + } 508 + { 509 + name = "domain_browser___domain_browser_1.2.0.tgz"; 510 + path = fetchurl { 511 + name = "domain_browser___domain_browser_1.2.0.tgz"; 512 + url = "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz"; 513 + sha1 = "3d31f50191a6749dd1375a7f522e823d42e54eda"; 514 + }; 515 + } 516 + { 517 + name = "domhelper___domhelper_0.9.1.tgz"; 518 + path = fetchurl { 519 + name = "domhelper___domhelper_0.9.1.tgz"; 520 + url = "https://registry.yarnpkg.com/domhelper/-/domhelper-0.9.1.tgz"; 521 + sha1 = "26554e5bac2c9e9585dca500978df5067d64bd00"; 522 + }; 523 + } 524 + { 525 + name = "duplexer2___duplexer2_0.1.4.tgz"; 526 + path = fetchurl { 527 + name = "duplexer2___duplexer2_0.1.4.tgz"; 528 + url = "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.1.4.tgz"; 529 + sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1"; 530 + }; 531 + } 532 + { 533 + name = "elliptic___elliptic_6.5.3.tgz"; 534 + path = fetchurl { 535 + name = "elliptic___elliptic_6.5.3.tgz"; 536 + url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz"; 537 + sha1 = "cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"; 538 + }; 539 + } 540 + { 541 + name = "eve_raphael___eve_raphael_0.5.0.tgz"; 542 + path = fetchurl { 543 + name = "eve_raphael___eve_raphael_0.5.0.tgz"; 544 + url = "https://registry.yarnpkg.com/eve-raphael/-/eve-raphael-0.5.0.tgz"; 545 + sha1 = "17c754b792beef3fa6684d79cf5a47c63c4cda30"; 546 + }; 547 + } 548 + { 549 + name = "events___events_2.1.0.tgz"; 550 + path = fetchurl { 551 + name = "events___events_2.1.0.tgz"; 552 + url = "https://registry.yarnpkg.com/events/-/events-2.1.0.tgz"; 553 + sha1 = "2a9a1e18e6106e0e812aa9ebd4a819b3c29c0ba5"; 554 + }; 555 + } 556 + { 557 + name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; 558 + path = fetchurl { 559 + name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; 560 + url = "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"; 561 + sha1 = "7fcbdb198dc71959432efe13842684e0525acb02"; 562 + }; 563 + } 564 + { 565 + name = "fastclick___fastclick_1.0.6.tgz"; 566 + path = fetchurl { 567 + name = "fastclick___fastclick_1.0.6.tgz"; 568 + url = "https://registry.yarnpkg.com/fastclick/-/fastclick-1.0.6.tgz"; 569 + sha1 = "161625b27b1a5806405936bda9a2c1926d06be6a"; 570 + }; 571 + } 572 + { 573 + name = "flot___flot_0.8.3.tgz"; 574 + path = fetchurl { 575 + name = "flot___flot_0.8.3.tgz"; 576 + url = "https://registry.yarnpkg.com/flot/-/flot-0.8.3.tgz"; 577 + sha1 = "6d9b93c7aa2cfb30dfa1af9c1ec4c94070b1217f"; 578 + }; 579 + } 580 + { 581 + name = "font_awesome___font_awesome_4.7.0.tgz"; 582 + path = fetchurl { 583 + name = "font_awesome___font_awesome_4.7.0.tgz"; 584 + url = "https://registry.yarnpkg.com/font-awesome/-/font-awesome-4.7.0.tgz"; 585 + sha1 = "8fa8cf0411a1a31afd07b06d2902bb9fc815a133"; 586 + }; 587 + } 588 + { 589 + name = "fs.realpath___fs.realpath_1.0.0.tgz"; 590 + path = fetchurl { 591 + name = "fs.realpath___fs.realpath_1.0.0.tgz"; 592 + url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; 593 + sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 594 + }; 595 + } 596 + { 597 + name = "fullcalendar___fullcalendar_3.10.0.tgz"; 598 + path = fetchurl { 599 + name = "fullcalendar___fullcalendar_3.10.0.tgz"; 600 + url = "https://registry.yarnpkg.com/fullcalendar/-/fullcalendar-3.10.0.tgz"; 601 + sha1 = "cc5e87d518fd6550e142816a31dd191664847919"; 602 + }; 603 + } 604 + { 605 + name = "function_bind___function_bind_1.1.1.tgz"; 606 + path = fetchurl { 607 + name = "function_bind___function_bind_1.1.1.tgz"; 608 + url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; 609 + sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; 610 + }; 611 + } 612 + { 613 + name = "glob___glob_7.1.2.tgz"; 614 + path = fetchurl { 615 + name = "glob___glob_7.1.2.tgz"; 616 + url = "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz"; 617 + sha1 = "c19c9df9a028702d678612384a6552404c636d15"; 618 + }; 619 + } 620 + { 621 + name = "has___has_1.0.3.tgz"; 622 + path = fetchurl { 623 + name = "has___has_1.0.3.tgz"; 624 + url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; 625 + sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; 626 + }; 627 + } 628 + { 629 + name = "hash_base___hash_base_3.0.4.tgz"; 630 + path = fetchurl { 631 + name = "hash_base___hash_base_3.0.4.tgz"; 632 + url = "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz"; 633 + sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918"; 634 + }; 635 + } 636 + { 637 + name = "hash.js___hash.js_1.1.7.tgz"; 638 + path = fetchurl { 639 + name = "hash.js___hash.js_1.1.7.tgz"; 640 + url = "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz"; 641 + sha1 = "0babca538e8d4ee4a0f8988d68866537a003cf42"; 642 + }; 643 + } 644 + { 645 + name = "hmac_drbg___hmac_drbg_1.0.1.tgz"; 646 + path = fetchurl { 647 + name = "hmac_drbg___hmac_drbg_1.0.1.tgz"; 648 + url = "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz"; 649 + sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1"; 650 + }; 651 + } 652 + { 653 + name = "htmlescape___htmlescape_1.1.1.tgz"; 654 + path = fetchurl { 655 + name = "htmlescape___htmlescape_1.1.1.tgz"; 656 + url = "https://registry.yarnpkg.com/htmlescape/-/htmlescape-1.1.1.tgz"; 657 + sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351"; 658 + }; 659 + } 660 + { 661 + name = "https_browserify___https_browserify_1.0.0.tgz"; 662 + path = fetchurl { 663 + name = "https_browserify___https_browserify_1.0.0.tgz"; 664 + url = "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz"; 665 + sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"; 666 + }; 667 + } 668 + { 669 + name = "icheck___icheck_1.0.2.tgz"; 670 + path = fetchurl { 671 + name = "icheck___icheck_1.0.2.tgz"; 672 + url = "https://registry.yarnpkg.com/icheck/-/icheck-1.0.2.tgz"; 673 + sha1 = "06d08da3d47ae448c153b2639b86e9ad7fdf7128"; 674 + }; 675 + } 676 + { 677 + name = "ieee754___ieee754_1.1.12.tgz"; 678 + path = fetchurl { 679 + name = "ieee754___ieee754_1.1.12.tgz"; 680 + url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz"; 681 + sha1 = "50bf24e5b9c8bb98af4964c941cdb0918da7b60b"; 682 + }; 683 + } 684 + { 685 + name = "inflight___inflight_1.0.6.tgz"; 686 + path = fetchurl { 687 + name = "inflight___inflight_1.0.6.tgz"; 688 + url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; 689 + sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 690 + }; 691 + } 692 + { 693 + name = "inherits___inherits_2.0.4.tgz"; 694 + path = fetchurl { 695 + name = "inherits___inherits_2.0.4.tgz"; 696 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"; 697 + sha1 = "0fa2c64f932917c3433a0ded55363aae37416b7c"; 698 + }; 699 + } 700 + { 701 + name = "inherits___inherits_2.0.1.tgz"; 702 + path = fetchurl { 703 + name = "inherits___inherits_2.0.1.tgz"; 704 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz"; 705 + sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; 706 + }; 707 + } 708 + { 709 + name = "inherits___inherits_2.0.3.tgz"; 710 + path = fetchurl { 711 + name = "inherits___inherits_2.0.3.tgz"; 712 + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; 713 + sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 714 + }; 715 + } 716 + { 717 + name = "inline_source_map___inline_source_map_0.6.2.tgz"; 718 + path = fetchurl { 719 + name = "inline_source_map___inline_source_map_0.6.2.tgz"; 720 + url = "https://registry.yarnpkg.com/inline-source-map/-/inline-source-map-0.6.2.tgz"; 721 + sha1 = "f9393471c18a79d1724f863fa38b586370ade2a5"; 722 + }; 723 + } 724 + { 725 + name = "inputmask___inputmask_3.3.11.tgz"; 726 + path = fetchurl { 727 + name = "inputmask___inputmask_3.3.11.tgz"; 728 + url = "https://registry.yarnpkg.com/inputmask/-/inputmask-3.3.11.tgz"; 729 + sha1 = "1421c94ae28c3dcd1b4d26337b508bb34998e2d8"; 730 + }; 731 + } 732 + { 733 + name = "insert_module_globals___insert_module_globals_7.1.0.tgz"; 734 + path = fetchurl { 735 + name = "insert_module_globals___insert_module_globals_7.1.0.tgz"; 736 + url = "https://registry.yarnpkg.com/insert-module-globals/-/insert-module-globals-7.1.0.tgz"; 737 + sha1 = "dbb3cea71d3a43d5a07ef0310fe5f078aa4dbf35"; 738 + }; 739 + } 740 + { 741 + name = "ion_rangeslider___ion_rangeslider_2.3.0.tgz"; 742 + path = fetchurl { 743 + name = "ion_rangeslider___ion_rangeslider_2.3.0.tgz"; 744 + url = "https://registry.yarnpkg.com/ion-rangeslider/-/ion-rangeslider-2.3.0.tgz"; 745 + sha1 = "7957ce2e78acfc956b8c43009373da91f743347e"; 746 + }; 747 + } 748 + { 749 + name = "ionicons___ionicons_3.0.0.tgz"; 750 + path = fetchurl { 751 + name = "ionicons___ionicons_3.0.0.tgz"; 752 + url = "https://registry.yarnpkg.com/ionicons/-/ionicons-3.0.0.tgz"; 753 + sha1 = "40b8daf4fd7a31150bd002160f66496e22a98c3c"; 754 + }; 755 + } 756 + { 757 + name = "is_buffer___is_buffer_1.1.6.tgz"; 758 + path = fetchurl { 759 + name = "is_buffer___is_buffer_1.1.6.tgz"; 760 + url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; 761 + sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; 762 + }; 763 + } 764 + { 765 + name = "isarray___isarray_2.0.4.tgz"; 766 + path = fetchurl { 767 + name = "isarray___isarray_2.0.4.tgz"; 768 + url = "https://registry.yarnpkg.com/isarray/-/isarray-2.0.4.tgz"; 769 + sha1 = "38e7bcbb0f3ba1b7933c86ba1894ddfc3781bbb7"; 770 + }; 771 + } 772 + { 773 + name = "isarray___isarray_1.0.0.tgz"; 774 + path = fetchurl { 775 + name = "isarray___isarray_1.0.0.tgz"; 776 + url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; 777 + sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 778 + }; 779 + } 780 + { 781 + name = "jquery_knob___jquery_knob_1.2.11.tgz"; 782 + path = fetchurl { 783 + name = "jquery_knob___jquery_knob_1.2.11.tgz"; 784 + url = "https://registry.yarnpkg.com/jquery-knob/-/jquery-knob-1.2.11.tgz"; 785 + sha1 = "f37c39dbc1c7a6a6c12cdb2ed4f6bffb683f10d6"; 786 + }; 787 + } 788 + { 789 + name = "jquery_mousewheel___jquery_mousewheel_3.1.13.tgz"; 790 + path = fetchurl { 791 + name = "jquery_mousewheel___jquery_mousewheel_3.1.13.tgz"; 792 + url = "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz"; 793 + sha1 = "06f0335f16e353a695e7206bf50503cb523a6ee5"; 794 + }; 795 + } 796 + { 797 + name = "jquery_slimscroll___jquery_slimscroll_1.3.8.tgz"; 798 + path = fetchurl { 799 + name = "jquery_slimscroll___jquery_slimscroll_1.3.8.tgz"; 800 + url = "https://registry.yarnpkg.com/jquery-slimscroll/-/jquery-slimscroll-1.3.8.tgz"; 801 + sha1 = "8481c44e7a47687653908a28f7f70aed64c84e36"; 802 + }; 803 + } 804 + { 805 + name = "jquery_sparkline___jquery_sparkline_2.4.0.tgz"; 806 + path = fetchurl { 807 + name = "jquery_sparkline___jquery_sparkline_2.4.0.tgz"; 808 + url = "https://registry.yarnpkg.com/jquery-sparkline/-/jquery-sparkline-2.4.0.tgz"; 809 + sha1 = "1be8b7b704dd3857152708aefb1d4a4b3a69fb33"; 810 + }; 811 + } 812 + { 813 + name = "jquery_ui_dist___jquery_ui_dist_1.12.1.tgz"; 814 + path = fetchurl { 815 + name = "jquery_ui_dist___jquery_ui_dist_1.12.1.tgz"; 816 + url = "https://registry.yarnpkg.com/jquery-ui-dist/-/jquery-ui-dist-1.12.1.tgz"; 817 + sha1 = "5c0815d3cc6f90ff5faaf5b268a6e23b4ca904fa"; 818 + }; 819 + } 820 + { 821 + name = "jquery_ui___jquery_ui_1.12.1.tgz"; 822 + path = fetchurl { 823 + name = "jquery_ui___jquery_ui_1.12.1.tgz"; 824 + url = "https://registry.yarnpkg.com/jquery-ui/-/jquery-ui-1.12.1.tgz"; 825 + sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51"; 826 + }; 827 + } 828 + { 829 + name = "jquery.quicksearch___jquery.quicksearch_2.4.0.tgz"; 830 + path = fetchurl { 831 + name = "jquery.quicksearch___jquery.quicksearch_2.4.0.tgz"; 832 + url = "https://registry.yarnpkg.com/jquery.quicksearch/-/jquery.quicksearch-2.4.0.tgz"; 833 + sha1 = "240c9f435e936c63bf8fbba355144ffdddf9ea26"; 834 + }; 835 + } 836 + { 837 + name = "jquery___jquery_3.3.1.tgz"; 838 + path = fetchurl { 839 + name = "jquery___jquery_3.3.1.tgz"; 840 + url = "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz"; 841 + sha1 = "958ce29e81c9790f31be7792df5d4d95fc57fbca"; 842 + }; 843 + } 844 + { 845 + name = "json_stable_stringify___json_stable_stringify_0.0.1.tgz"; 846 + path = fetchurl { 847 + name = "json_stable_stringify___json_stable_stringify_0.0.1.tgz"; 848 + url = "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz"; 849 + sha1 = "611c23e814db375527df851193db59dd2af27f45"; 850 + }; 851 + } 852 + { 853 + name = "jsonify___jsonify_0.0.0.tgz"; 854 + path = fetchurl { 855 + name = "jsonify___jsonify_0.0.0.tgz"; 856 + url = "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz"; 857 + sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; 858 + }; 859 + } 860 + { 861 + name = "jsonparse___jsonparse_1.3.1.tgz"; 862 + path = fetchurl { 863 + name = "jsonparse___jsonparse_1.3.1.tgz"; 864 + url = "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz"; 865 + sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 866 + }; 867 + } 868 + { 869 + name = "jtimeout___jtimeout_3.1.0.tgz"; 870 + path = fetchurl { 871 + name = "jtimeout___jtimeout_3.1.0.tgz"; 872 + url = "https://registry.yarnpkg.com/jtimeout/-/jtimeout-3.1.0.tgz"; 873 + sha1 = "4cd65b28eff8b9f8c61d08889a9ac3abdf5d9893"; 874 + }; 875 + } 876 + { 877 + name = "jvectormap___jvectormap_1.2.2.tgz"; 878 + path = fetchurl { 879 + name = "jvectormap___jvectormap_1.2.2.tgz"; 880 + url = "https://registry.yarnpkg.com/jvectormap/-/jvectormap-1.2.2.tgz"; 881 + sha1 = "2e4408b24a60473ff106c1e7243e375ae5ca85da"; 882 + }; 883 + } 884 + { 885 + name = "labeled_stream_splicer___labeled_stream_splicer_2.0.1.tgz"; 886 + path = fetchurl { 887 + name = "labeled_stream_splicer___labeled_stream_splicer_2.0.1.tgz"; 888 + url = "https://registry.yarnpkg.com/labeled-stream-splicer/-/labeled-stream-splicer-2.0.1.tgz"; 889 + sha1 = "9cffa32fd99e1612fd1d86a8db962416d5292926"; 890 + }; 891 + } 892 + { 893 + name = "lexical_scope___lexical_scope_1.2.0.tgz"; 894 + path = fetchurl { 895 + name = "lexical_scope___lexical_scope_1.2.0.tgz"; 896 + url = "https://registry.yarnpkg.com/lexical-scope/-/lexical-scope-1.2.0.tgz"; 897 + sha1 = "fcea5edc704a4b3a8796cdca419c3a0afaf22df4"; 898 + }; 899 + } 900 + { 901 + name = "lodash.memoize___lodash.memoize_3.0.4.tgz"; 902 + path = fetchurl { 903 + name = "lodash.memoize___lodash.memoize_3.0.4.tgz"; 904 + url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz"; 905 + sha1 = "2dcbd2c287cbc0a55cc42328bd0c736150d53e3f"; 906 + }; 907 + } 908 + { 909 + name = "md5.js___md5.js_1.3.4.tgz"; 910 + path = fetchurl { 911 + name = "md5.js___md5.js_1.3.4.tgz"; 912 + url = "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz"; 913 + sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d"; 914 + }; 915 + } 916 + { 917 + name = "miller_rabin___miller_rabin_4.0.1.tgz"; 918 + path = fetchurl { 919 + name = "miller_rabin___miller_rabin_4.0.1.tgz"; 920 + url = "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz"; 921 + sha1 = "f080351c865b0dc562a8462966daa53543c78a4d"; 922 + }; 923 + } 924 + { 925 + name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; 926 + path = fetchurl { 927 + name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; 928 + url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; 929 + sha1 = "2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"; 930 + }; 931 + } 932 + { 933 + name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz"; 934 + path = fetchurl { 935 + name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz"; 936 + url = "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"; 937 + sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"; 938 + }; 939 + } 940 + { 941 + name = "minimatch___minimatch_3.0.4.tgz"; 942 + path = fetchurl { 943 + name = "minimatch___minimatch_3.0.4.tgz"; 944 + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; 945 + sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; 946 + }; 947 + } 948 + { 949 + name = "minimist___minimist_0.0.8.tgz"; 950 + path = fetchurl { 951 + name = "minimist___minimist_0.0.8.tgz"; 952 + url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; 953 + sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 954 + }; 955 + } 956 + { 957 + name = "minimist___minimist_1.2.0.tgz"; 958 + path = fetchurl { 959 + name = "minimist___minimist_1.2.0.tgz"; 960 + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz"; 961 + sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; 962 + }; 963 + } 964 + { 965 + name = "mkdirp___mkdirp_0.5.1.tgz"; 966 + path = fetchurl { 967 + name = "mkdirp___mkdirp_0.5.1.tgz"; 968 + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; 969 + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 970 + }; 971 + } 972 + { 973 + name = "module_deps___module_deps_6.1.0.tgz"; 974 + path = fetchurl { 975 + name = "module_deps___module_deps_6.1.0.tgz"; 976 + url = "https://registry.yarnpkg.com/module-deps/-/module-deps-6.1.0.tgz"; 977 + sha1 = "d1e1efc481c6886269f7112c52c3236188e16479"; 978 + }; 979 + } 980 + { 981 + name = "moment___moment_2.24.0.tgz"; 982 + path = fetchurl { 983 + name = "moment___moment_2.24.0.tgz"; 984 + url = "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz"; 985 + sha1 = "0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"; 986 + }; 987 + } 988 + { 989 + name = "moment___moment_2.22.2.tgz"; 990 + path = fetchurl { 991 + name = "moment___moment_2.22.2.tgz"; 992 + url = "https://registry.yarnpkg.com/moment/-/moment-2.22.2.tgz"; 993 + sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66"; 994 + }; 995 + } 996 + { 997 + name = "morris.js___morris.js_0.5.0.tgz"; 998 + path = fetchurl { 999 + name = "morris.js___morris.js_0.5.0.tgz"; 1000 + url = "https://registry.yarnpkg.com/morris.js/-/morris.js-0.5.0.tgz"; 1001 + sha1 = "725767135cfae059aae75999bb2ce6a1c5d1b44b"; 1002 + }; 1003 + } 1004 + { 1005 + name = "multiselect___multiselect_0.9.12.tgz"; 1006 + path = fetchurl { 1007 + name = "multiselect___multiselect_0.9.12.tgz"; 1008 + url = "https://registry.yarnpkg.com/multiselect/-/multiselect-0.9.12.tgz"; 1009 + sha1 = "d15536e986dd6a0029b160d6613bcedf81e4c7ed"; 1010 + }; 1011 + } 1012 + { 1013 + name = "once___once_1.4.0.tgz"; 1014 + path = fetchurl { 1015 + name = "once___once_1.4.0.tgz"; 1016 + url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; 1017 + sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 1018 + }; 1019 + } 1020 + { 1021 + name = "os_browserify___os_browserify_0.3.0.tgz"; 1022 + path = fetchurl { 1023 + name = "os_browserify___os_browserify_0.3.0.tgz"; 1024 + url = "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz"; 1025 + sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27"; 1026 + }; 1027 + } 1028 + { 1029 + name = "pace___pace_0.0.4.tgz"; 1030 + path = fetchurl { 1031 + name = "pace___pace_0.0.4.tgz"; 1032 + url = "https://registry.yarnpkg.com/pace/-/pace-0.0.4.tgz"; 1033 + sha1 = "d66405d5f5bc12d25441a6e26c878dbc69e77a77"; 1034 + }; 1035 + } 1036 + { 1037 + name = "pako___pako_1.0.6.tgz"; 1038 + path = fetchurl { 1039 + name = "pako___pako_1.0.6.tgz"; 1040 + url = "https://registry.yarnpkg.com/pako/-/pako-1.0.6.tgz"; 1041 + sha1 = "0101211baa70c4bca4a0f63f2206e97b7dfaf258"; 1042 + }; 1043 + } 1044 + { 1045 + name = "parents___parents_1.0.1.tgz"; 1046 + path = fetchurl { 1047 + name = "parents___parents_1.0.1.tgz"; 1048 + url = "https://registry.yarnpkg.com/parents/-/parents-1.0.1.tgz"; 1049 + sha1 = "fedd4d2bf193a77745fe71e371d73c3307d9c751"; 1050 + }; 1051 + } 1052 + { 1053 + name = "parse_asn1___parse_asn1_5.1.1.tgz"; 1054 + path = fetchurl { 1055 + name = "parse_asn1___parse_asn1_5.1.1.tgz"; 1056 + url = "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.1.tgz"; 1057 + sha1 = "f6bf293818332bd0dab54efb16087724745e6ca8"; 1058 + }; 1059 + } 1060 + { 1061 + name = "path_browserify___path_browserify_0.0.0.tgz"; 1062 + path = fetchurl { 1063 + name = "path_browserify___path_browserify_0.0.0.tgz"; 1064 + url = "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz"; 1065 + sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a"; 1066 + }; 1067 + } 1068 + { 1069 + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 1070 + path = fetchurl { 1071 + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; 1072 + url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 1073 + sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 1074 + }; 1075 + } 1076 + { 1077 + name = "path_parse___path_parse_1.0.5.tgz"; 1078 + path = fetchurl { 1079 + name = "path_parse___path_parse_1.0.5.tgz"; 1080 + url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz"; 1081 + sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"; 1082 + }; 1083 + } 1084 + { 1085 + name = "path_platform___path_platform_0.11.15.tgz"; 1086 + path = fetchurl { 1087 + name = "path_platform___path_platform_0.11.15.tgz"; 1088 + url = "https://registry.yarnpkg.com/path-platform/-/path-platform-0.11.15.tgz"; 1089 + sha1 = "e864217f74c36850f0852b78dc7bf7d4a5721bf2"; 1090 + }; 1091 + } 1092 + { 1093 + name = "pbkdf2___pbkdf2_3.0.16.tgz"; 1094 + path = fetchurl { 1095 + name = "pbkdf2___pbkdf2_3.0.16.tgz"; 1096 + url = "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.16.tgz"; 1097 + sha1 = "7404208ec6b01b62d85bf83853a8064f8d9c2a5c"; 1098 + }; 1099 + } 1100 + { 1101 + name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; 1102 + path = fetchurl { 1103 + name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; 1104 + url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz"; 1105 + sha1 = "a37d732f4271b4ab1ad070d35508e8290788ffaa"; 1106 + }; 1107 + } 1108 + { 1109 + name = "process___process_0.11.10.tgz"; 1110 + path = fetchurl { 1111 + name = "process___process_0.11.10.tgz"; 1112 + url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz"; 1113 + sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; 1114 + }; 1115 + } 1116 + { 1117 + name = "public_encrypt___public_encrypt_4.0.2.tgz"; 1118 + path = fetchurl { 1119 + name = "public_encrypt___public_encrypt_4.0.2.tgz"; 1120 + url = "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.2.tgz"; 1121 + sha1 = "46eb9107206bf73489f8b85b69d91334c6610994"; 1122 + }; 1123 + } 1124 + { 1125 + name = "punycode___punycode_1.3.2.tgz"; 1126 + path = fetchurl { 1127 + name = "punycode___punycode_1.3.2.tgz"; 1128 + url = "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz"; 1129 + sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; 1130 + }; 1131 + } 1132 + { 1133 + name = "punycode___punycode_1.4.1.tgz"; 1134 + path = fetchurl { 1135 + name = "punycode___punycode_1.4.1.tgz"; 1136 + url = "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz"; 1137 + sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; 1138 + }; 1139 + } 1140 + { 1141 + name = "querystring_es3___querystring_es3_0.2.1.tgz"; 1142 + path = fetchurl { 1143 + name = "querystring_es3___querystring_es3_0.2.1.tgz"; 1144 + url = "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz"; 1145 + sha1 = "9ec61f79049875707d69414596fd907a4d711e73"; 1146 + }; 1147 + } 1148 + { 1149 + name = "querystring___querystring_0.2.0.tgz"; 1150 + path = fetchurl { 1151 + name = "querystring___querystring_0.2.0.tgz"; 1152 + url = "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz"; 1153 + sha1 = "b209849203bb25df820da756e747005878521620"; 1154 + }; 1155 + } 1156 + { 1157 + name = "randombytes___randombytes_2.0.6.tgz"; 1158 + path = fetchurl { 1159 + name = "randombytes___randombytes_2.0.6.tgz"; 1160 + url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz"; 1161 + sha1 = "d302c522948588848a8d300c932b44c24231da80"; 1162 + }; 1163 + } 1164 + { 1165 + name = "randomfill___randomfill_1.0.4.tgz"; 1166 + path = fetchurl { 1167 + name = "randomfill___randomfill_1.0.4.tgz"; 1168 + url = "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz"; 1169 + sha1 = "c92196fc86ab42be983f1bf31778224931d61458"; 1170 + }; 1171 + } 1172 + { 1173 + name = "raphael___raphael_2.2.7.tgz"; 1174 + path = fetchurl { 1175 + name = "raphael___raphael_2.2.7.tgz"; 1176 + url = "https://registry.yarnpkg.com/raphael/-/raphael-2.2.7.tgz"; 1177 + sha1 = "231b19141f8d086986d8faceb66f8b562ee2c810"; 1178 + }; 1179 + } 1180 + { 1181 + name = "read_only_stream___read_only_stream_2.0.0.tgz"; 1182 + path = fetchurl { 1183 + name = "read_only_stream___read_only_stream_2.0.0.tgz"; 1184 + url = "https://registry.yarnpkg.com/read-only-stream/-/read-only-stream-2.0.0.tgz"; 1185 + sha1 = "2724fd6a8113d73764ac288d4386270c1dbf17f0"; 1186 + }; 1187 + } 1188 + { 1189 + name = "readable_stream___readable_stream_2.3.6.tgz"; 1190 + path = fetchurl { 1191 + name = "readable_stream___readable_stream_2.3.6.tgz"; 1192 + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz"; 1193 + sha1 = "b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"; 1194 + }; 1195 + } 1196 + { 1197 + name = "resolve___resolve_1.1.7.tgz"; 1198 + path = fetchurl { 1199 + name = "resolve___resolve_1.1.7.tgz"; 1200 + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz"; 1201 + sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b"; 1202 + }; 1203 + } 1204 + { 1205 + name = "resolve___resolve_1.7.1.tgz"; 1206 + path = fetchurl { 1207 + name = "resolve___resolve_1.7.1.tgz"; 1208 + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.7.1.tgz"; 1209 + sha1 = "aadd656374fd298aee895bc026b8297418677fd3"; 1210 + }; 1211 + } 1212 + { 1213 + name = "ripemd160___ripemd160_2.0.2.tgz"; 1214 + path = fetchurl { 1215 + name = "ripemd160___ripemd160_2.0.2.tgz"; 1216 + url = "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz"; 1217 + sha1 = "a1c1a6f624751577ba5d07914cbc92850585890c"; 1218 + }; 1219 + } 1220 + { 1221 + name = "safe_buffer___safe_buffer_5.1.2.tgz"; 1222 + path = fetchurl { 1223 + name = "safe_buffer___safe_buffer_5.1.2.tgz"; 1224 + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; 1225 + sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; 1226 + }; 1227 + } 1228 + { 1229 + name = "select2___select2_4.0.5.tgz"; 1230 + path = fetchurl { 1231 + name = "select2___select2_4.0.5.tgz"; 1232 + url = "https://registry.yarnpkg.com/select2/-/select2-4.0.5.tgz"; 1233 + sha1 = "7aac50692561985b34d3b82ec55e226f8960d40a"; 1234 + }; 1235 + } 1236 + { 1237 + name = "sha.js___sha.js_2.4.11.tgz"; 1238 + path = fetchurl { 1239 + name = "sha.js___sha.js_2.4.11.tgz"; 1240 + url = "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz"; 1241 + sha1 = "37a5cf0b81ecbc6943de109ba2960d1b26584ae7"; 1242 + }; 1243 + } 1244 + { 1245 + name = "shasum___shasum_1.0.2.tgz"; 1246 + path = fetchurl { 1247 + name = "shasum___shasum_1.0.2.tgz"; 1248 + url = "https://registry.yarnpkg.com/shasum/-/shasum-1.0.2.tgz"; 1249 + sha1 = "e7012310d8f417f4deb5712150e5678b87ae565f"; 1250 + }; 1251 + } 1252 + { 1253 + name = "shell_quote___shell_quote_1.6.1.tgz"; 1254 + path = fetchurl { 1255 + name = "shell_quote___shell_quote_1.6.1.tgz"; 1256 + url = "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz"; 1257 + sha1 = "f4781949cce402697127430ea3b3c5476f481767"; 1258 + }; 1259 + } 1260 + { 1261 + name = "slimscroll___slimscroll_0.9.1.tgz"; 1262 + path = fetchurl { 1263 + name = "slimscroll___slimscroll_0.9.1.tgz"; 1264 + url = "https://registry.yarnpkg.com/slimscroll/-/slimscroll-0.9.1.tgz"; 1265 + sha1 = "f675cdc601d80ada20f16004d227d156fd1187b2"; 1266 + }; 1267 + } 1268 + { 1269 + name = "source_map___source_map_0.5.7.tgz"; 1270 + path = fetchurl { 1271 + name = "source_map___source_map_0.5.7.tgz"; 1272 + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; 1273 + sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 1274 + }; 1275 + } 1276 + { 1277 + name = "stream_browserify___stream_browserify_2.0.1.tgz"; 1278 + path = fetchurl { 1279 + name = "stream_browserify___stream_browserify_2.0.1.tgz"; 1280 + url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz"; 1281 + sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"; 1282 + }; 1283 + } 1284 + { 1285 + name = "stream_combiner2___stream_combiner2_1.1.1.tgz"; 1286 + path = fetchurl { 1287 + name = "stream_combiner2___stream_combiner2_1.1.1.tgz"; 1288 + url = "https://registry.yarnpkg.com/stream-combiner2/-/stream-combiner2-1.1.1.tgz"; 1289 + sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe"; 1290 + }; 1291 + } 1292 + { 1293 + name = "stream_http___stream_http_2.8.3.tgz"; 1294 + path = fetchurl { 1295 + name = "stream_http___stream_http_2.8.3.tgz"; 1296 + url = "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz"; 1297 + sha1 = "b2d242469288a5a27ec4fe8933acf623de6514fc"; 1298 + }; 1299 + } 1300 + { 1301 + name = "stream_splicer___stream_splicer_2.0.0.tgz"; 1302 + path = fetchurl { 1303 + name = "stream_splicer___stream_splicer_2.0.0.tgz"; 1304 + url = "https://registry.yarnpkg.com/stream-splicer/-/stream-splicer-2.0.0.tgz"; 1305 + sha1 = "1b63be438a133e4b671cc1935197600175910d83"; 1306 + }; 1307 + } 1308 + { 1309 + name = "string_decoder___string_decoder_1.1.1.tgz"; 1310 + path = fetchurl { 1311 + name = "string_decoder___string_decoder_1.1.1.tgz"; 1312 + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; 1313 + sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; 1314 + }; 1315 + } 1316 + { 1317 + name = "subarg___subarg_1.0.0.tgz"; 1318 + path = fetchurl { 1319 + name = "subarg___subarg_1.0.0.tgz"; 1320 + url = "https://registry.yarnpkg.com/subarg/-/subarg-1.0.0.tgz"; 1321 + sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2"; 1322 + }; 1323 + } 1324 + { 1325 + name = "syntax_error___syntax_error_1.4.0.tgz"; 1326 + path = fetchurl { 1327 + name = "syntax_error___syntax_error_1.4.0.tgz"; 1328 + url = "https://registry.yarnpkg.com/syntax-error/-/syntax-error-1.4.0.tgz"; 1329 + sha1 = "2d9d4ff5c064acb711594a3e3b95054ad51d907c"; 1330 + }; 1331 + } 1332 + { 1333 + name = "through2___through2_2.0.3.tgz"; 1334 + path = fetchurl { 1335 + name = "through2___through2_2.0.3.tgz"; 1336 + url = "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz"; 1337 + sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be"; 1338 + }; 1339 + } 1340 + { 1341 + name = "through___through_2.3.8.tgz"; 1342 + path = fetchurl { 1343 + name = "through___through_2.3.8.tgz"; 1344 + url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 1345 + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 1346 + }; 1347 + } 1348 + { 1349 + name = "timers_browserify___timers_browserify_1.4.2.tgz"; 1350 + path = fetchurl { 1351 + name = "timers_browserify___timers_browserify_1.4.2.tgz"; 1352 + url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-1.4.2.tgz"; 1353 + sha1 = "c9c58b575be8407375cb5e2462dacee74359f41d"; 1354 + }; 1355 + } 1356 + { 1357 + name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz"; 1358 + path = fetchurl { 1359 + name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz"; 1360 + url = "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"; 1361 + sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43"; 1362 + }; 1363 + } 1364 + { 1365 + name = "tty_browserify___tty_browserify_0.0.1.tgz"; 1366 + path = fetchurl { 1367 + name = "tty_browserify___tty_browserify_0.0.1.tgz"; 1368 + url = "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz"; 1369 + sha1 = "3f05251ee17904dfd0677546670db9651682b811"; 1370 + }; 1371 + } 1372 + { 1373 + name = "typedarray___typedarray_0.0.6.tgz"; 1374 + path = fetchurl { 1375 + name = "typedarray___typedarray_0.0.6.tgz"; 1376 + url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 1377 + sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 1378 + }; 1379 + } 1380 + { 1381 + name = "umd___umd_3.0.3.tgz"; 1382 + path = fetchurl { 1383 + name = "umd___umd_3.0.3.tgz"; 1384 + url = "https://registry.yarnpkg.com/umd/-/umd-3.0.3.tgz"; 1385 + sha1 = "aa9fe653c42b9097678489c01000acb69f0b26cf"; 1386 + }; 1387 + } 1388 + { 1389 + name = "url___url_0.11.0.tgz"; 1390 + path = fetchurl { 1391 + name = "url___url_0.11.0.tgz"; 1392 + url = "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz"; 1393 + sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; 1394 + }; 1395 + } 1396 + { 1397 + name = "util_deprecate___util_deprecate_1.0.2.tgz"; 1398 + path = fetchurl { 1399 + name = "util_deprecate___util_deprecate_1.0.2.tgz"; 1400 + url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; 1401 + sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 1402 + }; 1403 + } 1404 + { 1405 + name = "util_extend___util_extend_1.0.3.tgz"; 1406 + path = fetchurl { 1407 + name = "util_extend___util_extend_1.0.3.tgz"; 1408 + url = "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz"; 1409 + sha1 = "a7c216d267545169637b3b6edc6ca9119e2ff93f"; 1410 + }; 1411 + } 1412 + { 1413 + name = "util___util_0.10.3.tgz"; 1414 + path = fetchurl { 1415 + name = "util___util_0.10.3.tgz"; 1416 + url = "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz"; 1417 + sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; 1418 + }; 1419 + } 1420 + { 1421 + name = "util___util_0.10.4.tgz"; 1422 + path = fetchurl { 1423 + name = "util___util_0.10.4.tgz"; 1424 + url = "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz"; 1425 + sha1 = "3aa0125bfe668a4672de58857d3ace27ecb76901"; 1426 + }; 1427 + } 1428 + { 1429 + name = "vm_browserify___vm_browserify_1.0.1.tgz"; 1430 + path = fetchurl { 1431 + name = "vm_browserify___vm_browserify_1.0.1.tgz"; 1432 + url = "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.0.1.tgz"; 1433 + sha1 = "a15d7762c4c48fa6bf9f3309a21340f00ed23063"; 1434 + }; 1435 + } 1436 + { 1437 + name = "wrappy___wrappy_1.0.2.tgz"; 1438 + path = fetchurl { 1439 + name = "wrappy___wrappy_1.0.2.tgz"; 1440 + url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; 1441 + sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 1442 + }; 1443 + } 1444 + { 1445 + name = "xtend___xtend_4.0.1.tgz"; 1446 + path = fetchurl { 1447 + name = "xtend___xtend_4.0.1.tgz"; 1448 + url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz"; 1449 + sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; 1450 + }; 1451 + } 1452 + ]; 1453 + }
+65
pkgs/applications/networking/remote/aws-workspaces/default.nix
··· 1 + { stdenv, lib 2 + , makeWrapper, dpkg, fetchurl, autoPatchelfHook 3 + , curl, kerberos, lttng-ust, libpulseaudio, gtk3, openssl_1_1, icu, webkitgtk, librsvg, gdk-pixbuf, libsoup, glib-networking 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "aws-workspaces"; 8 + version = "3.1.3.925"; 9 + 10 + src = fetchurl { 11 + # ref https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/Packages 12 + urls = [ 13 + "https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/workspacesclient_${version}_amd64.deb" 14 + "https://web.archive.org/web/20210307233836/https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/workspacesclient_${version}_amd64.deb" 15 + ]; 16 + sha256 = "5b57edb4f6f8c950164fd8104bf62df4c452ab5b16cb65d48db3636959a0f0ad"; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + autoPatchelfHook 21 + makeWrapper 22 + ]; 23 + 24 + # Crashes at startup when stripping: 25 + # "Failed to create CoreCLR, HRESULT: 0x80004005" 26 + dontStrip = true; 27 + 28 + buildInputs = [ 29 + stdenv.cc.cc.lib 30 + kerberos 31 + curl 32 + lttng-ust 33 + libpulseaudio 34 + gtk3 35 + openssl_1_1.out 36 + icu 37 + webkitgtk 38 + librsvg 39 + gdk-pixbuf 40 + libsoup 41 + glib-networking 42 + ]; 43 + 44 + unpackPhase = '' 45 + ${dpkg}/bin/dpkg -x $src $out 46 + ''; 47 + 48 + installPhase = '' 49 + mkdir -p $out/bin 50 + mv $out/opt/workspacesclient/* $out/bin 51 + 52 + wrapProgram $out/bin/workspacesclient \ 53 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \ 54 + --set GDK_PIXBUF_MODULE_FILE "${librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" \ 55 + --set GIO_EXTRA_MODULES "${glib-networking.out}/lib/gio/modules" 56 + ''; 57 + 58 + meta = with lib; { 59 + description = "Client for Amazon WorkSpaces, a managed, secure Desktop-as-a-Service (DaaS) solution"; 60 + homepage = "https://clients.amazonworkspaces.com"; 61 + license = licenses.unfree; 62 + platforms = [ "x86_64-linux" ]; # TODO Mac support 63 + maintainers = [ maintainers.mausch ]; 64 + }; 65 + }
+2 -2
pkgs/applications/science/chemistry/jmol/default.nix
··· 17 17 }; 18 18 in 19 19 stdenv.mkDerivation rec { 20 - version = "14.31.24"; 20 + version = "14.31.32"; 21 21 pname = "jmol"; 22 22 23 23 src = let 24 24 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 25 25 in fetchurl { 26 26 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 27 - sha256 = "sha256-86nDeKRXSNKrmYeo1rRLfziLVnmEmdIJRfIv6DFIxcs="; 27 + sha256 = "sha256-lY4DvtSAC8VDYwzZVZVHNXnyJiSn1vo829DEsLEG/hM="; 28 28 }; 29 29 30 30 patchPhase = ''
+2 -2
pkgs/applications/virtualization/conmon/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "conmon"; 13 - version = "2.0.26"; 13 + version = "2.0.27"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "containers"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-q2lh02iZ7FDBPjtoKY5p3c6Vcn9Ey8DCMn/Oe7/74ug="; 19 + sha256 = "sha256-LMvhSoKd652XVPzuId8Ortf0f08FUP1zCn06PgtRwkA="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ pkg-config ];
-1
pkgs/build-support/fetchbitbucket/default.nix
··· 6 6 inherit name; 7 7 url = "https://bitbucket.org/${owner}/${repo}/get/${rev}.tar.gz"; 8 8 meta.homepage = "https://bitbucket.org/${owner}/${repo}/"; 9 - extraPostFetch = ''rm -f "$out"/.hg_archival.txt''; # impure file; see #12002 10 9 } // removeAttrs args [ "owner" "repo" "rev" ]) // { inherit rev; }
+37
pkgs/data/icons/oranchelo-icon-theme/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, gtk3, plasma5Packages, hicolor-icon-theme }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "oranchelo-icon-theme"; 5 + version = "0.8.0.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "OrancheloTeam"; 9 + repo = pname; 10 + rev = "096c8c8d550ac9a85f5f34f3f30243e6f198df2d"; 11 + sha256 = "sha256-TKi42SA33pGKdrPtGTpvxFbOP+5N93Y4BvO4CRTveLM="; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + gtk3 16 + ]; 17 + 18 + propagatedBuildInputs = [ 19 + plasma5Packages.breeze-icons 20 + hicolor-icon-theme 21 + ]; 22 + 23 + dontDropIconThemeCache = true; 24 + 25 + installPhase = '' 26 + mkdir -p $out/share/icons 27 + cp -r $Oranchelo* $out/share/icons/ 28 + ''; 29 + 30 + meta = with lib; { 31 + description = "Oranchelo icon theme"; 32 + homepage = "https://github.com/OrancheloTeam/oranchelo-icon-theme"; 33 + license = licenses.gpl3Only; 34 + platforms = platforms.linux; 35 + maintainers = with maintainers; [ _414owen ]; 36 + }; 37 + }
+5 -4
pkgs/development/libraries/grpc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, zlib, c-ares, pkg-config, openssl, protobuf 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, zlib, c-ares, pkg-config, re2, openssl, protobuf 2 2 , gflags, libnsl 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - version = "1.35.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 6 + version = "1.36.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 7 7 pname = "grpc"; 8 8 src = fetchFromGitHub { 9 9 owner = "grpc"; 10 10 repo = "grpc"; 11 11 rev = "v${version}"; 12 - sha256 = "0vxgp3kqxsglavzs91ybpkkh7aaywxcryacp5z3z6dpsgmw0mscd"; 12 + sha256 = "0lb6pls9m05bvr6bvqzp6apdchhsazc5866yvmgkm979xcrzdy2z"; 13 13 fetchSubmodules = true; 14 14 }; 15 15 patches = [ ··· 21 21 ]; 22 22 23 23 nativeBuildInputs = [ cmake pkg-config ]; 24 - buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags ] 24 + buildInputs = [ zlib c-ares c-ares.cmake-config re2 openssl protobuf gflags ] 25 25 ++ lib.optionals stdenv.isLinux [ libnsl ]; 26 26 27 27 cmakeFlags = 28 28 [ "-DgRPC_ZLIB_PROVIDER=package" 29 29 "-DgRPC_CARES_PROVIDER=package" 30 + "-DgRPC_RE2_PROVIDER=package" 30 31 "-DgRPC_SSL_PROVIDER=package" 31 32 "-DgRPC_PROTOBUF_PROVIDER=package" 32 33 "-DgRPC_GFLAGS_PROVIDER=package"
+483 -534
pkgs/development/node-packages/node-packages.nix
··· 1597 1597 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 1598 1598 }; 1599 1599 }; 1600 + "@deepcode/dcignore-1.0.2" = { 1601 + name = "_at_deepcode_slash_dcignore"; 1602 + packageName = "@deepcode/dcignore"; 1603 + version = "1.0.2"; 1604 + src = fetchurl { 1605 + url = "https://registry.npmjs.org/@deepcode/dcignore/-/dcignore-1.0.2.tgz"; 1606 + sha512 = "DPgxtHuJwBORpqRkPXzzOT+uoPRVJmaN7LR+pmeL6DQM90kj6G6GFUH1i/YpRH8NbML8ZGEDwB9f9u4UwD2pzg=="; 1607 + }; 1608 + }; 1600 1609 "@devicefarmer/adbkit-2.11.3" = { 1601 1610 name = "_at_devicefarmer_slash_adbkit"; 1602 1611 packageName = "@devicefarmer/adbkit"; ··· 3658 3667 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 3659 3668 }; 3660 3669 }; 3661 - "@netlify/build-9.8.4" = { 3670 + "@netlify/build-9.8.5" = { 3662 3671 name = "_at_netlify_slash_build"; 3663 3672 packageName = "@netlify/build"; 3664 - version = "9.8.4"; 3673 + version = "9.8.5"; 3665 3674 src = fetchurl { 3666 - url = "https://registry.npmjs.org/@netlify/build/-/build-9.8.4.tgz"; 3667 - sha512 = "+ep+IPKkv6ZYHieeZ4Z6DkKpcFzSkpA2yYlwbxUw+R5SxgIVIvO7dGGRY+4Z8nMz3J29O0Ak0F5//gdwuxhjMA=="; 3675 + url = "https://registry.npmjs.org/@netlify/build/-/build-9.8.5.tgz"; 3676 + sha512 = "/lT+bfnMgaenYLVAdQd8T1GPyohpN4LR2JkvWLlnm4JEWkyiXF/W5DaMOPBGxGIzIZq4ml9wh+YFZ9lzq6J89g=="; 3668 3677 }; 3669 3678 }; 3670 3679 "@netlify/cache-utils-1.0.7" = { ··· 4252 4261 sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q=="; 4253 4262 }; 4254 4263 }; 4255 - "@octokit/types-6.12.0" = { 4264 + "@octokit/types-6.12.1" = { 4256 4265 name = "_at_octokit_slash_types"; 4257 4266 packageName = "@octokit/types"; 4258 - version = "6.12.0"; 4267 + version = "6.12.1"; 4259 4268 src = fetchurl { 4260 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.12.0.tgz"; 4261 - sha512 = "KwOf16soD7aDEEi/PgNeJlHzjZPfrmmNy+7WezSdrpnqZ7YImBJcNnX9+5RUHt1MnA4h8oISRHTqaZDGsX9DRQ=="; 4269 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.12.1.tgz"; 4270 + sha512 = "eZTTWJxGBon01Ra4EX86rvlMZGkU5SeJ8BtwQlsv2wEqZttpjtefLetJndZTVbJ25qFKoyKMWsRFnwlOx7ZaDQ=="; 4262 4271 }; 4263 4272 }; 4264 4273 "@open-policy-agent/opa-wasm-1.2.0" = { ··· 5233 5242 sha512 = "ca2JKOnSRzYHJkhOB9gYmdRZHmd02b/uBd/S0D5W+L9nIMS7sUBV5jfhKwVgrYPIpVNIc0XCI9rxK4TfkQRpiA=="; 5234 5243 }; 5235 5244 }; 5245 + "@snyk/code-client-3.1.4" = { 5246 + name = "_at_snyk_slash_code-client"; 5247 + packageName = "@snyk/code-client"; 5248 + version = "3.1.4"; 5249 + src = fetchurl { 5250 + url = "https://registry.npmjs.org/@snyk/code-client/-/code-client-3.1.4.tgz"; 5251 + sha512 = "ZZWPWAaKgNii/HYtyO9guFDVpi5T/SoCWQIo/B/RbLbXLrdZ5VIHsn0E4ztY7Y69GjQCyrus5pu7adlYrwQtEQ=="; 5252 + }; 5253 + }; 5236 5254 "@snyk/composer-lockfile-parser-1.4.1" = { 5237 5255 name = "_at_snyk_slash_composer-lockfile-parser"; 5238 5256 packageName = "@snyk/composer-lockfile-parser"; ··· 5260 5278 sha512 = "DIFLEhr8m1GrAwsLGInJmpcQMacjuhf3jcbpQTR+LeMvZA9IuKq+B7kqw2O2FzMiHMZmUb5z+tV+BR7+IUHkFQ=="; 5261 5279 }; 5262 5280 }; 5281 + "@snyk/fast-glob-3.2.6-patch" = { 5282 + name = "_at_snyk_slash_fast-glob"; 5283 + packageName = "@snyk/fast-glob"; 5284 + version = "3.2.6-patch"; 5285 + src = fetchurl { 5286 + url = "https://registry.npmjs.org/@snyk/fast-glob/-/fast-glob-3.2.6-patch.tgz"; 5287 + sha512 = "E/Pfdze/WFfxwyuTFcfhQN1SwyUsc43yuCoW63RVBCaxTD6OzhVD2Pvc/Sy7BjiWUfmelzyKkIBpoow8zZX7Zg=="; 5288 + }; 5289 + }; 5263 5290 "@snyk/gemfile-1.2.0" = { 5264 5291 name = "_at_snyk_slash_gemfile"; 5265 5292 packageName = "@snyk/gemfile"; ··· 5267 5294 src = fetchurl { 5268 5295 url = "https://registry.npmjs.org/@snyk/gemfile/-/gemfile-1.2.0.tgz"; 5269 5296 sha512 = "nI7ELxukf7pT4/VraL4iabtNNMz8mUo7EXlqCFld8O5z6mIMLX9llps24iPpaIZOwArkY3FWA+4t+ixyvtTSIA=="; 5297 + }; 5298 + }; 5299 + "@snyk/glob-parent-5.1.2-patch.1" = { 5300 + name = "_at_snyk_slash_glob-parent"; 5301 + packageName = "@snyk/glob-parent"; 5302 + version = "5.1.2-patch.1"; 5303 + src = fetchurl { 5304 + url = "https://registry.npmjs.org/@snyk/glob-parent/-/glob-parent-5.1.2-patch.1.tgz"; 5305 + sha512 = "OkUPdHgxIWKAAzceG1nraNA0kgI+eS0I9wph8tll9UL0slD2mIWSj4mAqroGovaEXm8nHedoUfuDRGEb6wnzCQ=="; 5270 5306 }; 5271 5307 }; 5272 5308 "@snyk/graphlib-2.1.9-patch.3" = { ··· 5728 5764 sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ=="; 5729 5765 }; 5730 5766 }; 5767 + "@types/braces-3.0.0" = { 5768 + name = "_at_types_slash_braces"; 5769 + packageName = "@types/braces"; 5770 + version = "3.0.0"; 5771 + src = fetchurl { 5772 + url = "https://registry.npmjs.org/@types/braces/-/braces-3.0.0.tgz"; 5773 + sha512 = "TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw=="; 5774 + }; 5775 + }; 5731 5776 "@types/cacheable-request-6.0.1" = { 5732 5777 name = "_at_types_slash_cacheable-request"; 5733 5778 packageName = "@types/cacheable-request"; ··· 5890 5935 sha512 = "DLVpLEGTEZGBXOYoYoagHSxXkDHONc0fZouF2ayw7Q18aRu1Afwci+1CFKvPpouCUOVWP+dmCaAWpQjswe7kpg=="; 5891 5936 }; 5892 5937 }; 5893 - "@types/eslint-7.2.6" = { 5938 + "@types/eslint-7.2.7" = { 5894 5939 name = "_at_types_slash_eslint"; 5895 5940 packageName = "@types/eslint"; 5896 - version = "7.2.6"; 5941 + version = "7.2.7"; 5897 5942 src = fetchurl { 5898 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz"; 5899 - sha512 = "I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw=="; 5943 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.7.tgz"; 5944 + sha512 = "EHXbc1z2GoQRqHaAT7+grxlTJ3WE2YNeD6jlpPoRc83cCoThRY+NUWjCUZaYmk51OICkPXn2hhphcWcWXgNW0Q=="; 5900 5945 }; 5901 5946 }; 5902 5947 "@types/eslint-scope-3.7.0" = { ··· 5987 6032 src = fetchurl { 5988 6033 url = "https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; 5989 6034 sha512 = "mky/O83TXmGY39P1H9YbUpjV6l6voRYlufqfFCvel8l1phuy8HRjdWc1rrPuN53ITBJlbyMSV6z3niOySO5pgQ=="; 6035 + }; 6036 + }; 6037 + "@types/flat-cache-2.0.0" = { 6038 + name = "_at_types_slash_flat-cache"; 6039 + packageName = "@types/flat-cache"; 6040 + version = "2.0.0"; 6041 + src = fetchurl { 6042 + url = "https://registry.npmjs.org/@types/flat-cache/-/flat-cache-2.0.0.tgz"; 6043 + sha512 = "fHeEsm9hvmZ+QHpw6Fkvf19KIhuqnYLU6vtWLjd5BsMd/qVi7iTkMioDZl0mQmfNRA1A6NwvhrSRNr9hGYZGww=="; 5990 6044 }; 5991 6045 }; 5992 6046 "@types/fs-capacitor-2.0.0" = { ··· 6250 6304 sha512 = "oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q=="; 6251 6305 }; 6252 6306 }; 6307 + "@types/lodash.chunk-4.2.6" = { 6308 + name = "_at_types_slash_lodash.chunk"; 6309 + packageName = "@types/lodash.chunk"; 6310 + version = "4.2.6"; 6311 + src = fetchurl { 6312 + url = "https://registry.npmjs.org/@types/lodash.chunk/-/lodash.chunk-4.2.6.tgz"; 6313 + sha512 = "SPlusB7jxXyGcTXYcUdWr7WmhArO/rmTq54VN88iKMxGUhyg79I4Q8n4riGn3kjaTjOJrVlHhxgX/d7woak5BQ=="; 6314 + }; 6315 + }; 6316 + "@types/lodash.omit-4.5.6" = { 6317 + name = "_at_types_slash_lodash.omit"; 6318 + packageName = "@types/lodash.omit"; 6319 + version = "4.5.6"; 6320 + src = fetchurl { 6321 + url = "https://registry.npmjs.org/@types/lodash.omit/-/lodash.omit-4.5.6.tgz"; 6322 + sha512 = "KXPpOSNX2h0DAG2w7ajpk7TXvWF28ZHs5nJhOJyP0BQHkehgr948RVsToItMme6oi0XJkp19CbuNXkIX8FiBlQ=="; 6323 + }; 6324 + }; 6325 + "@types/lodash.union-4.6.6" = { 6326 + name = "_at_types_slash_lodash.union"; 6327 + packageName = "@types/lodash.union"; 6328 + version = "4.6.6"; 6329 + src = fetchurl { 6330 + url = "https://registry.npmjs.org/@types/lodash.union/-/lodash.union-4.6.6.tgz"; 6331 + sha512 = "Wu0ZEVNcyCz8eAn6TlUbYWZoGbH9E+iOHxAZbwUoCEXdUiy6qpcz5o44mMXViM4vlPLLCPlkAubEP1gokoSZaw=="; 6332 + }; 6333 + }; 6253 6334 "@types/long-4.0.1" = { 6254 6335 name = "_at_types_slash_long"; 6255 6336 packageName = "@types/long"; ··· 6275 6356 src = fetchurl { 6276 6357 url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz"; 6277 6358 sha512 = "SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw=="; 6359 + }; 6360 + }; 6361 + "@types/micromatch-4.0.1" = { 6362 + name = "_at_types_slash_micromatch"; 6363 + packageName = "@types/micromatch"; 6364 + version = "4.0.1"; 6365 + src = fetchurl { 6366 + url = "https://registry.npmjs.org/@types/micromatch/-/micromatch-4.0.1.tgz"; 6367 + sha512 = "my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw=="; 6278 6368 }; 6279 6369 }; 6280 6370 "@types/mime-1.3.2" = { ··· 6385 6475 sha512 = "fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="; 6386 6476 }; 6387 6477 }; 6388 - "@types/node-10.17.54" = { 6478 + "@types/node-10.17.55" = { 6389 6479 name = "_at_types_slash_node"; 6390 6480 packageName = "@types/node"; 6391 - version = "10.17.54"; 6481 + version = "10.17.55"; 6392 6482 src = fetchurl { 6393 - url = "https://registry.npmjs.org/@types/node/-/node-10.17.54.tgz"; 6394 - sha512 = "c8Lm7+hXdSPmWH4B9z/P/xIXhFK3mCQin4yCYMd2p1qpMG5AfgyJuYZ+3q2dT7qLiMMMGMd5dnkFpdqJARlvtQ=="; 6483 + url = "https://registry.npmjs.org/@types/node/-/node-10.17.55.tgz"; 6484 + sha512 = "koZJ89uLZufDvToeWO5BrC4CR4OUfHnUz2qoPs/daQH6qq3IN62QFxCTZ+bKaCE0xaoCAJYE4AXre8AbghCrhg=="; 6395 6485 }; 6396 6486 }; 6397 6487 "@types/node-12.12.70" = { ··· 6421 6511 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 6422 6512 }; 6423 6513 }; 6424 - "@types/node-14.14.31" = { 6514 + "@types/node-14.14.32" = { 6425 6515 name = "_at_types_slash_node"; 6426 6516 packageName = "@types/node"; 6427 - version = "14.14.31"; 6517 + version = "14.14.32"; 6428 6518 src = fetchurl { 6429 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz"; 6430 - sha512 = "vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="; 6519 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.32.tgz"; 6520 + sha512 = "/Ctrftx/zp4m8JOujM5ZhwzlWLx22nbQJiVqz8/zE15gOeEW+uly3FSX4fGFpcfEvFzXcMCJwq9lGVWgyARXhg=="; 6431 6521 }; 6432 6522 }; 6433 6523 "@types/node-6.14.13" = { ··· 6538 6628 sha512 = "1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug=="; 6539 6629 }; 6540 6630 }; 6541 - "@types/qs-6.9.5" = { 6631 + "@types/qs-6.9.6" = { 6542 6632 name = "_at_types_slash_qs"; 6543 6633 packageName = "@types/qs"; 6544 - version = "6.9.5"; 6634 + version = "6.9.6"; 6545 6635 src = fetchurl { 6546 - url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz"; 6547 - sha512 = "/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ=="; 6636 + url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz"; 6637 + sha512 = "0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA=="; 6548 6638 }; 6549 6639 }; 6550 6640 "@types/range-parser-1.2.3" = { ··· 6619 6709 sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; 6620 6710 }; 6621 6711 }; 6712 + "@types/sarif-2.1.3" = { 6713 + name = "_at_types_slash_sarif"; 6714 + packageName = "@types/sarif"; 6715 + version = "2.1.3"; 6716 + src = fetchurl { 6717 + url = "https://registry.npmjs.org/@types/sarif/-/sarif-2.1.3.tgz"; 6718 + sha512 = "zf+EoIplTkQW2TV2mwtJtlI0g540Z3Rs9tX9JqRAtyjnDCqkP+eMTgWCj3PGNbQpi+WXAjvC3Ou/dvvX2sLK4w=="; 6719 + }; 6720 + }; 6622 6721 "@types/sass-1.16.0" = { 6623 6722 name = "_at_types_slash_sass"; 6624 6723 packageName = "@types/sass"; ··· 6745 6844 sha512 = "I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A=="; 6746 6845 }; 6747 6846 }; 6748 - "@types/uglify-js-3.12.0" = { 6847 + "@types/uglify-js-3.13.0" = { 6749 6848 name = "_at_types_slash_uglify-js"; 6750 6849 packageName = "@types/uglify-js"; 6751 - version = "3.12.0"; 6850 + version = "3.13.0"; 6752 6851 src = fetchurl { 6753 - url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.12.0.tgz"; 6754 - sha512 = "sYAF+CF9XZ5cvEBkI7RtrG9g2GtMBkviTnBxYYyq+8BWvO4QtXfwwR6a2LFwCi4evMKZfpv6U43ViYvv17Wz3Q=="; 6852 + url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.0.tgz"; 6853 + sha512 = "EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q=="; 6755 6854 }; 6756 6855 }; 6757 6856 "@types/unist-2.0.3" = { ··· 8392 8491 sha512 = "TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg=="; 8393 8492 }; 8394 8493 }; 8395 - "adm-zip-0.5.3" = { 8494 + "adm-zip-0.5.4" = { 8396 8495 name = "adm-zip"; 8397 8496 packageName = "adm-zip"; 8398 - version = "0.5.3"; 8497 + version = "0.5.4"; 8399 8498 src = fetchurl { 8400 - url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.3.tgz"; 8401 - sha512 = "zsoTXEwRNCxBzRHLENFLuecCcwzzXiEhWo1r3GP68iwi8Q/hW2RrqgeY1nfJ/AhNQNWnZq/4v0TbfMsUkI+TYw=="; 8499 + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.4.tgz"; 8500 + sha512 = "GMQg1a1cAegh+/EgWbz+XHZrwB467iB/IgtToldvxs7Xa5Br8mPmvCeRfY/Un2fLzrlIPt6Yu7Cej+8Ut9TGPg=="; 8402 8501 }; 8403 8502 }; 8404 8503 "adverb-where-0.0.9" = { ··· 8572 8671 sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg=="; 8573 8672 }; 8574 8673 }; 8575 - "ajv-7.1.1" = { 8674 + "ajv-7.2.1" = { 8576 8675 name = "ajv"; 8577 8676 packageName = "ajv"; 8578 - version = "7.1.1"; 8677 + version = "7.2.1"; 8579 8678 src = fetchurl { 8580 - url = "https://registry.npmjs.org/ajv/-/ajv-7.1.1.tgz"; 8581 - sha512 = "ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ=="; 8679 + url = "https://registry.npmjs.org/ajv/-/ajv-7.2.1.tgz"; 8680 + sha512 = "+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ=="; 8582 8681 }; 8583 8682 }; 8584 8683 "ajv-errors-1.0.1" = { ··· 9544 9643 sha512 = "Tq3yV/T4wxBsD2Wign8W9VQKhaUxzzRmjEiSoOK0SLqPgDP/N1TKdYyBeIEu56T4I9iO4fKTTR0mN9NWkBA0sg=="; 9545 9644 }; 9546 9645 }; 9547 - "archiver-5.2.0" = { 9646 + "archiver-5.3.0" = { 9548 9647 name = "archiver"; 9549 9648 packageName = "archiver"; 9550 - version = "5.2.0"; 9649 + version = "5.3.0"; 9551 9650 src = fetchurl { 9552 - url = "https://registry.npmjs.org/archiver/-/archiver-5.2.0.tgz"; 9553 - sha512 = "QEAKlgQuAtUxKeZB9w5/ggKXh21bZS+dzzuQ0RPBC20qtDCbTyzqmisoeJP46MP39fg4B4IcyvR+yeyEBdblsQ=="; 9651 + url = "https://registry.npmjs.org/archiver/-/archiver-5.3.0.tgz"; 9652 + sha512 = "iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg=="; 9554 9653 }; 9555 9654 }; 9556 9655 "archiver-utils-2.1.0" = { ··· 13891 13990 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 13892 13991 }; 13893 13992 }; 13894 - "caniuse-lite-1.0.30001196" = { 13993 + "caniuse-lite-1.0.30001197" = { 13895 13994 name = "caniuse-lite"; 13896 13995 packageName = "caniuse-lite"; 13897 - version = "1.0.30001196"; 13996 + version = "1.0.30001197"; 13898 13997 src = fetchurl { 13899 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001196.tgz"; 13900 - sha512 = "CPvObjD3ovWrNBaXlAIGWmg2gQQuJ5YhuciUOjPRox6hIQttu8O+b51dx6VIpIY9ESd2d0Vac1RKpICdG4rGUg=="; 13998 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001197.tgz"; 13999 + sha512 = "8aE+sqBqtXz4G8g35Eg/XEaFr2N7rd/VQ6eABGBmNtcB8cN6qNJhMi6oSFy4UWWZgqgL3filHT8Nha4meu3tsw=="; 13901 14000 }; 13902 14001 }; 13903 14002 "canvas-2.7.0" = { ··· 15052 15151 sha1 = "a211e09c6a3de3ba1af27d049d301250d18812bc"; 15053 15152 }; 15054 15153 }; 15055 - "clipboard-2.0.6" = { 15154 + "clipboard-2.0.7" = { 15056 15155 name = "clipboard"; 15057 15156 packageName = "clipboard"; 15058 - version = "2.0.6"; 15157 + version = "2.0.7"; 15059 15158 src = fetchurl { 15060 - url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.6.tgz"; 15061 - sha512 = "g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg=="; 15159 + url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.7.tgz"; 15160 + sha512 = "8M8WEZcIvs0hgOma+wAPkrUxpv0PMY1L6VsAJh/2DOKARIMpyWe6ZLcEoe1qktl6/ced5ceYHs+oGedSbgZ3sg=="; 15062 15161 }; 15063 15162 }; 15064 15163 "clipboardy-1.2.3" = { ··· 16519 16618 sha512 = "5AKrTtmiioQWloJ3WRFZb0/uR1lrRboaVE9go++XZltvRnZkN2/kQjaZ0gtFxynU5u5k9mWVtk8mNcgJ9yoRbQ=="; 16520 16619 }; 16521 16620 }; 16522 - "constructs-3.3.58" = { 16621 + "constructs-3.3.61" = { 16523 16622 name = "constructs"; 16524 16623 packageName = "constructs"; 16525 - version = "3.3.58"; 16624 + version = "3.3.61"; 16526 16625 src = fetchurl { 16527 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.58.tgz"; 16528 - sha512 = "TSDyDQmHWs0fBJQjQIjVC5Hd7iLy62Pd6PTN4wOlr4dRGkByYS7Fzb87HOIewN6AZAZPxjCVR7MqtJM8RgVBsg=="; 16626 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.61.tgz"; 16627 + sha512 = "9zg2/Bl9y0Z/9eQ3NO8BcCWlAVs6hXGCcRH2bQLSqExyrE54qzh50Vtb7ULrKOkC5nT974VG+cWdeXrcC6JDqA=="; 16529 16628 }; 16530 16629 }; 16531 16630 "consume-http-header-1.0.0" = { ··· 21796 21895 sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA=="; 21797 21896 }; 21798 21897 }; 21799 - "esbuild-0.8.56" = { 21898 + "esbuild-0.8.57" = { 21800 21899 name = "esbuild"; 21801 21900 packageName = "esbuild"; 21802 - version = "0.8.56"; 21901 + version = "0.8.57"; 21803 21902 src = fetchurl { 21804 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.8.56.tgz"; 21805 - sha512 = "PTMdAWK3JI2MNW811znGssGP5GR44tQPr++VQ1rPP0n8Z1cTKbCPD3S/kXPLr3ZZDIwAaVm08fuFym6Rp8l/0A=="; 21903 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.8.57.tgz"; 21904 + sha512 = "j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA=="; 21806 21905 }; 21807 21906 }; 21808 21907 "esc-exit-2.0.2" = { ··· 24091 24190 sha1 = "2ad90d490f6828c1aa40292cf709ac3318210c3c"; 24092 24191 }; 24093 24192 }; 24094 - "find-yarn-workspace-root-1.2.1" = { 24095 - name = "find-yarn-workspace-root"; 24096 - packageName = "find-yarn-workspace-root"; 24097 - version = "1.2.1"; 24098 - src = fetchurl { 24099 - url = "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-1.2.1.tgz"; 24100 - sha512 = "dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q=="; 24101 - }; 24102 - }; 24103 24193 "find-yarn-workspace-root-2.0.0" = { 24104 24194 name = "find-yarn-workspace-root"; 24105 24195 packageName = "find-yarn-workspace-root"; ··· 26071 26161 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; 26072 26162 }; 26073 26163 }; 26074 - "glob-parent-5.1.1" = { 26164 + "glob-parent-5.1.2" = { 26075 26165 name = "glob-parent"; 26076 26166 packageName = "glob-parent"; 26077 - version = "5.1.1"; 26167 + version = "5.1.2"; 26078 26168 src = fetchurl { 26079 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"; 26080 - sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 26169 + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 26170 + sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 26081 26171 }; 26082 26172 }; 26083 26173 "glob-slash-1.0.0" = { ··· 28061 28151 sha512 = "4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q=="; 28062 28152 }; 28063 28153 }; 28064 - "htmlparser2-6.0.0" = { 28154 + "htmlparser2-6.0.1" = { 28065 28155 name = "htmlparser2"; 28066 28156 packageName = "htmlparser2"; 28067 - version = "6.0.0"; 28157 + version = "6.0.1"; 28068 28158 src = fetchurl { 28069 - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.0.tgz"; 28070 - sha512 = "numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw=="; 28159 + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.1.tgz"; 28160 + sha512 = "GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w=="; 28071 28161 }; 28072 28162 }; 28073 28163 "http-auth-2.0.7" = { ··· 30456 30546 sha512 = "wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg=="; 30457 30547 }; 30458 30548 }; 30459 - "is-path-inside-3.0.2" = { 30549 + "is-path-inside-3.0.3" = { 30460 30550 name = "is-path-inside"; 30461 30551 packageName = "is-path-inside"; 30462 - version = "3.0.2"; 30552 + version = "3.0.3"; 30463 30553 src = fetchurl { 30464 - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz"; 30465 - sha512 = "/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg=="; 30554 + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"; 30555 + sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; 30466 30556 }; 30467 30557 }; 30468 30558 "is-plain-obj-1.1.0" = { ··· 31779 31869 sha512 = "fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g=="; 31780 31870 }; 31781 31871 }; 31782 - "jsdom-16.4.0" = { 31872 + "jsdom-16.5.0" = { 31783 31873 name = "jsdom"; 31784 31874 packageName = "jsdom"; 31785 - version = "16.4.0"; 31875 + version = "16.5.0"; 31786 31876 src = fetchurl { 31787 - url = "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz"; 31788 - sha512 = "lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w=="; 31877 + url = "https://registry.npmjs.org/jsdom/-/jsdom-16.5.0.tgz"; 31878 + sha512 = "QxZH0nmDTnTTVI0YDm4RUlaUPl5dcyn62G5TMDNfMmTW+J1u1v9gCR8WR+WZ6UghAa7nKJjDOFaI00eMMWvJFQ=="; 31789 31879 }; 31790 31880 }; 31791 31881 "jsdom-7.2.2" = { ··· 31860 31950 sha512 = "BMYxIjYG62wctUZFjYc5xKPNTgzTRRw2Fp8R9p4o0VeFE224ntyHgy9y7oKuCu+K1ev917NRoCLj7f2tyGTMAg=="; 31861 31951 }; 31862 31952 }; 31863 - "jsii-srcmak-0.1.249" = { 31953 + "jsii-srcmak-0.1.252" = { 31864 31954 name = "jsii-srcmak"; 31865 31955 packageName = "jsii-srcmak"; 31866 - version = "0.1.249"; 31956 + version = "0.1.252"; 31867 31957 src = fetchurl { 31868 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.249.tgz"; 31869 - sha512 = "l+zmAdckyvqsTKs18jn36aiFrFh8Zxuea2cQjtOCp5rsF1uOO8oYuwOAddtaCAa3j1dG6qhOvdm8Sfz7C0FMuA=="; 31958 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.252.tgz"; 31959 + sha512 = "nRQ2JdGUgAi5YXkxQwJ4lM3K4oTeGzVTIT+4nQ6FBLC0/eHQrJYbqNbX27xb/JzqidVzv7y7C0ykZGiBDByKSQ=="; 31870 31960 }; 31871 31961 }; 31872 31962 "json-bigint-0.2.3" = { ··· 34244 34334 src = fetchurl { 34245 34335 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"; 34246 34336 sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6"; 34337 + }; 34338 + }; 34339 + "lodash.chunk-4.2.0" = { 34340 + name = "lodash.chunk"; 34341 + packageName = "lodash.chunk"; 34342 + version = "4.2.0"; 34343 + src = fetchurl { 34344 + url = "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz"; 34345 + sha1 = "66e5ce1f76ed27b4303d8c6512e8d1216e8106bc"; 34247 34346 }; 34248 34347 }; 34249 34348 "lodash.clone-4.5.0" = { ··· 37729 37828 sha512 = "O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ=="; 37730 37829 }; 37731 37830 }; 37732 - "mocha-8.3.0" = { 37831 + "mocha-8.3.1" = { 37733 37832 name = "mocha"; 37734 37833 packageName = "mocha"; 37735 - version = "8.3.0"; 37834 + version = "8.3.1"; 37736 37835 src = fetchurl { 37737 - url = "https://registry.npmjs.org/mocha/-/mocha-8.3.0.tgz"; 37738 - sha512 = "TQqyC89V1J/Vxx0DhJIXlq9gbbL9XFNdeLQ1+JsnZsVaSOV1z3tWfw0qZmQJGQRIfkvZcs7snQnZnOCKoldq1Q=="; 37836 + url = "https://registry.npmjs.org/mocha/-/mocha-8.3.1.tgz"; 37837 + sha512 = "5SBMxANWqOv5bw3Hx+HVgaWlcWcFEQDUdaUAr1AUU+qwtx6cowhn7gEDT/DwQP7uYxnvShdUOVLbTYAHOEGfDQ=="; 37739 37838 }; 37740 37839 }; 37741 37840 "mock-require-3.0.3" = { ··· 42547 42646 sha512 = "fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ=="; 42548 42647 }; 42549 42648 }; 42550 - "parse5-5.1.1" = { 42551 - name = "parse5"; 42552 - packageName = "parse5"; 42553 - version = "5.1.1"; 42554 - src = fetchurl { 42555 - url = "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz"; 42556 - sha512 = "ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="; 42557 - }; 42558 - }; 42559 42649 "parse5-6.0.1" = { 42560 42650 name = "parse5"; 42561 42651 packageName = "parse5"; ··· 46472 46562 sha512 = "AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw=="; 46473 46563 }; 46474 46564 }; 46565 + "queue-6.0.2" = { 46566 + name = "queue"; 46567 + packageName = "queue"; 46568 + version = "6.0.2"; 46569 + src = fetchurl { 46570 + url = "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz"; 46571 + sha512 = "iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA=="; 46572 + }; 46573 + }; 46475 46574 "queue-microtask-1.2.2" = { 46476 46575 name = "queue-microtask"; 46477 46576 packageName = "queue-microtask"; ··· 50513 50612 sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg=="; 50514 50613 }; 50515 50614 }; 50516 - "simple-git-2.36.0" = { 50615 + "simple-git-2.36.1" = { 50517 50616 name = "simple-git"; 50518 50617 packageName = "simple-git"; 50519 - version = "2.36.0"; 50618 + version = "2.36.1"; 50520 50619 src = fetchurl { 50521 - url = "https://registry.npmjs.org/simple-git/-/simple-git-2.36.0.tgz"; 50522 - sha512 = "EJNaUgGYzBnQiyEkNZgbQSg76agbEDqlgHDr8DAXqV8xWvcefydbipye7YXtHMGbbEK998dcFezS8qF0sepZ5Q=="; 50620 + url = "https://registry.npmjs.org/simple-git/-/simple-git-2.36.1.tgz"; 50621 + sha512 = "bN18Ea/4IJgqgbZyE9VpVEUkAu9vyP0VWP7acP0CRC1p/N80GGJ0HhIVeFJsm8TdJLBowiJpdLesQuAZ5TFSKw=="; 50523 50622 }; 50524 50623 }; 50525 50624 "simple-markdown-0.4.4" = { ··· 53708 53807 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 53709 53808 }; 53710 53809 }; 53711 - "stylelint-13.11.0" = { 53810 + "stylelint-13.12.0" = { 53712 53811 name = "stylelint"; 53713 53812 packageName = "stylelint"; 53714 - version = "13.11.0"; 53813 + version = "13.12.0"; 53715 53814 src = fetchurl { 53716 - url = "https://registry.npmjs.org/stylelint/-/stylelint-13.11.0.tgz"; 53717 - sha512 = "DhrKSWDWGZkCiQMtU+VroXM6LWJVC8hSK24nrUngTSQvXGK75yZUq4yNpynqrxD3a/fzKMED09V+XxO4z4lTbw=="; 53815 + url = "https://registry.npmjs.org/stylelint/-/stylelint-13.12.0.tgz"; 53816 + sha512 = "P8O1xDy41B7O7iXaSlW+UuFbE5+ZWQDb61ndGDxKIt36fMH50DtlQTbwLpFLf8DikceTAb3r6nPrRv30wBlzXw=="; 53718 53817 }; 53719 53818 }; 53720 53819 "stylelint-8.4.0" = { ··· 54032 54131 sha512 = "SROWH0rB0DJ+0Ii264cprmNu/NJyZacs5wFD71ya93Cg/oA2lKHgQm4F6j0EWA4ktFMzeuJJm/eX6fka39hEHA=="; 54033 54132 }; 54034 54133 }; 54035 - "svelte2tsx-0.1.178" = { 54134 + "svelte2tsx-0.1.179" = { 54036 54135 name = "svelte2tsx"; 54037 54136 packageName = "svelte2tsx"; 54038 - version = "0.1.178"; 54137 + version = "0.1.179"; 54039 54138 src = fetchurl { 54040 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.1.178.tgz"; 54041 - sha512 = "zfIFE+H5ndEBJ5CLTB3xJyUu/vwezThv1k9DvYFiIE7s9oNq4S1uxpqOU43n/KJKADA/nvk61O3H8ADSj7cLQQ=="; 54139 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.1.179.tgz"; 54140 + sha512 = "tfSRUuUziFPcD2w6fIfu9ybpkV2M7HQgmcelcdCC0bKVqR+pm6kdmIyo6L5kwR3IRjhq03DekkpVer1uXxTZ9A=="; 54042 54141 }; 54043 54142 }; 54044 54143 "sver-compat-1.5.0" = { ··· 55842 55941 sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg=="; 55843 55942 }; 55844 55943 }; 55944 + "tough-cookie-4.0.0" = { 55945 + name = "tough-cookie"; 55946 + packageName = "tough-cookie"; 55947 + version = "4.0.0"; 55948 + src = fetchurl { 55949 + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz"; 55950 + sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="; 55951 + }; 55952 + }; 55845 55953 "township-client-1.3.2" = { 55846 55954 name = "township-client"; 55847 55955 packageName = "township-client"; ··· 56256 56364 sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 56257 56365 }; 56258 56366 }; 56259 - "tsutils-3.20.0" = { 56367 + "tsutils-3.21.0" = { 56260 56368 name = "tsutils"; 56261 56369 packageName = "tsutils"; 56262 - version = "3.20.0"; 56370 + version = "3.21.0"; 56263 56371 src = fetchurl { 56264 - url = "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz"; 56265 - sha512 = "RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg=="; 56372 + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"; 56373 + sha512 = "mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="; 56266 56374 }; 56267 56375 }; 56268 56376 "ttl-1.3.1" = { ··· 57426 57534 sha512 = "sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="; 57427 57535 }; 57428 57536 }; 57429 - "unist-util-is-4.0.4" = { 57537 + "unist-util-is-4.1.0" = { 57430 57538 name = "unist-util-is"; 57431 57539 packageName = "unist-util-is"; 57432 - version = "4.0.4"; 57540 + version = "4.1.0"; 57433 57541 src = fetchurl { 57434 - url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.4.tgz"; 57435 - sha512 = "3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA=="; 57542 + url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz"; 57543 + sha512 = "ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="; 57436 57544 }; 57437 57545 }; 57438 57546 "unist-util-map-1.0.5" = { ··· 59263 59371 sha512 = "gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w=="; 59264 59372 }; 59265 59373 }; 59266 - "vls-0.5.10" = { 59374 + "vls-0.7.2" = { 59267 59375 name = "vls"; 59268 59376 packageName = "vls"; 59269 - version = "0.5.10"; 59377 + version = "0.7.2"; 59270 59378 src = fetchurl { 59271 - url = "https://registry.npmjs.org/vls/-/vls-0.5.10.tgz"; 59272 - sha512 = "/zXdkUatCptsDGmrEVh0A/LEQ48qEwrKe+7HiIwUOmiz+0DkoHsyf/j6eppXMVRWMcHWopwd9/VTNCRlFf2NFw=="; 59379 + url = "https://registry.npmjs.org/vls/-/vls-0.7.2.tgz"; 59380 + sha512 = "9nKgSPtNxQlc32K5GgZV++MdsCpNuac/SfxnEmVI0DCF4E0Uekj+RUo7Zk6NnA4veiNMN+AEjAIlbXYWPHgX6Q=="; 59273 59381 }; 59274 59382 }; 59275 59383 "vm-browserify-1.1.2" = { ··· 61196 61304 src = fetchurl { 61197 61305 url = "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz"; 61198 61306 sha512 = "hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA=="; 61307 + }; 61308 + }; 61309 + "ws-7.4.4" = { 61310 + name = "ws"; 61311 + packageName = "ws"; 61312 + version = "7.4.4"; 61313 + src = fetchurl { 61314 + url = "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz"; 61315 + sha512 = "Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw=="; 61199 61316 }; 61200 61317 }; 61201 61318 "x-default-browser-0.3.1" = { ··· 63148 63265 sources."@nestjs/schematics-7.2.8" 63149 63266 sources."@schematics/schematics-0.1102.0" 63150 63267 sources."@types/anymatch-1.3.1" 63151 - sources."@types/eslint-7.2.6" 63268 + sources."@types/eslint-7.2.7" 63152 63269 sources."@types/eslint-scope-3.7.0" 63153 63270 sources."@types/estree-0.0.45" 63154 63271 sources."@types/json-schema-7.0.7" 63155 63272 sources."@types/json5-0.0.29" 63156 - sources."@types/node-14.14.31" 63273 + sources."@types/node-14.14.32" 63157 63274 sources."@types/parse-json-4.0.0" 63158 63275 sources."@types/source-list-map-0.1.2" 63159 63276 sources."@types/tapable-1.0.6" 63160 - (sources."@types/uglify-js-3.12.0" // { 63277 + (sources."@types/uglify-js-3.13.0" // { 63161 63278 dependencies = [ 63162 63279 sources."source-map-0.6.1" 63163 63280 ]; ··· 63207 63324 sources."buffer-5.7.1" 63208 63325 sources."buffer-from-1.1.1" 63209 63326 sources."callsites-3.1.0" 63210 - sources."caniuse-lite-1.0.30001196" 63327 + sources."caniuse-lite-1.0.30001197" 63211 63328 sources."chalk-3.0.0" 63212 63329 sources."chardet-0.7.0" 63213 63330 sources."chokidar-3.5.1" ··· 63263 63380 sources."function-bind-1.1.1" 63264 63381 sources."get-stream-5.2.0" 63265 63382 sources."glob-7.1.6" 63266 - sources."glob-parent-5.1.1" 63383 + sources."glob-parent-5.1.2" 63267 63384 sources."glob-to-regexp-0.4.1" 63268 63385 sources."graceful-fs-4.2.6" 63269 63386 sources."has-1.0.3" ··· 63479 63596 }) 63480 63597 (sources."@apollo/protobufjs-1.0.5" // { 63481 63598 dependencies = [ 63482 - sources."@types/node-10.17.54" 63599 + sources."@types/node-10.17.55" 63483 63600 ]; 63484 63601 }) 63485 63602 sources."@apollographql/apollo-tools-0.4.9" ··· 63841 63958 sources."@types/long-4.0.1" 63842 63959 sources."@types/mime-1.3.2" 63843 63960 sources."@types/minimatch-3.0.3" 63844 - sources."@types/node-14.14.31" 63961 + sources."@types/node-14.14.32" 63845 63962 (sources."@types/node-fetch-2.5.7" // { 63846 63963 dependencies = [ 63847 63964 sources."form-data-3.0.1" 63848 63965 ]; 63849 63966 }) 63850 63967 sources."@types/normalize-package-data-2.4.0" 63851 - sources."@types/qs-6.9.5" 63968 + sources."@types/qs-6.9.6" 63852 63969 sources."@types/range-parser-1.2.3" 63853 63970 sources."@types/serve-static-1.13.9" 63854 63971 sources."@types/through-0.0.30" ··· 64102 64219 ]; 64103 64220 }) 64104 64221 sources."camelcase-4.1.0" 64105 - sources."caniuse-lite-1.0.30001196" 64222 + sources."caniuse-lite-1.0.30001197" 64106 64223 (sources."capital-case-1.0.4" // { 64107 64224 dependencies = [ 64108 64225 sources."tslib-2.1.0" ··· 64186 64303 ]; 64187 64304 }) 64188 64305 sources."cli-width-3.0.0" 64189 - sources."clipboard-2.0.6" 64306 + sources."clipboard-2.0.7" 64190 64307 (sources."cliui-6.0.0" // { 64191 64308 dependencies = [ 64192 64309 sources."ansi-styles-4.3.0" ··· 64479 64596 sources."git-up-4.0.2" 64480 64597 sources."git-url-parse-11.4.3" 64481 64598 sources."glob-7.1.5" 64482 - sources."glob-parent-5.1.1" 64599 + sources."glob-parent-5.1.2" 64483 64600 sources."glob-to-regexp-0.3.0" 64484 64601 (sources."global-agent-2.1.12" // { 64485 64602 dependencies = [ ··· 65726 65843 sources."balanced-match-1.0.0" 65727 65844 sources."brace-expansion-1.1.11" 65728 65845 sources."browserslist-4.16.3" 65729 - sources."caniuse-lite-1.0.30001196" 65846 + sources."caniuse-lite-1.0.30001197" 65730 65847 sources."chalk-2.4.2" 65731 65848 sources."color-convert-1.9.3" 65732 65849 sources."color-name-1.1.3" ··· 65831 65948 dependencies = [ 65832 65949 sources."@types/glob-7.1.3" 65833 65950 sources."@types/minimatch-3.0.3" 65834 - sources."@types/node-14.14.31" 65951 + sources."@types/node-14.14.32" 65835 65952 sources."balanced-match-1.0.0" 65836 65953 sources."brace-expansion-1.1.11" 65837 65954 sources."chromium-pickle-js-0.2.0" ··· 67272 67389 }; 67273 67390 dependencies = [ 67274 67391 sources."@jsii/spec-1.24.0" 67275 - sources."@types/node-10.17.54" 67392 + sources."@types/node-10.17.55" 67276 67393 sources."ansi-regex-5.0.0" 67277 67394 sources."ansi-styles-4.3.0" 67278 67395 sources."array-filter-1.0.0" ··· 67366 67483 sources."yargs-16.2.0" 67367 67484 ]; 67368 67485 }) 67369 - (sources."jsii-srcmak-0.1.249" // { 67486 + (sources."jsii-srcmak-0.1.252" // { 67370 67487 dependencies = [ 67371 67488 sources."fs-extra-9.1.0" 67372 67489 ]; ··· 67469 67586 sources."@types/archiver-5.1.0" 67470 67587 sources."@types/glob-7.1.3" 67471 67588 sources."@types/minimatch-3.0.3" 67472 - sources."@types/node-14.14.31" 67589 + sources."@types/node-14.14.32" 67473 67590 sources."@types/readline-sync-1.4.3" 67474 67591 sources."@types/stream-buffers-3.0.3" 67475 67592 sources."@types/uuid-8.3.0" ··· 67477 67594 sources."ansi-escapes-4.3.1" 67478 67595 sources."ansi-regex-5.0.0" 67479 67596 sources."ansi-styles-4.3.0" 67480 - sources."archiver-5.2.0" 67597 + sources."archiver-5.3.0" 67481 67598 (sources."archiver-utils-2.1.0" // { 67482 67599 dependencies = [ 67483 67600 sources."readable-stream-2.3.7" ··· 67522 67639 sources."commonmark-0.29.3" 67523 67640 sources."compress-commons-4.1.0" 67524 67641 sources."concat-map-0.0.1" 67525 - sources."constructs-3.3.58" 67642 + sources."constructs-3.3.61" 67526 67643 sources."core-util-is-1.0.2" 67527 67644 sources."crc-32-1.2.0" 67528 67645 sources."crc32-stream-4.0.2" ··· 67642 67759 sources."yargs-16.2.0" 67643 67760 ]; 67644 67761 }) 67645 - (sources."jsii-srcmak-0.1.249" // { 67762 + (sources."jsii-srcmak-0.1.252" // { 67646 67763 dependencies = [ 67647 67764 sources."fs-extra-9.1.0" 67648 67765 sources."jsonfile-6.1.0" ··· 68037 68154 coc-git = nodeEnv.buildNodePackage { 68038 68155 name = "coc-git"; 68039 68156 packageName = "coc-git"; 68040 - version = "2.3.0"; 68157 + version = "2.3.1"; 68041 68158 src = fetchurl { 68042 - url = "https://registry.npmjs.org/coc-git/-/coc-git-2.3.0.tgz"; 68043 - sha512 = "YMKmaWmrrfncd+kjF0Xz5by+V1CUsEVJubEO47syfQ5ZPov7TW4/I0OhMZJBjiTXGQJuI5zS8uQbG6VSdke/dA=="; 68159 + url = "https://registry.npmjs.org/coc-git/-/coc-git-2.3.1.tgz"; 68160 + sha512 = "119J+uanlMO9xZA4yeyvjwbWKDckLUKUtJu6mreHuyQbd7x4Ea3qwjpWMlGl2+QLJQ78OPZjpbzzlc8FzDZY2A=="; 68044 68161 }; 68045 68162 buildInputs = globalBuildInputs; 68046 68163 meta = { ··· 68512 68629 sources."callsites-3.1.0" 68513 68630 sources."camelcase-2.1.1" 68514 68631 sources."camelcase-keys-2.1.0" 68515 - sources."caniuse-lite-1.0.30001196" 68632 + sources."caniuse-lite-1.0.30001197" 68516 68633 sources."capture-stack-trace-1.0.1" 68517 68634 sources."ccount-1.1.0" 68518 68635 (sources."chalk-4.1.0" // { ··· 68748 68865 sources."is-glob-2.0.1" 68749 68866 ]; 68750 68867 }) 68751 - sources."glob-parent-5.1.1" 68868 + sources."glob-parent-5.1.2" 68752 68869 sources."glob-to-regexp-0.3.0" 68753 68870 sources."global-dirs-0.1.1" 68754 68871 sources."globals-12.4.0" ··· 69268 69385 sources."svg-tags-1.0.0" 69269 69386 (sources."table-6.0.7" // { 69270 69387 dependencies = [ 69271 - sources."ajv-7.1.1" 69388 + sources."ajv-7.2.1" 69272 69389 sources."json-schema-traverse-1.0.0" 69273 69390 ]; 69274 69391 }) ··· 69297 69414 sources."tsutils-2.29.0" 69298 69415 ]; 69299 69416 }) 69300 - sources."tsutils-3.20.0" 69417 + sources."tsutils-3.21.0" 69301 69418 sources."type-check-0.4.0" 69302 69419 sources."type-fest-0.8.1" 69303 69420 sources."typescript-3.9.9" ··· 69478 69595 coc-rust-analyzer = nodeEnv.buildNodePackage { 69479 69596 name = "coc-rust-analyzer"; 69480 69597 packageName = "coc-rust-analyzer"; 69481 - version = "0.36.1"; 69598 + version = "0.37.0"; 69482 69599 src = fetchurl { 69483 - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.36.1.tgz"; 69484 - sha512 = "g4h0phqq6Wyf4S2kyRSklaokDcqRWqu7NmKL2HrU3S4MstwKddAzQ/jHBL/5akBa4WeL8/Mvj3v90sHuSPly3w=="; 69600 + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.37.0.tgz"; 69601 + sha512 = "hATxP0epa85YwVzUSYivWgCChPENb9ugKC1G5TOD/flfPRUIGqVVJQDKbqCo+sWUbhYnGLeIl04CJfFhNk/xKA=="; 69485 69602 }; 69486 69603 buildInputs = globalBuildInputs; 69487 69604 meta = { ··· 69590 69707 sources."@types/normalize-package-data-2.4.0" 69591 69708 sources."@types/parse-json-4.0.0" 69592 69709 sources."@types/unist-2.0.3" 69593 - sources."ajv-7.1.1" 69710 + sources."ajv-7.2.1" 69594 69711 sources."ansi-regex-5.0.0" 69595 69712 sources."ansi-styles-3.2.1" 69596 69713 sources."array-union-2.1.0" ··· 69605 69722 sources."callsites-3.1.0" 69606 69723 sources."camelcase-5.3.1" 69607 69724 sources."camelcase-keys-6.2.2" 69608 - sources."caniuse-lite-1.0.30001196" 69725 + sources."caniuse-lite-1.0.30001197" 69609 69726 (sources."chalk-4.1.0" // { 69610 69727 dependencies = [ 69611 69728 sources."ansi-styles-4.3.0" ··· 69666 69783 sources."gensync-1.0.0-beta.2" 69667 69784 sources."get-stdin-8.0.0" 69668 69785 sources."glob-7.1.6" 69669 - sources."glob-parent-5.1.1" 69786 + sources."glob-parent-5.1.2" 69670 69787 sources."global-modules-2.0.0" 69671 69788 sources."global-prefix-3.0.0" 69672 69789 sources."globals-11.12.0" ··· 69835 69952 sources."strip-ansi-6.0.0" 69836 69953 sources."strip-indent-3.0.0" 69837 69954 sources."style-search-0.1.0" 69838 - sources."stylelint-13.11.0" 69955 + sources."stylelint-13.12.0" 69839 69956 sources."sugarss-2.0.0" 69840 69957 sources."supports-color-5.5.0" 69841 69958 sources."svg-tags-1.0.0" ··· 69849 69966 sources."unified-9.2.1" 69850 69967 sources."uniq-1.0.1" 69851 69968 sources."unist-util-find-all-after-3.0.2" 69852 - sources."unist-util-is-4.0.4" 69969 + sources."unist-util-is-4.1.0" 69853 69970 sources."unist-util-stringify-position-2.0.3" 69854 69971 sources."uri-js-4.4.1" 69855 69972 sources."util-deprecate-1.0.2" ··· 70037 70154 coc-vetur = nodeEnv.buildNodePackage { 70038 70155 name = "coc-vetur"; 70039 70156 packageName = "coc-vetur"; 70040 - version = "1.2.3"; 70157 + version = "1.2.4"; 70041 70158 src = fetchurl { 70042 - url = "https://registry.npmjs.org/coc-vetur/-/coc-vetur-1.2.3.tgz"; 70043 - sha512 = "2SHFFjxkw2kl0hADDNUYX85OR/PbjqYPxFnpNp6G83SbeZBoJN8KDUl7TrIJ7BZ4UCiIilXnKQCHpxREiVPAEg=="; 70159 + url = "https://registry.npmjs.org/coc-vetur/-/coc-vetur-1.2.4.tgz"; 70160 + sha512 = "9ZEPHykSx2J/OwLFocXSK1Bg4p35AegacFb0ZaWV9s0IEtdNSkYi25Y9CscqV6fQheMfyEl0f4rlI4yh6DbcPg=="; 70044 70161 }; 70045 70162 dependencies = [ 70046 70163 sources."@babel/code-frame-7.12.11" ··· 70121 70238 sources."function-bind-1.1.1" 70122 70239 sources."functional-red-black-tree-1.0.1" 70123 70240 sources."glob-7.1.6" 70124 - sources."glob-parent-5.1.1" 70241 + sources."glob-parent-5.1.2" 70125 70242 sources."globals-12.4.0" 70126 70243 sources."has-1.0.3" 70127 70244 sources."has-flag-3.0.0" ··· 70179 70296 sources."supports-color-5.5.0" 70180 70297 (sources."table-6.0.7" // { 70181 70298 dependencies = [ 70182 - sources."ajv-7.1.1" 70299 + sources."ajv-7.2.1" 70183 70300 sources."json-schema-traverse-1.0.0" 70184 70301 ]; 70185 70302 }) ··· 70197 70314 sources."typescript-4.2.3" 70198 70315 sources."uri-js-4.4.1" 70199 70316 sources."v8-compile-cache-2.3.0" 70200 - sources."vls-0.5.10" 70317 + sources."vls-0.7.2" 70201 70318 (sources."vue-eslint-parser-7.6.0" // { 70202 70319 dependencies = [ 70203 70320 sources."eslint-visitor-keys-1.3.0" ··· 70221 70338 coc-vimlsp = nodeEnv.buildNodePackage { 70222 70339 name = "coc-vimlsp"; 70223 70340 packageName = "coc-vimlsp"; 70224 - version = "0.11.0"; 70341 + version = "0.11.1"; 70225 70342 src = fetchurl { 70226 - url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.11.0.tgz"; 70227 - sha512 = "tcou7cmYgzjLLPfLEyuea5umVkITER0IqDsJCc/3IeuPFyL03D7EDyeXIcyR+fJwXpJ0AzO6rzoLBMqpt4hYGg=="; 70343 + url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.11.1.tgz"; 70344 + sha512 = "vHerH6fO69i/5002OTCYMbBiswMcjKRMqLbIByw6aB4OuOXDBDi1zn+jX+LqRSI0sEsVJIL1VhqGvigOo2OWNg=="; 70228 70345 }; 70229 70346 buildInputs = globalBuildInputs; 70230 70347 meta = { ··· 70697 70814 sources."get-stream-5.2.0" 70698 70815 sources."getpass-0.1.7" 70699 70816 sources."glob-7.1.6" 70700 - sources."glob-parent-5.1.1" 70817 + sources."glob-parent-5.1.2" 70701 70818 sources."global-dirs-2.1.0" 70702 70819 sources."globby-11.0.2" 70703 70820 (sources."got-9.6.0" // { ··· 70790 70907 sources."is-npm-4.0.0" 70791 70908 sources."is-number-7.0.0" 70792 70909 sources."is-obj-2.0.0" 70793 - sources."is-path-inside-3.0.2" 70910 + sources."is-path-inside-3.0.3" 70794 70911 sources."is-stream-2.0.0" 70795 70912 sources."is-typedarray-1.0.0" 70796 70913 sources."is-wsl-2.2.0" ··· 71101 71218 sources."@types/glob-7.1.3" 71102 71219 sources."@types/minimatch-3.0.3" 71103 71220 sources."@types/minimist-1.2.1" 71104 - sources."@types/node-14.14.31" 71221 + sources."@types/node-14.14.32" 71105 71222 sources."@types/normalize-package-data-2.4.0" 71106 71223 sources."aggregate-error-3.1.0" 71107 71224 sources."ansi-styles-3.2.1" ··· 71472 71589 sources."@cycle/run-3.4.0" 71473 71590 sources."@cycle/time-0.10.1" 71474 71591 sources."@types/cookiejar-2.1.2" 71475 - sources."@types/node-14.14.31" 71592 + sources."@types/node-14.14.32" 71476 71593 sources."@types/superagent-3.8.2" 71477 71594 sources."ansi-escapes-3.2.0" 71478 71595 sources."ansi-regex-2.1.1" ··· 72458 72575 sources."find-up-4.1.0" 72459 72576 sources."fs.realpath-1.0.0" 72460 72577 sources."glob-7.1.6" 72461 - sources."glob-parent-5.1.1" 72578 + sources."glob-parent-5.1.2" 72462 72579 sources."globby-11.0.2" 72463 72580 sources."graceful-fs-4.2.6" 72464 72581 sources."ignore-5.1.8" ··· 72469 72586 sources."is-glob-4.0.1" 72470 72587 sources."is-number-7.0.0" 72471 72588 sources."is-path-cwd-2.2.0" 72472 - sources."is-path-inside-3.0.2" 72589 + sources."is-path-inside-3.0.3" 72473 72590 sources."is-stream-2.0.0" 72474 72591 sources."locate-path-5.0.0" 72475 72592 sources."lodash-4.17.21" ··· 72553 72670 dependencies = [ 72554 72671 sources."@fast-csv/format-4.3.5" 72555 72672 sources."@fast-csv/parse-4.3.6" 72556 - sources."@types/node-14.14.31" 72673 + sources."@types/node-14.14.32" 72557 72674 sources."JSONStream-1.3.5" 72558 72675 sources."ajv-6.12.6" 72559 72676 sources."asn1-0.2.4" ··· 72746 72863 sources."@types/http-cache-semantics-4.0.0" 72747 72864 sources."@types/keyv-3.1.1" 72748 72865 sources."@types/minimatch-3.0.3" 72749 - sources."@types/node-14.14.31" 72866 + sources."@types/node-14.14.32" 72750 72867 sources."@types/responselike-1.0.0" 72751 72868 sources."@types/yauzl-2.9.1" 72752 72869 sources."abbrev-1.1.1" ··· 73364 73481 sources."@types/http-cache-semantics-4.0.0" 73365 73482 sources."@types/keyv-3.1.1" 73366 73483 sources."@types/minimist-1.2.1" 73367 - sources."@types/node-14.14.31" 73484 + sources."@types/node-14.14.32" 73368 73485 sources."@types/normalize-package-data-2.4.0" 73369 73486 sources."@types/responselike-1.0.0" 73370 73487 sources."@types/yoga-layout-1.9.2" ··· 73399 73516 sources."quick-lru-4.0.1" 73400 73517 ]; 73401 73518 }) 73402 - sources."caniuse-lite-1.0.30001196" 73519 + sources."caniuse-lite-1.0.30001197" 73403 73520 sources."chalk-2.4.2" 73404 73521 sources."ci-info-2.0.0" 73405 73522 sources."cli-boxes-2.2.1" ··· 73647 73764 ]; 73648 73765 }) 73649 73766 sources."wrappy-1.0.2" 73650 - sources."ws-7.4.3" 73767 + sources."ws-7.4.4" 73651 73768 sources."yallist-4.0.0" 73652 73769 sources."yargs-parser-18.1.3" 73653 73770 sources."yoga-layout-prebuilt-1.10.0" ··· 73747 73864 sources."@types/node-14.11.1" 73748 73865 sources."@types/pg-7.14.5" 73749 73866 sources."@types/pg-types-2.2.0" 73750 - sources."@types/qs-6.9.5" 73867 + sources."@types/qs-6.9.6" 73751 73868 sources."@types/range-parser-1.2.3" 73752 73869 (sources."@types/request-2.48.5" // { 73753 73870 dependencies = [ ··· 74317 74434 sources."get-value-2.0.6" 74318 74435 sources."getpass-0.1.7" 74319 74436 sources."glob-7.1.6" 74320 - sources."glob-parent-5.1.1" 74437 + sources."glob-parent-5.1.2" 74321 74438 (sources."glob-stream-6.1.0" // { 74322 74439 dependencies = [ 74323 74440 sources."glob-parent-3.1.0" ··· 74448 74565 sources."is-negated-glob-1.0.0" 74449 74566 sources."is-number-7.0.0" 74450 74567 sources."is-path-cwd-2.2.0" 74451 - sources."is-path-inside-3.0.2" 74568 + sources."is-path-inside-3.0.3" 74452 74569 sources."is-plain-object-2.0.4" 74453 74570 sources."is-promise-2.2.2" 74454 74571 sources."is-relative-1.0.0" ··· 75322 75439 ]; 75323 75440 }) 75324 75441 sources."wrappy-1.0.2" 75325 - sources."ws-7.4.3" 75442 + sources."ws-7.4.4" 75326 75443 sources."xmlhttprequest-ssl-1.5.5" 75327 75444 sources."xtend-4.0.2" 75328 75445 sources."y18n-3.2.2" ··· 75446 75563 sources."fs.realpath-1.0.0" 75447 75564 sources."functional-red-black-tree-1.0.1" 75448 75565 sources."glob-7.1.6" 75449 - sources."glob-parent-5.1.1" 75566 + sources."glob-parent-5.1.2" 75450 75567 sources."globals-12.4.0" 75451 75568 sources."has-flag-3.0.0" 75452 75569 sources."ignore-4.0.6" ··· 75497 75614 sources."supports-color-5.5.0" 75498 75615 (sources."table-6.0.7" // { 75499 75616 dependencies = [ 75500 - sources."ajv-7.1.1" 75617 + sources."ajv-7.2.1" 75501 75618 sources."json-schema-traverse-1.0.0" 75502 75619 ]; 75503 75620 }) ··· 75605 75722 sources."fs.realpath-1.0.0" 75606 75723 sources."functional-red-black-tree-1.0.1" 75607 75724 sources."glob-7.1.6" 75608 - sources."glob-parent-5.1.1" 75725 + sources."glob-parent-5.1.2" 75609 75726 sources."globals-12.4.0" 75610 75727 sources."has-flag-4.0.0" 75611 75728 sources."ignore-4.0.6" ··· 75657 75774 sources."supports-color-8.1.1" 75658 75775 (sources."table-6.0.7" // { 75659 75776 dependencies = [ 75660 - sources."ajv-7.1.1" 75777 + sources."ajv-7.2.1" 75661 75778 sources."json-schema-traverse-1.0.0" 75662 75779 ]; 75663 75780 }) ··· 76033 76150 sources."@types/source-list-map-0.1.2" 76034 76151 sources."@types/tapable-1.0.6" 76035 76152 sources."@types/text-table-0.2.1" 76036 - (sources."@types/uglify-js-3.12.0" // { 76153 + (sources."@types/uglify-js-3.13.0" // { 76037 76154 dependencies = [ 76038 76155 sources."source-map-0.6.1" 76039 76156 ]; ··· 76260 76377 }) 76261 76378 sources."camelcase-5.3.1" 76262 76379 sources."caniuse-api-3.0.0" 76263 - sources."caniuse-lite-1.0.30001196" 76380 + sources."caniuse-lite-1.0.30001197" 76264 76381 sources."caseless-0.12.0" 76265 76382 (sources."chalk-4.1.0" // { 76266 76383 dependencies = [ ··· 76724 76841 sources."getenv-0.7.0" 76725 76842 sources."getpass-0.1.7" 76726 76843 sources."glob-7.1.6" 76727 - sources."glob-parent-5.1.1" 76844 + sources."glob-parent-5.1.2" 76728 76845 sources."global-4.4.0" 76729 76846 sources."global-modules-2.0.0" 76730 76847 sources."global-prefix-3.0.0" ··· 77837 77954 sources."crypto-random-string-2.0.0" 77838 77955 sources."del-6.0.0" 77839 77956 sources."globby-11.0.2" 77840 - sources."is-path-inside-3.0.2" 77957 + sources."is-path-inside-3.0.3" 77841 77958 sources."is-stream-2.0.0" 77842 77959 sources."p-map-4.0.0" 77843 77960 sources."rimraf-3.0.2" ··· 78663 78780 sources."get-value-2.0.6" 78664 78781 sources."getpass-0.1.7" 78665 78782 sources."glob-7.1.6" 78666 - sources."glob-parent-5.1.1" 78783 + sources."glob-parent-5.1.2" 78667 78784 sources."glob-to-regexp-0.3.0" 78668 78785 (sources."globby-8.0.2" // { 78669 78786 dependencies = [ ··· 79044 79161 sources."@types/glob-7.1.3" 79045 79162 sources."@types/long-4.0.1" 79046 79163 sources."@types/minimatch-3.0.3" 79047 - sources."@types/node-14.14.31" 79164 + sources."@types/node-14.14.32" 79048 79165 sources."JSONStream-1.3.5" 79049 79166 sources."abbrev-1.1.1" 79050 79167 sources."abort-controller-3.0.0" ··· 79062 79179 sources."ansicolors-0.3.2" 79063 79180 sources."anymatch-3.1.1" 79064 79181 sources."aproba-1.2.0" 79065 - sources."archiver-5.2.0" 79182 + sources."archiver-5.3.0" 79066 79183 (sources."archiver-utils-2.1.0" // { 79067 79184 dependencies = [ 79068 79185 sources."readable-stream-2.3.7" ··· 79361 79478 }) 79362 79479 sources."getpass-0.1.7" 79363 79480 sources."glob-7.1.6" 79364 - sources."glob-parent-5.1.1" 79481 + sources."glob-parent-5.1.2" 79365 79482 sources."glob-slash-1.0.0" 79366 79483 sources."glob-slasher-1.0.1" 79367 79484 sources."global-dirs-2.1.0" ··· 79413 79530 sources."is-npm-4.0.0" 79414 79531 sources."is-number-7.0.0" 79415 79532 sources."is-obj-2.0.0" 79416 - sources."is-path-inside-3.0.2" 79533 + sources."is-path-inside-3.0.3" 79417 79534 sources."is-promise-2.2.2" 79418 79535 sources."is-stream-2.0.0" 79419 79536 sources."is-stream-ended-0.1.4" ··· 79816 79933 sources."word-wrap-1.2.3" 79817 79934 sources."wrappy-1.0.2" 79818 79935 sources."write-file-atomic-3.0.3" 79819 - sources."ws-7.4.3" 79936 + sources."ws-7.4.4" 79820 79937 sources."xdg-basedir-4.0.0" 79821 79938 sources."xmlbuilder-9.0.7" 79822 79939 sources."xmldom-0.1.31" ··· 80806 80923 sources."@szmarczak/http-timer-1.1.2" 80807 80924 sources."@types/minimist-1.2.1" 80808 80925 sources."@types/normalize-package-data-2.4.0" 80809 - sources."ajv-7.1.1" 80926 + sources."ajv-7.2.1" 80810 80927 sources."ajv-formats-1.5.1" 80811 80928 (sources."ansi-align-3.0.0" // { 80812 80929 dependencies = [ ··· 80916 81033 sources."is-interactive-1.0.0" 80917 81034 sources."is-npm-5.0.0" 80918 81035 sources."is-obj-2.0.0" 80919 - sources."is-path-inside-3.0.2" 81036 + sources."is-path-inside-3.0.3" 80920 81037 sources."is-plain-obj-1.1.0" 80921 81038 sources."is-stream-2.0.0" 80922 81039 sources."is-typedarray-1.0.0" ··· 81180 81297 sources."@nodelib/fs.walk-1.2.6" 81181 81298 sources."@sindresorhus/is-0.14.0" 81182 81299 sources."@szmarczak/http-timer-1.1.2" 81183 - sources."@types/node-14.14.31" 81300 + sources."@types/node-14.14.32" 81184 81301 sources."@types/parse-json-4.0.0" 81185 81302 sources."@types/websocket-1.0.1" 81186 81303 sources."aggregate-error-3.1.0" ··· 81317 81434 sources."get-stream-4.1.0" 81318 81435 sources."getpass-0.1.7" 81319 81436 sources."glob-7.1.6" 81320 - sources."glob-parent-5.1.1" 81437 + sources."glob-parent-5.1.2" 81321 81438 sources."globby-11.0.1" 81322 81439 (sources."got-9.6.0" // { 81323 81440 dependencies = [ ··· 83726 83843 sources."arch-2.2.0" 83727 83844 sources."balanced-match-1.0.0" 83728 83845 sources."brace-expansion-1.1.11" 83729 - sources."clipboard-2.0.6" 83846 + sources."clipboard-2.0.7" 83730 83847 sources."clipboardy-2.3.0" 83731 83848 sources."clone-1.0.4" 83732 83849 sources."concat-map-0.0.1" ··· 84071 84188 }) 84072 84189 sources."wrappy-1.0.2" 84073 84190 sources."write-file-atomic-3.0.3" 84074 - sources."ws-7.4.3" 84191 + sources."ws-7.4.4" 84075 84192 sources."xregexp-2.0.0" 84076 84193 sources."yallist-3.1.1" 84077 84194 ]; ··· 84727 84844 sources."getpass-0.1.7" 84728 84845 sources."github-from-package-0.0.0" 84729 84846 sources."glob-7.1.6" 84730 - sources."glob-parent-5.1.1" 84847 + sources."glob-parent-5.1.2" 84731 84848 sources."graceful-fs-4.2.6" 84732 84849 sources."graphlib-2.1.8" 84733 84850 sources."growly-1.3.0" ··· 85193 85310 ]; 85194 85311 }) 85195 85312 sources."wrappy-1.0.2" 85196 - sources."ws-7.4.3" 85313 + sources."ws-7.4.4" 85197 85314 sources."xml-name-validator-3.0.0" 85198 85315 sources."xml2js-0.4.23" 85199 85316 sources."xmlbuilder-11.0.1" ··· 85573 85690 sources."is-installed-globally-0.4.0" 85574 85691 sources."is-npm-5.0.0" 85575 85692 sources."is-obj-2.0.0" 85576 - sources."is-path-inside-3.0.2" 85693 + sources."is-path-inside-3.0.3" 85577 85694 sources."is-promise-2.2.2" 85578 85695 sources."is-typedarray-1.0.0" 85579 85696 sources."is-yarn-global-0.3.0" ··· 85751 85868 sources."@types/component-emitter-1.2.10" 85752 85869 sources."@types/cookie-0.4.0" 85753 85870 sources."@types/cors-2.8.10" 85754 - sources."@types/node-14.14.31" 85871 + sources."@types/node-14.14.32" 85755 85872 sources."accepts-1.3.7" 85756 85873 sources."ansi-regex-5.0.0" 85757 85874 sources."ansi-styles-4.3.0" ··· 85805 85922 sources."fsevents-2.3.2" 85806 85923 sources."get-caller-file-2.0.5" 85807 85924 sources."glob-7.1.6" 85808 - sources."glob-parent-5.1.1" 85925 + sources."glob-parent-5.1.2" 85809 85926 sources."graceful-fs-4.2.6" 85810 85927 sources."http-errors-1.7.2" 85811 85928 sources."http-proxy-1.18.1" ··· 85887 86004 sources."void-elements-2.0.1" 85888 86005 sources."wrap-ansi-7.0.0" 85889 86006 sources."wrappy-1.0.2" 85890 - sources."ws-7.4.3" 86007 + sources."ws-7.4.4" 85891 86008 sources."y18n-5.0.5" 85892 86009 sources."yargs-16.2.0" 85893 86010 sources."yargs-parser-20.2.6" ··· 86389 86506 }) 86390 86507 sources."@octokit/request-error-2.0.5" 86391 86508 sources."@octokit/rest-18.3.4" 86392 - sources."@octokit/types-6.12.0" 86509 + sources."@octokit/types-6.12.1" 86393 86510 sources."@tootallnate/once-1.1.2" 86394 86511 sources."@types/minimatch-3.0.3" 86395 86512 sources."@types/minimist-1.2.1" ··· 86605 86722 sources."git-url-parse-11.4.4" 86606 86723 sources."gitconfiglocal-1.0.0" 86607 86724 sources."glob-7.1.6" 86608 - sources."glob-parent-5.1.1" 86725 + sources."glob-parent-5.1.2" 86609 86726 sources."globby-11.0.2" 86610 86727 sources."graceful-fs-4.2.6" 86611 86728 sources."handlebars-4.7.7" ··· 87916 88033 sources."uuid-3.4.0" 87917 88034 sources."vary-1.1.2" 87918 88035 sources."verror-1.10.0" 87919 - sources."ws-7.4.3" 88036 + sources."ws-7.4.4" 87920 88037 sources."xmlhttprequest-ssl-1.5.5" 87921 88038 sources."yeast-0.1.2" 87922 88039 ]; ··· 88058 88175 sources."@types/istanbul-lib-report-3.0.0" 88059 88176 sources."@types/istanbul-reports-1.1.2" 88060 88177 sources."@types/json-schema-7.0.7" 88061 - sources."@types/node-14.14.31" 88178 + sources."@types/node-14.14.32" 88062 88179 sources."@types/normalize-package-data-2.4.0" 88063 88180 sources."@types/resolve-0.0.8" 88064 88181 sources."@types/yargs-15.0.13" ··· 88231 88348 sources."cached-path-relative-1.0.2" 88232 88349 sources."call-bind-1.0.2" 88233 88350 sources."camelcase-5.3.1" 88234 - sources."caniuse-lite-1.0.30001196" 88351 + sources."caniuse-lite-1.0.30001197" 88235 88352 sources."capture-exit-2.0.0" 88236 88353 sources."caseless-0.12.0" 88237 88354 (sources."chalk-3.0.0" // { ··· 88461 88578 sources."get-value-2.0.6" 88462 88579 sources."getpass-0.1.7" 88463 88580 sources."glob-7.1.6" 88464 - sources."glob-parent-5.1.1" 88581 + sources."glob-parent-5.1.2" 88465 88582 (sources."global-modules-2.0.0" // { 88466 88583 dependencies = [ 88467 88584 sources."global-prefix-3.0.0" ··· 89552 89669 }; 89553 89670 dependencies = [ 89554 89671 sources."@braintree/sanitize-url-3.1.0" 89555 - sources."@types/node-14.14.31" 89672 + sources."@types/node-14.14.32" 89556 89673 sources."@types/yauzl-2.9.1" 89557 89674 sources."agent-base-6.0.2" 89558 89675 sources."ansi-styles-4.3.0" ··· 89685 89802 sources."upper-case-1.1.3" 89686 89803 sources."util-deprecate-1.0.2" 89687 89804 sources."wrappy-1.0.2" 89688 - sources."ws-7.4.3" 89805 + sources."ws-7.4.4" 89689 89806 sources."yauzl-2.10.0" 89690 89807 ]; 89691 89808 buildInputs = globalBuildInputs; ··· 89973 90090 mocha = nodeEnv.buildNodePackage { 89974 90091 name = "mocha"; 89975 90092 packageName = "mocha"; 89976 - version = "8.3.0"; 90093 + version = "8.3.1"; 89977 90094 src = fetchurl { 89978 - url = "https://registry.npmjs.org/mocha/-/mocha-8.3.0.tgz"; 89979 - sha512 = "TQqyC89V1J/Vxx0DhJIXlq9gbbL9XFNdeLQ1+JsnZsVaSOV1z3tWfw0qZmQJGQRIfkvZcs7snQnZnOCKoldq1Q=="; 90095 + url = "https://registry.npmjs.org/mocha/-/mocha-8.3.1.tgz"; 90096 + sha512 = "5SBMxANWqOv5bw3Hx+HVgaWlcWcFEQDUdaUAr1AUU+qwtx6cowhn7gEDT/DwQP7uYxnvShdUOVLbTYAHOEGfDQ=="; 89980 90097 }; 89981 90098 dependencies = [ 89982 90099 sources."@ungap/promise-all-settled-1.1.2" ··· 90025 90142 sources."fsevents-2.3.2" 90026 90143 sources."get-caller-file-2.0.5" 90027 90144 sources."glob-7.1.6" 90028 - sources."glob-parent-5.1.1" 90145 + sources."glob-parent-5.1.2" 90029 90146 sources."growl-1.10.5" 90030 90147 sources."has-flag-4.0.0" 90031 90148 sources."he-1.2.0" ··· 90349 90466 sources."@dabh/diagnostics-2.0.2" 90350 90467 sources."@jest/types-24.9.0" 90351 90468 sources."@mrmlnc/readdir-enhanced-2.2.1" 90352 - (sources."@netlify/build-9.8.4" // { 90469 + (sources."@netlify/build-9.8.5" // { 90353 90470 dependencies = [ 90354 90471 sources."ansi-styles-4.3.0" 90355 90472 sources."chalk-3.0.0" ··· 90396 90513 sources."dir-glob-3.0.1" 90397 90514 sources."fast-glob-3.2.5" 90398 90515 sources."fill-range-7.0.1" 90399 - sources."glob-parent-5.1.1" 90516 + sources."glob-parent-5.1.2" 90400 90517 sources."globby-11.0.2" 90401 90518 sources."ignore-5.1.8" 90402 90519 sources."is-number-7.0.0" ··· 90473 90590 sources."dir-glob-3.0.1" 90474 90591 sources."fast-glob-3.2.5" 90475 90592 sources."fill-range-7.0.1" 90476 - sources."glob-parent-5.1.1" 90593 + sources."glob-parent-5.1.2" 90477 90594 sources."globby-11.0.2" 90478 90595 sources."ignore-5.1.8" 90479 90596 sources."is-number-7.0.0" ··· 90575 90692 ]; 90576 90693 }) 90577 90694 sources."@octokit/rest-16.43.2" 90578 - sources."@octokit/types-6.12.0" 90695 + sources."@octokit/types-6.12.1" 90579 90696 sources."@rollup/plugin-babel-5.3.0" 90580 90697 (sources."@rollup/plugin-commonjs-17.1.0" // { 90581 90698 dependencies = [ ··· 90611 90728 sources."@types/istanbul-reports-1.1.2" 90612 90729 sources."@types/minimatch-3.0.3" 90613 90730 sources."@types/mkdirp-0.5.2" 90614 - sources."@types/node-14.14.31" 90731 + sources."@types/node-14.14.32" 90615 90732 sources."@types/node-fetch-2.5.8" 90616 90733 sources."@types/normalize-package-data-2.4.0" 90617 90734 sources."@types/parse5-5.0.3" ··· 90625 90742 sources."accepts-1.3.7" 90626 90743 sources."agent-base-6.0.2" 90627 90744 sources."aggregate-error-3.1.0" 90628 - sources."ajv-7.1.1" 90745 + sources."ajv-7.2.1" 90629 90746 (sources."ansi-align-3.0.0" // { 90630 90747 dependencies = [ 90631 90748 sources."emoji-regex-7.0.3" ··· 90738 90855 sources."call-bind-1.0.2" 90739 90856 sources."call-me-maybe-1.0.1" 90740 90857 sources."camelcase-5.3.1" 90741 - sources."caniuse-lite-1.0.30001196" 90858 + sources."caniuse-lite-1.0.30001197" 90742 90859 sources."cardinal-2.1.1" 90743 90860 sources."caw-2.0.1" 90744 90861 sources."ccount-1.1.0" ··· 90758 90875 dependencies = [ 90759 90876 sources."braces-3.0.2" 90760 90877 sources."fill-range-7.0.1" 90761 - sources."glob-parent-5.1.1" 90878 + sources."glob-parent-5.1.2" 90762 90879 sources."is-number-7.0.0" 90763 90880 sources."to-regex-range-5.0.1" 90764 90881 ]; ··· 91006 91123 sources."envinfo-7.7.4" 91007 91124 sources."error-ex-1.3.2" 91008 91125 sources."error-stack-parser-2.0.6" 91009 - sources."esbuild-0.8.56" 91126 + sources."esbuild-0.8.57" 91010 91127 sources."escalade-3.1.1" 91011 91128 sources."escape-goat-2.1.1" 91012 91129 sources."escape-html-1.0.3" ··· 91168 91285 sources."dir-glob-3.0.1" 91169 91286 sources."fast-glob-3.2.5" 91170 91287 sources."fill-range-7.0.1" 91171 - sources."glob-parent-5.1.1" 91288 + sources."glob-parent-5.1.2" 91172 91289 sources."ignore-5.1.8" 91173 91290 sources."is-number-7.0.0" 91174 91291 sources."micromatch-4.0.2" ··· 91312 91429 sources."is-object-1.0.2" 91313 91430 sources."is-observable-1.1.0" 91314 91431 sources."is-path-cwd-2.2.0" 91315 - sources."is-path-inside-3.0.2" 91432 + sources."is-path-inside-3.0.3" 91316 91433 sources."is-plain-obj-2.1.0" 91317 91434 sources."is-plain-object-2.0.4" 91318 91435 sources."is-promise-2.2.2" ··· 91965 92082 sources."triple-beam-1.3.0" 91966 92083 sources."trough-1.0.5" 91967 92084 sources."tslib-1.14.1" 91968 - sources."tsutils-3.20.0" 92085 + sources."tsutils-3.21.0" 91969 92086 sources."tunnel-agent-0.6.0" 91970 92087 sources."type-check-0.3.2" 91971 92088 sources."type-fest-0.8.1" ··· 91986 92103 sources."union-value-1.0.1" 91987 92104 sources."uniq-1.0.1" 91988 92105 sources."unique-string-2.0.0" 91989 - sources."unist-util-is-4.0.4" 92106 + sources."unist-util-is-4.1.0" 91990 92107 sources."unist-util-stringify-position-2.0.3" 91991 92108 sources."unist-util-visit-2.0.3" 91992 92109 sources."unist-util-visit-parents-3.1.1" ··· 92936 93053 sources."ms-2.1.2" 92937 93054 sources."readable-stream-3.6.0" 92938 93055 sources."string_decoder-1.3.0" 92939 - sources."ws-7.4.3" 93056 + sources."ws-7.4.4" 92940 93057 ]; 92941 93058 }) 92942 93059 (sources."mqtt-packet-6.9.0" // { ··· 93380 93497 sources."fill-range-7.0.1" 93381 93498 sources."fsevents-2.3.2" 93382 93499 sources."get-stream-4.1.0" 93383 - sources."glob-parent-5.1.1" 93500 + sources."glob-parent-5.1.2" 93384 93501 sources."global-dirs-2.1.0" 93385 93502 sources."got-9.6.0" 93386 93503 sources."graceful-fs-4.2.6" ··· 93400 93517 sources."is-npm-4.0.0" 93401 93518 sources."is-number-7.0.0" 93402 93519 sources."is-obj-2.0.0" 93403 - sources."is-path-inside-3.0.2" 93520 + sources."is-path-inside-3.0.3" 93404 93521 sources."is-typedarray-1.0.0" 93405 93522 sources."is-yarn-global-0.3.0" 93406 93523 sources."json-buffer-3.0.0" ··· 93520 93637 sources."@types/http-cache-semantics-4.0.0" 93521 93638 sources."@types/keyv-3.1.1" 93522 93639 sources."@types/minimist-1.2.1" 93523 - sources."@types/node-14.14.31" 93640 + sources."@types/node-14.14.32" 93524 93641 sources."@types/normalize-package-data-2.4.0" 93525 93642 sources."@types/parse-json-4.0.0" 93526 93643 sources."@types/responselike-1.0.0" ··· 93629 93746 sources."get-stream-6.0.0" 93630 93747 sources."github-url-from-git-1.5.0" 93631 93748 sources."glob-7.1.6" 93632 - sources."glob-parent-5.1.1" 93749 + sources."glob-parent-5.1.2" 93633 93750 sources."global-dirs-2.1.0" 93634 93751 sources."globby-11.0.2" 93635 93752 (sources."got-10.7.0" // { ··· 93716 93833 ]; 93717 93834 }) 93718 93835 sources."is-path-cwd-2.2.0" 93719 - sources."is-path-inside-3.0.2" 93836 + sources."is-path-inside-3.0.3" 93720 93837 sources."is-plain-obj-1.1.0" 93721 93838 sources."is-promise-2.2.2" 93722 93839 sources."is-scoped-2.1.0" ··· 94036 94153 npm-check-updates = nodeEnv.buildNodePackage { 94037 94154 name = "npm-check-updates"; 94038 94155 packageName = "npm-check-updates"; 94039 - version = "11.1.10"; 94156 + version = "11.2.0"; 94040 94157 src = fetchurl { 94041 - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.1.10.tgz"; 94042 - sha512 = "T8o/3ls74Q8i3LbO9jjxI1YWA9ioJjjAnYt9BezbFn/D99STc+7pe633H0gLmNi4/5b1Xi3nlbI6UCbc6eb/pQ=="; 94158 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.2.0.tgz"; 94159 + sha512 = "JCQHyn3/kxaWHbxefb8JKNZTZgFySnGcPZQbhx33rZEW55VoCjS3/GRNCN5ITIIR/aHNobDtwM1MX7MF31jC2A=="; 94043 94160 }; 94044 94161 dependencies = [ 94045 94162 sources."@nodelib/fs.scandir-2.1.4" ··· 94158 94275 sources."get-stream-4.1.0" 94159 94276 sources."getpass-0.1.7" 94160 94277 sources."glob-7.1.6" 94161 - sources."glob-parent-5.1.1" 94278 + sources."glob-parent-5.1.2" 94162 94279 (sources."global-dirs-3.0.0" // { 94163 94280 dependencies = [ 94164 94281 sources."ini-2.0.0" ··· 94198 94315 sources."is-npm-5.0.0" 94199 94316 sources."is-number-7.0.0" 94200 94317 sources."is-obj-2.0.0" 94201 - sources."is-path-inside-3.0.2" 94318 + sources."is-path-inside-3.0.3" 94202 94319 sources."is-typedarray-1.0.0" 94203 94320 sources."is-yarn-global-0.3.0" 94204 94321 sources."isarray-1.0.0" ··· 94861 94978 sources."caller-path-2.0.0" 94862 94979 sources."callsites-2.0.0" 94863 94980 sources."caniuse-api-3.0.0" 94864 - sources."caniuse-lite-1.0.30001196" 94981 + sources."caniuse-lite-1.0.30001197" 94865 94982 sources."caseless-0.12.0" 94866 94983 sources."chalk-2.4.2" 94867 94984 sources."chokidar-2.1.8" ··· 95898 96015 patch-package = nodeEnv.buildNodePackage { 95899 96016 name = "patch-package"; 95900 96017 packageName = "patch-package"; 95901 - version = "6.4.5"; 96018 + version = "6.4.6"; 95902 96019 src = fetchurl { 95903 - url = "https://registry.npmjs.org/patch-package/-/patch-package-6.4.5.tgz"; 95904 - sha512 = "iZl3nNUEQ3cdoY1U4Gj7p9aIGgn27aD3Z32TEh+13remRlkEzbc1+CdjFvy/zT/JK2EtY4ERwoiHKQU9B0PEvw=="; 96020 + url = "https://registry.npmjs.org/patch-package/-/patch-package-6.4.6.tgz"; 96021 + sha512 = "AO2bh42z8AQL+0OUdcRpS5Z/0X8k9IQ1uc1HzlVye+2RQrtDeNgTk5SbS4rdbLJKtUWRpvPISrYZeyh+OK4AKw=="; 95905 96022 }; 95906 96023 dependencies = [ 95907 96024 sources."@yarnpkg/lockfile-1.1.0" 95908 96025 sources."ansi-styles-3.2.1" 95909 - sources."arr-diff-4.0.0" 95910 - sources."arr-flatten-1.1.0" 95911 - sources."arr-union-3.1.0" 95912 - sources."array-unique-0.3.2" 95913 - sources."assign-symbols-1.0.0" 95914 - sources."atob-2.1.2" 95915 96026 sources."balanced-match-1.0.0" 95916 - (sources."base-0.11.2" // { 95917 - dependencies = [ 95918 - sources."define-property-1.0.0" 95919 - ]; 95920 - }) 95921 96027 sources."brace-expansion-1.1.11" 95922 - (sources."braces-2.3.2" // { 95923 - dependencies = [ 95924 - sources."extend-shallow-2.0.1" 95925 - ]; 95926 - }) 95927 - sources."cache-base-1.0.1" 96028 + sources."braces-3.0.2" 95928 96029 sources."chalk-2.4.2" 95929 96030 sources."ci-info-2.0.0" 95930 - (sources."class-utils-0.3.6" // { 95931 - dependencies = [ 95932 - sources."define-property-0.2.5" 95933 - (sources."is-accessor-descriptor-0.1.6" // { 95934 - dependencies = [ 95935 - sources."kind-of-3.2.2" 95936 - ]; 95937 - }) 95938 - (sources."is-data-descriptor-0.1.4" // { 95939 - dependencies = [ 95940 - sources."kind-of-3.2.2" 95941 - ]; 95942 - }) 95943 - sources."is-descriptor-0.1.6" 95944 - sources."kind-of-5.1.0" 95945 - ]; 95946 - }) 95947 - sources."collection-visit-1.0.0" 95948 96031 sources."color-convert-1.9.3" 95949 96032 sources."color-name-1.1.3" 95950 - sources."component-emitter-1.3.0" 95951 96033 sources."concat-map-0.0.1" 95952 - sources."copy-descriptor-0.1.1" 95953 96034 sources."cross-spawn-6.0.5" 95954 - sources."debug-2.6.9" 95955 - sources."decode-uri-component-0.2.0" 95956 - sources."define-property-2.0.2" 95957 96035 sources."escape-string-regexp-1.0.5" 95958 - (sources."expand-brackets-2.1.4" // { 95959 - dependencies = [ 95960 - sources."define-property-0.2.5" 95961 - sources."extend-shallow-2.0.1" 95962 - (sources."is-accessor-descriptor-0.1.6" // { 95963 - dependencies = [ 95964 - sources."kind-of-3.2.2" 95965 - ]; 95966 - }) 95967 - (sources."is-data-descriptor-0.1.4" // { 95968 - dependencies = [ 95969 - sources."kind-of-3.2.2" 95970 - ]; 95971 - }) 95972 - sources."is-descriptor-0.1.6" 95973 - sources."kind-of-5.1.0" 95974 - ]; 95975 - }) 95976 - (sources."extend-shallow-3.0.2" // { 95977 - dependencies = [ 95978 - sources."is-extendable-1.0.1" 95979 - ]; 95980 - }) 95981 - (sources."extglob-2.0.4" // { 95982 - dependencies = [ 95983 - sources."define-property-1.0.0" 95984 - sources."extend-shallow-2.0.1" 95985 - ]; 95986 - }) 95987 - (sources."fill-range-4.0.0" // { 95988 - dependencies = [ 95989 - sources."extend-shallow-2.0.1" 95990 - ]; 95991 - }) 95992 - (sources."find-yarn-workspace-root-1.2.1" // { 95993 - dependencies = [ 95994 - sources."fs-extra-4.0.3" 95995 - ]; 95996 - }) 95997 - sources."for-in-1.0.2" 95998 - sources."fragment-cache-0.2.1" 96036 + sources."fill-range-7.0.1" 96037 + sources."find-yarn-workspace-root-2.0.0" 95999 96038 sources."fs-extra-7.0.1" 96000 96039 sources."fs.realpath-1.0.0" 96001 - sources."get-value-2.0.6" 96002 96040 sources."glob-7.1.6" 96003 96041 sources."graceful-fs-4.2.6" 96004 96042 sources."has-flag-3.0.0" 96005 - sources."has-value-1.0.0" 96006 - (sources."has-values-1.0.0" // { 96007 - dependencies = [ 96008 - sources."kind-of-4.0.0" 96009 - ]; 96010 - }) 96011 96043 sources."inflight-1.0.6" 96012 96044 sources."inherits-2.0.4" 96013 - sources."is-accessor-descriptor-1.0.0" 96014 - sources."is-buffer-1.1.6" 96015 96045 sources."is-ci-2.0.0" 96016 - sources."is-data-descriptor-1.0.0" 96017 - sources."is-descriptor-1.0.2" 96018 96046 sources."is-docker-2.1.1" 96019 - sources."is-extendable-0.1.1" 96020 - (sources."is-number-3.0.0" // { 96021 - dependencies = [ 96022 - sources."kind-of-3.2.2" 96023 - ]; 96024 - }) 96025 - sources."is-plain-object-2.0.4" 96026 - sources."is-windows-1.0.2" 96047 + sources."is-number-7.0.0" 96027 96048 sources."is-wsl-2.2.0" 96028 - sources."isarray-1.0.0" 96029 96049 sources."isexe-2.0.0" 96030 - sources."isobject-3.0.1" 96031 96050 sources."jsonfile-4.0.0" 96032 - sources."kind-of-6.0.3" 96033 96051 sources."klaw-sync-6.0.0" 96034 - sources."map-cache-0.2.2" 96035 - sources."map-visit-1.0.0" 96036 - sources."micromatch-3.1.10" 96052 + sources."micromatch-4.0.2" 96037 96053 sources."minimatch-3.0.4" 96038 96054 sources."minimist-1.2.5" 96039 - (sources."mixin-deep-1.3.2" // { 96040 - dependencies = [ 96041 - sources."is-extendable-1.0.1" 96042 - ]; 96043 - }) 96044 - sources."ms-2.0.0" 96045 - sources."nanomatch-1.2.13" 96046 96055 sources."nice-try-1.0.5" 96047 - (sources."object-copy-0.1.0" // { 96048 - dependencies = [ 96049 - sources."define-property-0.2.5" 96050 - sources."is-accessor-descriptor-0.1.6" 96051 - sources."is-data-descriptor-0.1.4" 96052 - (sources."is-descriptor-0.1.6" // { 96053 - dependencies = [ 96054 - sources."kind-of-5.1.0" 96055 - ]; 96056 - }) 96057 - sources."kind-of-3.2.2" 96058 - ]; 96059 - }) 96060 - sources."object-visit-1.0.1" 96061 - sources."object.pick-1.3.0" 96062 96056 sources."once-1.4.0" 96063 96057 sources."open-7.4.2" 96064 96058 sources."os-tmpdir-1.0.2" 96065 - sources."pascalcase-0.1.1" 96066 96059 sources."path-is-absolute-1.0.1" 96067 96060 sources."path-key-2.0.1" 96068 - sources."posix-character-classes-0.1.1" 96069 - sources."regex-not-1.0.2" 96070 - sources."repeat-element-1.1.3" 96071 - sources."repeat-string-1.6.1" 96072 - sources."resolve-url-0.2.1" 96073 - sources."ret-0.1.15" 96061 + sources."picomatch-2.2.2" 96074 96062 sources."rimraf-2.7.1" 96075 - sources."safe-regex-1.1.0" 96076 96063 sources."semver-5.7.1" 96077 - (sources."set-value-2.0.1" // { 96078 - dependencies = [ 96079 - sources."extend-shallow-2.0.1" 96080 - ]; 96081 - }) 96082 96064 sources."shebang-command-1.2.0" 96083 96065 sources."shebang-regex-1.0.0" 96084 96066 sources."slash-2.0.0" 96085 - (sources."snapdragon-0.8.2" // { 96086 - dependencies = [ 96087 - sources."define-property-0.2.5" 96088 - sources."extend-shallow-2.0.1" 96089 - (sources."is-accessor-descriptor-0.1.6" // { 96090 - dependencies = [ 96091 - sources."kind-of-3.2.2" 96092 - ]; 96093 - }) 96094 - (sources."is-data-descriptor-0.1.4" // { 96095 - dependencies = [ 96096 - sources."kind-of-3.2.2" 96097 - ]; 96098 - }) 96099 - sources."is-descriptor-0.1.6" 96100 - sources."kind-of-5.1.0" 96101 - ]; 96102 - }) 96103 - (sources."snapdragon-node-2.1.1" // { 96104 - dependencies = [ 96105 - sources."define-property-1.0.0" 96106 - ]; 96107 - }) 96108 - (sources."snapdragon-util-3.0.1" // { 96109 - dependencies = [ 96110 - sources."kind-of-3.2.2" 96111 - ]; 96112 - }) 96113 - sources."source-map-0.5.7" 96114 - sources."source-map-resolve-0.5.3" 96115 - sources."source-map-url-0.4.1" 96116 - sources."split-string-3.1.0" 96117 - (sources."static-extend-0.1.2" // { 96118 - dependencies = [ 96119 - sources."define-property-0.2.5" 96120 - (sources."is-accessor-descriptor-0.1.6" // { 96121 - dependencies = [ 96122 - sources."kind-of-3.2.2" 96123 - ]; 96124 - }) 96125 - (sources."is-data-descriptor-0.1.4" // { 96126 - dependencies = [ 96127 - sources."kind-of-3.2.2" 96128 - ]; 96129 - }) 96130 - sources."is-descriptor-0.1.6" 96131 - sources."kind-of-5.1.0" 96132 - ]; 96133 - }) 96134 96067 sources."supports-color-5.5.0" 96135 96068 sources."tmp-0.0.33" 96136 - (sources."to-object-path-0.3.0" // { 96137 - dependencies = [ 96138 - sources."kind-of-3.2.2" 96139 - ]; 96140 - }) 96141 - sources."to-regex-3.0.2" 96142 - sources."to-regex-range-2.1.1" 96143 - sources."union-value-1.0.1" 96069 + sources."to-regex-range-5.0.1" 96144 96070 sources."universalify-0.1.2" 96145 - (sources."unset-value-1.0.0" // { 96146 - dependencies = [ 96147 - (sources."has-value-0.3.1" // { 96148 - dependencies = [ 96149 - sources."isobject-2.1.0" 96150 - ]; 96151 - }) 96152 - sources."has-values-0.1.4" 96153 - ]; 96154 - }) 96155 - sources."urix-0.1.0" 96156 - sources."use-3.1.1" 96157 96071 sources."which-1.3.1" 96158 96072 sources."wrappy-1.0.2" 96159 96073 ]; ··· 96832 96746 sources."verror-1.10.0" 96833 96747 sources."which-1.3.1" 96834 96748 sources."wrappy-1.0.2" 96835 - sources."ws-7.4.3" 96749 + sources."ws-7.4.4" 96836 96750 sources."xmlhttprequest-ssl-1.5.5" 96837 96751 sources."xtend-4.0.2" 96838 96752 sources."yeast-0.1.2" ··· 96995 96909 sources."git-node-fs-1.0.0" 96996 96910 sources."git-sha1-0.1.2" 96997 96911 sources."glob-7.1.6" 96998 - sources."glob-parent-5.1.1" 96912 + sources."glob-parent-5.1.2" 96999 96913 sources."has-1.0.3" 97000 96914 sources."has-flag-4.0.0" 97001 96915 sources."http-errors-1.7.3" ··· 97240 97154 sources."fsevents-2.3.2" 97241 97155 sources."get-caller-file-2.0.5" 97242 97156 sources."get-stdin-8.0.0" 97243 - sources."glob-parent-5.1.1" 97157 + sources."glob-parent-5.1.2" 97244 97158 sources."globby-11.0.2" 97245 97159 sources."graceful-fs-4.2.6" 97246 97160 sources."has-flag-4.0.0" ··· 98105 98019 sources."@gardenapple/yargs-17.0.0-candidate.0" 98106 98020 sources."@mozilla/readability-0.4.1" 98107 98021 sources."abab-2.0.5" 98108 - sources."acorn-7.4.1" 98109 - sources."acorn-globals-6.0.0" 98022 + sources."acorn-8.0.5" 98023 + (sources."acorn-globals-6.0.0" // { 98024 + dependencies = [ 98025 + sources."acorn-7.4.1" 98026 + ]; 98027 + }) 98110 98028 sources."acorn-walk-7.2.0" 98111 98029 sources."ajv-6.12.6" 98112 98030 sources."ansi-regex-5.0.0" ··· 98144 98062 sources."ecc-jsbn-0.1.2" 98145 98063 sources."emoji-regex-8.0.0" 98146 98064 sources."escalade-3.1.1" 98147 - sources."escodegen-1.14.3" 98065 + sources."escodegen-2.0.0" 98148 98066 sources."esprima-4.0.1" 98149 - sources."estraverse-4.3.0" 98067 + sources."estraverse-5.2.0" 98150 98068 sources."esutils-2.0.3" 98151 98069 sources."extend-3.0.2" 98152 98070 sources."extsprintf-1.3.0" ··· 98162 98080 sources."html-encoding-sniffer-2.0.1" 98163 98081 sources."http-signature-1.2.0" 98164 98082 sources."iconv-lite-0.4.24" 98165 - sources."ip-regex-2.1.0" 98166 98083 sources."is-fullwidth-code-point-3.0.0" 98167 98084 sources."is-potential-custom-element-name-1.0.0" 98168 98085 sources."is-typedarray-1.0.0" 98169 98086 sources."isstream-0.1.2" 98170 98087 sources."jsbn-0.1.1" 98171 - sources."jsdom-16.4.0" 98088 + sources."jsdom-16.5.0" 98172 98089 sources."json-schema-0.2.3" 98173 98090 sources."json-schema-traverse-0.4.1" 98174 98091 sources."json-stringify-safe-5.0.1" ··· 98181 98098 sources."nwsapi-2.2.0" 98182 98099 sources."oauth-sign-0.9.0" 98183 98100 sources."optionator-0.8.3" 98184 - sources."parse5-5.1.1" 98101 + sources."parse5-6.0.1" 98185 98102 sources."performance-now-2.1.0" 98186 98103 sources."prelude-ls-1.1.2" 98187 98104 sources."psl-1.8.0" ··· 98208 98125 sources."string-width-4.2.2" 98209 98126 sources."strip-ansi-6.0.0" 98210 98127 sources."symbol-tree-3.2.4" 98211 - sources."tough-cookie-3.0.1" 98128 + sources."tough-cookie-4.0.0" 98212 98129 sources."tr46-2.0.2" 98213 98130 sources."tunnel-agent-0.6.0" 98214 98131 sources."tweetnacl-0.14.5" 98215 98132 sources."type-check-0.3.2" 98133 + sources."universalify-0.1.2" 98216 98134 sources."uri-js-4.4.1" 98217 98135 sources."uuid-3.4.0" 98218 98136 sources."verror-1.10.0" ··· 98224 98142 sources."whatwg-url-8.4.0" 98225 98143 sources."word-wrap-1.2.3" 98226 98144 sources."wrap-ansi-7.0.0" 98227 - sources."ws-7.4.3" 98145 + sources."ws-7.4.4" 98228 98146 sources."xml-name-validator-3.0.0" 98229 98147 sources."xmlchars-2.2.0" 98230 98148 sources."y18n-5.0.5" ··· 98322 98240 sources."chokidar-3.5.1" 98323 98241 sources."cipher-base-1.0.4" 98324 98242 sources."classnames-2.2.6" 98325 - sources."clipboard-2.0.6" 98243 + sources."clipboard-2.0.7" 98326 98244 sources."cliui-7.0.4" 98327 98245 sources."clsx-1.1.1" 98328 98246 sources."co-4.6.0" ··· 98378 98296 sources."format-util-1.0.5" 98379 98297 sources."fsevents-2.3.2" 98380 98298 sources."get-caller-file-2.0.5" 98381 - sources."glob-parent-5.1.1" 98299 + sources."glob-parent-5.1.2" 98382 98300 sources."globals-11.12.0" 98383 98301 sources."good-listener-1.2.2" 98384 98302 sources."grapheme-splitter-1.0.4" ··· 98832 98750 sources."functional-red-black-tree-1.0.1" 98833 98751 sources."get-caller-file-2.0.5" 98834 98752 sources."glob-7.1.6" 98835 - sources."glob-parent-5.1.1" 98753 + sources."glob-parent-5.1.2" 98836 98754 sources."globals-12.4.0" 98837 98755 sources."globby-11.0.2" 98838 98756 sources."graceful-fs-4.2.6" ··· 98840 98758 sources."has-1.0.3" 98841 98759 sources."has-flag-3.0.0" 98842 98760 sources."he-1.2.0" 98843 - sources."htmlparser2-6.0.0" 98761 + sources."htmlparser2-6.0.1" 98844 98762 sources."http-proxy-agent-4.0.1" 98845 98763 sources."https-proxy-agent-5.0.0" 98846 98764 sources."ignore-5.1.8" ··· 98886 98804 sources."minimatch-3.0.4" 98887 98805 sources."minimist-1.2.5" 98888 98806 sources."mkdirp-0.5.5" 98889 - (sources."mocha-8.3.0" // { 98807 + (sources."mocha-8.3.1" // { 98890 98808 dependencies = [ 98891 98809 sources."argparse-2.0.1" 98892 98810 (sources."debug-4.3.1" // { ··· 98982 98900 sources."supports-color-5.5.0" 98983 98901 (sources."table-6.0.7" // { 98984 98902 dependencies = [ 98985 - sources."ajv-7.1.1" 98903 + sources."ajv-7.2.1" 98986 98904 sources."json-schema-traverse-1.0.0" 98987 98905 ]; 98988 98906 }) ··· 98991 98909 sources."to-regex-range-5.0.1" 98992 98910 sources."traverse-0.3.9" 98993 98911 sources."tslib-2.1.0" 98994 - (sources."tsutils-3.20.0" // { 98912 + (sources."tsutils-3.21.0" // { 98995 98913 dependencies = [ 98996 98914 sources."tslib-1.14.1" 98997 98915 ]; ··· 99203 99121 sources."chokidar-3.5.1" 99204 99122 sources."fill-range-7.0.1" 99205 99123 sources."fsevents-2.3.2" 99206 - sources."glob-parent-5.1.1" 99124 + sources."glob-parent-5.1.2" 99207 99125 sources."is-binary-path-2.1.0" 99208 99126 sources."is-extglob-2.1.1" 99209 99127 sources."is-glob-4.0.1" ··· 99418 99336 }) 99419 99337 (sources."@serverless/platform-client-china-2.1.7" // { 99420 99338 dependencies = [ 99421 - sources."adm-zip-0.5.3" 99339 + sources."adm-zip-0.5.4" 99422 99340 sources."js-yaml-3.14.1" 99423 99341 ]; 99424 99342 }) ··· 99451 99369 sources."@types/keyv-3.1.1" 99452 99370 sources."@types/lodash-4.14.168" 99453 99371 sources."@types/long-4.0.1" 99454 - sources."@types/node-14.14.31" 99372 + sources."@types/node-14.14.32" 99455 99373 sources."@types/request-2.48.5" 99456 99374 sources."@types/request-promise-native-1.0.17" 99457 99375 sources."@types/responselike-1.0.0" ··· 99478 99396 sources."file-type-4.4.0" 99479 99397 ]; 99480 99398 }) 99481 - (sources."archiver-5.2.0" // { 99399 + (sources."archiver-5.3.0" // { 99482 99400 dependencies = [ 99483 99401 sources."async-3.2.0" 99484 99402 sources."bl-4.1.0" ··· 99780 99698 sources."getpass-0.1.7" 99781 99699 sources."github-from-package-0.0.0" 99782 99700 sources."glob-7.1.6" 99783 - sources."glob-parent-5.1.1" 99701 + sources."glob-parent-5.1.2" 99784 99702 sources."globby-11.0.2" 99785 99703 (sources."got-11.8.2" // { 99786 99704 dependencies = [ ··· 100074 99992 sources."signal-exit-3.0.3" 100075 99993 sources."simple-concat-1.0.1" 100076 99994 sources."simple-get-2.8.1" 100077 - (sources."simple-git-2.36.0" // { 99995 + (sources."simple-git-2.36.1" // { 100078 99996 dependencies = [ 100079 99997 sources."debug-4.3.2" 100080 99998 sources."ms-2.1.2" ··· 100236 100154 }) 100237 100155 sources."wrappy-1.0.2" 100238 100156 sources."write-file-atomic-2.4.3" 100239 - sources."ws-7.4.3" 100157 + sources."ws-7.4.4" 100240 100158 sources."xml2js-0.4.19" 100241 100159 sources."xmlbuilder-9.0.7" 100242 100160 sources."xmlhttprequest-ssl-1.5.5" ··· 100886 100804 snyk = nodeEnv.buildNodePackage { 100887 100805 name = "snyk"; 100888 100806 packageName = "snyk"; 100889 - version = "1.473.0"; 100807 + version = "1.476.0"; 100890 100808 src = fetchurl { 100891 - url = "https://registry.npmjs.org/snyk/-/snyk-1.473.0.tgz"; 100892 - sha512 = "UJuevb0qgRda13uhGKttzbKmK8f9GALG30LYsVDrvcx4i9NuWjPE8QuRGz1pQYze6UPVvIPSidyhBLNlOU446w=="; 100809 + url = "https://registry.npmjs.org/snyk/-/snyk-1.476.0.tgz"; 100810 + sha512 = "GLOZC1EQ9mcA38WF+6a6z4rZtvHTGUiokXYp66DVf70OoNDPwM00nL3AwWtFc39bLb04TSl8INgL87LIXiYLUg=="; 100893 100811 }; 100894 100812 dependencies = [ 100813 + sources."@deepcode/dcignore-1.0.2" 100814 + sources."@nodelib/fs.scandir-2.1.4" 100815 + sources."@nodelib/fs.stat-2.0.4" 100816 + sources."@nodelib/fs.walk-1.2.6" 100895 100817 sources."@octetstream/promisify-2.0.2" 100896 100818 sources."@open-policy-agent/opa-wasm-1.2.0" 100897 100819 sources."@sindresorhus/is-2.1.1" 100898 100820 sources."@snyk/cli-interface-2.11.0" 100899 100821 sources."@snyk/cocoapods-lockfile-parser-3.6.2" 100822 + (sources."@snyk/code-client-3.1.4" // { 100823 + dependencies = [ 100824 + sources."uuid-8.3.2" 100825 + ]; 100826 + }) 100900 100827 sources."@snyk/composer-lockfile-parser-1.4.1" 100901 100828 sources."@snyk/dep-graph-1.23.1" 100902 100829 sources."@snyk/docker-registry-v2-client-1.13.9" 100830 + sources."@snyk/fast-glob-3.2.6-patch" 100903 100831 sources."@snyk/gemfile-1.2.0" 100832 + sources."@snyk/glob-parent-5.1.2-patch.1" 100904 100833 sources."@snyk/graphlib-2.1.9-patch.3" 100905 100834 (sources."@snyk/inquirer-7.3.3-patch" // { 100906 100835 dependencies = [ ··· 100927 100856 ]; 100928 100857 }) 100929 100858 sources."@szmarczak/http-timer-4.0.5" 100859 + sources."@types/braces-3.0.0" 100930 100860 sources."@types/cacheable-request-6.0.1" 100931 100861 sources."@types/debug-4.1.5" 100862 + sources."@types/flat-cache-2.0.0" 100932 100863 sources."@types/graphlib-2.1.7" 100933 100864 sources."@types/http-cache-semantics-4.0.0" 100934 100865 sources."@types/js-yaml-3.12.6" 100935 100866 sources."@types/keyv-3.1.1" 100936 - sources."@types/node-14.14.31" 100867 + sources."@types/lodash-4.14.168" 100868 + sources."@types/lodash.chunk-4.2.6" 100869 + sources."@types/lodash.omit-4.5.6" 100870 + sources."@types/lodash.union-4.6.6" 100871 + sources."@types/micromatch-4.0.1" 100872 + sources."@types/node-14.14.32" 100937 100873 sources."@types/responselike-1.0.0" 100874 + sources."@types/sarif-2.1.3" 100875 + sources."@types/uuid-8.3.0" 100938 100876 sources."@yarnpkg/lockfile-1.1.0" 100939 100877 sources."abbrev-1.1.1" 100940 100878 sources."agent-base-4.3.0" ··· 100963 100901 ]; 100964 100902 }) 100965 100903 sources."async-3.2.0" 100904 + sources."axios-0.21.1" 100966 100905 sources."balanced-match-1.0.0" 100967 100906 sources."base64-js-1.5.1" 100968 100907 sources."bcrypt-pbkdf-1.0.2" ··· 101072 101011 sources."extend-3.0.2" 101073 101012 sources."external-editor-3.1.0" 101074 101013 sources."fast-levenshtein-2.0.6" 101014 + sources."fastq-1.11.0" 101075 101015 sources."figures-3.2.0" 101076 101016 sources."file-uri-to-path-1.0.0" 101077 101017 sources."fill-range-7.0.1" 101018 + sources."follow-redirects-1.13.3" 101078 101019 sources."fs-constants-1.0.0" 101079 101020 sources."fs.realpath-1.0.0" 101080 101021 (sources."ftp-0.3.10" // { ··· 101123 101064 }) 101124 101065 sources."iconv-lite-0.4.24" 101125 101066 sources."ieee754-1.2.1" 101067 + sources."ignore-5.1.8" 101126 101068 sources."immediate-3.0.6" 101127 101069 sources."import-lazy-2.1.0" 101128 101070 sources."imurmurhash-0.1.4" ··· 101133 101075 sources."is-ci-2.0.0" 101134 101076 sources."is-deflate-1.0.0" 101135 101077 sources."is-docker-2.1.1" 101078 + sources."is-extglob-2.1.1" 101136 101079 sources."is-fullwidth-code-point-3.0.0" 101080 + sources."is-glob-4.0.1" 101137 101081 sources."is-gzip-1.0.0" 101138 101082 sources."is-installed-globally-0.3.2" 101139 101083 sources."is-npm-4.0.0" 101140 101084 sources."is-number-7.0.0" 101141 101085 sources."is-obj-2.0.0" 101142 - sources."is-path-inside-3.0.2" 101086 + sources."is-path-inside-3.0.3" 101143 101087 sources."is-stream-1.1.0" 101144 101088 sources."is-typedarray-1.0.0" 101145 101089 sources."is-wsl-2.2.0" ··· 101160 101104 sources."lodash.assign-4.2.0" 101161 101105 sources."lodash.assignin-4.2.0" 101162 101106 sources."lodash.camelcase-4.3.0" 101107 + sources."lodash.chunk-4.2.0" 101163 101108 sources."lodash.clone-4.5.0" 101164 101109 sources."lodash.clonedeep-4.5.0" 101165 101110 sources."lodash.constant-3.0.0" ··· 101207 101152 sources."lru-cache-5.1.1" 101208 101153 sources."macos-release-2.4.1" 101209 101154 sources."make-dir-3.1.0" 101155 + sources."merge2-1.4.1" 101210 101156 sources."micromatch-4.0.2" 101211 101157 sources."mimic-fn-2.1.0" 101212 101158 sources."mimic-response-1.0.1" ··· 101279 101225 ]; 101280 101226 }) 101281 101227 sources."pupa-2.1.1" 101228 + sources."queue-6.0.2" 101229 + sources."queue-microtask-1.2.2" 101282 101230 sources."quick-lru-5.1.1" 101283 101231 sources."raw-body-2.4.1" 101284 101232 sources."rc-1.2.8" ··· 101293 101241 sources."resolve-alpn-1.0.0" 101294 101242 sources."responselike-2.0.0" 101295 101243 sources."restore-cursor-3.1.0" 101244 + sources."reusify-1.0.4" 101296 101245 sources."rimraf-2.7.1" 101297 101246 sources."run-async-2.4.1" 101247 + sources."run-parallel-1.2.0" 101298 101248 sources."rxjs-6.6.6" 101299 101249 sources."safe-buffer-5.1.2" 101300 101250 sources."safer-buffer-2.1.2" ··· 101520 101470 sources."@types/component-emitter-1.2.10" 101521 101471 sources."@types/cookie-0.4.0" 101522 101472 sources."@types/cors-2.8.10" 101523 - sources."@types/node-14.14.31" 101473 + sources."@types/node-14.14.32" 101524 101474 sources."accepts-1.3.7" 101525 101475 sources."base64-arraybuffer-0.1.4" 101526 101476 sources."base64id-2.0.0" ··· 101538 101488 sources."socket.io-adapter-2.1.0" 101539 101489 sources."socket.io-parser-4.0.4" 101540 101490 sources."vary-1.1.2" 101541 - sources."ws-7.4.3" 101491 + sources."ws-7.4.4" 101542 101492 ]; 101543 101493 buildInputs = globalBuildInputs; 101544 101494 meta = { ··· 102911 102861 dependencies = [ 102912 102862 sources."cookie-0.4.1" 102913 102863 sources."debug-4.1.1" 102914 - sources."ws-7.4.3" 102864 + sources."ws-7.4.4" 102915 102865 ]; 102916 102866 }) 102917 102867 (sources."engine.io-client-3.5.1" // { 102918 102868 dependencies = [ 102919 102869 sources."debug-3.1.0" 102920 102870 sources."ms-2.0.0" 102921 - sources."ws-7.4.3" 102871 + sources."ws-7.4.4" 102922 102872 ]; 102923 102873 }) 102924 102874 sources."engine.io-parser-2.2.1" ··· 103540 103490 stylelint = nodeEnv.buildNodePackage { 103541 103491 name = "stylelint"; 103542 103492 packageName = "stylelint"; 103543 - version = "13.11.0"; 103493 + version = "13.12.0"; 103544 103494 src = fetchurl { 103545 - url = "https://registry.npmjs.org/stylelint/-/stylelint-13.11.0.tgz"; 103546 - sha512 = "DhrKSWDWGZkCiQMtU+VroXM6LWJVC8hSK24nrUngTSQvXGK75yZUq4yNpynqrxD3a/fzKMED09V+XxO4z4lTbw=="; 103495 + url = "https://registry.npmjs.org/stylelint/-/stylelint-13.12.0.tgz"; 103496 + sha512 = "P8O1xDy41B7O7iXaSlW+UuFbE5+ZWQDb61ndGDxKIt36fMH50DtlQTbwLpFLf8DikceTAb3r6nPrRv30wBlzXw=="; 103547 103497 }; 103548 103498 dependencies = [ 103549 103499 sources."@babel/code-frame-7.12.13" ··· 103582 103532 sources."@types/normalize-package-data-2.4.0" 103583 103533 sources."@types/parse-json-4.0.0" 103584 103534 sources."@types/unist-2.0.3" 103585 - sources."ajv-7.1.1" 103535 + sources."ajv-7.2.1" 103586 103536 sources."ansi-regex-5.0.0" 103587 103537 sources."ansi-styles-3.2.1" 103588 103538 sources."array-union-2.1.0" ··· 103597 103547 sources."callsites-3.1.0" 103598 103548 sources."camelcase-5.3.1" 103599 103549 sources."camelcase-keys-6.2.2" 103600 - sources."caniuse-lite-1.0.30001196" 103550 + sources."caniuse-lite-1.0.30001197" 103601 103551 (sources."chalk-4.1.0" // { 103602 103552 dependencies = [ 103603 103553 sources."ansi-styles-4.3.0" ··· 103657 103607 sources."gensync-1.0.0-beta.2" 103658 103608 sources."get-stdin-8.0.0" 103659 103609 sources."glob-7.1.6" 103660 - sources."glob-parent-5.1.1" 103610 + sources."glob-parent-5.1.2" 103661 103611 sources."global-modules-2.0.0" 103662 103612 sources."global-prefix-3.0.0" 103663 103613 sources."globals-11.12.0" ··· 103838 103788 sources."unified-9.2.1" 103839 103789 sources."uniq-1.0.1" 103840 103790 sources."unist-util-find-all-after-3.0.2" 103841 - sources."unist-util-is-4.0.4" 103791 + sources."unist-util-is-4.1.0" 103842 103792 sources."unist-util-stringify-position-2.0.3" 103843 103793 sources."uri-js-4.4.1" 103844 103794 sources."util-deprecate-1.0.2" ··· 103867 103817 svelte-language-server = nodeEnv.buildNodePackage { 103868 103818 name = "svelte-language-server"; 103869 103819 packageName = "svelte-language-server"; 103870 - version = "0.12.18"; 103820 + version = "0.12.19"; 103871 103821 src = fetchurl { 103872 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.12.18.tgz"; 103873 - sha512 = "x0UmFgcdiQwh8vpKRx/l4EIlG7UUqEjsu59t9sauALaU+fzVWYO/ADPpK+HRH4y+W5u07eEIx0MPrnCG5Djjxw=="; 103822 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.12.19.tgz"; 103823 + sha512 = "u4f5Zn1UvOTeNSTH83z/v8fifhU+kNEpbMff07kMkZFBFxTXdMEh2/qS9VFjJu/0Ala646HnapgZgnakVvnZuQ=="; 103874 103824 }; 103875 103825 dependencies = [ 103876 103826 sources."@babel/code-frame-7.12.13" ··· 103879 103829 sources."@emmetio/abbreviation-2.2.1" 103880 103830 sources."@emmetio/css-abbreviation-2.1.2" 103881 103831 sources."@emmetio/scanner-1.0.0" 103882 - sources."@types/node-14.14.31" 103832 + sources."@types/node-14.14.32" 103883 103833 sources."@types/parse-json-4.0.0" 103884 103834 sources."@types/pug-2.0.4" 103885 103835 sources."@types/sass-1.16.0" ··· 103901 103851 sources."estree-walker-2.0.2" 103902 103852 sources."fill-range-7.0.1" 103903 103853 sources."fsevents-2.3.2" 103904 - sources."glob-parent-5.1.1" 103854 + sources."glob-parent-5.1.2" 103905 103855 sources."has-flag-3.0.0" 103906 103856 sources."import-fresh-3.3.0" 103907 103857 sources."is-arrayish-0.2.1" ··· 103932 103882 sources."supports-color-5.5.0" 103933 103883 sources."svelte-3.35.0" 103934 103884 sources."svelte-preprocess-4.6.9" 103935 - sources."svelte2tsx-0.1.178" 103885 + sources."svelte2tsx-0.1.179" 103936 103886 sources."to-regex-range-5.0.1" 103937 103887 sources."tslib-2.1.0" 103938 103888 sources."typescript-4.2.3" ··· 103961 103911 svgo = nodeEnv.buildNodePackage { 103962 103912 name = "svgo"; 103963 103913 packageName = "svgo"; 103964 - version = "2.2.0"; 103914 + version = "2.2.1"; 103965 103915 src = fetchurl { 103966 - url = "https://registry.npmjs.org/svgo/-/svgo-2.2.0.tgz"; 103967 - sha512 = "78w27VB+Vvca8TNRZrpbN70OTaVXgyQKm/rBiEqFPZmEJkn6i3PqEgIniPqPY6H2kFevakixAfBaQlwuStZuBA=="; 103916 + url = "https://registry.npmjs.org/svgo/-/svgo-2.2.1.tgz"; 103917 + sha512 = "WrKhe5CMm/O5gchTQKGogKYXGbOC0JBZnHqvaCTEbsMuq4prxQHB/AZgif8WwD4+9Nim4EECObmyjvkdC43iNg=="; 103968 103918 }; 103969 103919 dependencies = [ 103970 103920 sources."@trysound/sax-0.1.1" ··· 103975 103925 sources."color-name-1.1.4" 103976 103926 sources."commander-7.1.0" 103977 103927 sources."css-select-3.1.2" 103978 - sources."css-select-base-adapter-0.1.1" 103979 103928 sources."css-tree-1.1.2" 103980 103929 sources."css-what-4.0.0" 103981 103930 sources."csso-4.2.0" ··· 105244 105193 sources."is-installed-globally-0.3.2" 105245 105194 sources."is-npm-4.0.0" 105246 105195 sources."is-obj-2.0.0" 105247 - sources."is-path-inside-3.0.2" 105196 + sources."is-path-inside-3.0.3" 105248 105197 sources."is-plain-obj-1.1.0" 105249 105198 sources."is-typedarray-1.0.0" 105250 105199 sources."is-whitespace-character-1.0.4" ··· 105445 105394 sources."unified-message-control-3.0.3" 105446 105395 sources."unique-string-2.0.0" 105447 105396 sources."unist-util-inspect-5.0.1" 105448 - sources."unist-util-is-4.0.4" 105397 + sources."unist-util-is-4.1.0" 105449 105398 sources."unist-util-modify-children-2.0.0" 105450 105399 sources."unist-util-position-3.1.0" 105451 105400 sources."unist-util-remove-position-2.0.1" ··· 105895 105844 sources."@types/debug-4.1.5" 105896 105845 sources."@types/http-cache-semantics-4.0.0" 105897 105846 sources."@types/keyv-3.1.1" 105898 - sources."@types/node-14.14.31" 105847 + sources."@types/node-14.14.32" 105899 105848 sources."@types/responselike-1.0.0" 105900 105849 sources."abbrev-1.1.1" 105901 105850 sources."abstract-logging-2.0.1" ··· 106310 106259 sources."wide-align-1.1.3" 106311 106260 sources."with-open-file-0.1.7" 106312 106261 sources."wrappy-1.0.2" 106313 - sources."ws-7.4.3" 106262 + sources."ws-7.4.4" 106314 106263 sources."xmlhttprequest-ssl-1.5.5" 106315 106264 sources."yallist-3.1.1" 106316 106265 sources."yarn-1.22.4" ··· 106865 106814 sources."@types/component-emitter-1.2.10" 106866 106815 sources."@types/cookie-0.4.0" 106867 106816 sources."@types/cors-2.8.10" 106868 - sources."@types/node-14.14.31" 106817 + sources."@types/node-14.14.32" 106869 106818 sources."abbrev-1.1.1" 106870 106819 sources."accepts-1.3.7" 106871 106820 sources."ansi-regex-5.0.0" ··· 107119 107068 }) 107120 107069 sources."wrap-ansi-7.0.0" 107121 107070 sources."wrappy-1.0.2" 107122 - sources."ws-7.4.3" 107071 + sources."ws-7.4.4" 107123 107072 sources."y18n-5.0.5" 107124 107073 sources."yallist-2.1.2" 107125 107074 sources."yargs-16.2.0" ··· 107369 107318 vim-language-server = nodeEnv.buildNodePackage { 107370 107319 name = "vim-language-server"; 107371 107320 packageName = "vim-language-server"; 107372 - version = "2.1.2"; 107321 + version = "2.1.3"; 107373 107322 src = fetchurl { 107374 - url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.1.2.tgz"; 107375 - sha512 = "i+IVvvla+7oyXU3Mb1Vc4hCymCEUbRRhJE7/So+wZNZZgtVH4SNWwhtjzNV2l9egYAyCqJnJKKtErwgJnfAHsA=="; 107323 + url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.1.3.tgz"; 107324 + sha512 = "BZAMbgNXq9GFg0HrXbQoPs+VLzJasM/UyN34v0wEMOo8jj/h8K1LUKHuHJkGhAEhyq80BwDbByDLrbcu7Sn6Zg=="; 107376 107325 }; 107377 107326 buildInputs = globalBuildInputs; 107378 107327 meta = { ··· 107842 107791 sources."get-intrinsic-1.1.1" 107843 107792 sources."get-value-2.0.6" 107844 107793 sources."glob-7.1.3" 107845 - sources."glob-parent-5.1.1" 107794 + sources."glob-parent-5.1.2" 107846 107795 (sources."global-modules-2.0.0" // { 107847 107796 dependencies = [ 107848 107797 sources."global-prefix-3.0.0" ··· 107878 107827 sources."he-1.2.0" 107879 107828 sources."hmac-drbg-1.0.1" 107880 107829 sources."homedir-polyfill-1.0.3" 107881 - sources."htmlparser2-6.0.0" 107830 + sources."htmlparser2-6.0.1" 107882 107831 sources."https-browserify-1.0.0" 107883 107832 sources."ieee754-1.2.1" 107884 107833 sources."iferr-0.1.5" ··· 108662 108611 sources."@starptech/rehype-webparser-0.10.0" 108663 108612 sources."@starptech/webparser-0.10.0" 108664 108613 sources."@szmarczak/http-timer-1.1.2" 108665 - sources."@types/node-14.14.31" 108614 + sources."@types/node-14.14.32" 108666 108615 sources."@types/unist-2.0.3" 108667 108616 sources."@types/vfile-3.0.2" 108668 108617 sources."@types/vfile-message-2.0.0" ··· 108758 108707 dependencies = [ 108759 108708 sources."braces-3.0.2" 108760 108709 sources."fill-range-7.0.1" 108761 - sources."glob-parent-5.1.1" 108710 + sources."glob-parent-5.1.2" 108762 108711 sources."is-number-7.0.0" 108763 108712 sources."to-regex-range-5.0.1" 108764 108713 ]; ··· 109608 109557 sources."@sindresorhus/is-0.14.0" 109609 109558 sources."@szmarczak/http-timer-1.1.2" 109610 109559 sources."@types/minimatch-3.0.3" 109611 - sources."@types/node-14.14.31" 109560 + sources."@types/node-14.14.32" 109612 109561 sources."@types/yauzl-2.9.1" 109613 109562 sources."JSONSelect-0.2.1" 109614 109563 sources."acorn-7.4.1" ··· 109945 109894 sources."get-value-2.0.6" 109946 109895 sources."getpass-0.1.7" 109947 109896 sources."glob-7.1.6" 109948 - sources."glob-parent-5.1.1" 109897 + sources."glob-parent-5.1.2" 109949 109898 (sources."global-dirs-2.1.0" // { 109950 109899 dependencies = [ 109951 109900 sources."ini-1.3.7" ··· 110010 109959 sources."is-npm-5.0.0" 110011 109960 sources."is-number-7.0.0" 110012 109961 sources."is-obj-2.0.0" 110013 - sources."is-path-inside-3.0.2" 109962 + sources."is-path-inside-3.0.3" 110014 109963 sources."is-plain-object-2.0.4" 110015 109964 sources."is-regex-1.1.2" 110016 109965 sources."is-relative-0.1.3" ··· 110506 110455 webpack = nodeEnv.buildNodePackage { 110507 110456 name = "webpack"; 110508 110457 packageName = "webpack"; 110509 - version = "5.24.3"; 110458 + version = "5.24.4"; 110510 110459 src = fetchurl { 110511 - url = "https://registry.npmjs.org/webpack/-/webpack-5.24.3.tgz"; 110512 - sha512 = "x7lrWZ7wlWAdyKdML6YPvfVZkhD1ICuIZGODE5SzKJjqI9A4SpqGTjGJTc6CwaHqn19gGaoOR3ONJ46nYsn9rw=="; 110460 + url = "https://registry.npmjs.org/webpack/-/webpack-5.24.4.tgz"; 110461 + sha512 = "RXOdxF9hFFFhg47BryCgyFrEyyu7Y/75/uiI2DoUiTMqysK+WczVSTppvkR47oZcmI/DPaXCiCiaXBP8QjkNpA=="; 110513 110462 }; 110514 110463 dependencies = [ 110515 - sources."@types/eslint-7.2.6" 110464 + sources."@types/eslint-7.2.7" 110516 110465 sources."@types/eslint-scope-3.7.0" 110517 110466 sources."@types/estree-0.0.46" 110518 110467 sources."@types/json-schema-7.0.7" 110519 - sources."@types/node-14.14.31" 110468 + sources."@types/node-14.14.32" 110520 110469 sources."@webassemblyjs/ast-1.11.0" 110521 110470 sources."@webassemblyjs/floating-point-hex-parser-1.11.0" 110522 110471 sources."@webassemblyjs/helper-api-error-1.11.0" ··· 110539 110488 sources."ajv-keywords-3.5.2" 110540 110489 sources."browserslist-4.16.3" 110541 110490 sources."buffer-from-1.1.1" 110542 - sources."caniuse-lite-1.0.30001196" 110491 + sources."caniuse-lite-1.0.30001197" 110543 110492 sources."chrome-trace-event-1.0.2" 110544 110493 sources."colorette-1.2.2" 110545 110494 sources."commander-2.20.3" ··· 110684 110633 dependencies = [ 110685 110634 sources."@types/glob-7.1.3" 110686 110635 sources."@types/minimatch-3.0.3" 110687 - sources."@types/node-14.14.31" 110636 + sources."@types/node-14.14.32" 110688 110637 sources."accepts-1.3.7" 110689 110638 sources."ajv-6.12.6" 110690 110639 sources."ajv-errors-1.0.1" ··· 111277 111226 sources."fast-json-stable-stringify-2.1.0" 111278 111227 sources."fastq-1.11.0" 111279 111228 sources."fill-range-7.0.1" 111280 - sources."glob-parent-5.1.1" 111229 + sources."glob-parent-5.1.2" 111281 111230 sources."globby-11.0.2" 111282 111231 sources."ignore-5.1.8" 111283 111232 sources."is-extglob-2.1.1" ··· 111615 111564 }) 111616 111565 sources."winreg-1.2.4" 111617 111566 sources."wrappy-1.0.2" 111618 - sources."ws-7.4.3" 111567 + sources."ws-7.4.4" 111619 111568 sources."xml2js-0.4.23" 111620 111569 sources."xmlbuilder-11.0.1" 111621 111570 sources."xmldom-0.1.31" ··· 111758 111707 sources."@sindresorhus/is-0.7.0" 111759 111708 sources."@types/glob-7.1.3" 111760 111709 sources."@types/minimatch-3.0.3" 111761 - sources."@types/node-14.14.31" 111710 + sources."@types/node-14.14.32" 111762 111711 sources."@types/normalize-package-data-2.4.0" 111763 111712 sources."JSONStream-1.3.5" 111764 111713 sources."aggregate-error-3.1.0"
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "Adafruit-PlatformDetect"; 9 - version = "3.2.0"; 9 + version = "3.3.0"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "a14c642b1f6849e57b5c442e81e809c9e1e3a0bcfebfd54b15a9f9fd273f9611"; 13 + sha256 = "sha256-F5p3RO9847YQ7tDzb0r3+6dSCEAWoyxtMGBwhywR3/0="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/boto3/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "boto3"; 16 - version = "1.17.20"; # N.B: if you change this, change botocore and awscli to a matching version 16 + version = "1.17.22"; # N.B: if you change this, change botocore and awscli to a matching version 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-Ihnx6+iNJmr6VRb5k5g+uodCuVf6T9aFTzxzqjAw6TE="; 20 + sha256 = "sha256-Thd8ndSsRdnkGGfPt0f0yYXWsF/xRjesWGGmDaqVx8E="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
+2 -2
pkgs/development/python-modules/botocore/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "botocore"; 15 - version = "1.20.20"; # N.B: if you change this, change boto3 and awscli to a matching version 15 + version = "1.20.22"; # N.B: if you change this, change boto3 and awscli to a matching version 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-gMMqgfse6L36B0p5v7iFuyAG6Kl4LyNTwMn2OScE4To="; 19 + sha256 = "sha256-MuhvnRhVW9O03GlKJjmhwfyMi0KknaVDuVrJ0ExAdws="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/elementpath/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, isPy27 }: 2 2 3 3 buildPythonPackage rec { 4 - version = "2.1.3"; 4 + version = "2.1.4"; 5 5 pname = "elementpath"; 6 6 disabled = isPy27; # uses incompatible class syntax 7 7 ··· 9 9 owner = "sissaschool"; 10 10 repo = "elementpath"; 11 11 rev = "v${version}"; 12 - sha256 = "062l1dqbaz1pab3qz6x5zmja8m8gw1bxgfl4kx91gdh0zsiakg8j"; 12 + sha256 = "00v6npm7d4bk4cnpzacxybn165x6vjqrydssznn0bxzv8aynm1vb"; 13 13 }; 14 14 15 15 # avoid circular dependency with xmlschema which directly depends on this
+25
pkgs/development/python-modules/flask-seasurf/default.nix
··· 1 + { lib, fetchFromGitHub, buildPythonPackage, isPy3k, flask }: 2 + 3 + buildPythonPackage rec { 4 + pname = "Flask-SeaSurf"; 5 + version = "0.3.0"; 6 + disabled = !isPy3k; 7 + 8 + src = fetchFromGitHub { 9 + owner = "maxcountryman"; 10 + repo = "flask-seasurf"; 11 + rev = version; 12 + sha256 = "02hsvppsz1d93v641f14fdnd22gbc12ilc9k9kn7wl119n5s3pd8"; 13 + }; 14 + 15 + propagatedBuildInputs = [ flask ]; 16 + 17 + pythonImportsCheck = [ "flask_seasurf" ]; 18 + 19 + meta = with lib; { 20 + description = "A Flask extension for preventing cross-site request forgery"; 21 + homepage = "https://github.com/maxcountryman/flask-seasurf"; 22 + license = licenses.bsd3; 23 + maintainers = with maintainers; [ zhaofengli ]; 24 + }; 25 + }
+23
pkgs/development/python-modules/flask-sslify/default.nix
··· 1 + { lib, fetchPypi, buildPythonPackage, flask }: 2 + 3 + buildPythonPackage rec { 4 + pname = "Flask-SSLify"; 5 + version = "0.1.5"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "0gjl1m828z5dm3c5dpc2qjgi4llf84cp72mafr0ib5fd14y1sgnk"; 10 + }; 11 + 12 + propagatedBuildInputs = [ flask ]; 13 + 14 + doCheck = false; 15 + pythonImportsCheck = [ "flask_sslify" ]; 16 + 17 + meta = with lib; { 18 + description = "A Flask extension that redirects all incoming requests to HTTPS"; 19 + homepage = "https://github.com/kennethreitz42/flask-sslify"; 20 + license = licenses.bsd2; 21 + maintainers = with maintainers; [ zhaofengli ]; 22 + }; 23 + }
-40
pkgs/development/python-modules/gmusicapi/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , validictory 5 - , decorator 6 - , mutagen 7 - , protobuf 8 - , setuptools 9 - , requests 10 - , dateutil 11 - , proboscis 12 - , mock 13 - , appdirs 14 - , oauth2client 15 - , pyopenssl 16 - , gpsoauth 17 - , MechanicalSoup 18 - , future 19 - }: 20 - 21 - buildPythonPackage rec { 22 - pname = "gmusicapi"; 23 - version = "13.0.0"; 24 - 25 - src = fetchPypi { 26 - inherit pname version; 27 - sha256 = "14dqs64nhy84dykyyrdjmsirc7m169zsvwa8abh4v0xcm658lm5k"; 28 - }; 29 - 30 - propagatedBuildInputs = [ validictory decorator mutagen protobuf setuptools requests dateutil proboscis mock appdirs oauth2client pyopenssl gpsoauth MechanicalSoup future ]; 31 - 32 - doCheck = false; 33 - pythonImportsCheck = [ "gmusicapi" ]; 34 - 35 - meta = with lib; { 36 - description = "An unofficial API for Google Play Music"; 37 - homepage = "https://pypi.python.org/pypi/gmusicapi/"; 38 - license = licenses.bsd3; 39 - }; 40 - }
-48
pkgs/development/python-modules/google-music-proto/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pythonOlder 5 - , attrs 6 - , audio-metadata 7 - , importlib-metadata 8 - , marshmallow 9 - , pendulum 10 - , protobuf 11 - }: 12 - 13 - buildPythonPackage rec { 14 - pname = "google-music-proto"; 15 - version = "2.10.0"; 16 - 17 - src = fetchPypi { 18 - inherit pname version; 19 - sha256 = "91b78c0de4f59b1e5503fd6d49cb3fec029d9199cca0794c87667e643342e987"; 20 - }; 21 - 22 - postPatch = '' 23 - sed -i -e "/audio-metadata/c\'audio-metadata'," -e "/marshmallow/c\'marshmallow'," setup.py 24 - substituteInPlace setup.py \ 25 - --replace "'attrs>=18.2,<19.4'" "'attrs'" 26 - ''; 27 - 28 - propagatedBuildInputs = [ 29 - attrs 30 - audio-metadata 31 - marshmallow 32 - pendulum 33 - protobuf 34 - ] ++ lib.optionals (pythonOlder "3.8") [ 35 - importlib-metadata 36 - ]; 37 - 38 - # No tests 39 - doCheck = false; 40 - pythonImportsCheck = [ "google_music_proto" ]; 41 - 42 - meta = with lib; { 43 - homepage = "https://github.com/thebigmunch/google-music-proto"; 44 - description = "Sans-I/O wrapper of Google Music API calls"; 45 - license = licenses.mit; 46 - maintainers = with maintainers; [ jakewaksbaum ]; 47 - }; 48 - }
-40
pkgs/development/python-modules/google-music-utils/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , audio-metadata 5 - , multidict 6 - , poetry 7 - , pytestCheckHook 8 - }: 9 - 10 - buildPythonPackage rec { 11 - pname = "google-music-utils"; 12 - version = "2.5.0"; 13 - 14 - # Pypi tarball doesn't contain tests 15 - src = fetchFromGitHub { 16 - owner = "thebigmunch"; 17 - repo = "google-music-utils"; 18 - rev = version; 19 - sha256 = "0vwbrgakk23fypjspmscz4gllnb3dksv2njy4j4bm8vyr6fwbi5f"; 20 - }; 21 - format = "pyproject"; 22 - 23 - postPatch = '' 24 - substituteInPlace pyproject.toml \ 25 - --replace 'multidict = "^4.0"' 'multidict = ">4.0"' 26 - ''; 27 - 28 - nativeBuildInputs = [ poetry ]; 29 - 30 - propagatedBuildInputs = [ audio-metadata multidict ]; 31 - 32 - checkInputs = [ pytestCheckHook ]; 33 - 34 - meta = with lib; { 35 - homepage = "https://github.com/thebigmunch/google-music-utils"; 36 - description = "A set of utility functionality for google-music and related projects"; 37 - license = licenses.mit; 38 - maintainers = with maintainers; [ jakewaksbaum ]; 39 - }; 40 - }
-41
pkgs/development/python-modules/google-music/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , appdirs 5 - , audio-metadata 6 - , google-music-proto 7 - , httpx 8 - , protobuf 9 - , requests_oauthlib 10 - , tenacity 11 - }: 12 - 13 - buildPythonPackage rec { 14 - pname = "google-music"; 15 - version = "3.7.0"; 16 - 17 - src = fetchPypi { 18 - inherit pname version; 19 - sha256 = "0fsp491ifsw0i1r98l8xr41m8d00nw9n5bin8k3laqzq1p65d6dp"; 20 - }; 21 - 22 - propagatedBuildInputs = [ 23 - appdirs 24 - audio-metadata 25 - google-music-proto 26 - httpx 27 - protobuf 28 - requests_oauthlib 29 - tenacity 30 - ]; 31 - 32 - # No tests 33 - doCheck = false; 34 - 35 - meta = with lib; { 36 - homepage = "https://github.com/thebigmunch/google-music"; 37 - description = "A Google Music API wrapper"; 38 - license = licenses.mit; 39 - maintainers = with maintainers; [ jakewaksbaum ]; 40 - }; 41 - }
+2 -2
pkgs/development/python-modules/grpcio-tools/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "grpcio-tools"; 5 - version = "1.35.0"; 5 + version = "1.36.1"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "9e2a41cba9c5a20ae299d0fdd377fe231434fa04cbfbfb3807293c6ec10b03cf"; 9 + sha256 = "80ef584f7b917f575e4b8f2ec59cd4a4d98c2046e801a735f3136b05742a36a6"; 10 10 }; 11 11 12 12 outputs = [ "out" "dev" ];
+21
pkgs/development/python-modules/lima/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, pytestCheckHook }: 2 + 3 + buildPythonPackage rec { 4 + pname = "lima"; 5 + version = "0.5"; 6 + disabled = !isPy3k; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "0qqj0053r77ppkcyyk2fhpaxjzsl1h98nf9clpny6cs66sdl241v"; 11 + }; 12 + 13 + checkInputs = [ pytestCheckHook ]; 14 + 15 + meta = with lib; { 16 + description = "Lightweight Marshalling of Python 3 Objects."; 17 + homepage = "https://github.com/b6d/lima"; 18 + license = licenses.mit; 19 + maintainers = with maintainers; [ zhaofengli ]; 20 + }; 21 + }
+40
pkgs/development/python-modules/pytest-cid/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , pythonOlder 5 + , py-cid 6 + , pytestCheckHook 7 + , pytest-cov 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pytest-cid"; 12 + version = "1.1.1"; 13 + format = "flit"; 14 + disabled = pythonOlder "3.5"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "ntninja"; 18 + repo = pname; 19 + rev = "1ff9ec43ac9eaf76352ea7e7a060cd081cb8b68a"; # Version has no git tag 20 + sha256 = "sha256-H2RtMGYWukowTTfqZSx+hikxzkqw1v5bA4AfZfiVl8U="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + py-cid 25 + ]; 26 + 27 + checkInputs = [ 28 + pytestCheckHook 29 + pytest-cov 30 + ]; 31 + 32 + pythonImportsCheck = [ "pytest_cid" ]; 33 + 34 + meta = with lib; { 35 + homepage = "https://github.com/ntninja/pytest-cid"; 36 + description = "A simple wrapper around py-cid for easily writing tests involving CIDs in datastructures"; 37 + license = licenses.mpl20; 38 + maintainers = with maintainers; [ Luflosi ]; 39 + }; 40 + }
+40
pkgs/development/python-modules/python3-saml/default.nix
··· 1 + { lib, fetchurl, fetchFromGitHub, buildPythonPackage, isPy3k, 2 + isodate, lxml, xmlsec, freezegun }: 3 + 4 + buildPythonPackage rec { 5 + pname = "python3-saml"; 6 + version = "1.10.1"; 7 + disabled = !isPy3k; 8 + 9 + src = fetchFromGitHub { 10 + owner = "onelogin"; 11 + repo = "python3-saml"; 12 + rev = "v${version}"; 13 + sha256 = "1yk02xq90bm7p6k091av6gapb5h2ccxzgrbm03sj2x8h0wff9s8k"; 14 + }; 15 + 16 + patches = [ 17 + # Remove the dependency on defusedxml 18 + # 19 + # This patch is already merged upstream and does not introduce any 20 + # functionality changes. 21 + (fetchurl { 22 + url = "https://github.com/onelogin/python3-saml/commit/4b6c4b1f2ed3f6eab70ff4391e595b808ace168c.patch"; 23 + sha256 = "11gqn7ib2hmlx5wp4xhi375v5ajapwmj4lpw0y44bh5ww8cypvqy"; 24 + }) 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + isodate lxml xmlsec 29 + ]; 30 + 31 + checkInputs = [ freezegun ]; 32 + pythonImportsCheck = [ "onelogin.saml2" ]; 33 + 34 + meta = with lib; { 35 + description = "OneLogin's SAML Python Toolkit for Python 3"; 36 + homepage = "https://github.com/onelogin/python3-saml"; 37 + license = licenses.mit; 38 + maintainers = with maintainers; [ zhaofengli ]; 39 + }; 40 + }
+47
pkgs/development/python-modules/xmlsec/default.nix
··· 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , pytestCheckHook 5 + , libxslt 6 + , libxml2 7 + , libtool 8 + , pkg-config 9 + , xmlsec 10 + , pkgconfig 11 + , setuptools-scm 12 + , toml 13 + , lxml 14 + , hypothesis 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "xmlsec"; 19 + version = "1.3.9"; 20 + 21 + src = fetchPypi { 22 + inherit pname version; 23 + sha256 = "1c4k42zv3plm6v65p7z6l5rxyf50h40d02nhc16vq7cjrfvdf4rx"; 24 + }; 25 + 26 + # https://github.com/mehcode/python-xmlsec/issues/84#issuecomment-632930116 27 + patches = [ 28 + ./reset-lxml-in-tests.patch 29 + ]; 30 + 31 + nativeBuildInputs = [ pkg-config pkgconfig setuptools-scm toml ]; 32 + 33 + buildInputs = [ xmlsec libxslt libxml2 libtool ]; 34 + 35 + propagatedBuildInputs = [ lxml ]; 36 + 37 + # Full git clone required for test_doc_examples 38 + checkInputs = [ pytestCheckHook hypothesis ]; 39 + disabledTestPaths = [ "tests/test_doc_examples.py" ]; 40 + 41 + meta = with lib; { 42 + description = "Python bindings for the XML Security Library"; 43 + homepage = "https://github.com/mehcode/python-xmlsec"; 44 + license = licenses.mit; 45 + maintainers = with maintainers; [ zhaofengli ]; 46 + }; 47 + }
+22
pkgs/development/python-modules/xmlsec/reset-lxml-in-tests.patch
··· 1 + diff --git a/tests/base.py b/tests/base.py 2 + index b05de1d..5ec356f 100644 3 + --- a/tests/base.py 4 + +++ b/tests/base.py 5 + @@ -94,6 +94,7 @@ class TestMemoryLeaks(unittest.TestCase): 6 + 7 + def load_xml(self, name, xpath=None): 8 + """returns xml.etree""" 9 + + etree.set_default_parser(parser=etree.XMLParser()) 10 + root = etree.parse(self.path(name)).getroot() 11 + if xpath is None: 12 + return root 13 + diff --git a/tests/test_doc_examples.py b/tests/test_doc_examples.py 14 + index 2fc490f..53d2377 100644 15 + --- a/tests/test_doc_examples.py 16 + +++ b/tests/test_doc_examples.py 17 + @@ -42,3 +42,5 @@ def test_doc_example(example): 18 + """ 19 + with cd(example.parent): 20 + runpy.run_path(str(example)) 21 + + from lxml import etree 22 + + etree.set_default_parser(parser=etree.XMLParser())
+2 -2
pkgs/development/tools/buildah/default.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "buildah"; 17 - version = "1.19.6"; 17 + version = "1.19.8"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "containers"; 21 21 repo = "buildah"; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-YTguBkQcMNjHMVMEN3/P+8fOC5eqmQvlRd1ny9umS/4="; 23 + sha256 = "sha256-xhnhc4vhKw5T93076vS+pszIOpj22KzaPyzCvuHMaPE="; 24 24 }; 25 25 26 26 outputs = [ "out" "man" ];
+3 -3
pkgs/development/tools/misc/circleci-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "circleci-cli"; 5 - version = "0.1.12214"; 5 + version = "0.1.15085"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "CircleCI-Public"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-YV/fqATdGqlAdpKuOMq8KO9UQ+4D1PHwIE5O1zqndHQ="; 11 + sha256 = "sha256-KcC9KfAeUM3pMSNThL+w/kzpQYzcMYV6YoNEN4q6duA="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-6FBMLwoLM2BtnMHQfpY7f7NiQt5evsL4CfYTZvr3gAs="; 14 + vendorSha256 = "sha256-j7VP/QKKMdmWQ60BYpChG4syDlll7CY4rb4wfb4+Z1s="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/development/web/nodejs/v15.nix
··· 8 8 in 9 9 buildNodejs { 10 10 inherit enableNpm; 11 - version = "15.10.0"; 12 - sha256 = "1i7fdlkkyh5ssncbvxmiz894a12mww4cmj7y4qzm9ddbbvqxhj3p"; 11 + version = "15.11.0"; 12 + sha256 = "1lfjm0jgzbr0a874c04pddbjnvjcdyx5vyaakdhp0fa222i92w0s"; 13 13 }
+4 -4
pkgs/games/mindustry/default.nix
··· 29 29 # Note: when raising the version, ensure that all SNAPSHOT versions in 30 30 # build.gradle are replaced by a fixed version 31 31 # (the current one at the time of release) (see postPatch). 32 - version = "125.1"; 32 + version = "126.1"; 33 33 buildVersion = makeBuildVersion version; 34 34 35 35 Mindustry = fetchFromGitHub { 36 36 owner = "Anuken"; 37 37 repo = "Mindustry"; 38 38 rev = "v${version}"; 39 - sha256 = "0p05ndxhl3zgwm4k9cbqclp995kvcjxxhmbkmpjvv7cphiw82hvw"; 39 + sha256 = "cyg4TofSSFLv8pM3zzvc0FxXMiTm+OIchBJF9PDQrkg="; 40 40 }; 41 41 Arc = fetchFromGitHub { 42 42 owner = "Anuken"; 43 43 repo = "Arc"; 44 44 rev = "v${version}"; 45 - sha256 = "1injdyxwgc9dn49zvr4qggsfrsslkvh5d53z3yv28ayx48qpsgxk"; 45 + sha256 = "uBIm82mt1etBB/HrNY6XGa7mmBfwd1E3RtqN8Rk5qeY="; 46 46 }; 47 47 soloud = fetchFromGitHub { 48 48 owner = "Anuken"; ··· 114 114 ''; 115 115 outputHashAlgo = "sha256"; 116 116 outputHashMode = "recursive"; 117 - outputHash = "0dk4w8h0kg0mgbn0ifmk29rw8aj917k3nf27qdf1lyr6wl8k7f8k"; 117 + outputHash = "Mw8LZ1iW6vn4RkBBs8SWHp6mo2Bhj7tMZjLbyuJUqSI="; 118 118 }; 119 119 120 120 in
+12
pkgs/misc/vim-plugins/generated.nix
··· 2950 2950 meta.homepage = "https://github.com/nathunsmitty/nvim-ale-diagnostic/"; 2951 2951 }; 2952 2952 2953 + nvim-autopairs= buildVimPluginFrom2Nix { 2954 + pname = "nvim-autopairs"; 2955 + version = "2021-02-25"; 2956 + src = fetchFromGitHub { 2957 + owner = "windwp"; 2958 + repo = "nvim-autopairs"; 2959 + rev = "1596756a90114cbe25d0f383825a1ae2145b459b"; 2960 + sha256 = "1c0h0082lkngn0ly4qpla98xgg71ax5r26v4q4h3gc77jf6mlqrd"; 2961 + }; 2962 + meta.homepage = "https://github.com/windwp/nvim-autopairs"; 2963 + }; 2964 + 2953 2965 nvim-cm-racer = buildVimPluginFrom2Nix { 2954 2966 pname = "nvim-cm-racer"; 2955 2967 version = "2017-07-27";
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 707 707 will133/vim-dirdiff 708 708 wincent/command-t 709 709 wincent/ferret 710 + windwp/nvim-autopairs 710 711 wlangstroth/vim-racket 711 712 wsdjeg/vim-fetch 712 713 xavierd/clang_complete
+2 -2
pkgs/misc/vscode-extensions/default.nix
··· 365 365 mktplcRef = { 366 366 name = "todo-tree"; 367 367 publisher = "Gruntfuggly"; 368 - version = "0.0.198"; 369 - sha256 = "0riy2k8dbsnpk8vkv814fr8zh87y425s24nklcx4b7mfrszv7xbn"; 368 + version = "0.0.201"; 369 + sha256 = "1hjck1r2byc45rp28gn15wbmcrl1wjng7kn5lyhr6mgjjwqh5pa8"; 370 370 }; 371 371 meta = with lib; { 372 372 license = licenses.mit;
+2 -2
pkgs/os-specific/linux/bolt/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "bolt"; 23 - version = "0.9"; 23 + version = "0.9.1"; 24 24 25 25 src = fetchFromGitLab { 26 26 domain = "gitlab.freedesktop.org"; 27 27 owner = "bolt"; 28 28 repo = "bolt"; 29 29 rev = version; 30 - sha256 = "sha256-lcJE+bMK2S2GObHMy/Fu12WGb3T1HrWjsNyZPz4/f4E="; 30 + sha256 = "1phgp8fs0dlj74kbkqlvfniwc32daz47b3pvsxlfxqzyrp77xrfm"; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+7 -6
pkgs/os-specific/linux/kernel/common-config.nix
··· 193 193 NET_DROP_MONITOR = yes; 194 194 195 195 # needed for ss 196 - INET_DIAG = module; 197 - INET_TCP_DIAG = module; 198 - INET_UDP_DIAG = module; 199 - INET_RAW_DIAG = whenAtLeast "4.14" module; 200 - INET_DIAG_DESTROY = whenAtLeast "4.9" yes; 196 + # Use a lower priority to allow these options to be overridden in hardened/config.nix 197 + INET_DIAG = mkDefault module; 198 + INET_TCP_DIAG = mkDefault module; 199 + INET_UDP_DIAG = mkDefault module; 200 + INET_RAW_DIAG = whenAtLeast "4.14" (mkDefault module); 201 + INET_DIAG_DESTROY = whenAtLeast "4.9" (mkDefault yes); 201 202 202 203 # enable multipath-tcp 203 204 MPTCP = whenAtLeast "5.6" yes; 204 205 MPTCP_IPV6 = whenAtLeast "5.6" yes; 205 - INET_MPTCP_DIAG = whenAtLeast "5.9" module; 206 + INET_MPTCP_DIAG = whenAtLeast "5.9" (mkDefault module); 206 207 }; 207 208 208 209 wireless = {
+9 -1
pkgs/os-specific/linux/kernel/hardened/config.nix
··· 65 65 PANIC_TIMEOUT = freeform "-1"; 66 66 67 67 GCC_PLUGINS = yes; # Enable gcc plugin options 68 - # Gather additional entropy at boot time for systems that may = no;ot have appropriate entropy sources. 68 + # Gather additional entropy at boot time for systems that may not have appropriate entropy sources. 69 69 GCC_PLUGIN_LATENT_ENTROPY = yes; 70 70 71 71 GCC_PLUGIN_STRUCTLEAK = whenAtLeast "4.11" yes; # A port of the PaX structleak plugin ··· 78 78 ACPI_CUSTOM_METHOD = no; # Allows writing directly to physical memory 79 79 PROC_KCORE = no; # Exposes kernel text image layout 80 80 INET_DIAG = no; # Has been used for heap based attacks in the past 81 + 82 + # INET_DIAG=n causes the following options to not exist anymore, but since they are defined in common-config.nix, 83 + # make them optional 84 + INET_DIAG_DESTROY = option no; 85 + INET_RAW_DIAG = option no; 86 + INET_TCP_DIAG = option no; 87 + INET_UDP_DIAG = option no; 88 + INET_MPTCP_DIAG = option no; 81 89 82 90 # Use -fstack-protector-strong (gcc 4.9+) for best stack canary coverage. 83 91 CC_STACKPROTECTOR_REGULAR = whenOlder "4.18" no;
+14 -8
pkgs/servers/home-assistant/default.nix
··· 1 - { stdenv, nixosTests, lib, fetchFromGitHub, python3 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , python3 6 + , nixosTests 2 7 3 8 # Look up dependencies of specified components in component-packages.nix 4 9 , extraComponents ? [ ] ··· 84 89 }; 85 90 86 91 # leave this in, so users don't have to constantly update their downstream patch handling 87 - patches = []; 92 + patches = [ 93 + (fetchpatch { 94 + # Fix I-frame interval in stream test video 95 + # https://github.com/home-assistant/core/pull/47638 96 + url = "https://github.com/home-assistant/core/commit/d9bf63103fde44ddd38fb6b9a510d82609802b36.patch"; 97 + sha256 = "1y34cmw9zqb2lxyzm0q7vxlm05wwz76mhysgnh1jn39484fn9f9m"; 98 + }) 99 + ]; 88 100 89 101 postPatch = '' 90 102 substituteInPlace setup.py \ ··· 331 343 # generic/test_camera.py: AssertionError: 500 == 200 332 344 "test_fetching_without_verify_ssl" 333 345 "test_fetching_url_with_verify_ssl" 334 - ] ++ lib.optionals (stdenv.isAarch64) [ 335 - # tests getting stuck on aarch64 336 - # components/stream/test_hls.py 337 - "test_stream_ended" 338 - # components/stream/test_recorder.py 339 - "test_record_stream" 340 346 ]; 341 347 342 348 preCheck = ''
+3 -3
pkgs/servers/traefik/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "traefik"; 5 - version = "2.4.3"; 5 + version = "2.4.6"; 6 6 7 7 src = fetchzip { 8 8 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 9 - sha256 = "sha256-lCUwzd+ECi2g5jv6ksxrlDdx7cjLgBnaBdYbgzADkcg="; 9 + sha256 = "1f2gj9axmdisp4yza5pa60x2s79vdybgsb5ddyfwkl5m89sh0r2z"; 10 10 stripRoot = false; 11 11 }; 12 12 13 - vendorSha256 = "sha256-kCRXDEuaxFVZuP7PkmZIiXjhMUWjMYbOOtWl4V81DeI="; 13 + vendorSha256 = "1w9crp4bk5dk0ph558w9mj8cylm2z6bc81hghmv86ild524a0l9v"; 14 14 15 15 doCheck = false; 16 16
+7 -3
pkgs/shells/zsh/oh-my-zsh/default.nix
··· 5 5 , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }: 6 6 7 7 stdenv.mkDerivation rec { 8 - version = "2021-03-01"; 8 + version = "2021-03-08"; 9 9 pname = "oh-my-zsh"; 10 - rev = "6fbad5bf72fad4ecf30ba4d4ffee62bac582f0ed"; 10 + rev = "0ab87c26c17171ae6162ff379a0c704fa57dff2e"; 11 11 12 12 src = fetchFromGitHub { 13 13 inherit rev; 14 14 owner = "ohmyzsh"; 15 15 repo = "ohmyzsh"; 16 - sha256 = "1sd9lhgrig4vpdy0d1ls551gzs7y9q4hq2m0jakslqliyx5d6mpn"; 16 + sha256 = "1ryf7wj7k7b63sg3ipjdmn3wnyjlh0saf2kz084jmy82hxhqpd8w"; 17 17 }; 18 18 19 19 installPhase = '' 20 + runHook preInstall 21 + 20 22 outdir=$out/share/oh-my-zsh 21 23 template=templates/zshrc.zsh-template 22 24 ··· 64 66 . ~/.zsh_aliases 65 67 fi 66 68 EOF 69 + 70 + runHook postInstall 67 71 ''; 68 72 69 73 passthru = {
+2 -2
pkgs/tools/admin/awscli/default.nix
··· 28 28 in 29 29 with py.pkgs; buildPythonApplication rec { 30 30 pname = "awscli"; 31 - version = "1.19.20"; # N.B: if you change this, change botocore and boto3 to a matching version too 31 + version = "1.19.22"; # N.B: if you change this, change botocore and boto3 to a matching version too 32 32 33 33 src = fetchPypi { 34 34 inherit pname version; 35 - sha256 = "sha256-Fu+KuGOGDUMXgwUKabZjaCBQHdlLLBwPJXU4rlohKNs="; 35 + sha256 = "sha256-yu2IltNbOLB44M+0u5lTjHHllDndBHp4rNfMwFOKMgw="; 36 36 }; 37 37 38 38 # https://github.com/aws/aws-cli/issues/4837
+31 -31
pkgs/tools/audio/beets/default.nix
··· 8 8 , enableAbsubmit ? lib.elem stdenv.hostPlatform.system essentia-extractor.meta.platforms, essentia-extractor 9 9 , enableAcousticbrainz ? true 10 10 , enableAcoustid ? true 11 + , enableAura ? true 11 12 , enableBadfiles ? true, flac, mp3val 12 13 , enableBeatport ? true 13 14 , enableBpsync ? true ··· 16 17 , enableDiscogs ? true 17 18 , enableEmbyupdate ? true 18 19 , enableFetchart ? true 19 - , enableGmusic ? true 20 20 , enableKeyfinder ? true, keyfinder-cli 21 21 , enableKodiupdate ? true 22 22 , enableLastfm ? true ··· 32 32 33 33 # External plugins 34 34 , enableAlternatives ? false 35 - , enableCheck ? false, liboggz 36 35 , enableCopyArtifacts ? false 37 36 , enableExtraFiles ? false 38 37 ··· 45 44 optionalPlugins = { 46 45 absubmit = enableAbsubmit; 47 46 acousticbrainz = enableAcousticbrainz; 47 + aura = enableAura; 48 48 badfiles = enableBadfiles; 49 49 beatport = enableBeatport; 50 50 bpsync = enableBpsync; ··· 54 54 discogs = enableDiscogs; 55 55 embyupdate = enableEmbyupdate; 56 56 fetchart = enableFetchart; 57 - gmusic = enableGmusic; 58 57 keyfinder = enableKeyfinder; 59 58 kodiupdate = enableKodiupdate; 60 59 lastgenre = enableLastfm; ··· 104 103 # unstable does not require bs1770gain[2]. 105 104 # [1]: https://discourse.beets.io/t/forming-a-beets-core-team/639 106 105 # [2]: https://github.com/NixOS/nixpkgs/pull/90504 107 - version = "unstable-2021-01-29"; 106 + version = "unstable-2021-03-08"; 108 107 109 108 src = fetchFromGitHub { 110 109 owner = "beetbox"; 111 110 repo = "beets"; 112 - rev = "04ea754d00e2873ae9aa2d9e07c5cefd790eaee2"; 113 - sha256 = "sha256-BIa3hnOsBxThbA2WCE4q9eaFNtObr3erZBBqobVOSiQ="; 111 + rev = "debd382837ef1d30574c2234710d536bb299f979"; 112 + sha256 = "sha256-I6ejW3f72fdzWoz7g4n8pDYz2NiHGrorLegUQhQOSiI="; 114 113 }; 115 114 116 115 propagatedBuildInputs = [ ··· 128 127 pythonPackages.confuse 129 128 pythonPackages.mediafile 130 129 gobject-introspection 131 - ] ++ lib.optional enableAbsubmit essentia-extractor 132 - ++ lib.optional enableAcoustid pythonPackages.pyacoustid 133 - ++ lib.optional enableBeatport pythonPackages.requests_oauthlib 130 + ] ++ lib.optional enableAbsubmit essentia-extractor 131 + ++ lib.optional enableAcoustid pythonPackages.pyacoustid 132 + ++ lib.optional enableBeatport pythonPackages.requests_oauthlib 134 133 ++ lib.optional (enableFetchart 135 - || enableDeezer 136 - || enableEmbyupdate 137 - || enableKodiupdate 138 - || enableLoadext 139 - || enablePlaylist 140 - || enableSubsonicplaylist 141 - || enableSubsonicupdate 142 - || enableAcousticbrainz) 143 - pythonPackages.requests 144 - ++ lib.optional enableCheck beetsExternalPlugins.check 145 - ++ lib.optional enableConvert ffmpeg 146 - ++ lib.optional enableDiscogs pythonPackages.discogs_client 147 - ++ lib.optional enableGmusic pythonPackages.gmusicapi 148 - ++ lib.optional enableKeyfinder keyfinder-cli 149 - ++ lib.optional enableLastfm pythonPackages.pylast 150 - ++ lib.optional enableMpd pythonPackages.mpd2 151 - ++ lib.optional enableSonosUpdate pythonPackages.soco 152 - ++ lib.optional enableThumbnails pythonPackages.pyxdg 153 - ++ lib.optional enableWeb pythonPackages.flask 154 - ++ lib.optional enableAlternatives beetsExternalPlugins.alternatives 155 - ++ lib.optional enableCopyArtifacts beetsExternalPlugins.copyartifacts 156 - ++ lib.optional enableExtraFiles beetsExternalPlugins.extrafiles 134 + || enableDeezer 135 + || enableEmbyupdate 136 + || enableKodiupdate 137 + || enableLoadext 138 + || enablePlaylist 139 + || enableSubsonicplaylist 140 + || enableSubsonicupdate 141 + || enableAcousticbrainz) pythonPackages.requests 142 + ++ lib.optional enableConvert ffmpeg 143 + ++ lib.optional enableDiscogs pythonPackages.discogs_client 144 + ++ lib.optional enableKeyfinder keyfinder-cli 145 + ++ lib.optional enableLastfm pythonPackages.pylast 146 + ++ lib.optional enableMpd pythonPackages.mpd2 147 + ++ lib.optional enableSonosUpdate pythonPackages.soco 148 + ++ lib.optional enableThumbnails pythonPackages.pyxdg 149 + ++ lib.optional (enableAura 150 + || enableWeb) pythonPackages.flask 151 + ++ lib.optional enableAlternatives beetsExternalPlugins.alternatives 152 + ++ lib.optional enableCopyArtifacts beetsExternalPlugins.copyartifacts 153 + ++ lib.optional enableExtraFiles beetsExternalPlugins.extrafiles 157 154 ; 158 155 159 156 buildInputs = [ ··· 209 206 echo echo completion tests passed > test/rsrc/test_completion.sh 210 207 211 208 sed -i -e 's/len(mf.images)/0/' test/test_zero.py 209 + 210 + # Google Play Music was discontinued 211 + rm -r beetsplug/gmusic.py 212 212 ''; 213 213 214 214 postInstall = ''
+12 -5
pkgs/tools/audio/beets/plugins/alternatives.nix
··· 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 pname = "beets-alternatives"; 5 - version = "0.9.0"; 5 + version = "0.10.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 repo = "beets-alternatives"; 9 9 owner = "geigerzaehler"; 10 - # This is 0.8.2 with fixes against Beets 1.4.6 and Python 3 compatibility. 11 10 rev = "v${version}"; 12 - sha256 = "19160gwg5j6asy8mc21g2kf87mx4zs9x2gbk8q4r6330z4kpl5pm"; 11 + sha256 = "1dsz94fb29wra1f9580w20bz2f1bgkj4xnsjgwgbv14flbfw4bp0"; 13 12 }; 14 13 15 - nativeBuildInputs = [ beets pythonPackages.nose ]; 14 + postPatch = '' 15 + substituteInPlace setup.cfg \ 16 + --replace "addopts = --cov --cov-report=term --cov-report=html" "" 17 + ''; 16 18 17 - checkPhase = "nosetests"; 19 + nativeBuildInputs = [ beets ]; 20 + 21 + checkInputs = with pythonPackages; [ 22 + pytestCheckHook 23 + mock 24 + ]; 18 25 19 26 meta = { 20 27 description = "Beets plugin to manage external files";
-17
pkgs/tools/audio/beets/plugins/check-tests.patch
··· 1 - diff --git a/test/cli_test.py b/test/cli_test.py 2 - index 26df140..2eb913c 100644 3 - --- a/test/cli_test.py 4 - +++ b/test/cli_test.py 5 - @@ -372,12 +372,6 @@ class ToolListTest(TestHelper, TestCase): 6 - self.assertIn('flac', stdout.getvalue()) 7 - self.assertIn('oggz-validate', stdout.getvalue()) 8 - 9 - - def test_found_mp3val(self): 10 - - shutil.copy('/bin/echo', os.path.join(self.temp_dir, 'mp3val')) 11 - - with captureStdout() as stdout: 12 - - beets.ui._raw_main(['check', '--list-tools']) 13 - - self.assertRegexpMatches(stdout.getvalue(), r'mp3val *found') 14 - - 15 - def test_oggz_validate_not_found(self): 16 - with captureStdout() as stdout: 17 - beets.ui._raw_main(['check', '--list-tools'])
-35
pkgs/tools/audio/beets/plugins/check.nix
··· 1 - { lib, fetchFromGitHub, beets, pythonPackages, flac, liboggz, mp3val }: 2 - 3 - pythonPackages.buildPythonApplication rec { 4 - name = "beets-check"; 5 - version = "0.12.0"; 6 - 7 - src = fetchFromGitHub { 8 - repo = "beets-check"; 9 - owner = "geigerzaehler"; 10 - rev = "v${version}"; 11 - sha256 = "0b2ijjf0gycs6b40sm33ida3sjygjiv4spb5mba52vysc7iwmnjn"; 12 - }; 13 - 14 - nativeBuildInputs = [ beets ]; 15 - checkInputs = [ pythonPackages.nose flac liboggz mp3val ]; 16 - propagatedBuildInputs = [ flac liboggz mp3val ]; 17 - 18 - # patch out broken tests 19 - patches = [ ./check-tests.patch ]; 20 - 21 - # patch out futures dependency, it is only needed for Python2 which we don't 22 - # support. 23 - prePatch = '' 24 - sed -i "/futures/d" setup.py 25 - ''; 26 - 27 - checkPhase = "nosetests"; 28 - 29 - meta = with lib; { 30 - description = "Beets plugin to Verify and store checksums in your library"; 31 - homepage = "https://github.com/geigerzaehler/beets-check"; 32 - license = licenses.mit; 33 - maintainers = with maintainers; [ lovesegfault ]; 34 - }; 35 - }
-59
pkgs/tools/audio/google-music-scripts/default.nix
··· 1 - { lib, python3 }: 2 - 3 - let 4 - py = python3.override { 5 - packageOverrides = self: super: { 6 - loguru = super.loguru.overridePythonAttrs (oldAttrs: rec { 7 - version = "0.4.0"; 8 - src = oldAttrs.src.override { 9 - inherit version; 10 - sha256 = "0j47cg3gi8in4z6z4w3by6x02mpkkfl78gr85xjn5rg0nxiz7pfm"; 11 - }; 12 - }); 13 - }; 14 - }; 15 - 16 - in 17 - 18 - with py.pkgs; 19 - 20 - buildPythonApplication rec { 21 - pname = "google-music-scripts"; 22 - version = "4.5.0"; 23 - 24 - src = fetchPypi { 25 - inherit pname version; 26 - sha256 = "0apwgj86whrc077dfymvyb4qwj19bawyrx49g4kg364895v0rbbq"; 27 - }; 28 - 29 - # there are already later releases present 30 - postPatch = '' 31 - substituteInPlace setup.py \ 32 - --replace "tomlkit>=0.5,<0.6" "tomlkit" \ 33 - --replace "attrs>=18.2,<19.4" "attrs" 34 - ''; 35 - 36 - propagatedBuildInputs = [ 37 - appdirs 38 - audio-metadata 39 - google-music 40 - google-music-proto 41 - google-music-utils 42 - loguru 43 - pendulum 44 - natsort 45 - tomlkit 46 - ]; 47 - 48 - # No tests 49 - checkPhase = '' 50 - $out/bin/gms --help >/dev/null 51 - ''; 52 - 53 - meta = with lib; { 54 - homepage = "https://github.com/thebigmunch/google-music-scripts"; 55 - description = "A CLI utility for interacting with Google Music"; 56 - license = licenses.mit; 57 - maintainers = with maintainers; [ jakewaksbaum ]; 58 - }; 59 - }
+2 -2
pkgs/tools/filesystems/mergerfs/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mergerfs"; 5 - version = "2.32.3"; 5 + version = "2.32.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "trapexit"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-loOBMrAtvJAcFdcgwzEEko7TMM07Ocx+1umxjnLB1uY="; 11 + sha256 = "sha256-VTnAAJWya1JLZA0gjzpUsdnO5XQP8sJzEP8qHBH+t5k="; 12 12 }; 13 13 14 14 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/fluent-bit/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fluent-bit"; 5 - version = "1.7.1"; 5 + version = "1.7.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fluent"; 9 9 repo = "fluent-bit"; 10 10 rev = "v${version}"; 11 - sha256 = "1xzbsnij0xsgd5j11frkf35w8rkr55hq2yl7myaxrgzh686a8law"; 11 + sha256 = "sha256-5R26NvhSYesMk/8i9+5H3pZTgbdbnuQ1rLlCa/gWJGc="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake flex bison ];
+3 -3
pkgs/tools/misc/goreleaser/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "goreleaser"; 5 - version = "0.157.0"; 5 + version = "0.158.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "goreleaser"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-wUlAllWBGJBZ98lbf2pOfW3a31r74py5Zh7uszkRYqA="; 11 + sha256 = "sha256-ewwJHn55zzry2hhMNuRUlGwC995r0ooPJGqKYaCh4WE="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-8SOUFlbwGwRuOB50V9eXE9KQWGiSexTZct6Rux6Stuw="; 14 + vendorSha256 = "sha256-awgkYMidTDcUjQt7hA5cSiwSAsNo5iUqKcG4+2lCXIM="; 15 15 16 16 buildFlagsArray = [ 17 17 "-ldflags="
+6 -5
pkgs/tools/networking/shadowsocks-rust/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices, libiconv }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "shadowsocks-rust"; 5 - version = "1.9.1"; 5 + version = "1.9.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "shadowsocks"; 10 10 repo = pname; 11 - sha256 = "1lxx9xzkv3y2qjffa5dmwv0ygka71dx3c2995ggcgy5fb19yrghc"; 11 + sha256 = "1mqxfw21ilcy0gc2jrn5f385y3g9inabp9fjc39m5ydljja4g5b9"; 12 12 }; 13 13 14 - cargoSha256 = "0p93dv4nlwl5167dmp160l09wqba5d40gaiwc6vbzb4iqdicgwls"; 14 + cargoSha256 = "1ja2hcsa2wa0zmblz4ps35jcx1y29j469lf4i9a7sw0kgh3xp1ha"; 15 15 16 16 RUSTC_BOOTSTRAP = 1; 17 17 18 - buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 18 + buildInputs = lib.optionals stdenv.isDarwin [ CoreServices libiconv ]; 19 19 20 20 checkFlags = [ "--skip=http_proxy" "--skip=udp_tunnel" ]; 21 21 ··· 24 24 description = "A Rust port of shadowsocks"; 25 25 license = licenses.mit; 26 26 maintainers = [ maintainers.marsam ]; 27 + broken = stdenv.isAarch64; # crypto2 crate doesn't build on aarch64 27 28 }; 28 29 }
+8 -8
pkgs/tools/networking/v2ray/default.nix
··· 3 3 }: 4 4 5 5 let 6 - version = "4.34.0"; 6 + version = "4.35.1"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "v2fly"; 10 10 repo = "v2ray-core"; 11 11 rev = "v${version}"; 12 - sha256 = "0x6smffpvnrk76plnsk31qqznkyz06dh4sazncp2l3y9va8k2jb1"; 12 + sha256 = "07fih1hnnv1a4aj6sb63408vqf10bgk74lhqqv63lvm7gaz73srd"; 13 13 }; 14 14 15 - vendorSha256 = "077jnjsmhzr0idrk7pifr5s2r9yjf1v9bvj177n2k2ln8w3wgx3g"; 15 + vendorSha256 = "sha256-+kI9p0lu4PbLe6jhWqTfRYXHFOOrKmY36LzdcQT9BWw="; 16 16 17 17 assets = { 18 18 # MIT licensed 19 19 "geoip.dat" = let 20 - geoipRev = "202101070033"; 21 - geoipSha256 = "11naj51pzchdrjmkp1dqzcby1i2fhbq0mncwm4d5q5mh3chyizsf"; 20 + geoipRev = "202103080146"; 21 + geoipSha256 = "1qwmz5fxqqxcjw5jm9dvgpmbin2q69j9wdx4xv3pm8fc47wzx8w5"; 22 22 in fetchurl { 23 23 url = "https://github.com/v2fly/geoip/releases/download/${geoipRev}/geoip.dat"; 24 24 sha256 = geoipSha256; ··· 26 26 27 27 # MIT licensed 28 28 "geosite.dat" = let 29 - geositeRev = "20210106164413"; 30 - geositeSha256 = "0chc7jb3yzgrrjkpd3s1rlim5qgf6j2kp952fvkhpwmnap86aip7"; 29 + geositeRev = "20210308021214"; 30 + geositeSha256 = "1fp787wlzdjn2gxx4zmqrqqzqcq4xd10pqx8q919fag0kkzdm23s"; 31 31 in fetchurl { 32 32 url = "https://github.com/v2fly/domain-list-community/releases/download/${geositeRev}/dlc.dat"; 33 33 sha256 = geositeSha256; ··· 68 68 }; 69 69 70 70 in runCommand "v2ray-${version}" { 71 - inherit version; 71 + inherit src version; 72 72 inherit (core) meta; 73 73 74 74 nativeBuildInputs = [ makeWrapper ];
+1 -1
pkgs/tools/networking/v2ray/update.sh
··· 61 61 vendorSha256=$( 62 62 nix-build "$nixpkgs" -A v2ray --no-out-link 2>&1 | 63 63 tee /dev/stderr | 64 - sed -nE 's/.*got:\s*sha256:(\w+)$/\1/p' 64 + sed -nE 's/.*got:\s*(sha256\S+)$/\1/p' 65 65 ) 66 66 [[ "$vendorSha256" ]] 67 67 sed --in-place \
+2 -2
pkgs/tools/text/shfmt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "shfmt"; 5 - version = "3.2.2"; 5 + version = "3.2.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mvdan"; 9 9 repo = "sh"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ZeyHidw8iHboo/LHTR9E3Sqj8euaRvDaYbPQMdecsrk="; 11 + sha256 = "sha256-BkvsCIcm3qnfECNhY3DIPnBRih6D7rOHOQu9oc0YDZA="; 12 12 }; 13 13 14 14 vendorSha256 = "1ma7nvyn6ylbi8bd7x900i94pzs877kfy9xh0nf1bbify1vcpd29";
+5
pkgs/top-level/aliases.nix
··· 260 260 goimports = gotools; # added 2018-09-16 261 261 gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # added 2020-04-23 262 262 google-gflags = gflags; # added 2019-07-25 263 + google-music-scripts = throw "google-music-scripts has been removed because Google Play Music was discontinued"; # added 2021-03-07 264 + google-musicmanager = throw "google-musicmanager has been removed because Google Play Music was discontinued"; # added 2021-03-07 265 + google-play-music-desktop-player = throw "google-play-music-desktop-player has been removed because Google Play Music was discontinued"; # added 2021-03-07 263 266 googleAuthenticator = google-authenticator; # added 2016-10-16 264 267 grantlee5 = libsForQt5.grantlee; # added 2015-12-19 265 268 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25 ··· 384 387 mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # added 2020-05-23 385 388 mcomix = throw "mcomix has been removed from nixpkgs, as it's unmaintained; try mcomix3 a Python 3 fork"; # added 2019-12-10, modified 2020-11-25 386 389 mirage = throw "mirage has been femoved from nixpkgs, as it's unmaintained"; # added 2019-12-10 390 + mopidy-gmusic = throw "mopidy-gmusic has been removed because Google Play Music was discontinued"; # added 2021-03-07 387 391 mopidy-local-images = throw "mopidy-local-images has been removed as it's unmaintained. It's functionality has been merged into the mopidy-local extension."; # added 2020-10-18 388 392 mopidy-local-sqlite = throw "mopidy-local-sqlite has been removed as it's unmaintained. It's functionality has been merged into the mopidy-local extension."; # added 2020-10-18 389 393 mysql-client = hiPrio mariadb.client; ··· 731 735 trilium = throw "trilium has been removed. Please use trilium-desktop instead."; # added 2020-04-29 732 736 truecrypt = veracrypt; # added 2018-10-24 733 737 tshark = wireshark-cli; # added 2018-04-25 738 + tuijam = throw "tuijam has been removed because Google Play Music was discontinued"; # added 2021-03-07 734 739 uberwriter = apostrophe; # added 2020-04-23 735 740 ubootBeagleboneBlack = ubootAmx335xEVM; # added 2020-01-21 736 741 ucsFonts = ucs-fonts; # added 2016-07-15
+6 -21
pkgs/top-level/all-packages.nix
··· 662 662 663 663 arc_unpacker = callPackage ../tools/archivers/arc_unpacker { }; 664 664 665 - tuijam = callPackage ../applications/audio/tuijam { inherit (python3Packages) buildPythonApplication; }; 666 - 667 665 opnplug = callPackage ../applications/audio/adlplug { 668 666 adlplugChip = "-DADLplug_CHIP=OPN2"; 669 667 pname = "OPNplug"; ··· 1043 1041 aws-sam-cli = callPackage ../development/tools/aws-sam-cli { }; 1044 1042 1045 1043 aws-vault = callPackage ../tools/admin/aws-vault { }; 1044 + 1045 + aws-workspaces = callPackage ../applications/networking/remote/aws-workspaces { }; 1046 1046 1047 1047 iamy = callPackage ../tools/admin/iamy { }; 1048 1048 ··· 3036 3036 }; 3037 3037 in lib.recurseIntoAttrs { 3038 3038 alternatives = callPackage ../tools/audio/beets/plugins/alternatives.nix pluginArgs; 3039 - check = callPackage ../tools/audio/beets/plugins/check.nix pluginArgs; 3040 3039 copyartifacts = callPackage ../tools/audio/beets/plugins/copyartifacts.nix pluginArgs; 3041 3040 extrafiles = callPackage ../tools/audio/beets/plugins/extrafiles.nix pluginArgs; 3042 3041 }; ··· 4881 4880 google-compute-engine = with python3.pkgs; toPythonApplication google-compute-engine; 4882 4881 4883 4882 google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { }; 4884 - 4885 - google-music-scripts = callPackage ../tools/audio/google-music-scripts { }; 4886 4883 4887 4884 google-cloud-cpp = callPackage ../development/libraries/google-cloud-cpp { }; 4888 4885 ··· 20106 20103 20107 20104 powerdns = callPackage ../servers/dns/powerdns { }; 20108 20105 20106 + powerdns-admin = callPackage ../applications/networking/powerdns-admin { }; 20107 + 20109 20108 dnsdist = callPackage ../servers/dns/dnsdist { }; 20110 20109 20111 20110 pdns-recursor = callPackage ../servers/dns/pdns-recursor { }; ··· 20970 20969 open-sans = callPackage ../data/fonts/open-sans { }; 20971 20970 20972 20971 openzone-cursors = callPackage ../data/themes/openzone { }; 20972 + 20973 + oranchelo-icon-theme = callPackage ../data/icons/oranchelo-icon-theme { }; 20973 20974 20974 20975 orbitron = callPackage ../data/fonts/orbitron { }; 20975 20976 ··· 22402 22403 22403 22404 inherit (ocamlPackages) google-drive-ocamlfuse; 22404 22405 22405 - google-musicmanager = callPackage ../applications/audio/google-musicmanager { 22406 - inherit (qt514) qtbase qtwebkit; 22407 - # Downgrade to 1.34 to get libidn.so.11 22408 - libidn = (libidn.overrideAttrs (oldAttrs: { 22409 - src = fetchurl { 22410 - url = "mirror://gnu/libidn/libidn-1.34.tar.gz"; 22411 - sha256 = "0g3fzypp0xjcgr90c5cyj57apx1cmy0c6y9lvw2qdcigbyby469p"; 22412 - }; 22413 - })).out; 22414 - }; 22415 - 22416 22406 googler = callPackage ../applications/misc/googler { 22417 22407 python = python3; 22418 22408 }; ··· 22864 22854 google-chrome-beta = google-chrome.override { chromium = chromiumBeta; channel = "beta"; }; 22865 22855 22866 22856 google-chrome-dev = google-chrome.override { chromium = chromiumDev; channel = "dev"; }; 22867 - 22868 - google-play-music-desktop-player = callPackage ../applications/audio/google-play-music-desktop-player { 22869 - inherit (gnome2) GConf; 22870 - }; 22871 22857 22872 22858 gosmore = callPackage ../applications/misc/gosmore { }; 22873 22859 ··· 23934 23920 23935 23921 inherit (mopidyPackages) 23936 23922 mopidy 23937 - mopidy-gmusic 23938 23923 mopidy-iris 23939 23924 mopidy-local 23940 23925 mopidy-moped
+14 -8
pkgs/top-level/python-packages.nix
··· 2403 2403 2404 2404 flask_script = callPackage ../development/python-modules/flask-script { }; 2405 2405 2406 + flask-seasurf = callPackage ../development/python-modules/flask-seasurf { }; 2407 + 2406 2408 flask-silk = callPackage ../development/python-modules/flask-silk { }; 2407 2409 2408 2410 flask-socketio = callPackage ../development/python-modules/flask-socketio { }; ··· 2410 2412 flask-sockets = callPackage ../development/python-modules/flask-sockets { }; 2411 2413 2412 2414 flask_sqlalchemy = callPackage ../development/python-modules/flask-sqlalchemy { }; 2415 + 2416 + flask-sslify = callPackage ../development/python-modules/flask-sslify { }; 2413 2417 2414 2418 flask-swagger = callPackage ../development/python-modules/flask-swagger { }; 2415 2419 ··· 2672 2676 2673 2677 gmpy = callPackage ../development/python-modules/gmpy { }; 2674 2678 2675 - gmusicapi = callPackage ../development/python-modules/gmusicapi { }; 2676 - 2677 2679 gntp = callPackage ../development/python-modules/gntp { }; 2678 2680 2679 2681 gnureadline = callPackage ../development/python-modules/gnureadline { }; ··· 2797 2799 2798 2800 googlemaps = callPackage ../development/python-modules/googlemaps { }; 2799 2801 2800 - google-music = callPackage ../development/python-modules/google-music { }; 2801 - 2802 - google-music-proto = callPackage ../development/python-modules/google-music-proto { }; 2803 - 2804 - google-music-utils = callPackage ../development/python-modules/google-music-utils { }; 2805 - 2806 2802 google-pasta = callPackage ../development/python-modules/google-pasta { }; 2807 2803 2808 2804 google-resumable-media = callPackage ../development/python-modules/google-resumable-media { }; ··· 3844 3840 lightning = callPackage ../development/python-modules/lightning { }; 3845 3841 3846 3842 lightparam = callPackage ../development/python-modules/lightparam { }; 3843 + 3844 + lima = callPackage ../development/python-modules/lima { }; 3847 3845 3848 3846 limitlessled = callPackage ../development/python-modules/limitlessled { }; 3849 3847 ··· 6261 6259 6262 6260 pytest-check = callPackage ../development/python-modules/pytest-check { }; 6263 6261 6262 + pytest-cid = callPackage ../development/python-modules/pytest-cid { }; 6263 + 6264 6264 pytest-click = callPackage ../development/python-modules/pytest-click { }; 6265 6265 6266 6266 pytest-cov = self.pytestcov; # self 2021-01-04 ··· 6418 6418 6419 6419 python-awair = callPackage ../development/python-modules/python-awair { }; 6420 6420 6421 + python3-saml = callPackage ../development/python-modules/python3-saml { }; 6422 + 6421 6423 python-axolotl = callPackage ../development/python-modules/python-axolotl { }; 6422 6424 6423 6425 python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { }; ··· 8662 8664 xmljson = callPackage ../development/python-modules/xmljson { }; 8663 8665 8664 8666 xmlschema = callPackage ../development/python-modules/xmlschema { }; 8667 + 8668 + xmlsec = callPackage ../development/python-modules/xmlsec { 8669 + inherit (pkgs) libxslt libxml2 libtool pkg-config xmlsec; 8670 + }; 8665 8671 8666 8672 xmltodict = callPackage ../development/python-modules/xmltodict { }; 8667 8673