Merge master into staging-next

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

+2594 -1218
+6
maintainers/maintainer-list.nix
··· 10562 githubId = 1141948; 10563 name = "Zack Grannan"; 10564 }; 10565 zimbatm = { 10566 email = "zimbatm@zimbatm.com"; 10567 github = "zimbatm";
··· 10562 githubId = 1141948; 10563 name = "Zack Grannan"; 10564 }; 10565 + zhaofengli = { 10566 + email = "hello@zhaofeng.li"; 10567 + github = "zhaofengli"; 10568 + githubId = 2189609; 10569 + name = "Zhaofeng Li"; 10570 + }; 10571 zimbatm = { 10572 email = "zimbatm@zimbatm.com"; 10573 github = "zimbatm";
+1 -21
nixos/modules/system/boot/kernel_config.nix
··· 2 3 with lib; 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 mergeFalseByDefault = locs: defs: 24 if defs == [] then abort "This case should never happen." 25 else if any (x: x == false) (getValues defs) then false ··· 28 kernelItem = types.submodule { 29 options = { 30 tristate = mkOption { 31 - type = types.enum [ "y" "m" "n" null ] // { 32 - merge = mergeAnswer [ "y" "m" "n" ]; 33 - }; 34 default = null; 35 internal = true; 36 visible = true;
··· 2 3 with lib; 4 let 5 mergeFalseByDefault = locs: defs: 6 if defs == [] then abort "This case should never happen." 7 else if any (x: x == false) (getValues defs) then false ··· 10 kernelItem = types.submodule { 11 options = { 12 tristate = mkOption { 13 + type = types.enum [ "y" "m" "n" null ]; 14 default = null; 15 internal = true; 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 13 mopidy = callPackage ./mopidy.nix { }; 14 15 - mopidy-gmusic = callPackage ./gmusic.nix { }; 16 - 17 mopidy-iris = callPackage ./iris.nix { }; 18 19 mopidy-local = callPackage ./local.nix { };
··· 12 13 mopidy = callPackage ./mopidy.nix { }; 14 15 mopidy-iris = callPackage ./iris.nix { }; 16 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 homepage = "https://www.mopidy.com/"; 43 description = '' 44 An extensible music server that plays music from local disk, Spotify, 45 - SoundCloud, Google Play Music, and more 46 ''; 47 license = licenses.asl20; 48 maintainers = [ maintainers.fpletz ];
··· 42 homepage = "https://www.mopidy.com/"; 43 description = '' 44 An extensible music server that plays music from local disk, Spotify, 45 + SoundCloud, and more 46 ''; 47 license = licenses.asl20; 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 15 stdenv.mkDerivation rec { 16 pname = "lagrange"; 17 - version = "1.1.4"; 18 19 src = fetchFromGitHub { 20 owner = "skyjake"; 21 repo = "lagrange"; 22 rev = "v${version}"; 23 - sha256 = "sha256-EN0fQ5Scwrd7Tv31upQVbuqoNCoYudtruwtPR1IKTzE="; 24 fetchSubmodules = true; 25 }; 26
··· 14 15 stdenv.mkDerivation rec { 16 pname = "lagrange"; 17 + version = "1.2.2"; 18 19 src = fetchFromGitHub { 20 owner = "skyjake"; 21 repo = "lagrange"; 22 rev = "v${version}"; 23 + sha256 = "sha256-Y+BiXKxlUSZXaLcz75l333ZBkKyII9IyTmKQwjshBkE="; 24 fetchSubmodules = true; 25 }; 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 }; 18 in 19 stdenv.mkDerivation rec { 20 - version = "14.31.24"; 21 pname = "jmol"; 22 23 src = let 24 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 25 in fetchurl { 26 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 27 - sha256 = "sha256-86nDeKRXSNKrmYeo1rRLfziLVnmEmdIJRfIv6DFIxcs="; 28 }; 29 30 patchPhase = ''
··· 17 }; 18 in 19 stdenv.mkDerivation rec { 20 + version = "14.31.32"; 21 pname = "jmol"; 22 23 src = let 24 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 25 in fetchurl { 26 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 27 + sha256 = "sha256-lY4DvtSAC8VDYwzZVZVHNXnyJiSn1vo829DEsLEG/hM="; 28 }; 29 30 patchPhase = ''
+2 -2
pkgs/applications/virtualization/conmon/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "conmon"; 13 - version = "2.0.26"; 14 15 src = fetchFromGitHub { 16 owner = "containers"; 17 repo = pname; 18 rev = "v${version}"; 19 - sha256 = "sha256-q2lh02iZ7FDBPjtoKY5p3c6Vcn9Ey8DCMn/Oe7/74ug="; 20 }; 21 22 nativeBuildInputs = [ pkg-config ];
··· 10 11 stdenv.mkDerivation rec { 12 pname = "conmon"; 13 + version = "2.0.27"; 14 15 src = fetchFromGitHub { 16 owner = "containers"; 17 repo = pname; 18 rev = "v${version}"; 19 + sha256 = "sha256-LMvhSoKd652XVPzuId8Ortf0f08FUP1zCn06PgtRwkA="; 20 }; 21 22 nativeBuildInputs = [ pkg-config ];
-1
pkgs/build-support/fetchbitbucket/default.nix
··· 6 inherit name; 7 url = "https://bitbucket.org/${owner}/${repo}/get/${rev}.tar.gz"; 8 meta.homepage = "https://bitbucket.org/${owner}/${repo}/"; 9 - extraPostFetch = ''rm -f "$out"/.hg_archival.txt''; # impure file; see #12002 10 } // removeAttrs args [ "owner" "repo" "rev" ]) // { inherit rev; }
··· 6 inherit name; 7 url = "https://bitbucket.org/${owner}/${repo}/get/${rev}.tar.gz"; 8 meta.homepage = "https://bitbucket.org/${owner}/${repo}/"; 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 2 , gflags, libnsl 3 }: 4 5 stdenv.mkDerivation rec { 6 - version = "1.35.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 7 pname = "grpc"; 8 src = fetchFromGitHub { 9 owner = "grpc"; 10 repo = "grpc"; 11 rev = "v${version}"; 12 - sha256 = "0vxgp3kqxsglavzs91ybpkkh7aaywxcryacp5z3z6dpsgmw0mscd"; 13 fetchSubmodules = true; 14 }; 15 patches = [ ··· 21 ]; 22 23 nativeBuildInputs = [ cmake pkg-config ]; 24 - buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags ] 25 ++ lib.optionals stdenv.isLinux [ libnsl ]; 26 27 cmakeFlags = 28 [ "-DgRPC_ZLIB_PROVIDER=package" 29 "-DgRPC_CARES_PROVIDER=package" 30 "-DgRPC_SSL_PROVIDER=package" 31 "-DgRPC_PROTOBUF_PROVIDER=package" 32 "-DgRPC_GFLAGS_PROVIDER=package"
··· 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, zlib, c-ares, pkg-config, re2, openssl, protobuf 2 , gflags, libnsl 3 }: 4 5 stdenv.mkDerivation rec { 6 + version = "1.36.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too 7 pname = "grpc"; 8 src = fetchFromGitHub { 9 owner = "grpc"; 10 repo = "grpc"; 11 rev = "v${version}"; 12 + sha256 = "0lb6pls9m05bvr6bvqzp6apdchhsazc5866yvmgkm979xcrzdy2z"; 13 fetchSubmodules = true; 14 }; 15 patches = [ ··· 21 ]; 22 23 nativeBuildInputs = [ cmake pkg-config ]; 24 + buildInputs = [ zlib c-ares c-ares.cmake-config re2 openssl protobuf gflags ] 25 ++ lib.optionals stdenv.isLinux [ libnsl ]; 26 27 cmakeFlags = 28 [ "-DgRPC_ZLIB_PROVIDER=package" 29 "-DgRPC_CARES_PROVIDER=package" 30 + "-DgRPC_RE2_PROVIDER=package" 31 "-DgRPC_SSL_PROVIDER=package" 32 "-DgRPC_PROTOBUF_PROVIDER=package" 33 "-DgRPC_GFLAGS_PROVIDER=package"
+483 -534
pkgs/development/node-packages/node-packages.nix
··· 1597 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 1598 }; 1599 }; 1600 "@devicefarmer/adbkit-2.11.3" = { 1601 name = "_at_devicefarmer_slash_adbkit"; 1602 packageName = "@devicefarmer/adbkit"; ··· 3658 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 3659 }; 3660 }; 3661 - "@netlify/build-9.8.4" = { 3662 name = "_at_netlify_slash_build"; 3663 packageName = "@netlify/build"; 3664 - version = "9.8.4"; 3665 src = fetchurl { 3666 - url = "https://registry.npmjs.org/@netlify/build/-/build-9.8.4.tgz"; 3667 - sha512 = "+ep+IPKkv6ZYHieeZ4Z6DkKpcFzSkpA2yYlwbxUw+R5SxgIVIvO7dGGRY+4Z8nMz3J29O0Ak0F5//gdwuxhjMA=="; 3668 }; 3669 }; 3670 "@netlify/cache-utils-1.0.7" = { ··· 4252 sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q=="; 4253 }; 4254 }; 4255 - "@octokit/types-6.12.0" = { 4256 name = "_at_octokit_slash_types"; 4257 packageName = "@octokit/types"; 4258 - version = "6.12.0"; 4259 src = fetchurl { 4260 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.12.0.tgz"; 4261 - sha512 = "KwOf16soD7aDEEi/PgNeJlHzjZPfrmmNy+7WezSdrpnqZ7YImBJcNnX9+5RUHt1MnA4h8oISRHTqaZDGsX9DRQ=="; 4262 }; 4263 }; 4264 "@open-policy-agent/opa-wasm-1.2.0" = { ··· 5233 sha512 = "ca2JKOnSRzYHJkhOB9gYmdRZHmd02b/uBd/S0D5W+L9nIMS7sUBV5jfhKwVgrYPIpVNIc0XCI9rxK4TfkQRpiA=="; 5234 }; 5235 }; 5236 "@snyk/composer-lockfile-parser-1.4.1" = { 5237 name = "_at_snyk_slash_composer-lockfile-parser"; 5238 packageName = "@snyk/composer-lockfile-parser"; ··· 5260 sha512 = "DIFLEhr8m1GrAwsLGInJmpcQMacjuhf3jcbpQTR+LeMvZA9IuKq+B7kqw2O2FzMiHMZmUb5z+tV+BR7+IUHkFQ=="; 5261 }; 5262 }; 5263 "@snyk/gemfile-1.2.0" = { 5264 name = "_at_snyk_slash_gemfile"; 5265 packageName = "@snyk/gemfile"; ··· 5267 src = fetchurl { 5268 url = "https://registry.npmjs.org/@snyk/gemfile/-/gemfile-1.2.0.tgz"; 5269 sha512 = "nI7ELxukf7pT4/VraL4iabtNNMz8mUo7EXlqCFld8O5z6mIMLX9llps24iPpaIZOwArkY3FWA+4t+ixyvtTSIA=="; 5270 }; 5271 }; 5272 "@snyk/graphlib-2.1.9-patch.3" = { ··· 5728 sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ=="; 5729 }; 5730 }; 5731 "@types/cacheable-request-6.0.1" = { 5732 name = "_at_types_slash_cacheable-request"; 5733 packageName = "@types/cacheable-request"; ··· 5890 sha512 = "DLVpLEGTEZGBXOYoYoagHSxXkDHONc0fZouF2ayw7Q18aRu1Afwci+1CFKvPpouCUOVWP+dmCaAWpQjswe7kpg=="; 5891 }; 5892 }; 5893 - "@types/eslint-7.2.6" = { 5894 name = "_at_types_slash_eslint"; 5895 packageName = "@types/eslint"; 5896 - version = "7.2.6"; 5897 src = fetchurl { 5898 - url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz"; 5899 - sha512 = "I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw=="; 5900 }; 5901 }; 5902 "@types/eslint-scope-3.7.0" = { ··· 5987 src = fetchurl { 5988 url = "https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; 5989 sha512 = "mky/O83TXmGY39P1H9YbUpjV6l6voRYlufqfFCvel8l1phuy8HRjdWc1rrPuN53ITBJlbyMSV6z3niOySO5pgQ=="; 5990 }; 5991 }; 5992 "@types/fs-capacitor-2.0.0" = { ··· 6250 sha512 = "oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q=="; 6251 }; 6252 }; 6253 "@types/long-4.0.1" = { 6254 name = "_at_types_slash_long"; 6255 packageName = "@types/long"; ··· 6275 src = fetchurl { 6276 url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz"; 6277 sha512 = "SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw=="; 6278 }; 6279 }; 6280 "@types/mime-1.3.2" = { ··· 6385 sha512 = "fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="; 6386 }; 6387 }; 6388 - "@types/node-10.17.54" = { 6389 name = "_at_types_slash_node"; 6390 packageName = "@types/node"; 6391 - version = "10.17.54"; 6392 src = fetchurl { 6393 - url = "https://registry.npmjs.org/@types/node/-/node-10.17.54.tgz"; 6394 - sha512 = "c8Lm7+hXdSPmWH4B9z/P/xIXhFK3mCQin4yCYMd2p1qpMG5AfgyJuYZ+3q2dT7qLiMMMGMd5dnkFpdqJARlvtQ=="; 6395 }; 6396 }; 6397 "@types/node-12.12.70" = { ··· 6421 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 6422 }; 6423 }; 6424 - "@types/node-14.14.31" = { 6425 name = "_at_types_slash_node"; 6426 packageName = "@types/node"; 6427 - version = "14.14.31"; 6428 src = fetchurl { 6429 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz"; 6430 - sha512 = "vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="; 6431 }; 6432 }; 6433 "@types/node-6.14.13" = { ··· 6538 sha512 = "1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug=="; 6539 }; 6540 }; 6541 - "@types/qs-6.9.5" = { 6542 name = "_at_types_slash_qs"; 6543 packageName = "@types/qs"; 6544 - version = "6.9.5"; 6545 src = fetchurl { 6546 - url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz"; 6547 - sha512 = "/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ=="; 6548 }; 6549 }; 6550 "@types/range-parser-1.2.3" = { ··· 6619 sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; 6620 }; 6621 }; 6622 "@types/sass-1.16.0" = { 6623 name = "_at_types_slash_sass"; 6624 packageName = "@types/sass"; ··· 6745 sha512 = "I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A=="; 6746 }; 6747 }; 6748 - "@types/uglify-js-3.12.0" = { 6749 name = "_at_types_slash_uglify-js"; 6750 packageName = "@types/uglify-js"; 6751 - version = "3.12.0"; 6752 src = fetchurl { 6753 - url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.12.0.tgz"; 6754 - sha512 = "sYAF+CF9XZ5cvEBkI7RtrG9g2GtMBkviTnBxYYyq+8BWvO4QtXfwwR6a2LFwCi4evMKZfpv6U43ViYvv17Wz3Q=="; 6755 }; 6756 }; 6757 "@types/unist-2.0.3" = { ··· 8392 sha512 = "TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg=="; 8393 }; 8394 }; 8395 - "adm-zip-0.5.3" = { 8396 name = "adm-zip"; 8397 packageName = "adm-zip"; 8398 - version = "0.5.3"; 8399 src = fetchurl { 8400 - url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.3.tgz"; 8401 - sha512 = "zsoTXEwRNCxBzRHLENFLuecCcwzzXiEhWo1r3GP68iwi8Q/hW2RrqgeY1nfJ/AhNQNWnZq/4v0TbfMsUkI+TYw=="; 8402 }; 8403 }; 8404 "adverb-where-0.0.9" = { ··· 8572 sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg=="; 8573 }; 8574 }; 8575 - "ajv-7.1.1" = { 8576 name = "ajv"; 8577 packageName = "ajv"; 8578 - version = "7.1.1"; 8579 src = fetchurl { 8580 - url = "https://registry.npmjs.org/ajv/-/ajv-7.1.1.tgz"; 8581 - sha512 = "ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ=="; 8582 }; 8583 }; 8584 "ajv-errors-1.0.1" = { ··· 9544 sha512 = "Tq3yV/T4wxBsD2Wign8W9VQKhaUxzzRmjEiSoOK0SLqPgDP/N1TKdYyBeIEu56T4I9iO4fKTTR0mN9NWkBA0sg=="; 9545 }; 9546 }; 9547 - "archiver-5.2.0" = { 9548 name = "archiver"; 9549 packageName = "archiver"; 9550 - version = "5.2.0"; 9551 src = fetchurl { 9552 - url = "https://registry.npmjs.org/archiver/-/archiver-5.2.0.tgz"; 9553 - sha512 = "QEAKlgQuAtUxKeZB9w5/ggKXh21bZS+dzzuQ0RPBC20qtDCbTyzqmisoeJP46MP39fg4B4IcyvR+yeyEBdblsQ=="; 9554 }; 9555 }; 9556 "archiver-utils-2.1.0" = { ··· 13891 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 13892 }; 13893 }; 13894 - "caniuse-lite-1.0.30001196" = { 13895 name = "caniuse-lite"; 13896 packageName = "caniuse-lite"; 13897 - version = "1.0.30001196"; 13898 src = fetchurl { 13899 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001196.tgz"; 13900 - sha512 = "CPvObjD3ovWrNBaXlAIGWmg2gQQuJ5YhuciUOjPRox6hIQttu8O+b51dx6VIpIY9ESd2d0Vac1RKpICdG4rGUg=="; 13901 }; 13902 }; 13903 "canvas-2.7.0" = { ··· 15052 sha1 = "a211e09c6a3de3ba1af27d049d301250d18812bc"; 15053 }; 15054 }; 15055 - "clipboard-2.0.6" = { 15056 name = "clipboard"; 15057 packageName = "clipboard"; 15058 - version = "2.0.6"; 15059 src = fetchurl { 15060 - url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.6.tgz"; 15061 - sha512 = "g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg=="; 15062 }; 15063 }; 15064 "clipboardy-1.2.3" = { ··· 16519 sha512 = "5AKrTtmiioQWloJ3WRFZb0/uR1lrRboaVE9go++XZltvRnZkN2/kQjaZ0gtFxynU5u5k9mWVtk8mNcgJ9yoRbQ=="; 16520 }; 16521 }; 16522 - "constructs-3.3.58" = { 16523 name = "constructs"; 16524 packageName = "constructs"; 16525 - version = "3.3.58"; 16526 src = fetchurl { 16527 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.58.tgz"; 16528 - sha512 = "TSDyDQmHWs0fBJQjQIjVC5Hd7iLy62Pd6PTN4wOlr4dRGkByYS7Fzb87HOIewN6AZAZPxjCVR7MqtJM8RgVBsg=="; 16529 }; 16530 }; 16531 "consume-http-header-1.0.0" = { ··· 21796 sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA=="; 21797 }; 21798 }; 21799 - "esbuild-0.8.56" = { 21800 name = "esbuild"; 21801 packageName = "esbuild"; 21802 - version = "0.8.56"; 21803 src = fetchurl { 21804 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.8.56.tgz"; 21805 - sha512 = "PTMdAWK3JI2MNW811znGssGP5GR44tQPr++VQ1rPP0n8Z1cTKbCPD3S/kXPLr3ZZDIwAaVm08fuFym6Rp8l/0A=="; 21806 }; 21807 }; 21808 "esc-exit-2.0.2" = { ··· 24091 sha1 = "2ad90d490f6828c1aa40292cf709ac3318210c3c"; 24092 }; 24093 }; 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 "find-yarn-workspace-root-2.0.0" = { 24104 name = "find-yarn-workspace-root"; 24105 packageName = "find-yarn-workspace-root"; ··· 26071 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; 26072 }; 26073 }; 26074 - "glob-parent-5.1.1" = { 26075 name = "glob-parent"; 26076 packageName = "glob-parent"; 26077 - version = "5.1.1"; 26078 src = fetchurl { 26079 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"; 26080 - sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 26081 }; 26082 }; 26083 "glob-slash-1.0.0" = { ··· 28061 sha512 = "4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q=="; 28062 }; 28063 }; 28064 - "htmlparser2-6.0.0" = { 28065 name = "htmlparser2"; 28066 packageName = "htmlparser2"; 28067 - version = "6.0.0"; 28068 src = fetchurl { 28069 - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.0.tgz"; 28070 - sha512 = "numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw=="; 28071 }; 28072 }; 28073 "http-auth-2.0.7" = { ··· 30456 sha512 = "wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg=="; 30457 }; 30458 }; 30459 - "is-path-inside-3.0.2" = { 30460 name = "is-path-inside"; 30461 packageName = "is-path-inside"; 30462 - version = "3.0.2"; 30463 src = fetchurl { 30464 - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz"; 30465 - sha512 = "/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg=="; 30466 }; 30467 }; 30468 "is-plain-obj-1.1.0" = { ··· 31779 sha512 = "fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g=="; 31780 }; 31781 }; 31782 - "jsdom-16.4.0" = { 31783 name = "jsdom"; 31784 packageName = "jsdom"; 31785 - version = "16.4.0"; 31786 src = fetchurl { 31787 - url = "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz"; 31788 - sha512 = "lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w=="; 31789 }; 31790 }; 31791 "jsdom-7.2.2" = { ··· 31860 sha512 = "BMYxIjYG62wctUZFjYc5xKPNTgzTRRw2Fp8R9p4o0VeFE224ntyHgy9y7oKuCu+K1ev917NRoCLj7f2tyGTMAg=="; 31861 }; 31862 }; 31863 - "jsii-srcmak-0.1.249" = { 31864 name = "jsii-srcmak"; 31865 packageName = "jsii-srcmak"; 31866 - version = "0.1.249"; 31867 src = fetchurl { 31868 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.249.tgz"; 31869 - sha512 = "l+zmAdckyvqsTKs18jn36aiFrFh8Zxuea2cQjtOCp5rsF1uOO8oYuwOAddtaCAa3j1dG6qhOvdm8Sfz7C0FMuA=="; 31870 }; 31871 }; 31872 "json-bigint-0.2.3" = { ··· 34244 src = fetchurl { 34245 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"; 34246 sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6"; 34247 }; 34248 }; 34249 "lodash.clone-4.5.0" = { ··· 37729 sha512 = "O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ=="; 37730 }; 37731 }; 37732 - "mocha-8.3.0" = { 37733 name = "mocha"; 37734 packageName = "mocha"; 37735 - version = "8.3.0"; 37736 src = fetchurl { 37737 - url = "https://registry.npmjs.org/mocha/-/mocha-8.3.0.tgz"; 37738 - sha512 = "TQqyC89V1J/Vxx0DhJIXlq9gbbL9XFNdeLQ1+JsnZsVaSOV1z3tWfw0qZmQJGQRIfkvZcs7snQnZnOCKoldq1Q=="; 37739 }; 37740 }; 37741 "mock-require-3.0.3" = { ··· 42547 sha512 = "fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ=="; 42548 }; 42549 }; 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 "parse5-6.0.1" = { 42560 name = "parse5"; 42561 packageName = "parse5"; ··· 46472 sha512 = "AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw=="; 46473 }; 46474 }; 46475 "queue-microtask-1.2.2" = { 46476 name = "queue-microtask"; 46477 packageName = "queue-microtask"; ··· 50513 sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg=="; 50514 }; 50515 }; 50516 - "simple-git-2.36.0" = { 50517 name = "simple-git"; 50518 packageName = "simple-git"; 50519 - version = "2.36.0"; 50520 src = fetchurl { 50521 - url = "https://registry.npmjs.org/simple-git/-/simple-git-2.36.0.tgz"; 50522 - sha512 = "EJNaUgGYzBnQiyEkNZgbQSg76agbEDqlgHDr8DAXqV8xWvcefydbipye7YXtHMGbbEK998dcFezS8qF0sepZ5Q=="; 50523 }; 50524 }; 50525 "simple-markdown-0.4.4" = { ··· 53708 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 53709 }; 53710 }; 53711 - "stylelint-13.11.0" = { 53712 name = "stylelint"; 53713 packageName = "stylelint"; 53714 - version = "13.11.0"; 53715 src = fetchurl { 53716 - url = "https://registry.npmjs.org/stylelint/-/stylelint-13.11.0.tgz"; 53717 - sha512 = "DhrKSWDWGZkCiQMtU+VroXM6LWJVC8hSK24nrUngTSQvXGK75yZUq4yNpynqrxD3a/fzKMED09V+XxO4z4lTbw=="; 53718 }; 53719 }; 53720 "stylelint-8.4.0" = { ··· 54032 sha512 = "SROWH0rB0DJ+0Ii264cprmNu/NJyZacs5wFD71ya93Cg/oA2lKHgQm4F6j0EWA4ktFMzeuJJm/eX6fka39hEHA=="; 54033 }; 54034 }; 54035 - "svelte2tsx-0.1.178" = { 54036 name = "svelte2tsx"; 54037 packageName = "svelte2tsx"; 54038 - version = "0.1.178"; 54039 src = fetchurl { 54040 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.1.178.tgz"; 54041 - sha512 = "zfIFE+H5ndEBJ5CLTB3xJyUu/vwezThv1k9DvYFiIE7s9oNq4S1uxpqOU43n/KJKADA/nvk61O3H8ADSj7cLQQ=="; 54042 }; 54043 }; 54044 "sver-compat-1.5.0" = { ··· 55842 sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg=="; 55843 }; 55844 }; 55845 "township-client-1.3.2" = { 55846 name = "township-client"; 55847 packageName = "township-client"; ··· 56256 sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 56257 }; 56258 }; 56259 - "tsutils-3.20.0" = { 56260 name = "tsutils"; 56261 packageName = "tsutils"; 56262 - version = "3.20.0"; 56263 src = fetchurl { 56264 - url = "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz"; 56265 - sha512 = "RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg=="; 56266 }; 56267 }; 56268 "ttl-1.3.1" = { ··· 57426 sha512 = "sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="; 57427 }; 57428 }; 57429 - "unist-util-is-4.0.4" = { 57430 name = "unist-util-is"; 57431 packageName = "unist-util-is"; 57432 - version = "4.0.4"; 57433 src = fetchurl { 57434 - url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.0.4.tgz"; 57435 - sha512 = "3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA=="; 57436 }; 57437 }; 57438 "unist-util-map-1.0.5" = { ··· 59263 sha512 = "gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w=="; 59264 }; 59265 }; 59266 - "vls-0.5.10" = { 59267 name = "vls"; 59268 packageName = "vls"; 59269 - version = "0.5.10"; 59270 src = fetchurl { 59271 - url = "https://registry.npmjs.org/vls/-/vls-0.5.10.tgz"; 59272 - sha512 = "/zXdkUatCptsDGmrEVh0A/LEQ48qEwrKe+7HiIwUOmiz+0DkoHsyf/j6eppXMVRWMcHWopwd9/VTNCRlFf2NFw=="; 59273 }; 59274 }; 59275 "vm-browserify-1.1.2" = { ··· 61196 src = fetchurl { 61197 url = "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz"; 61198 sha512 = "hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA=="; 61199 }; 61200 }; 61201 "x-default-browser-0.3.1" = { ··· 63148 sources."@nestjs/schematics-7.2.8" 63149 sources."@schematics/schematics-0.1102.0" 63150 sources."@types/anymatch-1.3.1" 63151 - sources."@types/eslint-7.2.6" 63152 sources."@types/eslint-scope-3.7.0" 63153 sources."@types/estree-0.0.45" 63154 sources."@types/json-schema-7.0.7" 63155 sources."@types/json5-0.0.29" 63156 - sources."@types/node-14.14.31" 63157 sources."@types/parse-json-4.0.0" 63158 sources."@types/source-list-map-0.1.2" 63159 sources."@types/tapable-1.0.6" 63160 - (sources."@types/uglify-js-3.12.0" // { 63161 dependencies = [ 63162 sources."source-map-0.6.1" 63163 ]; ··· 63207 sources."buffer-5.7.1" 63208 sources."buffer-from-1.1.1" 63209 sources."callsites-3.1.0" 63210 - sources."caniuse-lite-1.0.30001196" 63211 sources."chalk-3.0.0" 63212 sources."chardet-0.7.0" 63213 sources."chokidar-3.5.1" ··· 63263 sources."function-bind-1.1.1" 63264 sources."get-stream-5.2.0" 63265 sources."glob-7.1.6" 63266 - sources."glob-parent-5.1.1" 63267 sources."glob-to-regexp-0.4.1" 63268 sources."graceful-fs-4.2.6" 63269 sources."has-1.0.3" ··· 63479 }) 63480 (sources."@apollo/protobufjs-1.0.5" // { 63481 dependencies = [ 63482 - sources."@types/node-10.17.54" 63483 ]; 63484 }) 63485 sources."@apollographql/apollo-tools-0.4.9" ··· 63841 sources."@types/long-4.0.1" 63842 sources."@types/mime-1.3.2" 63843 sources."@types/minimatch-3.0.3" 63844 - sources."@types/node-14.14.31" 63845 (sources."@types/node-fetch-2.5.7" // { 63846 dependencies = [ 63847 sources."form-data-3.0.1" 63848 ]; 63849 }) 63850 sources."@types/normalize-package-data-2.4.0" 63851 - sources."@types/qs-6.9.5" 63852 sources."@types/range-parser-1.2.3" 63853 sources."@types/serve-static-1.13.9" 63854 sources."@types/through-0.0.30" ··· 64102 ]; 64103 }) 64104 sources."camelcase-4.1.0" 64105 - sources."caniuse-lite-1.0.30001196" 64106 (sources."capital-case-1.0.4" // { 64107 dependencies = [ 64108 sources."tslib-2.1.0" ··· 64186 ]; 64187 }) 64188 sources."cli-width-3.0.0" 64189 - sources."clipboard-2.0.6" 64190 (sources."cliui-6.0.0" // { 64191 dependencies = [ 64192 sources."ansi-styles-4.3.0" ··· 64479 sources."git-up-4.0.2" 64480 sources."git-url-parse-11.4.3" 64481 sources."glob-7.1.5" 64482 - sources."glob-parent-5.1.1" 64483 sources."glob-to-regexp-0.3.0" 64484 (sources."global-agent-2.1.12" // { 64485 dependencies = [ ··· 65726 sources."balanced-match-1.0.0" 65727 sources."brace-expansion-1.1.11" 65728 sources."browserslist-4.16.3" 65729 - sources."caniuse-lite-1.0.30001196" 65730 sources."chalk-2.4.2" 65731 sources."color-convert-1.9.3" 65732 sources."color-name-1.1.3" ··· 65831 dependencies = [ 65832 sources."@types/glob-7.1.3" 65833 sources."@types/minimatch-3.0.3" 65834 - sources."@types/node-14.14.31" 65835 sources."balanced-match-1.0.0" 65836 sources."brace-expansion-1.1.11" 65837 sources."chromium-pickle-js-0.2.0" ··· 67272 }; 67273 dependencies = [ 67274 sources."@jsii/spec-1.24.0" 67275 - sources."@types/node-10.17.54" 67276 sources."ansi-regex-5.0.0" 67277 sources."ansi-styles-4.3.0" 67278 sources."array-filter-1.0.0" ··· 67366 sources."yargs-16.2.0" 67367 ]; 67368 }) 67369 - (sources."jsii-srcmak-0.1.249" // { 67370 dependencies = [ 67371 sources."fs-extra-9.1.0" 67372 ]; ··· 67469 sources."@types/archiver-5.1.0" 67470 sources."@types/glob-7.1.3" 67471 sources."@types/minimatch-3.0.3" 67472 - sources."@types/node-14.14.31" 67473 sources."@types/readline-sync-1.4.3" 67474 sources."@types/stream-buffers-3.0.3" 67475 sources."@types/uuid-8.3.0" ··· 67477 sources."ansi-escapes-4.3.1" 67478 sources."ansi-regex-5.0.0" 67479 sources."ansi-styles-4.3.0" 67480 - sources."archiver-5.2.0" 67481 (sources."archiver-utils-2.1.0" // { 67482 dependencies = [ 67483 sources."readable-stream-2.3.7" ··· 67522 sources."commonmark-0.29.3" 67523 sources."compress-commons-4.1.0" 67524 sources."concat-map-0.0.1" 67525 - sources."constructs-3.3.58" 67526 sources."core-util-is-1.0.2" 67527 sources."crc-32-1.2.0" 67528 sources."crc32-stream-4.0.2" ··· 67642 sources."yargs-16.2.0" 67643 ]; 67644 }) 67645 - (sources."jsii-srcmak-0.1.249" // { 67646 dependencies = [ 67647 sources."fs-extra-9.1.0" 67648 sources."jsonfile-6.1.0" ··· 68037 coc-git = nodeEnv.buildNodePackage { 68038 name = "coc-git"; 68039 packageName = "coc-git"; 68040 - version = "2.3.0"; 68041 src = fetchurl { 68042 - url = "https://registry.npmjs.org/coc-git/-/coc-git-2.3.0.tgz"; 68043 - sha512 = "YMKmaWmrrfncd+kjF0Xz5by+V1CUsEVJubEO47syfQ5ZPov7TW4/I0OhMZJBjiTXGQJuI5zS8uQbG6VSdke/dA=="; 68044 }; 68045 buildInputs = globalBuildInputs; 68046 meta = { ··· 68512 sources."callsites-3.1.0" 68513 sources."camelcase-2.1.1" 68514 sources."camelcase-keys-2.1.0" 68515 - sources."caniuse-lite-1.0.30001196" 68516 sources."capture-stack-trace-1.0.1" 68517 sources."ccount-1.1.0" 68518 (sources."chalk-4.1.0" // { ··· 68748 sources."is-glob-2.0.1" 68749 ]; 68750 }) 68751 - sources."glob-parent-5.1.1" 68752 sources."glob-to-regexp-0.3.0" 68753 sources."global-dirs-0.1.1" 68754 sources."globals-12.4.0" ··· 69268 sources."svg-tags-1.0.0" 69269 (sources."table-6.0.7" // { 69270 dependencies = [ 69271 - sources."ajv-7.1.1" 69272 sources."json-schema-traverse-1.0.0" 69273 ]; 69274 }) ··· 69297 sources."tsutils-2.29.0" 69298 ]; 69299 }) 69300 - sources."tsutils-3.20.0" 69301 sources."type-check-0.4.0" 69302 sources."type-fest-0.8.1" 69303 sources."typescript-3.9.9" ··· 69478 coc-rust-analyzer = nodeEnv.buildNodePackage { 69479 name = "coc-rust-analyzer"; 69480 packageName = "coc-rust-analyzer"; 69481 - version = "0.36.1"; 69482 src = fetchurl { 69483 - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.36.1.tgz"; 69484 - sha512 = "g4h0phqq6Wyf4S2kyRSklaokDcqRWqu7NmKL2HrU3S4MstwKddAzQ/jHBL/5akBa4WeL8/Mvj3v90sHuSPly3w=="; 69485 }; 69486 buildInputs = globalBuildInputs; 69487 meta = { ··· 69590 sources."@types/normalize-package-data-2.4.0" 69591 sources."@types/parse-json-4.0.0" 69592 sources."@types/unist-2.0.3" 69593 - sources."ajv-7.1.1" 69594 sources."ansi-regex-5.0.0" 69595 sources."ansi-styles-3.2.1" 69596 sources."array-union-2.1.0" ··· 69605 sources."callsites-3.1.0" 69606 sources."camelcase-5.3.1" 69607 sources."camelcase-keys-6.2.2" 69608 - sources."caniuse-lite-1.0.30001196" 69609 (sources."chalk-4.1.0" // { 69610 dependencies = [ 69611 sources."ansi-styles-4.3.0" ··· 69666 sources."gensync-1.0.0-beta.2" 69667 sources."get-stdin-8.0.0" 69668 sources."glob-7.1.6" 69669 - sources."glob-parent-5.1.1" 69670 sources."global-modules-2.0.0" 69671 sources."global-prefix-3.0.0" 69672 sources."globals-11.12.0" ··· 69835 sources."strip-ansi-6.0.0" 69836 sources."strip-indent-3.0.0" 69837 sources."style-search-0.1.0" 69838 - sources."stylelint-13.11.0" 69839 sources."sugarss-2.0.0" 69840 sources."supports-color-5.5.0" 69841 sources."svg-tags-1.0.0" ··· 69849 sources."unified-9.2.1" 69850 sources."uniq-1.0.1" 69851 sources."unist-util-find-all-after-3.0.2" 69852 - sources."unist-util-is-4.0.4" 69853 sources."unist-util-stringify-position-2.0.3" 69854 sources."uri-js-4.4.1" 69855 sources."util-deprecate-1.0.2" ··· 70037 coc-vetur = nodeEnv.buildNodePackage { 70038 name = "coc-vetur"; 70039 packageName = "coc-vetur"; 70040 - version = "1.2.3"; 70041 src = fetchurl { 70042 - url = "https://registry.npmjs.org/coc-vetur/-/coc-vetur-1.2.3.tgz"; 70043 - sha512 = "2SHFFjxkw2kl0hADDNUYX85OR/PbjqYPxFnpNp6G83SbeZBoJN8KDUl7TrIJ7BZ4UCiIilXnKQCHpxREiVPAEg=="; 70044 }; 70045 dependencies = [ 70046 sources."@babel/code-frame-7.12.11" ··· 70121 sources."function-bind-1.1.1" 70122 sources."functional-red-black-tree-1.0.1" 70123 sources."glob-7.1.6" 70124 - sources."glob-parent-5.1.1" 70125 sources."globals-12.4.0" 70126 sources."has-1.0.3" 70127 sources."has-flag-3.0.0" ··· 70179 sources."supports-color-5.5.0" 70180 (sources."table-6.0.7" // { 70181 dependencies = [ 70182 - sources."ajv-7.1.1" 70183 sources."json-schema-traverse-1.0.0" 70184 ]; 70185 }) ··· 70197 sources."typescript-4.2.3" 70198 sources."uri-js-4.4.1" 70199 sources."v8-compile-cache-2.3.0" 70200 - sources."vls-0.5.10" 70201 (sources."vue-eslint-parser-7.6.0" // { 70202 dependencies = [ 70203 sources."eslint-visitor-keys-1.3.0" ··· 70221 coc-vimlsp = nodeEnv.buildNodePackage { 70222 name = "coc-vimlsp"; 70223 packageName = "coc-vimlsp"; 70224 - version = "0.11.0"; 70225 src = fetchurl { 70226 - url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.11.0.tgz"; 70227 - sha512 = "tcou7cmYgzjLLPfLEyuea5umVkITER0IqDsJCc/3IeuPFyL03D7EDyeXIcyR+fJwXpJ0AzO6rzoLBMqpt4hYGg=="; 70228 }; 70229 buildInputs = globalBuildInputs; 70230 meta = { ··· 70697 sources."get-stream-5.2.0" 70698 sources."getpass-0.1.7" 70699 sources."glob-7.1.6" 70700 - sources."glob-parent-5.1.1" 70701 sources."global-dirs-2.1.0" 70702 sources."globby-11.0.2" 70703 (sources."got-9.6.0" // { ··· 70790 sources."is-npm-4.0.0" 70791 sources."is-number-7.0.0" 70792 sources."is-obj-2.0.0" 70793 - sources."is-path-inside-3.0.2" 70794 sources."is-stream-2.0.0" 70795 sources."is-typedarray-1.0.0" 70796 sources."is-wsl-2.2.0" ··· 71101 sources."@types/glob-7.1.3" 71102 sources."@types/minimatch-3.0.3" 71103 sources."@types/minimist-1.2.1" 71104 - sources."@types/node-14.14.31" 71105 sources."@types/normalize-package-data-2.4.0" 71106 sources."aggregate-error-3.1.0" 71107 sources."ansi-styles-3.2.1" ··· 71472 sources."@cycle/run-3.4.0" 71473 sources."@cycle/time-0.10.1" 71474 sources."@types/cookiejar-2.1.2" 71475 - sources."@types/node-14.14.31" 71476 sources."@types/superagent-3.8.2" 71477 sources."ansi-escapes-3.2.0" 71478 sources."ansi-regex-2.1.1" ··· 72458 sources."find-up-4.1.0" 72459 sources."fs.realpath-1.0.0" 72460 sources."glob-7.1.6" 72461 - sources."glob-parent-5.1.1" 72462 sources."globby-11.0.2" 72463 sources."graceful-fs-4.2.6" 72464 sources."ignore-5.1.8" ··· 72469 sources."is-glob-4.0.1" 72470 sources."is-number-7.0.0" 72471 sources."is-path-cwd-2.2.0" 72472 - sources."is-path-inside-3.0.2" 72473 sources."is-stream-2.0.0" 72474 sources."locate-path-5.0.0" 72475 sources."lodash-4.17.21" ··· 72553 dependencies = [ 72554 sources."@fast-csv/format-4.3.5" 72555 sources."@fast-csv/parse-4.3.6" 72556 - sources."@types/node-14.14.31" 72557 sources."JSONStream-1.3.5" 72558 sources."ajv-6.12.6" 72559 sources."asn1-0.2.4" ··· 72746 sources."@types/http-cache-semantics-4.0.0" 72747 sources."@types/keyv-3.1.1" 72748 sources."@types/minimatch-3.0.3" 72749 - sources."@types/node-14.14.31" 72750 sources."@types/responselike-1.0.0" 72751 sources."@types/yauzl-2.9.1" 72752 sources."abbrev-1.1.1" ··· 73364 sources."@types/http-cache-semantics-4.0.0" 73365 sources."@types/keyv-3.1.1" 73366 sources."@types/minimist-1.2.1" 73367 - sources."@types/node-14.14.31" 73368 sources."@types/normalize-package-data-2.4.0" 73369 sources."@types/responselike-1.0.0" 73370 sources."@types/yoga-layout-1.9.2" ··· 73399 sources."quick-lru-4.0.1" 73400 ]; 73401 }) 73402 - sources."caniuse-lite-1.0.30001196" 73403 sources."chalk-2.4.2" 73404 sources."ci-info-2.0.0" 73405 sources."cli-boxes-2.2.1" ··· 73647 ]; 73648 }) 73649 sources."wrappy-1.0.2" 73650 - sources."ws-7.4.3" 73651 sources."yallist-4.0.0" 73652 sources."yargs-parser-18.1.3" 73653 sources."yoga-layout-prebuilt-1.10.0" ··· 73747 sources."@types/node-14.11.1" 73748 sources."@types/pg-7.14.5" 73749 sources."@types/pg-types-2.2.0" 73750 - sources."@types/qs-6.9.5" 73751 sources."@types/range-parser-1.2.3" 73752 (sources."@types/request-2.48.5" // { 73753 dependencies = [ ··· 74317 sources."get-value-2.0.6" 74318 sources."getpass-0.1.7" 74319 sources."glob-7.1.6" 74320 - sources."glob-parent-5.1.1" 74321 (sources."glob-stream-6.1.0" // { 74322 dependencies = [ 74323 sources."glob-parent-3.1.0" ··· 74448 sources."is-negated-glob-1.0.0" 74449 sources."is-number-7.0.0" 74450 sources."is-path-cwd-2.2.0" 74451 - sources."is-path-inside-3.0.2" 74452 sources."is-plain-object-2.0.4" 74453 sources."is-promise-2.2.2" 74454 sources."is-relative-1.0.0" ··· 75322 ]; 75323 }) 75324 sources."wrappy-1.0.2" 75325 - sources."ws-7.4.3" 75326 sources."xmlhttprequest-ssl-1.5.5" 75327 sources."xtend-4.0.2" 75328 sources."y18n-3.2.2" ··· 75446 sources."fs.realpath-1.0.0" 75447 sources."functional-red-black-tree-1.0.1" 75448 sources."glob-7.1.6" 75449 - sources."glob-parent-5.1.1" 75450 sources."globals-12.4.0" 75451 sources."has-flag-3.0.0" 75452 sources."ignore-4.0.6" ··· 75497 sources."supports-color-5.5.0" 75498 (sources."table-6.0.7" // { 75499 dependencies = [ 75500 - sources."ajv-7.1.1" 75501 sources."json-schema-traverse-1.0.0" 75502 ]; 75503 }) ··· 75605 sources."fs.realpath-1.0.0" 75606 sources."functional-red-black-tree-1.0.1" 75607 sources."glob-7.1.6" 75608 - sources."glob-parent-5.1.1" 75609 sources."globals-12.4.0" 75610 sources."has-flag-4.0.0" 75611 sources."ignore-4.0.6" ··· 75657 sources."supports-color-8.1.1" 75658 (sources."table-6.0.7" // { 75659 dependencies = [ 75660 - sources."ajv-7.1.1" 75661 sources."json-schema-traverse-1.0.0" 75662 ]; 75663 }) ··· 76033 sources."@types/source-list-map-0.1.2" 76034 sources."@types/tapable-1.0.6" 76035 sources."@types/text-table-0.2.1" 76036 - (sources."@types/uglify-js-3.12.0" // { 76037 dependencies = [ 76038 sources."source-map-0.6.1" 76039 ]; ··· 76260 }) 76261 sources."camelcase-5.3.1" 76262 sources."caniuse-api-3.0.0" 76263 - sources."caniuse-lite-1.0.30001196" 76264 sources."caseless-0.12.0" 76265 (sources."chalk-4.1.0" // { 76266 dependencies = [ ··· 76724 sources."getenv-0.7.0" 76725 sources."getpass-0.1.7" 76726 sources."glob-7.1.6" 76727 - sources."glob-parent-5.1.1" 76728 sources."global-4.4.0" 76729 sources."global-modules-2.0.0" 76730 sources."global-prefix-3.0.0" ··· 77837 sources."crypto-random-string-2.0.0" 77838 sources."del-6.0.0" 77839 sources."globby-11.0.2" 77840 - sources."is-path-inside-3.0.2" 77841 sources."is-stream-2.0.0" 77842 sources."p-map-4.0.0" 77843 sources."rimraf-3.0.2" ··· 78663 sources."get-value-2.0.6" 78664 sources."getpass-0.1.7" 78665 sources."glob-7.1.6" 78666 - sources."glob-parent-5.1.1" 78667 sources."glob-to-regexp-0.3.0" 78668 (sources."globby-8.0.2" // { 78669 dependencies = [ ··· 79044 sources."@types/glob-7.1.3" 79045 sources."@types/long-4.0.1" 79046 sources."@types/minimatch-3.0.3" 79047 - sources."@types/node-14.14.31" 79048 sources."JSONStream-1.3.5" 79049 sources."abbrev-1.1.1" 79050 sources."abort-controller-3.0.0" ··· 79062 sources."ansicolors-0.3.2" 79063 sources."anymatch-3.1.1" 79064 sources."aproba-1.2.0" 79065 - sources."archiver-5.2.0" 79066 (sources."archiver-utils-2.1.0" // { 79067 dependencies = [ 79068 sources."readable-stream-2.3.7" ··· 79361 }) 79362 sources."getpass-0.1.7" 79363 sources."glob-7.1.6" 79364 - sources."glob-parent-5.1.1" 79365 sources."glob-slash-1.0.0" 79366 sources."glob-slasher-1.0.1" 79367 sources."global-dirs-2.1.0" ··· 79413 sources."is-npm-4.0.0" 79414 sources."is-number-7.0.0" 79415 sources."is-obj-2.0.0" 79416 - sources."is-path-inside-3.0.2" 79417 sources."is-promise-2.2.2" 79418 sources."is-stream-2.0.0" 79419 sources."is-stream-ended-0.1.4" ··· 79816 sources."word-wrap-1.2.3" 79817 sources."wrappy-1.0.2" 79818 sources."write-file-atomic-3.0.3" 79819 - sources."ws-7.4.3" 79820 sources."xdg-basedir-4.0.0" 79821 sources."xmlbuilder-9.0.7" 79822 sources."xmldom-0.1.31" ··· 80806 sources."@szmarczak/http-timer-1.1.2" 80807 sources."@types/minimist-1.2.1" 80808 sources."@types/normalize-package-data-2.4.0" 80809 - sources."ajv-7.1.1" 80810 sources."ajv-formats-1.5.1" 80811 (sources."ansi-align-3.0.0" // { 80812 dependencies = [ ··· 80916 sources."is-interactive-1.0.0" 80917 sources."is-npm-5.0.0" 80918 sources."is-obj-2.0.0" 80919 - sources."is-path-inside-3.0.2" 80920 sources."is-plain-obj-1.1.0" 80921 sources."is-stream-2.0.0" 80922 sources."is-typedarray-1.0.0" ··· 81180 sources."@nodelib/fs.walk-1.2.6" 81181 sources."@sindresorhus/is-0.14.0" 81182 sources."@szmarczak/http-timer-1.1.2" 81183 - sources."@types/node-14.14.31" 81184 sources."@types/parse-json-4.0.0" 81185 sources."@types/websocket-1.0.1" 81186 sources."aggregate-error-3.1.0" ··· 81317 sources."get-stream-4.1.0" 81318 sources."getpass-0.1.7" 81319 sources."glob-7.1.6" 81320 - sources."glob-parent-5.1.1" 81321 sources."globby-11.0.1" 81322 (sources."got-9.6.0" // { 81323 dependencies = [ ··· 83726 sources."arch-2.2.0" 83727 sources."balanced-match-1.0.0" 83728 sources."brace-expansion-1.1.11" 83729 - sources."clipboard-2.0.6" 83730 sources."clipboardy-2.3.0" 83731 sources."clone-1.0.4" 83732 sources."concat-map-0.0.1" ··· 84071 }) 84072 sources."wrappy-1.0.2" 84073 sources."write-file-atomic-3.0.3" 84074 - sources."ws-7.4.3" 84075 sources."xregexp-2.0.0" 84076 sources."yallist-3.1.1" 84077 ]; ··· 84727 sources."getpass-0.1.7" 84728 sources."github-from-package-0.0.0" 84729 sources."glob-7.1.6" 84730 - sources."glob-parent-5.1.1" 84731 sources."graceful-fs-4.2.6" 84732 sources."graphlib-2.1.8" 84733 sources."growly-1.3.0" ··· 85193 ]; 85194 }) 85195 sources."wrappy-1.0.2" 85196 - sources."ws-7.4.3" 85197 sources."xml-name-validator-3.0.0" 85198 sources."xml2js-0.4.23" 85199 sources."xmlbuilder-11.0.1" ··· 85573 sources."is-installed-globally-0.4.0" 85574 sources."is-npm-5.0.0" 85575 sources."is-obj-2.0.0" 85576 - sources."is-path-inside-3.0.2" 85577 sources."is-promise-2.2.2" 85578 sources."is-typedarray-1.0.0" 85579 sources."is-yarn-global-0.3.0" ··· 85751 sources."@types/component-emitter-1.2.10" 85752 sources."@types/cookie-0.4.0" 85753 sources."@types/cors-2.8.10" 85754 - sources."@types/node-14.14.31" 85755 sources."accepts-1.3.7" 85756 sources."ansi-regex-5.0.0" 85757 sources."ansi-styles-4.3.0" ··· 85805 sources."fsevents-2.3.2" 85806 sources."get-caller-file-2.0.5" 85807 sources."glob-7.1.6" 85808 - sources."glob-parent-5.1.1" 85809 sources."graceful-fs-4.2.6" 85810 sources."http-errors-1.7.2" 85811 sources."http-proxy-1.18.1" ··· 85887 sources."void-elements-2.0.1" 85888 sources."wrap-ansi-7.0.0" 85889 sources."wrappy-1.0.2" 85890 - sources."ws-7.4.3" 85891 sources."y18n-5.0.5" 85892 sources."yargs-16.2.0" 85893 sources."yargs-parser-20.2.6" ··· 86389 }) 86390 sources."@octokit/request-error-2.0.5" 86391 sources."@octokit/rest-18.3.4" 86392 - sources."@octokit/types-6.12.0" 86393 sources."@tootallnate/once-1.1.2" 86394 sources."@types/minimatch-3.0.3" 86395 sources."@types/minimist-1.2.1" ··· 86605 sources."git-url-parse-11.4.4" 86606 sources."gitconfiglocal-1.0.0" 86607 sources."glob-7.1.6" 86608 - sources."glob-parent-5.1.1" 86609 sources."globby-11.0.2" 86610 sources."graceful-fs-4.2.6" 86611 sources."handlebars-4.7.7" ··· 87916 sources."uuid-3.4.0" 87917 sources."vary-1.1.2" 87918 sources."verror-1.10.0" 87919 - sources."ws-7.4.3" 87920 sources."xmlhttprequest-ssl-1.5.5" 87921 sources."yeast-0.1.2" 87922 ]; ··· 88058 sources."@types/istanbul-lib-report-3.0.0" 88059 sources."@types/istanbul-reports-1.1.2" 88060 sources."@types/json-schema-7.0.7" 88061 - sources."@types/node-14.14.31" 88062 sources."@types/normalize-package-data-2.4.0" 88063 sources."@types/resolve-0.0.8" 88064 sources."@types/yargs-15.0.13" ··· 88231 sources."cached-path-relative-1.0.2" 88232 sources."call-bind-1.0.2" 88233 sources."camelcase-5.3.1" 88234 - sources."caniuse-lite-1.0.30001196" 88235 sources."capture-exit-2.0.0" 88236 sources."caseless-0.12.0" 88237 (sources."chalk-3.0.0" // { ··· 88461 sources."get-value-2.0.6" 88462 sources."getpass-0.1.7" 88463 sources."glob-7.1.6" 88464 - sources."glob-parent-5.1.1" 88465 (sources."global-modules-2.0.0" // { 88466 dependencies = [ 88467 sources."global-prefix-3.0.0" ··· 89552 }; 89553 dependencies = [ 89554 sources."@braintree/sanitize-url-3.1.0" 89555 - sources."@types/node-14.14.31" 89556 sources."@types/yauzl-2.9.1" 89557 sources."agent-base-6.0.2" 89558 sources."ansi-styles-4.3.0" ··· 89685 sources."upper-case-1.1.3" 89686 sources."util-deprecate-1.0.2" 89687 sources."wrappy-1.0.2" 89688 - sources."ws-7.4.3" 89689 sources."yauzl-2.10.0" 89690 ]; 89691 buildInputs = globalBuildInputs; ··· 89973 mocha = nodeEnv.buildNodePackage { 89974 name = "mocha"; 89975 packageName = "mocha"; 89976 - version = "8.3.0"; 89977 src = fetchurl { 89978 - url = "https://registry.npmjs.org/mocha/-/mocha-8.3.0.tgz"; 89979 - sha512 = "TQqyC89V1J/Vxx0DhJIXlq9gbbL9XFNdeLQ1+JsnZsVaSOV1z3tWfw0qZmQJGQRIfkvZcs7snQnZnOCKoldq1Q=="; 89980 }; 89981 dependencies = [ 89982 sources."@ungap/promise-all-settled-1.1.2" ··· 90025 sources."fsevents-2.3.2" 90026 sources."get-caller-file-2.0.5" 90027 sources."glob-7.1.6" 90028 - sources."glob-parent-5.1.1" 90029 sources."growl-1.10.5" 90030 sources."has-flag-4.0.0" 90031 sources."he-1.2.0" ··· 90349 sources."@dabh/diagnostics-2.0.2" 90350 sources."@jest/types-24.9.0" 90351 sources."@mrmlnc/readdir-enhanced-2.2.1" 90352 - (sources."@netlify/build-9.8.4" // { 90353 dependencies = [ 90354 sources."ansi-styles-4.3.0" 90355 sources."chalk-3.0.0" ··· 90396 sources."dir-glob-3.0.1" 90397 sources."fast-glob-3.2.5" 90398 sources."fill-range-7.0.1" 90399 - sources."glob-parent-5.1.1" 90400 sources."globby-11.0.2" 90401 sources."ignore-5.1.8" 90402 sources."is-number-7.0.0" ··· 90473 sources."dir-glob-3.0.1" 90474 sources."fast-glob-3.2.5" 90475 sources."fill-range-7.0.1" 90476 - sources."glob-parent-5.1.1" 90477 sources."globby-11.0.2" 90478 sources."ignore-5.1.8" 90479 sources."is-number-7.0.0" ··· 90575 ]; 90576 }) 90577 sources."@octokit/rest-16.43.2" 90578 - sources."@octokit/types-6.12.0" 90579 sources."@rollup/plugin-babel-5.3.0" 90580 (sources."@rollup/plugin-commonjs-17.1.0" // { 90581 dependencies = [ ··· 90611 sources."@types/istanbul-reports-1.1.2" 90612 sources."@types/minimatch-3.0.3" 90613 sources."@types/mkdirp-0.5.2" 90614 - sources."@types/node-14.14.31" 90615 sources."@types/node-fetch-2.5.8" 90616 sources."@types/normalize-package-data-2.4.0" 90617 sources."@types/parse5-5.0.3" ··· 90625 sources."accepts-1.3.7" 90626 sources."agent-base-6.0.2" 90627 sources."aggregate-error-3.1.0" 90628 - sources."ajv-7.1.1" 90629 (sources."ansi-align-3.0.0" // { 90630 dependencies = [ 90631 sources."emoji-regex-7.0.3" ··· 90738 sources."call-bind-1.0.2" 90739 sources."call-me-maybe-1.0.1" 90740 sources."camelcase-5.3.1" 90741 - sources."caniuse-lite-1.0.30001196" 90742 sources."cardinal-2.1.1" 90743 sources."caw-2.0.1" 90744 sources."ccount-1.1.0" ··· 90758 dependencies = [ 90759 sources."braces-3.0.2" 90760 sources."fill-range-7.0.1" 90761 - sources."glob-parent-5.1.1" 90762 sources."is-number-7.0.0" 90763 sources."to-regex-range-5.0.1" 90764 ]; ··· 91006 sources."envinfo-7.7.4" 91007 sources."error-ex-1.3.2" 91008 sources."error-stack-parser-2.0.6" 91009 - sources."esbuild-0.8.56" 91010 sources."escalade-3.1.1" 91011 sources."escape-goat-2.1.1" 91012 sources."escape-html-1.0.3" ··· 91168 sources."dir-glob-3.0.1" 91169 sources."fast-glob-3.2.5" 91170 sources."fill-range-7.0.1" 91171 - sources."glob-parent-5.1.1" 91172 sources."ignore-5.1.8" 91173 sources."is-number-7.0.0" 91174 sources."micromatch-4.0.2" ··· 91312 sources."is-object-1.0.2" 91313 sources."is-observable-1.1.0" 91314 sources."is-path-cwd-2.2.0" 91315 - sources."is-path-inside-3.0.2" 91316 sources."is-plain-obj-2.1.0" 91317 sources."is-plain-object-2.0.4" 91318 sources."is-promise-2.2.2" ··· 91965 sources."triple-beam-1.3.0" 91966 sources."trough-1.0.5" 91967 sources."tslib-1.14.1" 91968 - sources."tsutils-3.20.0" 91969 sources."tunnel-agent-0.6.0" 91970 sources."type-check-0.3.2" 91971 sources."type-fest-0.8.1" ··· 91986 sources."union-value-1.0.1" 91987 sources."uniq-1.0.1" 91988 sources."unique-string-2.0.0" 91989 - sources."unist-util-is-4.0.4" 91990 sources."unist-util-stringify-position-2.0.3" 91991 sources."unist-util-visit-2.0.3" 91992 sources."unist-util-visit-parents-3.1.1" ··· 92936 sources."ms-2.1.2" 92937 sources."readable-stream-3.6.0" 92938 sources."string_decoder-1.3.0" 92939 - sources."ws-7.4.3" 92940 ]; 92941 }) 92942 (sources."mqtt-packet-6.9.0" // { ··· 93380 sources."fill-range-7.0.1" 93381 sources."fsevents-2.3.2" 93382 sources."get-stream-4.1.0" 93383 - sources."glob-parent-5.1.1" 93384 sources."global-dirs-2.1.0" 93385 sources."got-9.6.0" 93386 sources."graceful-fs-4.2.6" ··· 93400 sources."is-npm-4.0.0" 93401 sources."is-number-7.0.0" 93402 sources."is-obj-2.0.0" 93403 - sources."is-path-inside-3.0.2" 93404 sources."is-typedarray-1.0.0" 93405 sources."is-yarn-global-0.3.0" 93406 sources."json-buffer-3.0.0" ··· 93520 sources."@types/http-cache-semantics-4.0.0" 93521 sources."@types/keyv-3.1.1" 93522 sources."@types/minimist-1.2.1" 93523 - sources."@types/node-14.14.31" 93524 sources."@types/normalize-package-data-2.4.0" 93525 sources."@types/parse-json-4.0.0" 93526 sources."@types/responselike-1.0.0" ··· 93629 sources."get-stream-6.0.0" 93630 sources."github-url-from-git-1.5.0" 93631 sources."glob-7.1.6" 93632 - sources."glob-parent-5.1.1" 93633 sources."global-dirs-2.1.0" 93634 sources."globby-11.0.2" 93635 (sources."got-10.7.0" // { ··· 93716 ]; 93717 }) 93718 sources."is-path-cwd-2.2.0" 93719 - sources."is-path-inside-3.0.2" 93720 sources."is-plain-obj-1.1.0" 93721 sources."is-promise-2.2.2" 93722 sources."is-scoped-2.1.0" ··· 94036 npm-check-updates = nodeEnv.buildNodePackage { 94037 name = "npm-check-updates"; 94038 packageName = "npm-check-updates"; 94039 - version = "11.1.10"; 94040 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=="; 94043 }; 94044 dependencies = [ 94045 sources."@nodelib/fs.scandir-2.1.4" ··· 94158 sources."get-stream-4.1.0" 94159 sources."getpass-0.1.7" 94160 sources."glob-7.1.6" 94161 - sources."glob-parent-5.1.1" 94162 (sources."global-dirs-3.0.0" // { 94163 dependencies = [ 94164 sources."ini-2.0.0" ··· 94198 sources."is-npm-5.0.0" 94199 sources."is-number-7.0.0" 94200 sources."is-obj-2.0.0" 94201 - sources."is-path-inside-3.0.2" 94202 sources."is-typedarray-1.0.0" 94203 sources."is-yarn-global-0.3.0" 94204 sources."isarray-1.0.0" ··· 94861 sources."caller-path-2.0.0" 94862 sources."callsites-2.0.0" 94863 sources."caniuse-api-3.0.0" 94864 - sources."caniuse-lite-1.0.30001196" 94865 sources."caseless-0.12.0" 94866 sources."chalk-2.4.2" 94867 sources."chokidar-2.1.8" ··· 95898 patch-package = nodeEnv.buildNodePackage { 95899 name = "patch-package"; 95900 packageName = "patch-package"; 95901 - version = "6.4.5"; 95902 src = fetchurl { 95903 - url = "https://registry.npmjs.org/patch-package/-/patch-package-6.4.5.tgz"; 95904 - sha512 = "iZl3nNUEQ3cdoY1U4Gj7p9aIGgn27aD3Z32TEh+13remRlkEzbc1+CdjFvy/zT/JK2EtY4ERwoiHKQU9B0PEvw=="; 95905 }; 95906 dependencies = [ 95907 sources."@yarnpkg/lockfile-1.1.0" 95908 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 sources."balanced-match-1.0.0" 95916 - (sources."base-0.11.2" // { 95917 - dependencies = [ 95918 - sources."define-property-1.0.0" 95919 - ]; 95920 - }) 95921 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" 95928 sources."chalk-2.4.2" 95929 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 sources."color-convert-1.9.3" 95949 sources."color-name-1.1.3" 95950 - sources."component-emitter-1.3.0" 95951 sources."concat-map-0.0.1" 95952 - sources."copy-descriptor-0.1.1" 95953 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 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" 95999 sources."fs-extra-7.0.1" 96000 sources."fs.realpath-1.0.0" 96001 - sources."get-value-2.0.6" 96002 sources."glob-7.1.6" 96003 sources."graceful-fs-4.2.6" 96004 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 sources."inflight-1.0.6" 96012 sources."inherits-2.0.4" 96013 - sources."is-accessor-descriptor-1.0.0" 96014 - sources."is-buffer-1.1.6" 96015 sources."is-ci-2.0.0" 96016 - sources."is-data-descriptor-1.0.0" 96017 - sources."is-descriptor-1.0.2" 96018 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" 96027 sources."is-wsl-2.2.0" 96028 - sources."isarray-1.0.0" 96029 sources."isexe-2.0.0" 96030 - sources."isobject-3.0.1" 96031 sources."jsonfile-4.0.0" 96032 - sources."kind-of-6.0.3" 96033 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" 96037 sources."minimatch-3.0.4" 96038 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 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 sources."once-1.4.0" 96063 sources."open-7.4.2" 96064 sources."os-tmpdir-1.0.2" 96065 - sources."pascalcase-0.1.1" 96066 sources."path-is-absolute-1.0.1" 96067 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" 96074 sources."rimraf-2.7.1" 96075 - sources."safe-regex-1.1.0" 96076 sources."semver-5.7.1" 96077 - (sources."set-value-2.0.1" // { 96078 - dependencies = [ 96079 - sources."extend-shallow-2.0.1" 96080 - ]; 96081 - }) 96082 sources."shebang-command-1.2.0" 96083 sources."shebang-regex-1.0.0" 96084 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 sources."supports-color-5.5.0" 96135 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" 96144 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 sources."which-1.3.1" 96158 sources."wrappy-1.0.2" 96159 ]; ··· 96832 sources."verror-1.10.0" 96833 sources."which-1.3.1" 96834 sources."wrappy-1.0.2" 96835 - sources."ws-7.4.3" 96836 sources."xmlhttprequest-ssl-1.5.5" 96837 sources."xtend-4.0.2" 96838 sources."yeast-0.1.2" ··· 96995 sources."git-node-fs-1.0.0" 96996 sources."git-sha1-0.1.2" 96997 sources."glob-7.1.6" 96998 - sources."glob-parent-5.1.1" 96999 sources."has-1.0.3" 97000 sources."has-flag-4.0.0" 97001 sources."http-errors-1.7.3" ··· 97240 sources."fsevents-2.3.2" 97241 sources."get-caller-file-2.0.5" 97242 sources."get-stdin-8.0.0" 97243 - sources."glob-parent-5.1.1" 97244 sources."globby-11.0.2" 97245 sources."graceful-fs-4.2.6" 97246 sources."has-flag-4.0.0" ··· 98105 sources."@gardenapple/yargs-17.0.0-candidate.0" 98106 sources."@mozilla/readability-0.4.1" 98107 sources."abab-2.0.5" 98108 - sources."acorn-7.4.1" 98109 - sources."acorn-globals-6.0.0" 98110 sources."acorn-walk-7.2.0" 98111 sources."ajv-6.12.6" 98112 sources."ansi-regex-5.0.0" ··· 98144 sources."ecc-jsbn-0.1.2" 98145 sources."emoji-regex-8.0.0" 98146 sources."escalade-3.1.1" 98147 - sources."escodegen-1.14.3" 98148 sources."esprima-4.0.1" 98149 - sources."estraverse-4.3.0" 98150 sources."esutils-2.0.3" 98151 sources."extend-3.0.2" 98152 sources."extsprintf-1.3.0" ··· 98162 sources."html-encoding-sniffer-2.0.1" 98163 sources."http-signature-1.2.0" 98164 sources."iconv-lite-0.4.24" 98165 - sources."ip-regex-2.1.0" 98166 sources."is-fullwidth-code-point-3.0.0" 98167 sources."is-potential-custom-element-name-1.0.0" 98168 sources."is-typedarray-1.0.0" 98169 sources."isstream-0.1.2" 98170 sources."jsbn-0.1.1" 98171 - sources."jsdom-16.4.0" 98172 sources."json-schema-0.2.3" 98173 sources."json-schema-traverse-0.4.1" 98174 sources."json-stringify-safe-5.0.1" ··· 98181 sources."nwsapi-2.2.0" 98182 sources."oauth-sign-0.9.0" 98183 sources."optionator-0.8.3" 98184 - sources."parse5-5.1.1" 98185 sources."performance-now-2.1.0" 98186 sources."prelude-ls-1.1.2" 98187 sources."psl-1.8.0" ··· 98208 sources."string-width-4.2.2" 98209 sources."strip-ansi-6.0.0" 98210 sources."symbol-tree-3.2.4" 98211 - sources."tough-cookie-3.0.1" 98212 sources."tr46-2.0.2" 98213 sources."tunnel-agent-0.6.0" 98214 sources."tweetnacl-0.14.5" 98215 sources."type-check-0.3.2" 98216 sources."uri-js-4.4.1" 98217 sources."uuid-3.4.0" 98218 sources."verror-1.10.0" ··· 98224 sources."whatwg-url-8.4.0" 98225 sources."word-wrap-1.2.3" 98226 sources."wrap-ansi-7.0.0" 98227 - sources."ws-7.4.3" 98228 sources."xml-name-validator-3.0.0" 98229 sources."xmlchars-2.2.0" 98230 sources."y18n-5.0.5" ··· 98322 sources."chokidar-3.5.1" 98323 sources."cipher-base-1.0.4" 98324 sources."classnames-2.2.6" 98325 - sources."clipboard-2.0.6" 98326 sources."cliui-7.0.4" 98327 sources."clsx-1.1.1" 98328 sources."co-4.6.0" ··· 98378 sources."format-util-1.0.5" 98379 sources."fsevents-2.3.2" 98380 sources."get-caller-file-2.0.5" 98381 - sources."glob-parent-5.1.1" 98382 sources."globals-11.12.0" 98383 sources."good-listener-1.2.2" 98384 sources."grapheme-splitter-1.0.4" ··· 98832 sources."functional-red-black-tree-1.0.1" 98833 sources."get-caller-file-2.0.5" 98834 sources."glob-7.1.6" 98835 - sources."glob-parent-5.1.1" 98836 sources."globals-12.4.0" 98837 sources."globby-11.0.2" 98838 sources."graceful-fs-4.2.6" ··· 98840 sources."has-1.0.3" 98841 sources."has-flag-3.0.0" 98842 sources."he-1.2.0" 98843 - sources."htmlparser2-6.0.0" 98844 sources."http-proxy-agent-4.0.1" 98845 sources."https-proxy-agent-5.0.0" 98846 sources."ignore-5.1.8" ··· 98886 sources."minimatch-3.0.4" 98887 sources."minimist-1.2.5" 98888 sources."mkdirp-0.5.5" 98889 - (sources."mocha-8.3.0" // { 98890 dependencies = [ 98891 sources."argparse-2.0.1" 98892 (sources."debug-4.3.1" // { ··· 98982 sources."supports-color-5.5.0" 98983 (sources."table-6.0.7" // { 98984 dependencies = [ 98985 - sources."ajv-7.1.1" 98986 sources."json-schema-traverse-1.0.0" 98987 ]; 98988 }) ··· 98991 sources."to-regex-range-5.0.1" 98992 sources."traverse-0.3.9" 98993 sources."tslib-2.1.0" 98994 - (sources."tsutils-3.20.0" // { 98995 dependencies = [ 98996 sources."tslib-1.14.1" 98997 ]; ··· 99203 sources."chokidar-3.5.1" 99204 sources."fill-range-7.0.1" 99205 sources."fsevents-2.3.2" 99206 - sources."glob-parent-5.1.1" 99207 sources."is-binary-path-2.1.0" 99208 sources."is-extglob-2.1.1" 99209 sources."is-glob-4.0.1" ··· 99418 }) 99419 (sources."@serverless/platform-client-china-2.1.7" // { 99420 dependencies = [ 99421 - sources."adm-zip-0.5.3" 99422 sources."js-yaml-3.14.1" 99423 ]; 99424 }) ··· 99451 sources."@types/keyv-3.1.1" 99452 sources."@types/lodash-4.14.168" 99453 sources."@types/long-4.0.1" 99454 - sources."@types/node-14.14.31" 99455 sources."@types/request-2.48.5" 99456 sources."@types/request-promise-native-1.0.17" 99457 sources."@types/responselike-1.0.0" ··· 99478 sources."file-type-4.4.0" 99479 ]; 99480 }) 99481 - (sources."archiver-5.2.0" // { 99482 dependencies = [ 99483 sources."async-3.2.0" 99484 sources."bl-4.1.0" ··· 99780 sources."getpass-0.1.7" 99781 sources."github-from-package-0.0.0" 99782 sources."glob-7.1.6" 99783 - sources."glob-parent-5.1.1" 99784 sources."globby-11.0.2" 99785 (sources."got-11.8.2" // { 99786 dependencies = [ ··· 100074 sources."signal-exit-3.0.3" 100075 sources."simple-concat-1.0.1" 100076 sources."simple-get-2.8.1" 100077 - (sources."simple-git-2.36.0" // { 100078 dependencies = [ 100079 sources."debug-4.3.2" 100080 sources."ms-2.1.2" ··· 100236 }) 100237 sources."wrappy-1.0.2" 100238 sources."write-file-atomic-2.4.3" 100239 - sources."ws-7.4.3" 100240 sources."xml2js-0.4.19" 100241 sources."xmlbuilder-9.0.7" 100242 sources."xmlhttprequest-ssl-1.5.5" ··· 100886 snyk = nodeEnv.buildNodePackage { 100887 name = "snyk"; 100888 packageName = "snyk"; 100889 - version = "1.473.0"; 100890 src = fetchurl { 100891 - url = "https://registry.npmjs.org/snyk/-/snyk-1.473.0.tgz"; 100892 - sha512 = "UJuevb0qgRda13uhGKttzbKmK8f9GALG30LYsVDrvcx4i9NuWjPE8QuRGz1pQYze6UPVvIPSidyhBLNlOU446w=="; 100893 }; 100894 dependencies = [ 100895 sources."@octetstream/promisify-2.0.2" 100896 sources."@open-policy-agent/opa-wasm-1.2.0" 100897 sources."@sindresorhus/is-2.1.1" 100898 sources."@snyk/cli-interface-2.11.0" 100899 sources."@snyk/cocoapods-lockfile-parser-3.6.2" 100900 sources."@snyk/composer-lockfile-parser-1.4.1" 100901 sources."@snyk/dep-graph-1.23.1" 100902 sources."@snyk/docker-registry-v2-client-1.13.9" 100903 sources."@snyk/gemfile-1.2.0" 100904 sources."@snyk/graphlib-2.1.9-patch.3" 100905 (sources."@snyk/inquirer-7.3.3-patch" // { 100906 dependencies = [ ··· 100927 ]; 100928 }) 100929 sources."@szmarczak/http-timer-4.0.5" 100930 sources."@types/cacheable-request-6.0.1" 100931 sources."@types/debug-4.1.5" 100932 sources."@types/graphlib-2.1.7" 100933 sources."@types/http-cache-semantics-4.0.0" 100934 sources."@types/js-yaml-3.12.6" 100935 sources."@types/keyv-3.1.1" 100936 - sources."@types/node-14.14.31" 100937 sources."@types/responselike-1.0.0" 100938 sources."@yarnpkg/lockfile-1.1.0" 100939 sources."abbrev-1.1.1" 100940 sources."agent-base-4.3.0" ··· 100963 ]; 100964 }) 100965 sources."async-3.2.0" 100966 sources."balanced-match-1.0.0" 100967 sources."base64-js-1.5.1" 100968 sources."bcrypt-pbkdf-1.0.2" ··· 101072 sources."extend-3.0.2" 101073 sources."external-editor-3.1.0" 101074 sources."fast-levenshtein-2.0.6" 101075 sources."figures-3.2.0" 101076 sources."file-uri-to-path-1.0.0" 101077 sources."fill-range-7.0.1" 101078 sources."fs-constants-1.0.0" 101079 sources."fs.realpath-1.0.0" 101080 (sources."ftp-0.3.10" // { ··· 101123 }) 101124 sources."iconv-lite-0.4.24" 101125 sources."ieee754-1.2.1" 101126 sources."immediate-3.0.6" 101127 sources."import-lazy-2.1.0" 101128 sources."imurmurhash-0.1.4" ··· 101133 sources."is-ci-2.0.0" 101134 sources."is-deflate-1.0.0" 101135 sources."is-docker-2.1.1" 101136 sources."is-fullwidth-code-point-3.0.0" 101137 sources."is-gzip-1.0.0" 101138 sources."is-installed-globally-0.3.2" 101139 sources."is-npm-4.0.0" 101140 sources."is-number-7.0.0" 101141 sources."is-obj-2.0.0" 101142 - sources."is-path-inside-3.0.2" 101143 sources."is-stream-1.1.0" 101144 sources."is-typedarray-1.0.0" 101145 sources."is-wsl-2.2.0" ··· 101160 sources."lodash.assign-4.2.0" 101161 sources."lodash.assignin-4.2.0" 101162 sources."lodash.camelcase-4.3.0" 101163 sources."lodash.clone-4.5.0" 101164 sources."lodash.clonedeep-4.5.0" 101165 sources."lodash.constant-3.0.0" ··· 101207 sources."lru-cache-5.1.1" 101208 sources."macos-release-2.4.1" 101209 sources."make-dir-3.1.0" 101210 sources."micromatch-4.0.2" 101211 sources."mimic-fn-2.1.0" 101212 sources."mimic-response-1.0.1" ··· 101279 ]; 101280 }) 101281 sources."pupa-2.1.1" 101282 sources."quick-lru-5.1.1" 101283 sources."raw-body-2.4.1" 101284 sources."rc-1.2.8" ··· 101293 sources."resolve-alpn-1.0.0" 101294 sources."responselike-2.0.0" 101295 sources."restore-cursor-3.1.0" 101296 sources."rimraf-2.7.1" 101297 sources."run-async-2.4.1" 101298 sources."rxjs-6.6.6" 101299 sources."safe-buffer-5.1.2" 101300 sources."safer-buffer-2.1.2" ··· 101520 sources."@types/component-emitter-1.2.10" 101521 sources."@types/cookie-0.4.0" 101522 sources."@types/cors-2.8.10" 101523 - sources."@types/node-14.14.31" 101524 sources."accepts-1.3.7" 101525 sources."base64-arraybuffer-0.1.4" 101526 sources."base64id-2.0.0" ··· 101538 sources."socket.io-adapter-2.1.0" 101539 sources."socket.io-parser-4.0.4" 101540 sources."vary-1.1.2" 101541 - sources."ws-7.4.3" 101542 ]; 101543 buildInputs = globalBuildInputs; 101544 meta = { ··· 102911 dependencies = [ 102912 sources."cookie-0.4.1" 102913 sources."debug-4.1.1" 102914 - sources."ws-7.4.3" 102915 ]; 102916 }) 102917 (sources."engine.io-client-3.5.1" // { 102918 dependencies = [ 102919 sources."debug-3.1.0" 102920 sources."ms-2.0.0" 102921 - sources."ws-7.4.3" 102922 ]; 102923 }) 102924 sources."engine.io-parser-2.2.1" ··· 103540 stylelint = nodeEnv.buildNodePackage { 103541 name = "stylelint"; 103542 packageName = "stylelint"; 103543 - version = "13.11.0"; 103544 src = fetchurl { 103545 - url = "https://registry.npmjs.org/stylelint/-/stylelint-13.11.0.tgz"; 103546 - sha512 = "DhrKSWDWGZkCiQMtU+VroXM6LWJVC8hSK24nrUngTSQvXGK75yZUq4yNpynqrxD3a/fzKMED09V+XxO4z4lTbw=="; 103547 }; 103548 dependencies = [ 103549 sources."@babel/code-frame-7.12.13" ··· 103582 sources."@types/normalize-package-data-2.4.0" 103583 sources."@types/parse-json-4.0.0" 103584 sources."@types/unist-2.0.3" 103585 - sources."ajv-7.1.1" 103586 sources."ansi-regex-5.0.0" 103587 sources."ansi-styles-3.2.1" 103588 sources."array-union-2.1.0" ··· 103597 sources."callsites-3.1.0" 103598 sources."camelcase-5.3.1" 103599 sources."camelcase-keys-6.2.2" 103600 - sources."caniuse-lite-1.0.30001196" 103601 (sources."chalk-4.1.0" // { 103602 dependencies = [ 103603 sources."ansi-styles-4.3.0" ··· 103657 sources."gensync-1.0.0-beta.2" 103658 sources."get-stdin-8.0.0" 103659 sources."glob-7.1.6" 103660 - sources."glob-parent-5.1.1" 103661 sources."global-modules-2.0.0" 103662 sources."global-prefix-3.0.0" 103663 sources."globals-11.12.0" ··· 103838 sources."unified-9.2.1" 103839 sources."uniq-1.0.1" 103840 sources."unist-util-find-all-after-3.0.2" 103841 - sources."unist-util-is-4.0.4" 103842 sources."unist-util-stringify-position-2.0.3" 103843 sources."uri-js-4.4.1" 103844 sources."util-deprecate-1.0.2" ··· 103867 svelte-language-server = nodeEnv.buildNodePackage { 103868 name = "svelte-language-server"; 103869 packageName = "svelte-language-server"; 103870 - version = "0.12.18"; 103871 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=="; 103874 }; 103875 dependencies = [ 103876 sources."@babel/code-frame-7.12.13" ··· 103879 sources."@emmetio/abbreviation-2.2.1" 103880 sources."@emmetio/css-abbreviation-2.1.2" 103881 sources."@emmetio/scanner-1.0.0" 103882 - sources."@types/node-14.14.31" 103883 sources."@types/parse-json-4.0.0" 103884 sources."@types/pug-2.0.4" 103885 sources."@types/sass-1.16.0" ··· 103901 sources."estree-walker-2.0.2" 103902 sources."fill-range-7.0.1" 103903 sources."fsevents-2.3.2" 103904 - sources."glob-parent-5.1.1" 103905 sources."has-flag-3.0.0" 103906 sources."import-fresh-3.3.0" 103907 sources."is-arrayish-0.2.1" ··· 103932 sources."supports-color-5.5.0" 103933 sources."svelte-3.35.0" 103934 sources."svelte-preprocess-4.6.9" 103935 - sources."svelte2tsx-0.1.178" 103936 sources."to-regex-range-5.0.1" 103937 sources."tslib-2.1.0" 103938 sources."typescript-4.2.3" ··· 103961 svgo = nodeEnv.buildNodePackage { 103962 name = "svgo"; 103963 packageName = "svgo"; 103964 - version = "2.2.0"; 103965 src = fetchurl { 103966 - url = "https://registry.npmjs.org/svgo/-/svgo-2.2.0.tgz"; 103967 - sha512 = "78w27VB+Vvca8TNRZrpbN70OTaVXgyQKm/rBiEqFPZmEJkn6i3PqEgIniPqPY6H2kFevakixAfBaQlwuStZuBA=="; 103968 }; 103969 dependencies = [ 103970 sources."@trysound/sax-0.1.1" ··· 103975 sources."color-name-1.1.4" 103976 sources."commander-7.1.0" 103977 sources."css-select-3.1.2" 103978 - sources."css-select-base-adapter-0.1.1" 103979 sources."css-tree-1.1.2" 103980 sources."css-what-4.0.0" 103981 sources."csso-4.2.0" ··· 105244 sources."is-installed-globally-0.3.2" 105245 sources."is-npm-4.0.0" 105246 sources."is-obj-2.0.0" 105247 - sources."is-path-inside-3.0.2" 105248 sources."is-plain-obj-1.1.0" 105249 sources."is-typedarray-1.0.0" 105250 sources."is-whitespace-character-1.0.4" ··· 105445 sources."unified-message-control-3.0.3" 105446 sources."unique-string-2.0.0" 105447 sources."unist-util-inspect-5.0.1" 105448 - sources."unist-util-is-4.0.4" 105449 sources."unist-util-modify-children-2.0.0" 105450 sources."unist-util-position-3.1.0" 105451 sources."unist-util-remove-position-2.0.1" ··· 105895 sources."@types/debug-4.1.5" 105896 sources."@types/http-cache-semantics-4.0.0" 105897 sources."@types/keyv-3.1.1" 105898 - sources."@types/node-14.14.31" 105899 sources."@types/responselike-1.0.0" 105900 sources."abbrev-1.1.1" 105901 sources."abstract-logging-2.0.1" ··· 106310 sources."wide-align-1.1.3" 106311 sources."with-open-file-0.1.7" 106312 sources."wrappy-1.0.2" 106313 - sources."ws-7.4.3" 106314 sources."xmlhttprequest-ssl-1.5.5" 106315 sources."yallist-3.1.1" 106316 sources."yarn-1.22.4" ··· 106865 sources."@types/component-emitter-1.2.10" 106866 sources."@types/cookie-0.4.0" 106867 sources."@types/cors-2.8.10" 106868 - sources."@types/node-14.14.31" 106869 sources."abbrev-1.1.1" 106870 sources."accepts-1.3.7" 106871 sources."ansi-regex-5.0.0" ··· 107119 }) 107120 sources."wrap-ansi-7.0.0" 107121 sources."wrappy-1.0.2" 107122 - sources."ws-7.4.3" 107123 sources."y18n-5.0.5" 107124 sources."yallist-2.1.2" 107125 sources."yargs-16.2.0" ··· 107369 vim-language-server = nodeEnv.buildNodePackage { 107370 name = "vim-language-server"; 107371 packageName = "vim-language-server"; 107372 - version = "2.1.2"; 107373 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=="; 107376 }; 107377 buildInputs = globalBuildInputs; 107378 meta = { ··· 107842 sources."get-intrinsic-1.1.1" 107843 sources."get-value-2.0.6" 107844 sources."glob-7.1.3" 107845 - sources."glob-parent-5.1.1" 107846 (sources."global-modules-2.0.0" // { 107847 dependencies = [ 107848 sources."global-prefix-3.0.0" ··· 107878 sources."he-1.2.0" 107879 sources."hmac-drbg-1.0.1" 107880 sources."homedir-polyfill-1.0.3" 107881 - sources."htmlparser2-6.0.0" 107882 sources."https-browserify-1.0.0" 107883 sources."ieee754-1.2.1" 107884 sources."iferr-0.1.5" ··· 108662 sources."@starptech/rehype-webparser-0.10.0" 108663 sources."@starptech/webparser-0.10.0" 108664 sources."@szmarczak/http-timer-1.1.2" 108665 - sources."@types/node-14.14.31" 108666 sources."@types/unist-2.0.3" 108667 sources."@types/vfile-3.0.2" 108668 sources."@types/vfile-message-2.0.0" ··· 108758 dependencies = [ 108759 sources."braces-3.0.2" 108760 sources."fill-range-7.0.1" 108761 - sources."glob-parent-5.1.1" 108762 sources."is-number-7.0.0" 108763 sources."to-regex-range-5.0.1" 108764 ]; ··· 109608 sources."@sindresorhus/is-0.14.0" 109609 sources."@szmarczak/http-timer-1.1.2" 109610 sources."@types/minimatch-3.0.3" 109611 - sources."@types/node-14.14.31" 109612 sources."@types/yauzl-2.9.1" 109613 sources."JSONSelect-0.2.1" 109614 sources."acorn-7.4.1" ··· 109945 sources."get-value-2.0.6" 109946 sources."getpass-0.1.7" 109947 sources."glob-7.1.6" 109948 - sources."glob-parent-5.1.1" 109949 (sources."global-dirs-2.1.0" // { 109950 dependencies = [ 109951 sources."ini-1.3.7" ··· 110010 sources."is-npm-5.0.0" 110011 sources."is-number-7.0.0" 110012 sources."is-obj-2.0.0" 110013 - sources."is-path-inside-3.0.2" 110014 sources."is-plain-object-2.0.4" 110015 sources."is-regex-1.1.2" 110016 sources."is-relative-0.1.3" ··· 110506 webpack = nodeEnv.buildNodePackage { 110507 name = "webpack"; 110508 packageName = "webpack"; 110509 - version = "5.24.3"; 110510 src = fetchurl { 110511 - url = "https://registry.npmjs.org/webpack/-/webpack-5.24.3.tgz"; 110512 - sha512 = "x7lrWZ7wlWAdyKdML6YPvfVZkhD1ICuIZGODE5SzKJjqI9A4SpqGTjGJTc6CwaHqn19gGaoOR3ONJ46nYsn9rw=="; 110513 }; 110514 dependencies = [ 110515 - sources."@types/eslint-7.2.6" 110516 sources."@types/eslint-scope-3.7.0" 110517 sources."@types/estree-0.0.46" 110518 sources."@types/json-schema-7.0.7" 110519 - sources."@types/node-14.14.31" 110520 sources."@webassemblyjs/ast-1.11.0" 110521 sources."@webassemblyjs/floating-point-hex-parser-1.11.0" 110522 sources."@webassemblyjs/helper-api-error-1.11.0" ··· 110539 sources."ajv-keywords-3.5.2" 110540 sources."browserslist-4.16.3" 110541 sources."buffer-from-1.1.1" 110542 - sources."caniuse-lite-1.0.30001196" 110543 sources."chrome-trace-event-1.0.2" 110544 sources."colorette-1.2.2" 110545 sources."commander-2.20.3" ··· 110684 dependencies = [ 110685 sources."@types/glob-7.1.3" 110686 sources."@types/minimatch-3.0.3" 110687 - sources."@types/node-14.14.31" 110688 sources."accepts-1.3.7" 110689 sources."ajv-6.12.6" 110690 sources."ajv-errors-1.0.1" ··· 111277 sources."fast-json-stable-stringify-2.1.0" 111278 sources."fastq-1.11.0" 111279 sources."fill-range-7.0.1" 111280 - sources."glob-parent-5.1.1" 111281 sources."globby-11.0.2" 111282 sources."ignore-5.1.8" 111283 sources."is-extglob-2.1.1" ··· 111615 }) 111616 sources."winreg-1.2.4" 111617 sources."wrappy-1.0.2" 111618 - sources."ws-7.4.3" 111619 sources."xml2js-0.4.23" 111620 sources."xmlbuilder-11.0.1" 111621 sources."xmldom-0.1.31" ··· 111758 sources."@sindresorhus/is-0.7.0" 111759 sources."@types/glob-7.1.3" 111760 sources."@types/minimatch-3.0.3" 111761 - sources."@types/node-14.14.31" 111762 sources."@types/normalize-package-data-2.4.0" 111763 sources."JSONStream-1.3.5" 111764 sources."aggregate-error-3.1.0"
··· 1597 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 1598 }; 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 + }; 1609 "@devicefarmer/adbkit-2.11.3" = { 1610 name = "_at_devicefarmer_slash_adbkit"; 1611 packageName = "@devicefarmer/adbkit"; ··· 3667 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 3668 }; 3669 }; 3670 + "@netlify/build-9.8.5" = { 3671 name = "_at_netlify_slash_build"; 3672 packageName = "@netlify/build"; 3673 + version = "9.8.5"; 3674 src = fetchurl { 3675 + url = "https://registry.npmjs.org/@netlify/build/-/build-9.8.5.tgz"; 3676 + sha512 = "/lT+bfnMgaenYLVAdQd8T1GPyohpN4LR2JkvWLlnm4JEWkyiXF/W5DaMOPBGxGIzIZq4ml9wh+YFZ9lzq6J89g=="; 3677 }; 3678 }; 3679 "@netlify/cache-utils-1.0.7" = { ··· 4261 sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q=="; 4262 }; 4263 }; 4264 + "@octokit/types-6.12.1" = { 4265 name = "_at_octokit_slash_types"; 4266 packageName = "@octokit/types"; 4267 + version = "6.12.1"; 4268 src = fetchurl { 4269 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.12.1.tgz"; 4270 + sha512 = "eZTTWJxGBon01Ra4EX86rvlMZGkU5SeJ8BtwQlsv2wEqZttpjtefLetJndZTVbJ25qFKoyKMWsRFnwlOx7ZaDQ=="; 4271 }; 4272 }; 4273 "@open-policy-agent/opa-wasm-1.2.0" = { ··· 5242 sha512 = "ca2JKOnSRzYHJkhOB9gYmdRZHmd02b/uBd/S0D5W+L9nIMS7sUBV5jfhKwVgrYPIpVNIc0XCI9rxK4TfkQRpiA=="; 5243 }; 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 + }; 5254 "@snyk/composer-lockfile-parser-1.4.1" = { 5255 name = "_at_snyk_slash_composer-lockfile-parser"; 5256 packageName = "@snyk/composer-lockfile-parser"; ··· 5278 sha512 = "DIFLEhr8m1GrAwsLGInJmpcQMacjuhf3jcbpQTR+LeMvZA9IuKq+B7kqw2O2FzMiHMZmUb5z+tV+BR7+IUHkFQ=="; 5279 }; 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 + }; 5290 "@snyk/gemfile-1.2.0" = { 5291 name = "_at_snyk_slash_gemfile"; 5292 packageName = "@snyk/gemfile"; ··· 5294 src = fetchurl { 5295 url = "https://registry.npmjs.org/@snyk/gemfile/-/gemfile-1.2.0.tgz"; 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=="; 5306 }; 5307 }; 5308 "@snyk/graphlib-2.1.9-patch.3" = { ··· 5764 sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ=="; 5765 }; 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 + }; 5776 "@types/cacheable-request-6.0.1" = { 5777 name = "_at_types_slash_cacheable-request"; 5778 packageName = "@types/cacheable-request"; ··· 5935 sha512 = "DLVpLEGTEZGBXOYoYoagHSxXkDHONc0fZouF2ayw7Q18aRu1Afwci+1CFKvPpouCUOVWP+dmCaAWpQjswe7kpg=="; 5936 }; 5937 }; 5938 + "@types/eslint-7.2.7" = { 5939 name = "_at_types_slash_eslint"; 5940 packageName = "@types/eslint"; 5941 + version = "7.2.7"; 5942 src = fetchurl { 5943 + url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.7.tgz"; 5944 + sha512 = "EHXbc1z2GoQRqHaAT7+grxlTJ3WE2YNeD6jlpPoRc83cCoThRY+NUWjCUZaYmk51OICkPXn2hhphcWcWXgNW0Q=="; 5945 }; 5946 }; 5947 "@types/eslint-scope-3.7.0" = { ··· 6032 src = fetchurl { 6033 url = "https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; 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=="; 6044 }; 6045 }; 6046 "@types/fs-capacitor-2.0.0" = { ··· 6304 sha512 = "oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q=="; 6305 }; 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 + }; 6334 "@types/long-4.0.1" = { 6335 name = "_at_types_slash_long"; 6336 packageName = "@types/long"; ··· 6356 src = fetchurl { 6357 url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.3.tgz"; 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=="; 6368 }; 6369 }; 6370 "@types/mime-1.3.2" = { ··· 6475 sha512 = "fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="; 6476 }; 6477 }; 6478 + "@types/node-10.17.55" = { 6479 name = "_at_types_slash_node"; 6480 packageName = "@types/node"; 6481 + version = "10.17.55"; 6482 src = fetchurl { 6483 + url = "https://registry.npmjs.org/@types/node/-/node-10.17.55.tgz"; 6484 + sha512 = "koZJ89uLZufDvToeWO5BrC4CR4OUfHnUz2qoPs/daQH6qq3IN62QFxCTZ+bKaCE0xaoCAJYE4AXre8AbghCrhg=="; 6485 }; 6486 }; 6487 "@types/node-12.12.70" = { ··· 6511 sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; 6512 }; 6513 }; 6514 + "@types/node-14.14.32" = { 6515 name = "_at_types_slash_node"; 6516 packageName = "@types/node"; 6517 + version = "14.14.32"; 6518 src = fetchurl { 6519 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.32.tgz"; 6520 + sha512 = "/Ctrftx/zp4m8JOujM5ZhwzlWLx22nbQJiVqz8/zE15gOeEW+uly3FSX4fGFpcfEvFzXcMCJwq9lGVWgyARXhg=="; 6521 }; 6522 }; 6523 "@types/node-6.14.13" = { ··· 6628 sha512 = "1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug=="; 6629 }; 6630 }; 6631 + "@types/qs-6.9.6" = { 6632 name = "_at_types_slash_qs"; 6633 packageName = "@types/qs"; 6634 + version = "6.9.6"; 6635 src = fetchurl { 6636 + url = "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz"; 6637 + sha512 = "0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA=="; 6638 }; 6639 }; 6640 "@types/range-parser-1.2.3" = { ··· 6709 sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="; 6710 }; 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 + }; 6721 "@types/sass-1.16.0" = { 6722 name = "_at_types_slash_sass"; 6723 packageName = "@types/sass"; ··· 6844 sha512 = "I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A=="; 6845 }; 6846 }; 6847 + "@types/uglify-js-3.13.0" = { 6848 name = "_at_types_slash_uglify-js"; 6849 packageName = "@types/uglify-js"; 6850 + version = "3.13.0"; 6851 src = fetchurl { 6852 + url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.0.tgz"; 6853 + sha512 = "EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q=="; 6854 }; 6855 }; 6856 "@types/unist-2.0.3" = { ··· 8491 sha512 = "TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg=="; 8492 }; 8493 }; 8494 + "adm-zip-0.5.4" = { 8495 name = "adm-zip"; 8496 packageName = "adm-zip"; 8497 + version = "0.5.4"; 8498 src = fetchurl { 8499 + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.4.tgz"; 8500 + sha512 = "GMQg1a1cAegh+/EgWbz+XHZrwB467iB/IgtToldvxs7Xa5Br8mPmvCeRfY/Un2fLzrlIPt6Yu7Cej+8Ut9TGPg=="; 8501 }; 8502 }; 8503 "adverb-where-0.0.9" = { ··· 8671 sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg=="; 8672 }; 8673 }; 8674 + "ajv-7.2.1" = { 8675 name = "ajv"; 8676 packageName = "ajv"; 8677 + version = "7.2.1"; 8678 src = fetchurl { 8679 + url = "https://registry.npmjs.org/ajv/-/ajv-7.2.1.tgz"; 8680 + sha512 = "+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ=="; 8681 }; 8682 }; 8683 "ajv-errors-1.0.1" = { ··· 9643 sha512 = "Tq3yV/T4wxBsD2Wign8W9VQKhaUxzzRmjEiSoOK0SLqPgDP/N1TKdYyBeIEu56T4I9iO4fKTTR0mN9NWkBA0sg=="; 9644 }; 9645 }; 9646 + "archiver-5.3.0" = { 9647 name = "archiver"; 9648 packageName = "archiver"; 9649 + version = "5.3.0"; 9650 src = fetchurl { 9651 + url = "https://registry.npmjs.org/archiver/-/archiver-5.3.0.tgz"; 9652 + sha512 = "iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg=="; 9653 }; 9654 }; 9655 "archiver-utils-2.1.0" = { ··· 13990 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 13991 }; 13992 }; 13993 + "caniuse-lite-1.0.30001197" = { 13994 name = "caniuse-lite"; 13995 packageName = "caniuse-lite"; 13996 + version = "1.0.30001197"; 13997 src = fetchurl { 13998 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001197.tgz"; 13999 + sha512 = "8aE+sqBqtXz4G8g35Eg/XEaFr2N7rd/VQ6eABGBmNtcB8cN6qNJhMi6oSFy4UWWZgqgL3filHT8Nha4meu3tsw=="; 14000 }; 14001 }; 14002 "canvas-2.7.0" = { ··· 15151 sha1 = "a211e09c6a3de3ba1af27d049d301250d18812bc"; 15152 }; 15153 }; 15154 + "clipboard-2.0.7" = { 15155 name = "clipboard"; 15156 packageName = "clipboard"; 15157 + version = "2.0.7"; 15158 src = fetchurl { 15159 + url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.7.tgz"; 15160 + sha512 = "8M8WEZcIvs0hgOma+wAPkrUxpv0PMY1L6VsAJh/2DOKARIMpyWe6ZLcEoe1qktl6/ced5ceYHs+oGedSbgZ3sg=="; 15161 }; 15162 }; 15163 "clipboardy-1.2.3" = { ··· 16618 sha512 = "5AKrTtmiioQWloJ3WRFZb0/uR1lrRboaVE9go++XZltvRnZkN2/kQjaZ0gtFxynU5u5k9mWVtk8mNcgJ9yoRbQ=="; 16619 }; 16620 }; 16621 + "constructs-3.3.61" = { 16622 name = "constructs"; 16623 packageName = "constructs"; 16624 + version = "3.3.61"; 16625 src = fetchurl { 16626 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.61.tgz"; 16627 + sha512 = "9zg2/Bl9y0Z/9eQ3NO8BcCWlAVs6hXGCcRH2bQLSqExyrE54qzh50Vtb7ULrKOkC5nT974VG+cWdeXrcC6JDqA=="; 16628 }; 16629 }; 16630 "consume-http-header-1.0.0" = { ··· 21895 sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA=="; 21896 }; 21897 }; 21898 + "esbuild-0.8.57" = { 21899 name = "esbuild"; 21900 packageName = "esbuild"; 21901 + version = "0.8.57"; 21902 src = fetchurl { 21903 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.8.57.tgz"; 21904 + sha512 = "j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA=="; 21905 }; 21906 }; 21907 "esc-exit-2.0.2" = { ··· 24190 sha1 = "2ad90d490f6828c1aa40292cf709ac3318210c3c"; 24191 }; 24192 }; 24193 "find-yarn-workspace-root-2.0.0" = { 24194 name = "find-yarn-workspace-root"; 24195 packageName = "find-yarn-workspace-root"; ··· 26161 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; 26162 }; 26163 }; 26164 + "glob-parent-5.1.2" = { 26165 name = "glob-parent"; 26166 packageName = "glob-parent"; 26167 + version = "5.1.2"; 26168 src = fetchurl { 26169 + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 26170 + sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 26171 }; 26172 }; 26173 "glob-slash-1.0.0" = { ··· 28151 sha512 = "4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q=="; 28152 }; 28153 }; 28154 + "htmlparser2-6.0.1" = { 28155 name = "htmlparser2"; 28156 packageName = "htmlparser2"; 28157 + version = "6.0.1"; 28158 src = fetchurl { 28159 + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.1.tgz"; 28160 + sha512 = "GDKPd+vk4jvSuvCbyuzx/unmXkk090Azec7LovXP8as1Hn8q9p3hbjmDGbUqqhknw0ajwit6LiiWqfiTUPMK7w=="; 28161 }; 28162 }; 28163 "http-auth-2.0.7" = { ··· 30546 sha512 = "wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg=="; 30547 }; 30548 }; 30549 + "is-path-inside-3.0.3" = { 30550 name = "is-path-inside"; 30551 packageName = "is-path-inside"; 30552 + version = "3.0.3"; 30553 src = fetchurl { 30554 + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"; 30555 + sha512 = "Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="; 30556 }; 30557 }; 30558 "is-plain-obj-1.1.0" = { ··· 31869 sha512 = "fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g=="; 31870 }; 31871 }; 31872 + "jsdom-16.5.0" = { 31873 name = "jsdom"; 31874 packageName = "jsdom"; 31875 + version = "16.5.0"; 31876 src = fetchurl { 31877 + url = "https://registry.npmjs.org/jsdom/-/jsdom-16.5.0.tgz"; 31878 + sha512 = "QxZH0nmDTnTTVI0YDm4RUlaUPl5dcyn62G5TMDNfMmTW+J1u1v9gCR8WR+WZ6UghAa7nKJjDOFaI00eMMWvJFQ=="; 31879 }; 31880 }; 31881 "jsdom-7.2.2" = { ··· 31950 sha512 = "BMYxIjYG62wctUZFjYc5xKPNTgzTRRw2Fp8R9p4o0VeFE224ntyHgy9y7oKuCu+K1ev917NRoCLj7f2tyGTMAg=="; 31951 }; 31952 }; 31953 + "jsii-srcmak-0.1.252" = { 31954 name = "jsii-srcmak"; 31955 packageName = "jsii-srcmak"; 31956 + version = "0.1.252"; 31957 src = fetchurl { 31958 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.252.tgz"; 31959 + sha512 = "nRQ2JdGUgAi5YXkxQwJ4lM3K4oTeGzVTIT+4nQ6FBLC0/eHQrJYbqNbX27xb/JzqidVzv7y7C0ykZGiBDByKSQ=="; 31960 }; 31961 }; 31962 "json-bigint-0.2.3" = { ··· 34334 src = fetchurl { 34335 url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"; 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"; 34346 }; 34347 }; 34348 "lodash.clone-4.5.0" = { ··· 37828 sha512 = "O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ=="; 37829 }; 37830 }; 37831 + "mocha-8.3.1" = { 37832 name = "mocha"; 37833 packageName = "mocha"; 37834 + version = "8.3.1"; 37835 src = fetchurl { 37836 + url = "https://registry.npmjs.org/mocha/-/mocha-8.3.1.tgz"; 37837 + sha512 = "5SBMxANWqOv5bw3Hx+HVgaWlcWcFEQDUdaUAr1AUU+qwtx6cowhn7gEDT/DwQP7uYxnvShdUOVLbTYAHOEGfDQ=="; 37838 }; 37839 }; 37840 "mock-require-3.0.3" = { ··· 42646 sha512 = "fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ=="; 42647 }; 42648 }; 42649 "parse5-6.0.1" = { 42650 name = "parse5"; 42651 packageName = "parse5"; ··· 46562 sha512 = "AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw=="; 46563 }; 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 + }; 46574 "queue-microtask-1.2.2" = { 46575 name = "queue-microtask"; 46576 packageName = "queue-microtask"; ··· 50612 sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg=="; 50613 }; 50614 }; 50615 + "simple-git-2.36.1" = { 50616 name = "simple-git"; 50617 packageName = "simple-git"; 50618 + version = "2.36.1"; 50619 src = fetchurl { 50620 + url = "https://registry.npmjs.org/simple-git/-/simple-git-2.36.1.tgz"; 50621 + sha512 = "bN18Ea/4IJgqgbZyE9VpVEUkAu9vyP0VWP7acP0CRC1p/N80GGJ0HhIVeFJsm8TdJLBowiJpdLesQuAZ5TFSKw=="; 50622 }; 50623 }; 50624 "simple-markdown-0.4.4" = { ··· 53807 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 53808 }; 53809 }; 53810 + "stylelint-13.12.0" = { 53811 name = "stylelint"; 53812 packageName = "stylelint"; 53813 + version = "13.12.0"; 53814 src = fetchurl { 53815 + url = "https://registry.npmjs.org/stylelint/-/stylelint-13.12.0.tgz"; 53816 + sha512 = "P8O1xDy41B7O7iXaSlW+UuFbE5+ZWQDb61ndGDxKIt36fMH50DtlQTbwLpFLf8DikceTAb3r6nPrRv30wBlzXw=="; 53817 }; 53818 }; 53819 "stylelint-8.4.0" = { ··· 54131 sha512 = "SROWH0rB0DJ+0Ii264cprmNu/NJyZacs5wFD71ya93Cg/oA2lKHgQm4F6j0EWA4ktFMzeuJJm/eX6fka39hEHA=="; 54132 }; 54133 }; 54134 + "svelte2tsx-0.1.179" = { 54135 name = "svelte2tsx"; 54136 packageName = "svelte2tsx"; 54137 + version = "0.1.179"; 54138 src = fetchurl { 54139 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.1.179.tgz"; 54140 + sha512 = "tfSRUuUziFPcD2w6fIfu9ybpkV2M7HQgmcelcdCC0bKVqR+pm6kdmIyo6L5kwR3IRjhq03DekkpVer1uXxTZ9A=="; 54141 }; 54142 }; 54143 "sver-compat-1.5.0" = { ··· 55941 sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg=="; 55942 }; 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 + }; 55953 "township-client-1.3.2" = { 55954 name = "township-client"; 55955 packageName = "township-client"; ··· 56364 sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; 56365 }; 56366 }; 56367 + "tsutils-3.21.0" = { 56368 name = "tsutils"; 56369 packageName = "tsutils"; 56370 + version = "3.21.0"; 56371 src = fetchurl { 56372 + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"; 56373 + sha512 = "mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="; 56374 }; 56375 }; 56376 "ttl-1.3.1" = { ··· 57534 sha512 = "sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="; 57535 }; 57536 }; 57537 + "unist-util-is-4.1.0" = { 57538 name = "unist-util-is"; 57539 packageName = "unist-util-is"; 57540 + version = "4.1.0"; 57541 src = fetchurl { 57542 + url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz"; 57543 + sha512 = "ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg=="; 57544 }; 57545 }; 57546 "unist-util-map-1.0.5" = { ··· 59371 sha512 = "gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w=="; 59372 }; 59373 }; 59374 + "vls-0.7.2" = { 59375 name = "vls"; 59376 packageName = "vls"; 59377 + version = "0.7.2"; 59378 src = fetchurl { 59379 + url = "https://registry.npmjs.org/vls/-/vls-0.7.2.tgz"; 59380 + sha512 = "9nKgSPtNxQlc32K5GgZV++MdsCpNuac/SfxnEmVI0DCF4E0Uekj+RUo7Zk6NnA4veiNMN+AEjAIlbXYWPHgX6Q=="; 59381 }; 59382 }; 59383 "vm-browserify-1.1.2" = { ··· 61304 src = fetchurl { 61305 url = "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz"; 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=="; 61316 }; 61317 }; 61318 "x-default-browser-0.3.1" = { ··· 63265 sources."@nestjs/schematics-7.2.8" 63266 sources."@schematics/schematics-0.1102.0" 63267 sources."@types/anymatch-1.3.1" 63268 + sources."@types/eslint-7.2.7" 63269 sources."@types/eslint-scope-3.7.0" 63270 sources."@types/estree-0.0.45" 63271 sources."@types/json-schema-7.0.7" 63272 sources."@types/json5-0.0.29" 63273 + sources."@types/node-14.14.32" 63274 sources."@types/parse-json-4.0.0" 63275 sources."@types/source-list-map-0.1.2" 63276 sources."@types/tapable-1.0.6" 63277 + (sources."@types/uglify-js-3.13.0" // { 63278 dependencies = [ 63279 sources."source-map-0.6.1" 63280 ]; ··· 63324 sources."buffer-5.7.1" 63325 sources."buffer-from-1.1.1" 63326 sources."callsites-3.1.0" 63327 + sources."caniuse-lite-1.0.30001197" 63328 sources."chalk-3.0.0" 63329 sources."chardet-0.7.0" 63330 sources."chokidar-3.5.1" ··· 63380 sources."function-bind-1.1.1" 63381 sources."get-stream-5.2.0" 63382 sources."glob-7.1.6" 63383 + sources."glob-parent-5.1.2" 63384 sources."glob-to-regexp-0.4.1" 63385 sources."graceful-fs-4.2.6" 63386 sources."has-1.0.3" ··· 63596 }) 63597 (sources."@apollo/protobufjs-1.0.5" // { 63598 dependencies = [ 63599 + sources."@types/node-10.17.55" 63600 ]; 63601 }) 63602 sources."@apollographql/apollo-tools-0.4.9" ··· 63958 sources."@types/long-4.0.1" 63959 sources."@types/mime-1.3.2" 63960 sources."@types/minimatch-3.0.3" 63961 + sources."@types/node-14.14.32" 63962 (sources."@types/node-fetch-2.5.7" // { 63963 dependencies = [ 63964 sources."form-data-3.0.1" 63965 ]; 63966 }) 63967 sources."@types/normalize-package-data-2.4.0" 63968 + sources."@types/qs-6.9.6" 63969 sources."@types/range-parser-1.2.3" 63970 sources."@types/serve-static-1.13.9" 63971 sources."@types/through-0.0.30" ··· 64219 ]; 64220 }) 64221 sources."camelcase-4.1.0" 64222 + sources."caniuse-lite-1.0.30001197" 64223 (sources."capital-case-1.0.4" // { 64224 dependencies = [ 64225 sources."tslib-2.1.0" ··· 64303 ]; 64304 }) 64305 sources."cli-width-3.0.0" 64306 + sources."clipboard-2.0.7" 64307 (sources."cliui-6.0.0" // { 64308 dependencies = [ 64309 sources."ansi-styles-4.3.0" ··· 64596 sources."git-up-4.0.2" 64597 sources."git-url-parse-11.4.3" 64598 sources."glob-7.1.5" 64599 + sources."glob-parent-5.1.2" 64600 sources."glob-to-regexp-0.3.0" 64601 (sources."global-agent-2.1.12" // { 64602 dependencies = [ ··· 65843 sources."balanced-match-1.0.0" 65844 sources."brace-expansion-1.1.11" 65845 sources."browserslist-4.16.3" 65846 + sources."caniuse-lite-1.0.30001197" 65847 sources."chalk-2.4.2" 65848 sources."color-convert-1.9.3" 65849 sources."color-name-1.1.3" ··· 65948 dependencies = [ 65949 sources."@types/glob-7.1.3" 65950 sources."@types/minimatch-3.0.3" 65951 + sources."@types/node-14.14.32" 65952 sources."balanced-match-1.0.0" 65953 sources."brace-expansion-1.1.11" 65954 sources."chromium-pickle-js-0.2.0" ··· 67389 }; 67390 dependencies = [ 67391 sources."@jsii/spec-1.24.0" 67392 + sources."@types/node-10.17.55" 67393 sources."ansi-regex-5.0.0" 67394 sources."ansi-styles-4.3.0" 67395 sources."array-filter-1.0.0" ··· 67483 sources."yargs-16.2.0" 67484 ]; 67485 }) 67486 + (sources."jsii-srcmak-0.1.252" // { 67487 dependencies = [ 67488 sources."fs-extra-9.1.0" 67489 ]; ··· 67586 sources."@types/archiver-5.1.0" 67587 sources."@types/glob-7.1.3" 67588 sources."@types/minimatch-3.0.3" 67589 + sources."@types/node-14.14.32" 67590 sources."@types/readline-sync-1.4.3" 67591 sources."@types/stream-buffers-3.0.3" 67592 sources."@types/uuid-8.3.0" ··· 67594 sources."ansi-escapes-4.3.1" 67595 sources."ansi-regex-5.0.0" 67596 sources."ansi-styles-4.3.0" 67597 + sources."archiver-5.3.0" 67598 (sources."archiver-utils-2.1.0" // { 67599 dependencies = [ 67600 sources."readable-stream-2.3.7" ··· 67639 sources."commonmark-0.29.3" 67640 sources."compress-commons-4.1.0" 67641 sources."concat-map-0.0.1" 67642 + sources."constructs-3.3.61" 67643 sources."core-util-is-1.0.2" 67644 sources."crc-32-1.2.0" 67645 sources."crc32-stream-4.0.2" ··· 67759 sources."yargs-16.2.0" 67760 ]; 67761 }) 67762 + (sources."jsii-srcmak-0.1.252" // { 67763 dependencies = [ 67764 sources."fs-extra-9.1.0" 67765 sources."jsonfile-6.1.0" ··· 68154 coc-git = nodeEnv.buildNodePackage { 68155 name = "coc-git"; 68156 packageName = "coc-git"; 68157 + version = "2.3.1"; 68158 src = fetchurl { 68159 + url = "https://registry.npmjs.org/coc-git/-/coc-git-2.3.1.tgz"; 68160 + sha512 = "119J+uanlMO9xZA4yeyvjwbWKDckLUKUtJu6mreHuyQbd7x4Ea3qwjpWMlGl2+QLJQ78OPZjpbzzlc8FzDZY2A=="; 68161 }; 68162 buildInputs = globalBuildInputs; 68163 meta = { ··· 68629 sources."callsites-3.1.0" 68630 sources."camelcase-2.1.1" 68631 sources."camelcase-keys-2.1.0" 68632 + sources."caniuse-lite-1.0.30001197" 68633 sources."capture-stack-trace-1.0.1" 68634 sources."ccount-1.1.0" 68635 (sources."chalk-4.1.0" // { ··· 68865 sources."is-glob-2.0.1" 68866 ]; 68867 }) 68868 + sources."glob-parent-5.1.2" 68869 sources."glob-to-regexp-0.3.0" 68870 sources."global-dirs-0.1.1" 68871 sources."globals-12.4.0" ··· 69385 sources."svg-tags-1.0.0" 69386 (sources."table-6.0.7" // { 69387 dependencies = [ 69388 + sources."ajv-7.2.1" 69389 sources."json-schema-traverse-1.0.0" 69390 ]; 69391 }) ··· 69414 sources."tsutils-2.29.0" 69415 ]; 69416 }) 69417 + sources."tsutils-3.21.0" 69418 sources."type-check-0.4.0" 69419 sources."type-fest-0.8.1" 69420 sources."typescript-3.9.9" ··· 69595 coc-rust-analyzer = nodeEnv.buildNodePackage { 69596 name = "coc-rust-analyzer"; 69597 packageName = "coc-rust-analyzer"; 69598 + version = "0.37.0"; 69599 src = fetchurl { 69600 + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.37.0.tgz"; 69601 + sha512 = "hATxP0epa85YwVzUSYivWgCChPENb9ugKC1G5TOD/flfPRUIGqVVJQDKbqCo+sWUbhYnGLeIl04CJfFhNk/xKA=="; 69602 }; 69603 buildInputs = globalBuildInputs; 69604 meta = { ··· 69707 sources."@types/normalize-package-data-2.4.0" 69708 sources."@types/parse-json-4.0.0" 69709 sources."@types/unist-2.0.3" 69710 + sources."ajv-7.2.1" 69711 sources."ansi-regex-5.0.0" 69712 sources."ansi-styles-3.2.1" 69713 sources."array-union-2.1.0" ··· 69722 sources."callsites-3.1.0" 69723 sources."camelcase-5.3.1" 69724 sources."camelcase-keys-6.2.2" 69725 + sources."caniuse-lite-1.0.30001197" 69726 (sources."chalk-4.1.0" // { 69727 dependencies = [ 69728 sources."ansi-styles-4.3.0" ··· 69783 sources."gensync-1.0.0-beta.2" 69784 sources."get-stdin-8.0.0" 69785 sources."glob-7.1.6" 69786 + sources."glob-parent-5.1.2" 69787 sources."global-modules-2.0.0" 69788 sources."global-prefix-3.0.0" 69789 sources."globals-11.12.0" ··· 69952 sources."strip-ansi-6.0.0" 69953 sources."strip-indent-3.0.0" 69954 sources."style-search-0.1.0" 69955 + sources."stylelint-13.12.0" 69956 sources."sugarss-2.0.0" 69957 sources."supports-color-5.5.0" 69958 sources."svg-tags-1.0.0" ··· 69966 sources."unified-9.2.1" 69967 sources."uniq-1.0.1" 69968 sources."unist-util-find-all-after-3.0.2" 69969 + sources."unist-util-is-4.1.0" 69970 sources."unist-util-stringify-position-2.0.3" 69971 sources."uri-js-4.4.1" 69972 sources."util-deprecate-1.0.2" ··· 70154 coc-vetur = nodeEnv.buildNodePackage { 70155 name = "coc-vetur"; 70156 packageName = "coc-vetur"; 70157 + version = "1.2.4"; 70158 src = fetchurl { 70159 + url = "https://registry.npmjs.org/coc-vetur/-/coc-vetur-1.2.4.tgz"; 70160 + sha512 = "9ZEPHykSx2J/OwLFocXSK1Bg4p35AegacFb0ZaWV9s0IEtdNSkYi25Y9CscqV6fQheMfyEl0f4rlI4yh6DbcPg=="; 70161 }; 70162 dependencies = [ 70163 sources."@babel/code-frame-7.12.11" ··· 70238 sources."function-bind-1.1.1" 70239 sources."functional-red-black-tree-1.0.1" 70240 sources."glob-7.1.6" 70241 + sources."glob-parent-5.1.2" 70242 sources."globals-12.4.0" 70243 sources."has-1.0.3" 70244 sources."has-flag-3.0.0" ··· 70296 sources."supports-color-5.5.0" 70297 (sources."table-6.0.7" // { 70298 dependencies = [ 70299 + sources."ajv-7.2.1" 70300 sources."json-schema-traverse-1.0.0" 70301 ]; 70302 }) ··· 70314 sources."typescript-4.2.3" 70315 sources."uri-js-4.4.1" 70316 sources."v8-compile-cache-2.3.0" 70317 + sources."vls-0.7.2" 70318 (sources."vue-eslint-parser-7.6.0" // { 70319 dependencies = [ 70320 sources."eslint-visitor-keys-1.3.0" ··· 70338 coc-vimlsp = nodeEnv.buildNodePackage { 70339 name = "coc-vimlsp"; 70340 packageName = "coc-vimlsp"; 70341 + version = "0.11.1"; 70342 src = fetchurl { 70343 + url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.11.1.tgz"; 70344 + sha512 = "vHerH6fO69i/5002OTCYMbBiswMcjKRMqLbIByw6aB4OuOXDBDi1zn+jX+LqRSI0sEsVJIL1VhqGvigOo2OWNg=="; 70345 }; 70346 buildInputs = globalBuildInputs; 70347 meta = { ··· 70814 sources."get-stream-5.2.0" 70815 sources."getpass-0.1.7" 70816 sources."glob-7.1.6" 70817 + sources."glob-parent-5.1.2" 70818 sources."global-dirs-2.1.0" 70819 sources."globby-11.0.2" 70820 (sources."got-9.6.0" // { ··· 70907 sources."is-npm-4.0.0" 70908 sources."is-number-7.0.0" 70909 sources."is-obj-2.0.0" 70910 + sources."is-path-inside-3.0.3" 70911 sources."is-stream-2.0.0" 70912 sources."is-typedarray-1.0.0" 70913 sources."is-wsl-2.2.0" ··· 71218 sources."@types/glob-7.1.3" 71219 sources."@types/minimatch-3.0.3" 71220 sources."@types/minimist-1.2.1" 71221 + sources."@types/node-14.14.32" 71222 sources."@types/normalize-package-data-2.4.0" 71223 sources."aggregate-error-3.1.0" 71224 sources."ansi-styles-3.2.1" ··· 71589 sources."@cycle/run-3.4.0" 71590 sources."@cycle/time-0.10.1" 71591 sources."@types/cookiejar-2.1.2" 71592 + sources."@types/node-14.14.32" 71593 sources."@types/superagent-3.8.2" 71594 sources."ansi-escapes-3.2.0" 71595 sources."ansi-regex-2.1.1" ··· 72575 sources."find-up-4.1.0" 72576 sources."fs.realpath-1.0.0" 72577 sources."glob-7.1.6" 72578 + sources."glob-parent-5.1.2" 72579 sources."globby-11.0.2" 72580 sources."graceful-fs-4.2.6" 72581 sources."ignore-5.1.8" ··· 72586 sources."is-glob-4.0.1" 72587 sources."is-number-7.0.0" 72588 sources."is-path-cwd-2.2.0" 72589 + sources."is-path-inside-3.0.3" 72590 sources."is-stream-2.0.0" 72591 sources."locate-path-5.0.0" 72592 sources."lodash-4.17.21" ··· 72670 dependencies = [ 72671 sources."@fast-csv/format-4.3.5" 72672 sources."@fast-csv/parse-4.3.6" 72673 + sources."@types/node-14.14.32" 72674 sources."JSONStream-1.3.5" 72675 sources."ajv-6.12.6" 72676 sources."asn1-0.2.4" ··· 72863 sources."@types/http-cache-semantics-4.0.0" 72864 sources."@types/keyv-3.1.1" 72865 sources."@types/minimatch-3.0.3" 72866 + sources."@types/node-14.14.32" 72867 sources."@types/responselike-1.0.0" 72868 sources."@types/yauzl-2.9.1" 72869 sources."abbrev-1.1.1" ··· 73481 sources."@types/http-cache-semantics-4.0.0" 73482 sources."@types/keyv-3.1.1" 73483 sources."@types/minimist-1.2.1" 73484 + sources."@types/node-14.14.32" 73485 sources."@types/normalize-package-data-2.4.0" 73486 sources."@types/responselike-1.0.0" 73487 sources."@types/yoga-layout-1.9.2" ··· 73516 sources."quick-lru-4.0.1" 73517 ]; 73518 }) 73519 + sources."caniuse-lite-1.0.30001197" 73520 sources."chalk-2.4.2" 73521 sources."ci-info-2.0.0" 73522 sources."cli-boxes-2.2.1" ··· 73764 ]; 73765 }) 73766 sources."wrappy-1.0.2" 73767 + sources."ws-7.4.4" 73768 sources."yallist-4.0.0" 73769 sources."yargs-parser-18.1.3" 73770 sources."yoga-layout-prebuilt-1.10.0" ··· 73864 sources."@types/node-14.11.1" 73865 sources."@types/pg-7.14.5" 73866 sources."@types/pg-types-2.2.0" 73867 + sources."@types/qs-6.9.6" 73868 sources."@types/range-parser-1.2.3" 73869 (sources."@types/request-2.48.5" // { 73870 dependencies = [ ··· 74434 sources."get-value-2.0.6" 74435 sources."getpass-0.1.7" 74436 sources."glob-7.1.6" 74437 + sources."glob-parent-5.1.2" 74438 (sources."glob-stream-6.1.0" // { 74439 dependencies = [ 74440 sources."glob-parent-3.1.0" ··· 74565 sources."is-negated-glob-1.0.0" 74566 sources."is-number-7.0.0" 74567 sources."is-path-cwd-2.2.0" 74568 + sources."is-path-inside-3.0.3" 74569 sources."is-plain-object-2.0.4" 74570 sources."is-promise-2.2.2" 74571 sources."is-relative-1.0.0" ··· 75439 ]; 75440 }) 75441 sources."wrappy-1.0.2" 75442 + sources."ws-7.4.4" 75443 sources."xmlhttprequest-ssl-1.5.5" 75444 sources."xtend-4.0.2" 75445 sources."y18n-3.2.2" ··· 75563 sources."fs.realpath-1.0.0" 75564 sources."functional-red-black-tree-1.0.1" 75565 sources."glob-7.1.6" 75566 + sources."glob-parent-5.1.2" 75567 sources."globals-12.4.0" 75568 sources."has-flag-3.0.0" 75569 sources."ignore-4.0.6" ··· 75614 sources."supports-color-5.5.0" 75615 (sources."table-6.0.7" // { 75616 dependencies = [ 75617 + sources."ajv-7.2.1" 75618 sources."json-schema-traverse-1.0.0" 75619 ]; 75620 }) ··· 75722 sources."fs.realpath-1.0.0" 75723 sources."functional-red-black-tree-1.0.1" 75724 sources."glob-7.1.6" 75725 + sources."glob-parent-5.1.2" 75726 sources."globals-12.4.0" 75727 sources."has-flag-4.0.0" 75728 sources."ignore-4.0.6" ··· 75774 sources."supports-color-8.1.1" 75775 (sources."table-6.0.7" // { 75776 dependencies = [ 75777 + sources."ajv-7.2.1" 75778 sources."json-schema-traverse-1.0.0" 75779 ]; 75780 }) ··· 76150 sources."@types/source-list-map-0.1.2" 76151 sources."@types/tapable-1.0.6" 76152 sources."@types/text-table-0.2.1" 76153 + (sources."@types/uglify-js-3.13.0" // { 76154 dependencies = [ 76155 sources."source-map-0.6.1" 76156 ]; ··· 76377 }) 76378 sources."camelcase-5.3.1" 76379 sources."caniuse-api-3.0.0" 76380 + sources."caniuse-lite-1.0.30001197" 76381 sources."caseless-0.12.0" 76382 (sources."chalk-4.1.0" // { 76383 dependencies = [ ··· 76841 sources."getenv-0.7.0" 76842 sources."getpass-0.1.7" 76843 sources."glob-7.1.6" 76844 + sources."glob-parent-5.1.2" 76845 sources."global-4.4.0" 76846 sources."global-modules-2.0.0" 76847 sources."global-prefix-3.0.0" ··· 77954 sources."crypto-random-string-2.0.0" 77955 sources."del-6.0.0" 77956 sources."globby-11.0.2" 77957 + sources."is-path-inside-3.0.3" 77958 sources."is-stream-2.0.0" 77959 sources."p-map-4.0.0" 77960 sources."rimraf-3.0.2" ··· 78780 sources."get-value-2.0.6" 78781 sources."getpass-0.1.7" 78782 sources."glob-7.1.6" 78783 + sources."glob-parent-5.1.2" 78784 sources."glob-to-regexp-0.3.0" 78785 (sources."globby-8.0.2" // { 78786 dependencies = [ ··· 79161 sources."@types/glob-7.1.3" 79162 sources."@types/long-4.0.1" 79163 sources."@types/minimatch-3.0.3" 79164 + sources."@types/node-14.14.32" 79165 sources."JSONStream-1.3.5" 79166 sources."abbrev-1.1.1" 79167 sources."abort-controller-3.0.0" ··· 79179 sources."ansicolors-0.3.2" 79180 sources."anymatch-3.1.1" 79181 sources."aproba-1.2.0" 79182 + sources."archiver-5.3.0" 79183 (sources."archiver-utils-2.1.0" // { 79184 dependencies = [ 79185 sources."readable-stream-2.3.7" ··· 79478 }) 79479 sources."getpass-0.1.7" 79480 sources."glob-7.1.6" 79481 + sources."glob-parent-5.1.2" 79482 sources."glob-slash-1.0.0" 79483 sources."glob-slasher-1.0.1" 79484 sources."global-dirs-2.1.0" ··· 79530 sources."is-npm-4.0.0" 79531 sources."is-number-7.0.0" 79532 sources."is-obj-2.0.0" 79533 + sources."is-path-inside-3.0.3" 79534 sources."is-promise-2.2.2" 79535 sources."is-stream-2.0.0" 79536 sources."is-stream-ended-0.1.4" ··· 79933 sources."word-wrap-1.2.3" 79934 sources."wrappy-1.0.2" 79935 sources."write-file-atomic-3.0.3" 79936 + sources."ws-7.4.4" 79937 sources."xdg-basedir-4.0.0" 79938 sources."xmlbuilder-9.0.7" 79939 sources."xmldom-0.1.31" ··· 80923 sources."@szmarczak/http-timer-1.1.2" 80924 sources."@types/minimist-1.2.1" 80925 sources."@types/normalize-package-data-2.4.0" 80926 + sources."ajv-7.2.1" 80927 sources."ajv-formats-1.5.1" 80928 (sources."ansi-align-3.0.0" // { 80929 dependencies = [ ··· 81033 sources."is-interactive-1.0.0" 81034 sources."is-npm-5.0.0" 81035 sources."is-obj-2.0.0" 81036 + sources."is-path-inside-3.0.3" 81037 sources."is-plain-obj-1.1.0" 81038 sources."is-stream-2.0.0" 81039 sources."is-typedarray-1.0.0" ··· 81297 sources."@nodelib/fs.walk-1.2.6" 81298 sources."@sindresorhus/is-0.14.0" 81299 sources."@szmarczak/http-timer-1.1.2" 81300 + sources."@types/node-14.14.32" 81301 sources."@types/parse-json-4.0.0" 81302 sources."@types/websocket-1.0.1" 81303 sources."aggregate-error-3.1.0" ··· 81434 sources."get-stream-4.1.0" 81435 sources."getpass-0.1.7" 81436 sources."glob-7.1.6" 81437 + sources."glob-parent-5.1.2" 81438 sources."globby-11.0.1" 81439 (sources."got-9.6.0" // { 81440 dependencies = [ ··· 83843 sources."arch-2.2.0" 83844 sources."balanced-match-1.0.0" 83845 sources."brace-expansion-1.1.11" 83846 + sources."clipboard-2.0.7" 83847 sources."clipboardy-2.3.0" 83848 sources."clone-1.0.4" 83849 sources."concat-map-0.0.1" ··· 84188 }) 84189 sources."wrappy-1.0.2" 84190 sources."write-file-atomic-3.0.3" 84191 + sources."ws-7.4.4" 84192 sources."xregexp-2.0.0" 84193 sources."yallist-3.1.1" 84194 ]; ··· 84844 sources."getpass-0.1.7" 84845 sources."github-from-package-0.0.0" 84846 sources."glob-7.1.6" 84847 + sources."glob-parent-5.1.2" 84848 sources."graceful-fs-4.2.6" 84849 sources."graphlib-2.1.8" 84850 sources."growly-1.3.0" ··· 85310 ]; 85311 }) 85312 sources."wrappy-1.0.2" 85313 + sources."ws-7.4.4" 85314 sources."xml-name-validator-3.0.0" 85315 sources."xml2js-0.4.23" 85316 sources."xmlbuilder-11.0.1" ··· 85690 sources."is-installed-globally-0.4.0" 85691 sources."is-npm-5.0.0" 85692 sources."is-obj-2.0.0" 85693 + sources."is-path-inside-3.0.3" 85694 sources."is-promise-2.2.2" 85695 sources."is-typedarray-1.0.0" 85696 sources."is-yarn-global-0.3.0" ··· 85868 sources."@types/component-emitter-1.2.10" 85869 sources."@types/cookie-0.4.0" 85870 sources."@types/cors-2.8.10" 85871 + sources."@types/node-14.14.32" 85872 sources."accepts-1.3.7" 85873 sources."ansi-regex-5.0.0" 85874 sources."ansi-styles-4.3.0" ··· 85922 sources."fsevents-2.3.2" 85923 sources."get-caller-file-2.0.5" 85924 sources."glob-7.1.6" 85925 + sources."glob-parent-5.1.2" 85926 sources."graceful-fs-4.2.6" 85927 sources."http-errors-1.7.2" 85928 sources."http-proxy-1.18.1" ··· 86004 sources."void-elements-2.0.1" 86005 sources."wrap-ansi-7.0.0" 86006 sources."wrappy-1.0.2" 86007 + sources."ws-7.4.4" 86008 sources."y18n-5.0.5" 86009 sources."yargs-16.2.0" 86010 sources."yargs-parser-20.2.6" ··· 86506 }) 86507 sources."@octokit/request-error-2.0.5" 86508 sources."@octokit/rest-18.3.4" 86509 + sources."@octokit/types-6.12.1" 86510 sources."@tootallnate/once-1.1.2" 86511 sources."@types/minimatch-3.0.3" 86512 sources."@types/minimist-1.2.1" ··· 86722 sources."git-url-parse-11.4.4" 86723 sources."gitconfiglocal-1.0.0" 86724 sources."glob-7.1.6" 86725 + sources."glob-parent-5.1.2" 86726 sources."globby-11.0.2" 86727 sources."graceful-fs-4.2.6" 86728 sources."handlebars-4.7.7" ··· 88033 sources."uuid-3.4.0" 88034 sources."vary-1.1.2" 88035 sources."verror-1.10.0" 88036 + sources."ws-7.4.4" 88037 sources."xmlhttprequest-ssl-1.5.5" 88038 sources."yeast-0.1.2" 88039 ]; ··· 88175 sources."@types/istanbul-lib-report-3.0.0" 88176 sources."@types/istanbul-reports-1.1.2" 88177 sources."@types/json-schema-7.0.7" 88178 + sources."@types/node-14.14.32" 88179 sources."@types/normalize-package-data-2.4.0" 88180 sources."@types/resolve-0.0.8" 88181 sources."@types/yargs-15.0.13" ··· 88348 sources."cached-path-relative-1.0.2" 88349 sources."call-bind-1.0.2" 88350 sources."camelcase-5.3.1" 88351 + sources."caniuse-lite-1.0.30001197" 88352 sources."capture-exit-2.0.0" 88353 sources."caseless-0.12.0" 88354 (sources."chalk-3.0.0" // { ··· 88578 sources."get-value-2.0.6" 88579 sources."getpass-0.1.7" 88580 sources."glob-7.1.6" 88581 + sources."glob-parent-5.1.2" 88582 (sources."global-modules-2.0.0" // { 88583 dependencies = [ 88584 sources."global-prefix-3.0.0" ··· 89669 }; 89670 dependencies = [ 89671 sources."@braintree/sanitize-url-3.1.0" 89672 + sources."@types/node-14.14.32" 89673 sources."@types/yauzl-2.9.1" 89674 sources."agent-base-6.0.2" 89675 sources."ansi-styles-4.3.0" ··· 89802 sources."upper-case-1.1.3" 89803 sources."util-deprecate-1.0.2" 89804 sources."wrappy-1.0.2" 89805 + sources."ws-7.4.4" 89806 sources."yauzl-2.10.0" 89807 ]; 89808 buildInputs = globalBuildInputs; ··· 90090 mocha = nodeEnv.buildNodePackage { 90091 name = "mocha"; 90092 packageName = "mocha"; 90093 + version = "8.3.1"; 90094 src = fetchurl { 90095 + url = "https://registry.npmjs.org/mocha/-/mocha-8.3.1.tgz"; 90096 + sha512 = "5SBMxANWqOv5bw3Hx+HVgaWlcWcFEQDUdaUAr1AUU+qwtx6cowhn7gEDT/DwQP7uYxnvShdUOVLbTYAHOEGfDQ=="; 90097 }; 90098 dependencies = [ 90099 sources."@ungap/promise-all-settled-1.1.2" ··· 90142 sources."fsevents-2.3.2" 90143 sources."get-caller-file-2.0.5" 90144 sources."glob-7.1.6" 90145 + sources."glob-parent-5.1.2" 90146 sources."growl-1.10.5" 90147 sources."has-flag-4.0.0" 90148 sources."he-1.2.0" ··· 90466 sources."@dabh/diagnostics-2.0.2" 90467 sources."@jest/types-24.9.0" 90468 sources."@mrmlnc/readdir-enhanced-2.2.1" 90469 + (sources."@netlify/build-9.8.5" // { 90470 dependencies = [ 90471 sources."ansi-styles-4.3.0" 90472 sources."chalk-3.0.0" ··· 90513 sources."dir-glob-3.0.1" 90514 sources."fast-glob-3.2.5" 90515 sources."fill-range-7.0.1" 90516 + sources."glob-parent-5.1.2" 90517 sources."globby-11.0.2" 90518 sources."ignore-5.1.8" 90519 sources."is-number-7.0.0" ··· 90590 sources."dir-glob-3.0.1" 90591 sources."fast-glob-3.2.5" 90592 sources."fill-range-7.0.1" 90593 + sources."glob-parent-5.1.2" 90594 sources."globby-11.0.2" 90595 sources."ignore-5.1.8" 90596 sources."is-number-7.0.0" ··· 90692 ]; 90693 }) 90694 sources."@octokit/rest-16.43.2" 90695 + sources."@octokit/types-6.12.1" 90696 sources."@rollup/plugin-babel-5.3.0" 90697 (sources."@rollup/plugin-commonjs-17.1.0" // { 90698 dependencies = [ ··· 90728 sources."@types/istanbul-reports-1.1.2" 90729 sources."@types/minimatch-3.0.3" 90730 sources."@types/mkdirp-0.5.2" 90731 + sources."@types/node-14.14.32" 90732 sources."@types/node-fetch-2.5.8" 90733 sources."@types/normalize-package-data-2.4.0" 90734 sources."@types/parse5-5.0.3" ··· 90742 sources."accepts-1.3.7" 90743 sources."agent-base-6.0.2" 90744 sources."aggregate-error-3.1.0" 90745 + sources."ajv-7.2.1" 90746 (sources."ansi-align-3.0.0" // { 90747 dependencies = [ 90748 sources."emoji-regex-7.0.3" ··· 90855 sources."call-bind-1.0.2" 90856 sources."call-me-maybe-1.0.1" 90857 sources."camelcase-5.3.1" 90858 + sources."caniuse-lite-1.0.30001197" 90859 sources."cardinal-2.1.1" 90860 sources."caw-2.0.1" 90861 sources."ccount-1.1.0" ··· 90875 dependencies = [ 90876 sources."braces-3.0.2" 90877 sources."fill-range-7.0.1" 90878 + sources."glob-parent-5.1.2" 90879 sources."is-number-7.0.0" 90880 sources."to-regex-range-5.0.1" 90881 ]; ··· 91123 sources."envinfo-7.7.4" 91124 sources."error-ex-1.3.2" 91125 sources."error-stack-parser-2.0.6" 91126 + sources."esbuild-0.8.57" 91127 sources."escalade-3.1.1" 91128 sources."escape-goat-2.1.1" 91129 sources."escape-html-1.0.3" ··· 91285 sources."dir-glob-3.0.1" 91286 sources."fast-glob-3.2.5" 91287 sources."fill-range-7.0.1" 91288 + sources."glob-parent-5.1.2" 91289 sources."ignore-5.1.8" 91290 sources."is-number-7.0.0" 91291 sources."micromatch-4.0.2" ··· 91429 sources."is-object-1.0.2" 91430 sources."is-observable-1.1.0" 91431 sources."is-path-cwd-2.2.0" 91432 + sources."is-path-inside-3.0.3" 91433 sources."is-plain-obj-2.1.0" 91434 sources."is-plain-object-2.0.4" 91435 sources."is-promise-2.2.2" ··· 92082 sources."triple-beam-1.3.0" 92083 sources."trough-1.0.5" 92084 sources."tslib-1.14.1" 92085 + sources."tsutils-3.21.0" 92086 sources."tunnel-agent-0.6.0" 92087 sources."type-check-0.3.2" 92088 sources."type-fest-0.8.1" ··· 92103 sources."union-value-1.0.1" 92104 sources."uniq-1.0.1" 92105 sources."unique-string-2.0.0" 92106 + sources."unist-util-is-4.1.0" 92107 sources."unist-util-stringify-position-2.0.3" 92108 sources."unist-util-visit-2.0.3" 92109 sources."unist-util-visit-parents-3.1.1" ··· 93053 sources."ms-2.1.2" 93054 sources."readable-stream-3.6.0" 93055 sources."string_decoder-1.3.0" 93056 + sources."ws-7.4.4" 93057 ]; 93058 }) 93059 (sources."mqtt-packet-6.9.0" // { ··· 93497 sources."fill-range-7.0.1" 93498 sources."fsevents-2.3.2" 93499 sources."get-stream-4.1.0" 93500 + sources."glob-parent-5.1.2" 93501 sources."global-dirs-2.1.0" 93502 sources."got-9.6.0" 93503 sources."graceful-fs-4.2.6" ··· 93517 sources."is-npm-4.0.0" 93518 sources."is-number-7.0.0" 93519 sources."is-obj-2.0.0" 93520 + sources."is-path-inside-3.0.3" 93521 sources."is-typedarray-1.0.0" 93522 sources."is-yarn-global-0.3.0" 93523 sources."json-buffer-3.0.0" ··· 93637 sources."@types/http-cache-semantics-4.0.0" 93638 sources."@types/keyv-3.1.1" 93639 sources."@types/minimist-1.2.1" 93640 + sources."@types/node-14.14.32" 93641 sources."@types/normalize-package-data-2.4.0" 93642 sources."@types/parse-json-4.0.0" 93643 sources."@types/responselike-1.0.0" ··· 93746 sources."get-stream-6.0.0" 93747 sources."github-url-from-git-1.5.0" 93748 sources."glob-7.1.6" 93749 + sources."glob-parent-5.1.2" 93750 sources."global-dirs-2.1.0" 93751 sources."globby-11.0.2" 93752 (sources."got-10.7.0" // { ··· 93833 ]; 93834 }) 93835 sources."is-path-cwd-2.2.0" 93836 + sources."is-path-inside-3.0.3" 93837 sources."is-plain-obj-1.1.0" 93838 sources."is-promise-2.2.2" 93839 sources."is-scoped-2.1.0" ··· 94153 npm-check-updates = nodeEnv.buildNodePackage { 94154 name = "npm-check-updates"; 94155 packageName = "npm-check-updates"; 94156 + version = "11.2.0"; 94157 src = fetchurl { 94158 + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.2.0.tgz"; 94159 + sha512 = "JCQHyn3/kxaWHbxefb8JKNZTZgFySnGcPZQbhx33rZEW55VoCjS3/GRNCN5ITIIR/aHNobDtwM1MX7MF31jC2A=="; 94160 }; 94161 dependencies = [ 94162 sources."@nodelib/fs.scandir-2.1.4" ··· 94275 sources."get-stream-4.1.0" 94276 sources."getpass-0.1.7" 94277 sources."glob-7.1.6" 94278 + sources."glob-parent-5.1.2" 94279 (sources."global-dirs-3.0.0" // { 94280 dependencies = [ 94281 sources."ini-2.0.0" ··· 94315 sources."is-npm-5.0.0" 94316 sources."is-number-7.0.0" 94317 sources."is-obj-2.0.0" 94318 + sources."is-path-inside-3.0.3" 94319 sources."is-typedarray-1.0.0" 94320 sources."is-yarn-global-0.3.0" 94321 sources."isarray-1.0.0" ··· 94978 sources."caller-path-2.0.0" 94979 sources."callsites-2.0.0" 94980 sources."caniuse-api-3.0.0" 94981 + sources."caniuse-lite-1.0.30001197" 94982 sources."caseless-0.12.0" 94983 sources."chalk-2.4.2" 94984 sources."chokidar-2.1.8" ··· 96015 patch-package = nodeEnv.buildNodePackage { 96016 name = "patch-package"; 96017 packageName = "patch-package"; 96018 + version = "6.4.6"; 96019 src = fetchurl { 96020 + url = "https://registry.npmjs.org/patch-package/-/patch-package-6.4.6.tgz"; 96021 + sha512 = "AO2bh42z8AQL+0OUdcRpS5Z/0X8k9IQ1uc1HzlVye+2RQrtDeNgTk5SbS4rdbLJKtUWRpvPISrYZeyh+OK4AKw=="; 96022 }; 96023 dependencies = [ 96024 sources."@yarnpkg/lockfile-1.1.0" 96025 sources."ansi-styles-3.2.1" 96026 sources."balanced-match-1.0.0" 96027 sources."brace-expansion-1.1.11" 96028 + sources."braces-3.0.2" 96029 sources."chalk-2.4.2" 96030 sources."ci-info-2.0.0" 96031 sources."color-convert-1.9.3" 96032 sources."color-name-1.1.3" 96033 sources."concat-map-0.0.1" 96034 sources."cross-spawn-6.0.5" 96035 sources."escape-string-regexp-1.0.5" 96036 + sources."fill-range-7.0.1" 96037 + sources."find-yarn-workspace-root-2.0.0" 96038 sources."fs-extra-7.0.1" 96039 sources."fs.realpath-1.0.0" 96040 sources."glob-7.1.6" 96041 sources."graceful-fs-4.2.6" 96042 sources."has-flag-3.0.0" 96043 sources."inflight-1.0.6" 96044 sources."inherits-2.0.4" 96045 sources."is-ci-2.0.0" 96046 sources."is-docker-2.1.1" 96047 + sources."is-number-7.0.0" 96048 sources."is-wsl-2.2.0" 96049 sources."isexe-2.0.0" 96050 sources."jsonfile-4.0.0" 96051 sources."klaw-sync-6.0.0" 96052 + sources."micromatch-4.0.2" 96053 sources."minimatch-3.0.4" 96054 sources."minimist-1.2.5" 96055 sources."nice-try-1.0.5" 96056 sources."once-1.4.0" 96057 sources."open-7.4.2" 96058 sources."os-tmpdir-1.0.2" 96059 sources."path-is-absolute-1.0.1" 96060 sources."path-key-2.0.1" 96061 + sources."picomatch-2.2.2" 96062 sources."rimraf-2.7.1" 96063 sources."semver-5.7.1" 96064 sources."shebang-command-1.2.0" 96065 sources."shebang-regex-1.0.0" 96066 sources."slash-2.0.0" 96067 sources."supports-color-5.5.0" 96068 sources."tmp-0.0.33" 96069 + sources."to-regex-range-5.0.1" 96070 sources."universalify-0.1.2" 96071 sources."which-1.3.1" 96072 sources."wrappy-1.0.2" 96073 ]; ··· 96746 sources."verror-1.10.0" 96747 sources."which-1.3.1" 96748 sources."wrappy-1.0.2" 96749 + sources."ws-7.4.4" 96750 sources."xmlhttprequest-ssl-1.5.5" 96751 sources."xtend-4.0.2" 96752 sources."yeast-0.1.2" ··· 96909 sources."git-node-fs-1.0.0" 96910 sources."git-sha1-0.1.2" 96911 sources."glob-7.1.6" 96912 + sources."glob-parent-5.1.2" 96913 sources."has-1.0.3" 96914 sources."has-flag-4.0.0" 96915 sources."http-errors-1.7.3" ··· 97154 sources."fsevents-2.3.2" 97155 sources."get-caller-file-2.0.5" 97156 sources."get-stdin-8.0.0" 97157 + sources."glob-parent-5.1.2" 97158 sources."globby-11.0.2" 97159 sources."graceful-fs-4.2.6" 97160 sources."has-flag-4.0.0" ··· 98019 sources."@gardenapple/yargs-17.0.0-candidate.0" 98020 sources."@mozilla/readability-0.4.1" 98021 sources."abab-2.0.5" 98022 + sources."acorn-8.0.5" 98023 + (sources."acorn-globals-6.0.0" // { 98024 + dependencies = [ 98025 + sources."acorn-7.4.1" 98026 + ]; 98027 + }) 98028 sources."acorn-walk-7.2.0" 98029 sources."ajv-6.12.6" 98030 sources."ansi-regex-5.0.0" ··· 98062 sources."ecc-jsbn-0.1.2" 98063 sources."emoji-regex-8.0.0" 98064 sources."escalade-3.1.1" 98065 + sources."escodegen-2.0.0" 98066 sources."esprima-4.0.1" 98067 + sources."estraverse-5.2.0" 98068 sources."esutils-2.0.3" 98069 sources."extend-3.0.2" 98070 sources."extsprintf-1.3.0" ··· 98080 sources."html-encoding-sniffer-2.0.1" 98081 sources."http-signature-1.2.0" 98082 sources."iconv-lite-0.4.24" 98083 sources."is-fullwidth-code-point-3.0.0" 98084 sources."is-potential-custom-element-name-1.0.0" 98085 sources."is-typedarray-1.0.0" 98086 sources."isstream-0.1.2" 98087 sources."jsbn-0.1.1" 98088 + sources."jsdom-16.5.0" 98089 sources."json-schema-0.2.3" 98090 sources."json-schema-traverse-0.4.1" 98091 sources."json-stringify-safe-5.0.1" ··· 98098 sources."nwsapi-2.2.0" 98099 sources."oauth-sign-0.9.0" 98100 sources."optionator-0.8.3" 98101 + sources."parse5-6.0.1" 98102 sources."performance-now-2.1.0" 98103 sources."prelude-ls-1.1.2" 98104 sources."psl-1.8.0" ··· 98125 sources."string-width-4.2.2" 98126 sources."strip-ansi-6.0.0" 98127 sources."symbol-tree-3.2.4" 98128 + sources."tough-cookie-4.0.0" 98129 sources."tr46-2.0.2" 98130 sources."tunnel-agent-0.6.0" 98131 sources."tweetnacl-0.14.5" 98132 sources."type-check-0.3.2" 98133 + sources."universalify-0.1.2" 98134 sources."uri-js-4.4.1" 98135 sources."uuid-3.4.0" 98136 sources."verror-1.10.0" ··· 98142 sources."whatwg-url-8.4.0" 98143 sources."word-wrap-1.2.3" 98144 sources."wrap-ansi-7.0.0" 98145 + sources."ws-7.4.4" 98146 sources."xml-name-validator-3.0.0" 98147 sources."xmlchars-2.2.0" 98148 sources."y18n-5.0.5" ··· 98240 sources."chokidar-3.5.1" 98241 sources."cipher-base-1.0.4" 98242 sources."classnames-2.2.6" 98243 + sources."clipboard-2.0.7" 98244 sources."cliui-7.0.4" 98245 sources."clsx-1.1.1" 98246 sources."co-4.6.0" ··· 98296 sources."format-util-1.0.5" 98297 sources."fsevents-2.3.2" 98298 sources."get-caller-file-2.0.5" 98299 + sources."glob-parent-5.1.2" 98300 sources."globals-11.12.0" 98301 sources."good-listener-1.2.2" 98302 sources."grapheme-splitter-1.0.4" ··· 98750 sources."functional-red-black-tree-1.0.1" 98751 sources."get-caller-file-2.0.5" 98752 sources."glob-7.1.6" 98753 + sources."glob-parent-5.1.2" 98754 sources."globals-12.4.0" 98755 sources."globby-11.0.2" 98756 sources."graceful-fs-4.2.6" ··· 98758 sources."has-1.0.3" 98759 sources."has-flag-3.0.0" 98760 sources."he-1.2.0" 98761 + sources."htmlparser2-6.0.1" 98762 sources."http-proxy-agent-4.0.1" 98763 sources."https-proxy-agent-5.0.0" 98764 sources."ignore-5.1.8" ··· 98804 sources."minimatch-3.0.4" 98805 sources."minimist-1.2.5" 98806 sources."mkdirp-0.5.5" 98807 + (sources."mocha-8.3.1" // { 98808 dependencies = [ 98809 sources."argparse-2.0.1" 98810 (sources."debug-4.3.1" // { ··· 98900 sources."supports-color-5.5.0" 98901 (sources."table-6.0.7" // { 98902 dependencies = [ 98903 + sources."ajv-7.2.1" 98904 sources."json-schema-traverse-1.0.0" 98905 ]; 98906 }) ··· 98909 sources."to-regex-range-5.0.1" 98910 sources."traverse-0.3.9" 98911 sources."tslib-2.1.0" 98912 + (sources."tsutils-3.21.0" // { 98913 dependencies = [ 98914 sources."tslib-1.14.1" 98915 ]; ··· 99121 sources."chokidar-3.5.1" 99122 sources."fill-range-7.0.1" 99123 sources."fsevents-2.3.2" 99124 + sources."glob-parent-5.1.2" 99125 sources."is-binary-path-2.1.0" 99126 sources."is-extglob-2.1.1" 99127 sources."is-glob-4.0.1" ··· 99336 }) 99337 (sources."@serverless/platform-client-china-2.1.7" // { 99338 dependencies = [ 99339 + sources."adm-zip-0.5.4" 99340 sources."js-yaml-3.14.1" 99341 ]; 99342 }) ··· 99369 sources."@types/keyv-3.1.1" 99370 sources."@types/lodash-4.14.168" 99371 sources."@types/long-4.0.1" 99372 + sources."@types/node-14.14.32" 99373 sources."@types/request-2.48.5" 99374 sources."@types/request-promise-native-1.0.17" 99375 sources."@types/responselike-1.0.0" ··· 99396 sources."file-type-4.4.0" 99397 ]; 99398 }) 99399 + (sources."archiver-5.3.0" // { 99400 dependencies = [ 99401 sources."async-3.2.0" 99402 sources."bl-4.1.0" ··· 99698 sources."getpass-0.1.7" 99699 sources."github-from-package-0.0.0" 99700 sources."glob-7.1.6" 99701 + sources."glob-parent-5.1.2" 99702 sources."globby-11.0.2" 99703 (sources."got-11.8.2" // { 99704 dependencies = [ ··· 99992 sources."signal-exit-3.0.3" 99993 sources."simple-concat-1.0.1" 99994 sources."simple-get-2.8.1" 99995 + (sources."simple-git-2.36.1" // { 99996 dependencies = [ 99997 sources."debug-4.3.2" 99998 sources."ms-2.1.2" ··· 100154 }) 100155 sources."wrappy-1.0.2" 100156 sources."write-file-atomic-2.4.3" 100157 + sources."ws-7.4.4" 100158 sources."xml2js-0.4.19" 100159 sources."xmlbuilder-9.0.7" 100160 sources."xmlhttprequest-ssl-1.5.5" ··· 100804 snyk = nodeEnv.buildNodePackage { 100805 name = "snyk"; 100806 packageName = "snyk"; 100807 + version = "1.476.0"; 100808 src = fetchurl { 100809 + url = "https://registry.npmjs.org/snyk/-/snyk-1.476.0.tgz"; 100810 + sha512 = "GLOZC1EQ9mcA38WF+6a6z4rZtvHTGUiokXYp66DVf70OoNDPwM00nL3AwWtFc39bLb04TSl8INgL87LIXiYLUg=="; 100811 }; 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" 100817 sources."@octetstream/promisify-2.0.2" 100818 sources."@open-policy-agent/opa-wasm-1.2.0" 100819 sources."@sindresorhus/is-2.1.1" 100820 sources."@snyk/cli-interface-2.11.0" 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 + }) 100827 sources."@snyk/composer-lockfile-parser-1.4.1" 100828 sources."@snyk/dep-graph-1.23.1" 100829 sources."@snyk/docker-registry-v2-client-1.13.9" 100830 + sources."@snyk/fast-glob-3.2.6-patch" 100831 sources."@snyk/gemfile-1.2.0" 100832 + sources."@snyk/glob-parent-5.1.2-patch.1" 100833 sources."@snyk/graphlib-2.1.9-patch.3" 100834 (sources."@snyk/inquirer-7.3.3-patch" // { 100835 dependencies = [ ··· 100856 ]; 100857 }) 100858 sources."@szmarczak/http-timer-4.0.5" 100859 + sources."@types/braces-3.0.0" 100860 sources."@types/cacheable-request-6.0.1" 100861 sources."@types/debug-4.1.5" 100862 + sources."@types/flat-cache-2.0.0" 100863 sources."@types/graphlib-2.1.7" 100864 sources."@types/http-cache-semantics-4.0.0" 100865 sources."@types/js-yaml-3.12.6" 100866 sources."@types/keyv-3.1.1" 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" 100873 sources."@types/responselike-1.0.0" 100874 + sources."@types/sarif-2.1.3" 100875 + sources."@types/uuid-8.3.0" 100876 sources."@yarnpkg/lockfile-1.1.0" 100877 sources."abbrev-1.1.1" 100878 sources."agent-base-4.3.0" ··· 100901 ]; 100902 }) 100903 sources."async-3.2.0" 100904 + sources."axios-0.21.1" 100905 sources."balanced-match-1.0.0" 100906 sources."base64-js-1.5.1" 100907 sources."bcrypt-pbkdf-1.0.2" ··· 101011 sources."extend-3.0.2" 101012 sources."external-editor-3.1.0" 101013 sources."fast-levenshtein-2.0.6" 101014 + sources."fastq-1.11.0" 101015 sources."figures-3.2.0" 101016 sources."file-uri-to-path-1.0.0" 101017 sources."fill-range-7.0.1" 101018 + sources."follow-redirects-1.13.3" 101019 sources."fs-constants-1.0.0" 101020 sources."fs.realpath-1.0.0" 101021 (sources."ftp-0.3.10" // { ··· 101064 }) 101065 sources."iconv-lite-0.4.24" 101066 sources."ieee754-1.2.1" 101067 + sources."ignore-5.1.8" 101068 sources."immediate-3.0.6" 101069 sources."import-lazy-2.1.0" 101070 sources."imurmurhash-0.1.4" ··· 101075 sources."is-ci-2.0.0" 101076 sources."is-deflate-1.0.0" 101077 sources."is-docker-2.1.1" 101078 + sources."is-extglob-2.1.1" 101079 sources."is-fullwidth-code-point-3.0.0" 101080 + sources."is-glob-4.0.1" 101081 sources."is-gzip-1.0.0" 101082 sources."is-installed-globally-0.3.2" 101083 sources."is-npm-4.0.0" 101084 sources."is-number-7.0.0" 101085 sources."is-obj-2.0.0" 101086 + sources."is-path-inside-3.0.3" 101087 sources."is-stream-1.1.0" 101088 sources."is-typedarray-1.0.0" 101089 sources."is-wsl-2.2.0" ··· 101104 sources."lodash.assign-4.2.0" 101105 sources."lodash.assignin-4.2.0" 101106 sources."lodash.camelcase-4.3.0" 101107 + sources."lodash.chunk-4.2.0" 101108 sources."lodash.clone-4.5.0" 101109 sources."lodash.clonedeep-4.5.0" 101110 sources."lodash.constant-3.0.0" ··· 101152 sources."lru-cache-5.1.1" 101153 sources."macos-release-2.4.1" 101154 sources."make-dir-3.1.0" 101155 + sources."merge2-1.4.1" 101156 sources."micromatch-4.0.2" 101157 sources."mimic-fn-2.1.0" 101158 sources."mimic-response-1.0.1" ··· 101225 ]; 101226 }) 101227 sources."pupa-2.1.1" 101228 + sources."queue-6.0.2" 101229 + sources."queue-microtask-1.2.2" 101230 sources."quick-lru-5.1.1" 101231 sources."raw-body-2.4.1" 101232 sources."rc-1.2.8" ··· 101241 sources."resolve-alpn-1.0.0" 101242 sources."responselike-2.0.0" 101243 sources."restore-cursor-3.1.0" 101244 + sources."reusify-1.0.4" 101245 sources."rimraf-2.7.1" 101246 sources."run-async-2.4.1" 101247 + sources."run-parallel-1.2.0" 101248 sources."rxjs-6.6.6" 101249 sources."safe-buffer-5.1.2" 101250 sources."safer-buffer-2.1.2" ··· 101470 sources."@types/component-emitter-1.2.10" 101471 sources."@types/cookie-0.4.0" 101472 sources."@types/cors-2.8.10" 101473 + sources."@types/node-14.14.32" 101474 sources."accepts-1.3.7" 101475 sources."base64-arraybuffer-0.1.4" 101476 sources."base64id-2.0.0" ··· 101488 sources."socket.io-adapter-2.1.0" 101489 sources."socket.io-parser-4.0.4" 101490 sources."vary-1.1.2" 101491 + sources."ws-7.4.4" 101492 ]; 101493 buildInputs = globalBuildInputs; 101494 meta = { ··· 102861 dependencies = [ 102862 sources."cookie-0.4.1" 102863 sources."debug-4.1.1" 102864 + sources."ws-7.4.4" 102865 ]; 102866 }) 102867 (sources."engine.io-client-3.5.1" // { 102868 dependencies = [ 102869 sources."debug-3.1.0" 102870 sources."ms-2.0.0" 102871 + sources."ws-7.4.4" 102872 ]; 102873 }) 102874 sources."engine.io-parser-2.2.1" ··· 103490 stylelint = nodeEnv.buildNodePackage { 103491 name = "stylelint"; 103492 packageName = "stylelint"; 103493 + version = "13.12.0"; 103494 src = fetchurl { 103495 + url = "https://registry.npmjs.org/stylelint/-/stylelint-13.12.0.tgz"; 103496 + sha512 = "P8O1xDy41B7O7iXaSlW+UuFbE5+ZWQDb61ndGDxKIt36fMH50DtlQTbwLpFLf8DikceTAb3r6nPrRv30wBlzXw=="; 103497 }; 103498 dependencies = [ 103499 sources."@babel/code-frame-7.12.13" ··· 103532 sources."@types/normalize-package-data-2.4.0" 103533 sources."@types/parse-json-4.0.0" 103534 sources."@types/unist-2.0.3" 103535 + sources."ajv-7.2.1" 103536 sources."ansi-regex-5.0.0" 103537 sources."ansi-styles-3.2.1" 103538 sources."array-union-2.1.0" ··· 103547 sources."callsites-3.1.0" 103548 sources."camelcase-5.3.1" 103549 sources."camelcase-keys-6.2.2" 103550 + sources."caniuse-lite-1.0.30001197" 103551 (sources."chalk-4.1.0" // { 103552 dependencies = [ 103553 sources."ansi-styles-4.3.0" ··· 103607 sources."gensync-1.0.0-beta.2" 103608 sources."get-stdin-8.0.0" 103609 sources."glob-7.1.6" 103610 + sources."glob-parent-5.1.2" 103611 sources."global-modules-2.0.0" 103612 sources."global-prefix-3.0.0" 103613 sources."globals-11.12.0" ··· 103788 sources."unified-9.2.1" 103789 sources."uniq-1.0.1" 103790 sources."unist-util-find-all-after-3.0.2" 103791 + sources."unist-util-is-4.1.0" 103792 sources."unist-util-stringify-position-2.0.3" 103793 sources."uri-js-4.4.1" 103794 sources."util-deprecate-1.0.2" ··· 103817 svelte-language-server = nodeEnv.buildNodePackage { 103818 name = "svelte-language-server"; 103819 packageName = "svelte-language-server"; 103820 + version = "0.12.19"; 103821 src = fetchurl { 103822 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.12.19.tgz"; 103823 + sha512 = "u4f5Zn1UvOTeNSTH83z/v8fifhU+kNEpbMff07kMkZFBFxTXdMEh2/qS9VFjJu/0Ala646HnapgZgnakVvnZuQ=="; 103824 }; 103825 dependencies = [ 103826 sources."@babel/code-frame-7.12.13" ··· 103829 sources."@emmetio/abbreviation-2.2.1" 103830 sources."@emmetio/css-abbreviation-2.1.2" 103831 sources."@emmetio/scanner-1.0.0" 103832 + sources."@types/node-14.14.32" 103833 sources."@types/parse-json-4.0.0" 103834 sources."@types/pug-2.0.4" 103835 sources."@types/sass-1.16.0" ··· 103851 sources."estree-walker-2.0.2" 103852 sources."fill-range-7.0.1" 103853 sources."fsevents-2.3.2" 103854 + sources."glob-parent-5.1.2" 103855 sources."has-flag-3.0.0" 103856 sources."import-fresh-3.3.0" 103857 sources."is-arrayish-0.2.1" ··· 103882 sources."supports-color-5.5.0" 103883 sources."svelte-3.35.0" 103884 sources."svelte-preprocess-4.6.9" 103885 + sources."svelte2tsx-0.1.179" 103886 sources."to-regex-range-5.0.1" 103887 sources."tslib-2.1.0" 103888 sources."typescript-4.2.3" ··· 103911 svgo = nodeEnv.buildNodePackage { 103912 name = "svgo"; 103913 packageName = "svgo"; 103914 + version = "2.2.1"; 103915 src = fetchurl { 103916 + url = "https://registry.npmjs.org/svgo/-/svgo-2.2.1.tgz"; 103917 + sha512 = "WrKhe5CMm/O5gchTQKGogKYXGbOC0JBZnHqvaCTEbsMuq4prxQHB/AZgif8WwD4+9Nim4EECObmyjvkdC43iNg=="; 103918 }; 103919 dependencies = [ 103920 sources."@trysound/sax-0.1.1" ··· 103925 sources."color-name-1.1.4" 103926 sources."commander-7.1.0" 103927 sources."css-select-3.1.2" 103928 sources."css-tree-1.1.2" 103929 sources."css-what-4.0.0" 103930 sources."csso-4.2.0" ··· 105193 sources."is-installed-globally-0.3.2" 105194 sources."is-npm-4.0.0" 105195 sources."is-obj-2.0.0" 105196 + sources."is-path-inside-3.0.3" 105197 sources."is-plain-obj-1.1.0" 105198 sources."is-typedarray-1.0.0" 105199 sources."is-whitespace-character-1.0.4" ··· 105394 sources."unified-message-control-3.0.3" 105395 sources."unique-string-2.0.0" 105396 sources."unist-util-inspect-5.0.1" 105397 + sources."unist-util-is-4.1.0" 105398 sources."unist-util-modify-children-2.0.0" 105399 sources."unist-util-position-3.1.0" 105400 sources."unist-util-remove-position-2.0.1" ··· 105844 sources."@types/debug-4.1.5" 105845 sources."@types/http-cache-semantics-4.0.0" 105846 sources."@types/keyv-3.1.1" 105847 + sources."@types/node-14.14.32" 105848 sources."@types/responselike-1.0.0" 105849 sources."abbrev-1.1.1" 105850 sources."abstract-logging-2.0.1" ··· 106259 sources."wide-align-1.1.3" 106260 sources."with-open-file-0.1.7" 106261 sources."wrappy-1.0.2" 106262 + sources."ws-7.4.4" 106263 sources."xmlhttprequest-ssl-1.5.5" 106264 sources."yallist-3.1.1" 106265 sources."yarn-1.22.4" ··· 106814 sources."@types/component-emitter-1.2.10" 106815 sources."@types/cookie-0.4.0" 106816 sources."@types/cors-2.8.10" 106817 + sources."@types/node-14.14.32" 106818 sources."abbrev-1.1.1" 106819 sources."accepts-1.3.7" 106820 sources."ansi-regex-5.0.0" ··· 107068 }) 107069 sources."wrap-ansi-7.0.0" 107070 sources."wrappy-1.0.2" 107071 + sources."ws-7.4.4" 107072 sources."y18n-5.0.5" 107073 sources."yallist-2.1.2" 107074 sources."yargs-16.2.0" ··· 107318 vim-language-server = nodeEnv.buildNodePackage { 107319 name = "vim-language-server"; 107320 packageName = "vim-language-server"; 107321 + version = "2.1.3"; 107322 src = fetchurl { 107323 + url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.1.3.tgz"; 107324 + sha512 = "BZAMbgNXq9GFg0HrXbQoPs+VLzJasM/UyN34v0wEMOo8jj/h8K1LUKHuHJkGhAEhyq80BwDbByDLrbcu7Sn6Zg=="; 107325 }; 107326 buildInputs = globalBuildInputs; 107327 meta = { ··· 107791 sources."get-intrinsic-1.1.1" 107792 sources."get-value-2.0.6" 107793 sources."glob-7.1.3" 107794 + sources."glob-parent-5.1.2" 107795 (sources."global-modules-2.0.0" // { 107796 dependencies = [ 107797 sources."global-prefix-3.0.0" ··· 107827 sources."he-1.2.0" 107828 sources."hmac-drbg-1.0.1" 107829 sources."homedir-polyfill-1.0.3" 107830 + sources."htmlparser2-6.0.1" 107831 sources."https-browserify-1.0.0" 107832 sources."ieee754-1.2.1" 107833 sources."iferr-0.1.5" ··· 108611 sources."@starptech/rehype-webparser-0.10.0" 108612 sources."@starptech/webparser-0.10.0" 108613 sources."@szmarczak/http-timer-1.1.2" 108614 + sources."@types/node-14.14.32" 108615 sources."@types/unist-2.0.3" 108616 sources."@types/vfile-3.0.2" 108617 sources."@types/vfile-message-2.0.0" ··· 108707 dependencies = [ 108708 sources."braces-3.0.2" 108709 sources."fill-range-7.0.1" 108710 + sources."glob-parent-5.1.2" 108711 sources."is-number-7.0.0" 108712 sources."to-regex-range-5.0.1" 108713 ]; ··· 109557 sources."@sindresorhus/is-0.14.0" 109558 sources."@szmarczak/http-timer-1.1.2" 109559 sources."@types/minimatch-3.0.3" 109560 + sources."@types/node-14.14.32" 109561 sources."@types/yauzl-2.9.1" 109562 sources."JSONSelect-0.2.1" 109563 sources."acorn-7.4.1" ··· 109894 sources."get-value-2.0.6" 109895 sources."getpass-0.1.7" 109896 sources."glob-7.1.6" 109897 + sources."glob-parent-5.1.2" 109898 (sources."global-dirs-2.1.0" // { 109899 dependencies = [ 109900 sources."ini-1.3.7" ··· 109959 sources."is-npm-5.0.0" 109960 sources."is-number-7.0.0" 109961 sources."is-obj-2.0.0" 109962 + sources."is-path-inside-3.0.3" 109963 sources."is-plain-object-2.0.4" 109964 sources."is-regex-1.1.2" 109965 sources."is-relative-0.1.3" ··· 110455 webpack = nodeEnv.buildNodePackage { 110456 name = "webpack"; 110457 packageName = "webpack"; 110458 + version = "5.24.4"; 110459 src = fetchurl { 110460 + url = "https://registry.npmjs.org/webpack/-/webpack-5.24.4.tgz"; 110461 + sha512 = "RXOdxF9hFFFhg47BryCgyFrEyyu7Y/75/uiI2DoUiTMqysK+WczVSTppvkR47oZcmI/DPaXCiCiaXBP8QjkNpA=="; 110462 }; 110463 dependencies = [ 110464 + sources."@types/eslint-7.2.7" 110465 sources."@types/eslint-scope-3.7.0" 110466 sources."@types/estree-0.0.46" 110467 sources."@types/json-schema-7.0.7" 110468 + sources."@types/node-14.14.32" 110469 sources."@webassemblyjs/ast-1.11.0" 110470 sources."@webassemblyjs/floating-point-hex-parser-1.11.0" 110471 sources."@webassemblyjs/helper-api-error-1.11.0" ··· 110488 sources."ajv-keywords-3.5.2" 110489 sources."browserslist-4.16.3" 110490 sources."buffer-from-1.1.1" 110491 + sources."caniuse-lite-1.0.30001197" 110492 sources."chrome-trace-event-1.0.2" 110493 sources."colorette-1.2.2" 110494 sources."commander-2.20.3" ··· 110633 dependencies = [ 110634 sources."@types/glob-7.1.3" 110635 sources."@types/minimatch-3.0.3" 110636 + sources."@types/node-14.14.32" 110637 sources."accepts-1.3.7" 110638 sources."ajv-6.12.6" 110639 sources."ajv-errors-1.0.1" ··· 111226 sources."fast-json-stable-stringify-2.1.0" 111227 sources."fastq-1.11.0" 111228 sources."fill-range-7.0.1" 111229 + sources."glob-parent-5.1.2" 111230 sources."globby-11.0.2" 111231 sources."ignore-5.1.8" 111232 sources."is-extglob-2.1.1" ··· 111564 }) 111565 sources."winreg-1.2.4" 111566 sources."wrappy-1.0.2" 111567 + sources."ws-7.4.4" 111568 sources."xml2js-0.4.23" 111569 sources."xmlbuilder-11.0.1" 111570 sources."xmldom-0.1.31" ··· 111707 sources."@sindresorhus/is-0.7.0" 111708 sources."@types/glob-7.1.3" 111709 sources."@types/minimatch-3.0.3" 111710 + sources."@types/node-14.14.32" 111711 sources."@types/normalize-package-data-2.4.0" 111712 sources."JSONStream-1.3.5" 111713 sources."aggregate-error-3.1.0"
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "Adafruit-PlatformDetect"; 9 - version = "3.2.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "a14c642b1f6849e57b5c442e81e809c9e1e3a0bcfebfd54b15a9f9fd273f9611"; 14 }; 15 16 nativeBuildInputs = [ setuptools-scm ];
··· 6 7 buildPythonPackage rec { 8 pname = "Adafruit-PlatformDetect"; 9 + version = "3.3.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-F5p3RO9847YQ7tDzb0r3+6dSCEAWoyxtMGBwhywR3/0="; 14 }; 15 16 nativeBuildInputs = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/boto3/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "boto3"; 16 - version = "1.17.20"; # N.B: if you change this, change botocore and awscli to a matching version 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "sha256-Ihnx6+iNJmr6VRb5k5g+uodCuVf6T9aFTzxzqjAw6TE="; 21 }; 22 23 propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
··· 13 14 buildPythonPackage rec { 15 pname = "boto3"; 16 + version = "1.17.22"; # N.B: if you change this, change botocore and awscli to a matching version 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-Thd8ndSsRdnkGGfPt0f0yYXWsF/xRjesWGGmDaqVx8E="; 21 }; 22 23 propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
+2 -2
pkgs/development/python-modules/botocore/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "botocore"; 15 - version = "1.20.20"; # N.B: if you change this, change boto3 and awscli to a matching version 16 17 src = fetchPypi { 18 inherit pname version; 19 - sha256 = "sha256-gMMqgfse6L36B0p5v7iFuyAG6Kl4LyNTwMn2OScE4To="; 20 }; 21 22 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "botocore"; 15 + version = "1.20.22"; # N.B: if you change this, change boto3 and awscli to a matching version 16 17 src = fetchPypi { 18 inherit pname version; 19 + sha256 = "sha256-MuhvnRhVW9O03GlKJjmhwfyMi0KknaVDuVrJ0ExAdws="; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/elementpath/default.nix
··· 1 { lib, buildPythonPackage, fetchFromGitHub, isPy27 }: 2 3 buildPythonPackage rec { 4 - version = "2.1.3"; 5 pname = "elementpath"; 6 disabled = isPy27; # uses incompatible class syntax 7 ··· 9 owner = "sissaschool"; 10 repo = "elementpath"; 11 rev = "v${version}"; 12 - sha256 = "062l1dqbaz1pab3qz6x5zmja8m8gw1bxgfl4kx91gdh0zsiakg8j"; 13 }; 14 15 # avoid circular dependency with xmlschema which directly depends on this
··· 1 { lib, buildPythonPackage, fetchFromGitHub, isPy27 }: 2 3 buildPythonPackage rec { 4 + version = "2.1.4"; 5 pname = "elementpath"; 6 disabled = isPy27; # uses incompatible class syntax 7 ··· 9 owner = "sissaschool"; 10 repo = "elementpath"; 11 rev = "v${version}"; 12 + sha256 = "00v6npm7d4bk4cnpzacxybn165x6vjqrydssznn0bxzv8aynm1vb"; 13 }; 14 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 3 buildPythonPackage rec { 4 pname = "grpcio-tools"; 5 - version = "1.35.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "9e2a41cba9c5a20ae299d0fdd377fe231434fa04cbfbfb3807293c6ec10b03cf"; 10 }; 11 12 outputs = [ "out" "dev" ];
··· 2 3 buildPythonPackage rec { 4 pname = "grpcio-tools"; 5 + version = "1.36.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "80ef584f7b917f575e4b8f2ec59cd4a4d98c2046e801a735f3136b05742a36a6"; 10 }; 11 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 15 buildGoModule rec { 16 pname = "buildah"; 17 - version = "1.19.6"; 18 19 src = fetchFromGitHub { 20 owner = "containers"; 21 repo = "buildah"; 22 rev = "v${version}"; 23 - sha256 = "sha256-YTguBkQcMNjHMVMEN3/P+8fOC5eqmQvlRd1ny9umS/4="; 24 }; 25 26 outputs = [ "out" "man" ];
··· 14 15 buildGoModule rec { 16 pname = "buildah"; 17 + version = "1.19.8"; 18 19 src = fetchFromGitHub { 20 owner = "containers"; 21 repo = "buildah"; 22 rev = "v${version}"; 23 + sha256 = "sha256-xhnhc4vhKw5T93076vS+pszIOpj22KzaPyzCvuHMaPE="; 24 }; 25 26 outputs = [ "out" "man" ];
+3 -3
pkgs/development/tools/misc/circleci-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "circleci-cli"; 5 - version = "0.1.12214"; 6 7 src = fetchFromGitHub { 8 owner = "CircleCI-Public"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-YV/fqATdGqlAdpKuOMq8KO9UQ+4D1PHwIE5O1zqndHQ="; 12 }; 13 14 - vendorSha256 = "sha256-6FBMLwoLM2BtnMHQfpY7f7NiQt5evsL4CfYTZvr3gAs="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "circleci-cli"; 5 + version = "0.1.15085"; 6 7 src = fetchFromGitHub { 8 owner = "CircleCI-Public"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-KcC9KfAeUM3pMSNThL+w/kzpQYzcMYV6YoNEN4q6duA="; 12 }; 13 14 + vendorSha256 = "sha256-j7VP/QKKMdmWQ60BYpChG4syDlll7CY4rb4wfb4+Z1s="; 15 16 doCheck = false; 17
+2 -2
pkgs/development/web/nodejs/v15.nix
··· 8 in 9 buildNodejs { 10 inherit enableNpm; 11 - version = "15.10.0"; 12 - sha256 = "1i7fdlkkyh5ssncbvxmiz894a12mww4cmj7y4qzm9ddbbvqxhj3p"; 13 }
··· 8 in 9 buildNodejs { 10 inherit enableNpm; 11 + version = "15.11.0"; 12 + sha256 = "1lfjm0jgzbr0a874c04pddbjnvjcdyx5vyaakdhp0fa222i92w0s"; 13 }
+4 -4
pkgs/games/mindustry/default.nix
··· 29 # Note: when raising the version, ensure that all SNAPSHOT versions in 30 # build.gradle are replaced by a fixed version 31 # (the current one at the time of release) (see postPatch). 32 - version = "125.1"; 33 buildVersion = makeBuildVersion version; 34 35 Mindustry = fetchFromGitHub { 36 owner = "Anuken"; 37 repo = "Mindustry"; 38 rev = "v${version}"; 39 - sha256 = "0p05ndxhl3zgwm4k9cbqclp995kvcjxxhmbkmpjvv7cphiw82hvw"; 40 }; 41 Arc = fetchFromGitHub { 42 owner = "Anuken"; 43 repo = "Arc"; 44 rev = "v${version}"; 45 - sha256 = "1injdyxwgc9dn49zvr4qggsfrsslkvh5d53z3yv28ayx48qpsgxk"; 46 }; 47 soloud = fetchFromGitHub { 48 owner = "Anuken"; ··· 114 ''; 115 outputHashAlgo = "sha256"; 116 outputHashMode = "recursive"; 117 - outputHash = "0dk4w8h0kg0mgbn0ifmk29rw8aj917k3nf27qdf1lyr6wl8k7f8k"; 118 }; 119 120 in
··· 29 # Note: when raising the version, ensure that all SNAPSHOT versions in 30 # build.gradle are replaced by a fixed version 31 # (the current one at the time of release) (see postPatch). 32 + version = "126.1"; 33 buildVersion = makeBuildVersion version; 34 35 Mindustry = fetchFromGitHub { 36 owner = "Anuken"; 37 repo = "Mindustry"; 38 rev = "v${version}"; 39 + sha256 = "cyg4TofSSFLv8pM3zzvc0FxXMiTm+OIchBJF9PDQrkg="; 40 }; 41 Arc = fetchFromGitHub { 42 owner = "Anuken"; 43 repo = "Arc"; 44 rev = "v${version}"; 45 + sha256 = "uBIm82mt1etBB/HrNY6XGa7mmBfwd1E3RtqN8Rk5qeY="; 46 }; 47 soloud = fetchFromGitHub { 48 owner = "Anuken"; ··· 114 ''; 115 outputHashAlgo = "sha256"; 116 outputHashMode = "recursive"; 117 + outputHash = "Mw8LZ1iW6vn4RkBBs8SWHp6mo2Bhj7tMZjLbyuJUqSI="; 118 }; 119 120 in
+12
pkgs/misc/vim-plugins/generated.nix
··· 2950 meta.homepage = "https://github.com/nathunsmitty/nvim-ale-diagnostic/"; 2951 }; 2952 2953 nvim-cm-racer = buildVimPluginFrom2Nix { 2954 pname = "nvim-cm-racer"; 2955 version = "2017-07-27";
··· 2950 meta.homepage = "https://github.com/nathunsmitty/nvim-ale-diagnostic/"; 2951 }; 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 + 2965 nvim-cm-racer = buildVimPluginFrom2Nix { 2966 pname = "nvim-cm-racer"; 2967 version = "2017-07-27";
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 707 will133/vim-dirdiff 708 wincent/command-t 709 wincent/ferret 710 wlangstroth/vim-racket 711 wsdjeg/vim-fetch 712 xavierd/clang_complete
··· 707 will133/vim-dirdiff 708 wincent/command-t 709 wincent/ferret 710 + windwp/nvim-autopairs 711 wlangstroth/vim-racket 712 wsdjeg/vim-fetch 713 xavierd/clang_complete
+2 -2
pkgs/misc/vscode-extensions/default.nix
··· 365 mktplcRef = { 366 name = "todo-tree"; 367 publisher = "Gruntfuggly"; 368 - version = "0.0.198"; 369 - sha256 = "0riy2k8dbsnpk8vkv814fr8zh87y425s24nklcx4b7mfrszv7xbn"; 370 }; 371 meta = with lib; { 372 license = licenses.mit;
··· 365 mktplcRef = { 366 name = "todo-tree"; 367 publisher = "Gruntfuggly"; 368 + version = "0.0.201"; 369 + sha256 = "1hjck1r2byc45rp28gn15wbmcrl1wjng7kn5lyhr6mgjjwqh5pa8"; 370 }; 371 meta = with lib; { 372 license = licenses.mit;
+2 -2
pkgs/os-specific/linux/bolt/default.nix
··· 20 21 stdenv.mkDerivation rec { 22 pname = "bolt"; 23 - version = "0.9"; 24 25 src = fetchFromGitLab { 26 domain = "gitlab.freedesktop.org"; 27 owner = "bolt"; 28 repo = "bolt"; 29 rev = version; 30 - sha256 = "sha256-lcJE+bMK2S2GObHMy/Fu12WGb3T1HrWjsNyZPz4/f4E="; 31 }; 32 33 nativeBuildInputs = [
··· 20 21 stdenv.mkDerivation rec { 22 pname = "bolt"; 23 + version = "0.9.1"; 24 25 src = fetchFromGitLab { 26 domain = "gitlab.freedesktop.org"; 27 owner = "bolt"; 28 repo = "bolt"; 29 rev = version; 30 + sha256 = "1phgp8fs0dlj74kbkqlvfniwc32daz47b3pvsxlfxqzyrp77xrfm"; 31 }; 32 33 nativeBuildInputs = [
+7 -6
pkgs/os-specific/linux/kernel/common-config.nix
··· 193 NET_DROP_MONITOR = yes; 194 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; 201 202 # enable multipath-tcp 203 MPTCP = whenAtLeast "5.6" yes; 204 MPTCP_IPV6 = whenAtLeast "5.6" yes; 205 - INET_MPTCP_DIAG = whenAtLeast "5.9" module; 206 }; 207 208 wireless = {
··· 193 NET_DROP_MONITOR = yes; 194 195 # needed for ss 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); 202 203 # enable multipath-tcp 204 MPTCP = whenAtLeast "5.6" yes; 205 MPTCP_IPV6 = whenAtLeast "5.6" yes; 206 + INET_MPTCP_DIAG = whenAtLeast "5.9" (mkDefault module); 207 }; 208 209 wireless = {
+9 -1
pkgs/os-specific/linux/kernel/hardened/config.nix
··· 65 PANIC_TIMEOUT = freeform "-1"; 66 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. 69 GCC_PLUGIN_LATENT_ENTROPY = yes; 70 71 GCC_PLUGIN_STRUCTLEAK = whenAtLeast "4.11" yes; # A port of the PaX structleak plugin ··· 78 ACPI_CUSTOM_METHOD = no; # Allows writing directly to physical memory 79 PROC_KCORE = no; # Exposes kernel text image layout 80 INET_DIAG = no; # Has been used for heap based attacks in the past 81 82 # Use -fstack-protector-strong (gcc 4.9+) for best stack canary coverage. 83 CC_STACKPROTECTOR_REGULAR = whenOlder "4.18" no;
··· 65 PANIC_TIMEOUT = freeform "-1"; 66 67 GCC_PLUGINS = yes; # Enable gcc plugin options 68 + # Gather additional entropy at boot time for systems that may not have appropriate entropy sources. 69 GCC_PLUGIN_LATENT_ENTROPY = yes; 70 71 GCC_PLUGIN_STRUCTLEAK = whenAtLeast "4.11" yes; # A port of the PaX structleak plugin ··· 78 ACPI_CUSTOM_METHOD = no; # Allows writing directly to physical memory 79 PROC_KCORE = no; # Exposes kernel text image layout 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; 89 90 # Use -fstack-protector-strong (gcc 4.9+) for best stack canary coverage. 91 CC_STACKPROTECTOR_REGULAR = whenOlder "4.18" no;
+14 -8
pkgs/servers/home-assistant/default.nix
··· 1 - { stdenv, nixosTests, lib, fetchFromGitHub, python3 2 3 # Look up dependencies of specified components in component-packages.nix 4 , extraComponents ? [ ] ··· 84 }; 85 86 # leave this in, so users don't have to constantly update their downstream patch handling 87 - patches = []; 88 89 postPatch = '' 90 substituteInPlace setup.py \ ··· 331 # generic/test_camera.py: AssertionError: 500 == 200 332 "test_fetching_without_verify_ssl" 333 "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 ]; 341 342 preCheck = ''
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , python3 6 + , nixosTests 7 8 # Look up dependencies of specified components in component-packages.nix 9 , extraComponents ? [ ] ··· 89 }; 90 91 # leave this in, so users don't have to constantly update their downstream patch handling 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 + ]; 100 101 postPatch = '' 102 substituteInPlace setup.py \ ··· 343 # generic/test_camera.py: AssertionError: 500 == 200 344 "test_fetching_without_verify_ssl" 345 "test_fetching_url_with_verify_ssl" 346 ]; 347 348 preCheck = ''
+3 -3
pkgs/servers/traefik/default.nix
··· 2 3 buildGoModule rec { 4 pname = "traefik"; 5 - version = "2.4.3"; 6 7 src = fetchzip { 8 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 9 - sha256 = "sha256-lCUwzd+ECi2g5jv6ksxrlDdx7cjLgBnaBdYbgzADkcg="; 10 stripRoot = false; 11 }; 12 13 - vendorSha256 = "sha256-kCRXDEuaxFVZuP7PkmZIiXjhMUWjMYbOOtWl4V81DeI="; 14 15 doCheck = false; 16
··· 2 3 buildGoModule rec { 4 pname = "traefik"; 5 + version = "2.4.6"; 6 7 src = fetchzip { 8 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 9 + sha256 = "1f2gj9axmdisp4yza5pa60x2s79vdybgsb5ddyfwkl5m89sh0r2z"; 10 stripRoot = false; 11 }; 12 13 + vendorSha256 = "1w9crp4bk5dk0ph558w9mj8cylm2z6bc81hghmv86ild524a0l9v"; 14 15 doCheck = false; 16
+7 -3
pkgs/shells/zsh/oh-my-zsh/default.nix
··· 5 , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }: 6 7 stdenv.mkDerivation rec { 8 - version = "2021-03-01"; 9 pname = "oh-my-zsh"; 10 - rev = "6fbad5bf72fad4ecf30ba4d4ffee62bac582f0ed"; 11 12 src = fetchFromGitHub { 13 inherit rev; 14 owner = "ohmyzsh"; 15 repo = "ohmyzsh"; 16 - sha256 = "1sd9lhgrig4vpdy0d1ls551gzs7y9q4hq2m0jakslqliyx5d6mpn"; 17 }; 18 19 installPhase = '' 20 outdir=$out/share/oh-my-zsh 21 template=templates/zshrc.zsh-template 22 ··· 64 . ~/.zsh_aliases 65 fi 66 EOF 67 ''; 68 69 passthru = {
··· 5 , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }: 6 7 stdenv.mkDerivation rec { 8 + version = "2021-03-08"; 9 pname = "oh-my-zsh"; 10 + rev = "0ab87c26c17171ae6162ff379a0c704fa57dff2e"; 11 12 src = fetchFromGitHub { 13 inherit rev; 14 owner = "ohmyzsh"; 15 repo = "ohmyzsh"; 16 + sha256 = "1ryf7wj7k7b63sg3ipjdmn3wnyjlh0saf2kz084jmy82hxhqpd8w"; 17 }; 18 19 installPhase = '' 20 + runHook preInstall 21 + 22 outdir=$out/share/oh-my-zsh 23 template=templates/zshrc.zsh-template 24 ··· 66 . ~/.zsh_aliases 67 fi 68 EOF 69 + 70 + runHook postInstall 71 ''; 72 73 passthru = {
+2 -2
pkgs/tools/admin/awscli/default.nix
··· 28 in 29 with py.pkgs; buildPythonApplication rec { 30 pname = "awscli"; 31 - version = "1.19.20"; # N.B: if you change this, change botocore and boto3 to a matching version too 32 33 src = fetchPypi { 34 inherit pname version; 35 - sha256 = "sha256-Fu+KuGOGDUMXgwUKabZjaCBQHdlLLBwPJXU4rlohKNs="; 36 }; 37 38 # https://github.com/aws/aws-cli/issues/4837
··· 28 in 29 with py.pkgs; buildPythonApplication rec { 30 pname = "awscli"; 31 + version = "1.19.22"; # N.B: if you change this, change botocore and boto3 to a matching version too 32 33 src = fetchPypi { 34 inherit pname version; 35 + sha256 = "sha256-yu2IltNbOLB44M+0u5lTjHHllDndBHp4rNfMwFOKMgw="; 36 }; 37 38 # https://github.com/aws/aws-cli/issues/4837
+31 -31
pkgs/tools/audio/beets/default.nix
··· 8 , enableAbsubmit ? lib.elem stdenv.hostPlatform.system essentia-extractor.meta.platforms, essentia-extractor 9 , enableAcousticbrainz ? true 10 , enableAcoustid ? true 11 , enableBadfiles ? true, flac, mp3val 12 , enableBeatport ? true 13 , enableBpsync ? true ··· 16 , enableDiscogs ? true 17 , enableEmbyupdate ? true 18 , enableFetchart ? true 19 - , enableGmusic ? true 20 , enableKeyfinder ? true, keyfinder-cli 21 , enableKodiupdate ? true 22 , enableLastfm ? true ··· 32 33 # External plugins 34 , enableAlternatives ? false 35 - , enableCheck ? false, liboggz 36 , enableCopyArtifacts ? false 37 , enableExtraFiles ? false 38 ··· 45 optionalPlugins = { 46 absubmit = enableAbsubmit; 47 acousticbrainz = enableAcousticbrainz; 48 badfiles = enableBadfiles; 49 beatport = enableBeatport; 50 bpsync = enableBpsync; ··· 54 discogs = enableDiscogs; 55 embyupdate = enableEmbyupdate; 56 fetchart = enableFetchart; 57 - gmusic = enableGmusic; 58 keyfinder = enableKeyfinder; 59 kodiupdate = enableKodiupdate; 60 lastgenre = enableLastfm; ··· 104 # unstable does not require bs1770gain[2]. 105 # [1]: https://discourse.beets.io/t/forming-a-beets-core-team/639 106 # [2]: https://github.com/NixOS/nixpkgs/pull/90504 107 - version = "unstable-2021-01-29"; 108 109 src = fetchFromGitHub { 110 owner = "beetbox"; 111 repo = "beets"; 112 - rev = "04ea754d00e2873ae9aa2d9e07c5cefd790eaee2"; 113 - sha256 = "sha256-BIa3hnOsBxThbA2WCE4q9eaFNtObr3erZBBqobVOSiQ="; 114 }; 115 116 propagatedBuildInputs = [ ··· 128 pythonPackages.confuse 129 pythonPackages.mediafile 130 gobject-introspection 131 - ] ++ lib.optional enableAbsubmit essentia-extractor 132 - ++ lib.optional enableAcoustid pythonPackages.pyacoustid 133 - ++ lib.optional enableBeatport pythonPackages.requests_oauthlib 134 ++ 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 157 ; 158 159 buildInputs = [ ··· 209 echo echo completion tests passed > test/rsrc/test_completion.sh 210 211 sed -i -e 's/len(mf.images)/0/' test/test_zero.py 212 ''; 213 214 postInstall = ''
··· 8 , enableAbsubmit ? lib.elem stdenv.hostPlatform.system essentia-extractor.meta.platforms, essentia-extractor 9 , enableAcousticbrainz ? true 10 , enableAcoustid ? true 11 + , enableAura ? true 12 , enableBadfiles ? true, flac, mp3val 13 , enableBeatport ? true 14 , enableBpsync ? true ··· 17 , enableDiscogs ? true 18 , enableEmbyupdate ? true 19 , enableFetchart ? true 20 , enableKeyfinder ? true, keyfinder-cli 21 , enableKodiupdate ? true 22 , enableLastfm ? true ··· 32 33 # External plugins 34 , enableAlternatives ? false 35 , enableCopyArtifacts ? false 36 , enableExtraFiles ? false 37 ··· 44 optionalPlugins = { 45 absubmit = enableAbsubmit; 46 acousticbrainz = enableAcousticbrainz; 47 + aura = enableAura; 48 badfiles = enableBadfiles; 49 beatport = enableBeatport; 50 bpsync = enableBpsync; ··· 54 discogs = enableDiscogs; 55 embyupdate = enableEmbyupdate; 56 fetchart = enableFetchart; 57 keyfinder = enableKeyfinder; 58 kodiupdate = enableKodiupdate; 59 lastgenre = enableLastfm; ··· 103 # unstable does not require bs1770gain[2]. 104 # [1]: https://discourse.beets.io/t/forming-a-beets-core-team/639 105 # [2]: https://github.com/NixOS/nixpkgs/pull/90504 106 + version = "unstable-2021-03-08"; 107 108 src = fetchFromGitHub { 109 owner = "beetbox"; 110 repo = "beets"; 111 + rev = "debd382837ef1d30574c2234710d536bb299f979"; 112 + sha256 = "sha256-I6ejW3f72fdzWoz7g4n8pDYz2NiHGrorLegUQhQOSiI="; 113 }; 114 115 propagatedBuildInputs = [ ··· 127 pythonPackages.confuse 128 pythonPackages.mediafile 129 gobject-introspection 130 + ] ++ lib.optional enableAbsubmit essentia-extractor 131 + ++ lib.optional enableAcoustid pythonPackages.pyacoustid 132 + ++ lib.optional enableBeatport pythonPackages.requests_oauthlib 133 ++ lib.optional (enableFetchart 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 154 ; 155 156 buildInputs = [ ··· 206 echo echo completion tests passed > test/rsrc/test_completion.sh 207 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 ''; 213 214 postInstall = ''
+12 -5
pkgs/tools/audio/beets/plugins/alternatives.nix
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "beets-alternatives"; 5 - version = "0.9.0"; 6 7 src = fetchFromGitHub { 8 repo = "beets-alternatives"; 9 owner = "geigerzaehler"; 10 - # This is 0.8.2 with fixes against Beets 1.4.6 and Python 3 compatibility. 11 rev = "v${version}"; 12 - sha256 = "19160gwg5j6asy8mc21g2kf87mx4zs9x2gbk8q4r6330z4kpl5pm"; 13 }; 14 15 - nativeBuildInputs = [ beets pythonPackages.nose ]; 16 17 - checkPhase = "nosetests"; 18 19 meta = { 20 description = "Beets plugin to manage external files";
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "beets-alternatives"; 5 + version = "0.10.2"; 6 7 src = fetchFromGitHub { 8 repo = "beets-alternatives"; 9 owner = "geigerzaehler"; 10 rev = "v${version}"; 11 + sha256 = "1dsz94fb29wra1f9580w20bz2f1bgkj4xnsjgwgbv14flbfw4bp0"; 12 }; 13 14 + postPatch = '' 15 + substituteInPlace setup.cfg \ 16 + --replace "addopts = --cov --cov-report=term --cov-report=html" "" 17 + ''; 18 19 + nativeBuildInputs = [ beets ]; 20 + 21 + checkInputs = with pythonPackages; [ 22 + pytestCheckHook 23 + mock 24 + ]; 25 26 meta = { 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 3 stdenv.mkDerivation rec { 4 pname = "mergerfs"; 5 - version = "2.32.3"; 6 7 src = fetchFromGitHub { 8 owner = "trapexit"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-loOBMrAtvJAcFdcgwzEEko7TMM07Ocx+1umxjnLB1uY="; 12 }; 13 14 nativeBuildInputs = [
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mergerfs"; 5 + version = "2.32.4"; 6 7 src = fetchFromGitHub { 8 owner = "trapexit"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-VTnAAJWya1JLZA0gjzpUsdnO5XQP8sJzEP8qHBH+t5k="; 12 }; 13 14 nativeBuildInputs = [
+2 -2
pkgs/tools/misc/fluent-bit/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fluent-bit"; 5 - version = "1.7.1"; 6 7 src = fetchFromGitHub { 8 owner = "fluent"; 9 repo = "fluent-bit"; 10 rev = "v${version}"; 11 - sha256 = "1xzbsnij0xsgd5j11frkf35w8rkr55hq2yl7myaxrgzh686a8law"; 12 }; 13 14 nativeBuildInputs = [ cmake flex bison ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "fluent-bit"; 5 + version = "1.7.2"; 6 7 src = fetchFromGitHub { 8 owner = "fluent"; 9 repo = "fluent-bit"; 10 rev = "v${version}"; 11 + sha256 = "sha256-5R26NvhSYesMk/8i9+5H3pZTgbdbnuQ1rLlCa/gWJGc="; 12 }; 13 14 nativeBuildInputs = [ cmake flex bison ];
+3 -3
pkgs/tools/misc/goreleaser/default.nix
··· 2 3 buildGoModule rec { 4 pname = "goreleaser"; 5 - version = "0.157.0"; 6 7 src = fetchFromGitHub { 8 owner = "goreleaser"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-wUlAllWBGJBZ98lbf2pOfW3a31r74py5Zh7uszkRYqA="; 12 }; 13 14 - vendorSha256 = "sha256-8SOUFlbwGwRuOB50V9eXE9KQWGiSexTZct6Rux6Stuw="; 15 16 buildFlagsArray = [ 17 "-ldflags="
··· 2 3 buildGoModule rec { 4 pname = "goreleaser"; 5 + version = "0.158.0"; 6 7 src = fetchFromGitHub { 8 owner = "goreleaser"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-ewwJHn55zzry2hhMNuRUlGwC995r0ooPJGqKYaCh4WE="; 12 }; 13 14 + vendorSha256 = "sha256-awgkYMidTDcUjQt7hA5cSiwSAsNo5iUqKcG4+2lCXIM="; 15 16 buildFlagsArray = [ 17 "-ldflags="
+6 -5
pkgs/tools/networking/shadowsocks-rust/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "shadowsocks-rust"; 5 - version = "1.9.1"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "shadowsocks"; 10 repo = pname; 11 - sha256 = "1lxx9xzkv3y2qjffa5dmwv0ygka71dx3c2995ggcgy5fb19yrghc"; 12 }; 13 14 - cargoSha256 = "0p93dv4nlwl5167dmp160l09wqba5d40gaiwc6vbzb4iqdicgwls"; 15 16 RUSTC_BOOTSTRAP = 1; 17 18 - buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 19 20 checkFlags = [ "--skip=http_proxy" "--skip=udp_tunnel" ]; 21 ··· 24 description = "A Rust port of shadowsocks"; 25 license = licenses.mit; 26 maintainers = [ maintainers.marsam ]; 27 }; 28 }
··· 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices, libiconv }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "shadowsocks-rust"; 5 + version = "1.9.2"; 6 7 src = fetchFromGitHub { 8 rev = "v${version}"; 9 owner = "shadowsocks"; 10 repo = pname; 11 + sha256 = "1mqxfw21ilcy0gc2jrn5f385y3g9inabp9fjc39m5ydljja4g5b9"; 12 }; 13 14 + cargoSha256 = "1ja2hcsa2wa0zmblz4ps35jcx1y29j469lf4i9a7sw0kgh3xp1ha"; 15 16 RUSTC_BOOTSTRAP = 1; 17 18 + buildInputs = lib.optionals stdenv.isDarwin [ CoreServices libiconv ]; 19 20 checkFlags = [ "--skip=http_proxy" "--skip=udp_tunnel" ]; 21 ··· 24 description = "A Rust port of shadowsocks"; 25 license = licenses.mit; 26 maintainers = [ maintainers.marsam ]; 27 + broken = stdenv.isAarch64; # crypto2 crate doesn't build on aarch64 28 }; 29 }
+8 -8
pkgs/tools/networking/v2ray/default.nix
··· 3 }: 4 5 let 6 - version = "4.34.0"; 7 8 src = fetchFromGitHub { 9 owner = "v2fly"; 10 repo = "v2ray-core"; 11 rev = "v${version}"; 12 - sha256 = "0x6smffpvnrk76plnsk31qqznkyz06dh4sazncp2l3y9va8k2jb1"; 13 }; 14 15 - vendorSha256 = "077jnjsmhzr0idrk7pifr5s2r9yjf1v9bvj177n2k2ln8w3wgx3g"; 16 17 assets = { 18 # MIT licensed 19 "geoip.dat" = let 20 - geoipRev = "202101070033"; 21 - geoipSha256 = "11naj51pzchdrjmkp1dqzcby1i2fhbq0mncwm4d5q5mh3chyizsf"; 22 in fetchurl { 23 url = "https://github.com/v2fly/geoip/releases/download/${geoipRev}/geoip.dat"; 24 sha256 = geoipSha256; ··· 26 27 # MIT licensed 28 "geosite.dat" = let 29 - geositeRev = "20210106164413"; 30 - geositeSha256 = "0chc7jb3yzgrrjkpd3s1rlim5qgf6j2kp952fvkhpwmnap86aip7"; 31 in fetchurl { 32 url = "https://github.com/v2fly/domain-list-community/releases/download/${geositeRev}/dlc.dat"; 33 sha256 = geositeSha256; ··· 68 }; 69 70 in runCommand "v2ray-${version}" { 71 - inherit version; 72 inherit (core) meta; 73 74 nativeBuildInputs = [ makeWrapper ];
··· 3 }: 4 5 let 6 + version = "4.35.1"; 7 8 src = fetchFromGitHub { 9 owner = "v2fly"; 10 repo = "v2ray-core"; 11 rev = "v${version}"; 12 + sha256 = "07fih1hnnv1a4aj6sb63408vqf10bgk74lhqqv63lvm7gaz73srd"; 13 }; 14 15 + vendorSha256 = "sha256-+kI9p0lu4PbLe6jhWqTfRYXHFOOrKmY36LzdcQT9BWw="; 16 17 assets = { 18 # MIT licensed 19 "geoip.dat" = let 20 + geoipRev = "202103080146"; 21 + geoipSha256 = "1qwmz5fxqqxcjw5jm9dvgpmbin2q69j9wdx4xv3pm8fc47wzx8w5"; 22 in fetchurl { 23 url = "https://github.com/v2fly/geoip/releases/download/${geoipRev}/geoip.dat"; 24 sha256 = geoipSha256; ··· 26 27 # MIT licensed 28 "geosite.dat" = let 29 + geositeRev = "20210308021214"; 30 + geositeSha256 = "1fp787wlzdjn2gxx4zmqrqqzqcq4xd10pqx8q919fag0kkzdm23s"; 31 in fetchurl { 32 url = "https://github.com/v2fly/domain-list-community/releases/download/${geositeRev}/dlc.dat"; 33 sha256 = geositeSha256; ··· 68 }; 69 70 in runCommand "v2ray-${version}" { 71 + inherit src version; 72 inherit (core) meta; 73 74 nativeBuildInputs = [ makeWrapper ];
+1 -1
pkgs/tools/networking/v2ray/update.sh
··· 61 vendorSha256=$( 62 nix-build "$nixpkgs" -A v2ray --no-out-link 2>&1 | 63 tee /dev/stderr | 64 - sed -nE 's/.*got:\s*sha256:(\w+)$/\1/p' 65 ) 66 [[ "$vendorSha256" ]] 67 sed --in-place \
··· 61 vendorSha256=$( 62 nix-build "$nixpkgs" -A v2ray --no-out-link 2>&1 | 63 tee /dev/stderr | 64 + sed -nE 's/.*got:\s*(sha256\S+)$/\1/p' 65 ) 66 [[ "$vendorSha256" ]] 67 sed --in-place \
+2 -2
pkgs/tools/text/shfmt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "shfmt"; 5 - version = "3.2.2"; 6 7 src = fetchFromGitHub { 8 owner = "mvdan"; 9 repo = "sh"; 10 rev = "v${version}"; 11 - sha256 = "sha256-ZeyHidw8iHboo/LHTR9E3Sqj8euaRvDaYbPQMdecsrk="; 12 }; 13 14 vendorSha256 = "1ma7nvyn6ylbi8bd7x900i94pzs877kfy9xh0nf1bbify1vcpd29";
··· 2 3 buildGoModule rec { 4 pname = "shfmt"; 5 + version = "3.2.4"; 6 7 src = fetchFromGitHub { 8 owner = "mvdan"; 9 repo = "sh"; 10 rev = "v${version}"; 11 + sha256 = "sha256-BkvsCIcm3qnfECNhY3DIPnBRih6D7rOHOQu9oc0YDZA="; 12 }; 13 14 vendorSha256 = "1ma7nvyn6ylbi8bd7x900i94pzs877kfy9xh0nf1bbify1vcpd29";
+5
pkgs/top-level/aliases.nix
··· 260 goimports = gotools; # added 2018-09-16 261 gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # added 2020-04-23 262 google-gflags = gflags; # added 2019-07-25 263 googleAuthenticator = google-authenticator; # added 2016-10-16 264 grantlee5 = libsForQt5.grantlee; # added 2015-12-19 265 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25 ··· 384 mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # added 2020-05-23 385 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 mirage = throw "mirage has been femoved from nixpkgs, as it's unmaintained"; # added 2019-12-10 387 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 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 mysql-client = hiPrio mariadb.client; ··· 731 trilium = throw "trilium has been removed. Please use trilium-desktop instead."; # added 2020-04-29 732 truecrypt = veracrypt; # added 2018-10-24 733 tshark = wireshark-cli; # added 2018-04-25 734 uberwriter = apostrophe; # added 2020-04-23 735 ubootBeagleboneBlack = ubootAmx335xEVM; # added 2020-01-21 736 ucsFonts = ucs-fonts; # added 2016-07-15
··· 260 goimports = gotools; # added 2018-09-16 261 gometalinter = throw "gometalinter was abandoned by upstream. Consider switching to golangci-lint instead"; # added 2020-04-23 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 266 googleAuthenticator = google-authenticator; # added 2016-10-16 267 grantlee5 = libsForQt5.grantlee; # added 2015-12-19 268 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25 ··· 387 mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # added 2020-05-23 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 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 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 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 393 mysql-client = hiPrio mariadb.client; ··· 735 trilium = throw "trilium has been removed. Please use trilium-desktop instead."; # added 2020-04-29 736 truecrypt = veracrypt; # added 2018-10-24 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 739 uberwriter = apostrophe; # added 2020-04-23 740 ubootBeagleboneBlack = ubootAmx335xEVM; # added 2020-01-21 741 ucsFonts = ucs-fonts; # added 2016-07-15
+6 -21
pkgs/top-level/all-packages.nix
··· 662 663 arc_unpacker = callPackage ../tools/archivers/arc_unpacker { }; 664 665 - tuijam = callPackage ../applications/audio/tuijam { inherit (python3Packages) buildPythonApplication; }; 666 - 667 opnplug = callPackage ../applications/audio/adlplug { 668 adlplugChip = "-DADLplug_CHIP=OPN2"; 669 pname = "OPNplug"; ··· 1043 aws-sam-cli = callPackage ../development/tools/aws-sam-cli { }; 1044 1045 aws-vault = callPackage ../tools/admin/aws-vault { }; 1046 1047 iamy = callPackage ../tools/admin/iamy { }; 1048 ··· 3036 }; 3037 in lib.recurseIntoAttrs { 3038 alternatives = callPackage ../tools/audio/beets/plugins/alternatives.nix pluginArgs; 3039 - check = callPackage ../tools/audio/beets/plugins/check.nix pluginArgs; 3040 copyartifacts = callPackage ../tools/audio/beets/plugins/copyartifacts.nix pluginArgs; 3041 extrafiles = callPackage ../tools/audio/beets/plugins/extrafiles.nix pluginArgs; 3042 }; ··· 4881 google-compute-engine = with python3.pkgs; toPythonApplication google-compute-engine; 4882 4883 google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { }; 4884 - 4885 - google-music-scripts = callPackage ../tools/audio/google-music-scripts { }; 4886 4887 google-cloud-cpp = callPackage ../development/libraries/google-cloud-cpp { }; 4888 ··· 20106 20107 powerdns = callPackage ../servers/dns/powerdns { }; 20108 20109 dnsdist = callPackage ../servers/dns/dnsdist { }; 20110 20111 pdns-recursor = callPackage ../servers/dns/pdns-recursor { }; ··· 20970 open-sans = callPackage ../data/fonts/open-sans { }; 20971 20972 openzone-cursors = callPackage ../data/themes/openzone { }; 20973 20974 orbitron = callPackage ../data/fonts/orbitron { }; 20975 ··· 22402 22403 inherit (ocamlPackages) google-drive-ocamlfuse; 22404 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 googler = callPackage ../applications/misc/googler { 22417 python = python3; 22418 }; ··· 22864 google-chrome-beta = google-chrome.override { chromium = chromiumBeta; channel = "beta"; }; 22865 22866 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 22872 gosmore = callPackage ../applications/misc/gosmore { }; 22873 ··· 23934 23935 inherit (mopidyPackages) 23936 mopidy 23937 - mopidy-gmusic 23938 mopidy-iris 23939 mopidy-local 23940 mopidy-moped
··· 662 663 arc_unpacker = callPackage ../tools/archivers/arc_unpacker { }; 664 665 opnplug = callPackage ../applications/audio/adlplug { 666 adlplugChip = "-DADLplug_CHIP=OPN2"; 667 pname = "OPNplug"; ··· 1041 aws-sam-cli = callPackage ../development/tools/aws-sam-cli { }; 1042 1043 aws-vault = callPackage ../tools/admin/aws-vault { }; 1044 + 1045 + aws-workspaces = callPackage ../applications/networking/remote/aws-workspaces { }; 1046 1047 iamy = callPackage ../tools/admin/iamy { }; 1048 ··· 3036 }; 3037 in lib.recurseIntoAttrs { 3038 alternatives = callPackage ../tools/audio/beets/plugins/alternatives.nix pluginArgs; 3039 copyartifacts = callPackage ../tools/audio/beets/plugins/copyartifacts.nix pluginArgs; 3040 extrafiles = callPackage ../tools/audio/beets/plugins/extrafiles.nix pluginArgs; 3041 }; ··· 4880 google-compute-engine = with python3.pkgs; toPythonApplication google-compute-engine; 4881 4882 google-compute-engine-oslogin = callPackage ../tools/virtualization/google-compute-engine-oslogin { }; 4883 4884 google-cloud-cpp = callPackage ../development/libraries/google-cloud-cpp { }; 4885 ··· 20103 20104 powerdns = callPackage ../servers/dns/powerdns { }; 20105 20106 + powerdns-admin = callPackage ../applications/networking/powerdns-admin { }; 20107 + 20108 dnsdist = callPackage ../servers/dns/dnsdist { }; 20109 20110 pdns-recursor = callPackage ../servers/dns/pdns-recursor { }; ··· 20969 open-sans = callPackage ../data/fonts/open-sans { }; 20970 20971 openzone-cursors = callPackage ../data/themes/openzone { }; 20972 + 20973 + oranchelo-icon-theme = callPackage ../data/icons/oranchelo-icon-theme { }; 20974 20975 orbitron = callPackage ../data/fonts/orbitron { }; 20976 ··· 22403 22404 inherit (ocamlPackages) google-drive-ocamlfuse; 22405 22406 googler = callPackage ../applications/misc/googler { 22407 python = python3; 22408 }; ··· 22854 google-chrome-beta = google-chrome.override { chromium = chromiumBeta; channel = "beta"; }; 22855 22856 google-chrome-dev = google-chrome.override { chromium = chromiumDev; channel = "dev"; }; 22857 22858 gosmore = callPackage ../applications/misc/gosmore { }; 22859 ··· 23920 23921 inherit (mopidyPackages) 23922 mopidy 23923 mopidy-iris 23924 mopidy-local 23925 mopidy-moped
+14 -8
pkgs/top-level/python-packages.nix
··· 2403 2404 flask_script = callPackage ../development/python-modules/flask-script { }; 2405 2406 flask-silk = callPackage ../development/python-modules/flask-silk { }; 2407 2408 flask-socketio = callPackage ../development/python-modules/flask-socketio { }; ··· 2410 flask-sockets = callPackage ../development/python-modules/flask-sockets { }; 2411 2412 flask_sqlalchemy = callPackage ../development/python-modules/flask-sqlalchemy { }; 2413 2414 flask-swagger = callPackage ../development/python-modules/flask-swagger { }; 2415 ··· 2672 2673 gmpy = callPackage ../development/python-modules/gmpy { }; 2674 2675 - gmusicapi = callPackage ../development/python-modules/gmusicapi { }; 2676 - 2677 gntp = callPackage ../development/python-modules/gntp { }; 2678 2679 gnureadline = callPackage ../development/python-modules/gnureadline { }; ··· 2797 2798 googlemaps = callPackage ../development/python-modules/googlemaps { }; 2799 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 google-pasta = callPackage ../development/python-modules/google-pasta { }; 2807 2808 google-resumable-media = callPackage ../development/python-modules/google-resumable-media { }; ··· 3844 lightning = callPackage ../development/python-modules/lightning { }; 3845 3846 lightparam = callPackage ../development/python-modules/lightparam { }; 3847 3848 limitlessled = callPackage ../development/python-modules/limitlessled { }; 3849 ··· 6261 6262 pytest-check = callPackage ../development/python-modules/pytest-check { }; 6263 6264 pytest-click = callPackage ../development/python-modules/pytest-click { }; 6265 6266 pytest-cov = self.pytestcov; # self 2021-01-04 ··· 6418 6419 python-awair = callPackage ../development/python-modules/python-awair { }; 6420 6421 python-axolotl = callPackage ../development/python-modules/python-axolotl { }; 6422 6423 python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { }; ··· 8662 xmljson = callPackage ../development/python-modules/xmljson { }; 8663 8664 xmlschema = callPackage ../development/python-modules/xmlschema { }; 8665 8666 xmltodict = callPackage ../development/python-modules/xmltodict { }; 8667
··· 2403 2404 flask_script = callPackage ../development/python-modules/flask-script { }; 2405 2406 + flask-seasurf = callPackage ../development/python-modules/flask-seasurf { }; 2407 + 2408 flask-silk = callPackage ../development/python-modules/flask-silk { }; 2409 2410 flask-socketio = callPackage ../development/python-modules/flask-socketio { }; ··· 2412 flask-sockets = callPackage ../development/python-modules/flask-sockets { }; 2413 2414 flask_sqlalchemy = callPackage ../development/python-modules/flask-sqlalchemy { }; 2415 + 2416 + flask-sslify = callPackage ../development/python-modules/flask-sslify { }; 2417 2418 flask-swagger = callPackage ../development/python-modules/flask-swagger { }; 2419 ··· 2676 2677 gmpy = callPackage ../development/python-modules/gmpy { }; 2678 2679 gntp = callPackage ../development/python-modules/gntp { }; 2680 2681 gnureadline = callPackage ../development/python-modules/gnureadline { }; ··· 2799 2800 googlemaps = callPackage ../development/python-modules/googlemaps { }; 2801 2802 google-pasta = callPackage ../development/python-modules/google-pasta { }; 2803 2804 google-resumable-media = callPackage ../development/python-modules/google-resumable-media { }; ··· 3840 lightning = callPackage ../development/python-modules/lightning { }; 3841 3842 lightparam = callPackage ../development/python-modules/lightparam { }; 3843 + 3844 + lima = callPackage ../development/python-modules/lima { }; 3845 3846 limitlessled = callPackage ../development/python-modules/limitlessled { }; 3847 ··· 6259 6260 pytest-check = callPackage ../development/python-modules/pytest-check { }; 6261 6262 + pytest-cid = callPackage ../development/python-modules/pytest-cid { }; 6263 + 6264 pytest-click = callPackage ../development/python-modules/pytest-click { }; 6265 6266 pytest-cov = self.pytestcov; # self 2021-01-04 ··· 6418 6419 python-awair = callPackage ../development/python-modules/python-awair { }; 6420 6421 + python3-saml = callPackage ../development/python-modules/python3-saml { }; 6422 + 6423 python-axolotl = callPackage ../development/python-modules/python-axolotl { }; 6424 6425 python-axolotl-curve25519 = callPackage ../development/python-modules/python-axolotl-curve25519 { }; ··· 8664 xmljson = callPackage ../development/python-modules/xmljson { }; 8665 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 + }; 8671 8672 xmltodict = callPackage ../development/python-modules/xmltodict { }; 8673