lol

Merge branch 'staging-next' into staging

- boost 167 removed on staging-next (7915d1e03f93f3072ab397448830d028202e5d3d) × boost attributes are inherited on staging (d20aa4955d4c31d8393753ddf088e1ee82c5d12e)

- linux kernels were moved to linux-kernels.nix on staging-next (c62f911507977ac67fd5e8547af2d1071c5e0891) × hardened kernels are versioned on staging (a5341beb789c66ed24a11396dda28f2a1303768e) + removed linux_5_12 (e55554491df6e7b789d7f3d6a3b354df3575e1c6)

- conflict in node-packages – I regenerated it using node2nix from nixos-unstable (does not build on staging)

+3861 -2478
+12
maintainers/maintainer-list.nix
··· 4755 4755 githubId = 40566146; 4756 4756 name = "Jonas Braun"; 4757 4757 }; 4758 + j-hui = { 4759 + email = "j-hui@cs.columbia.edu"; 4760 + github = "j-hui"; 4761 + githubId = 11800204; 4762 + name = "John Hui"; 4763 + }; 4758 4764 j-keck = { 4759 4765 email = "jhyphenkeck@gmail.com"; 4760 4766 github = "j-keck"; ··· 8767 8773 github = "purcell"; 8768 8774 githubId = 5636; 8769 8775 name = "Steve Purcell"; 8776 + }; 8777 + putchar = { 8778 + email = "slim.cadoux@gmail.com"; 8779 + github = "putchar"; 8780 + githubId = 8208767; 8781 + name = "Slim Cadoux"; 8770 8782 }; 8771 8783 puzzlewolf = { 8772 8784 email = "nixos@nora.pink";
+1 -1
nixos/doc/manual/from_md/release-notes/rl-2105.section.xml
··· 84 84 </listitem> 85 85 <listitem> 86 86 <para> 87 - The linux_latest kernel was updated to the 5.12 series. It 87 + The linux_latest kernel was updated to the 5.13 series. It 88 88 currently is not officially supported for use with the zfs 89 89 filesystem. If you use zfs, you should use a different kernel 90 90 version (either the LTS kernel, or track a specific one).
+17 -5
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 668 668 to use wildcards in the <literal>source</literal> argument. 669 669 </para> 670 670 </listitem> 671 - </itemizedlist> 672 - <para> 673 - &lt;&lt;&lt;&lt;&lt;&lt;&lt; HEAD 674 - </para> 675 - <itemizedlist> 676 671 <listitem> 677 672 <para> 678 673 The <literal>openrazer</literal> and ··· 713 708 The <literal>varnish</literal> package was upgraded from 6.3.x 714 709 to 6.5.x. <literal>varnish60</literal> for the last LTS 715 710 release is also still available. 711 + </para> 712 + </listitem> 713 + <listitem> 714 + <para> 715 + The <literal>kubernetes</literal> package was upgraded to 716 + 1.22. The <literal>kubernetes.apiserver.kubeletHttps</literal> 717 + option was removed and HTTPS is always used. 718 + </para> 719 + </listitem> 720 + <listitem> 721 + <para> 722 + The attribute <literal>linuxPackages_latest_hardened</literal> 723 + was dropped because the hardened patches lag behind the 724 + upstream kernel which made version bumps harder. If you want 725 + to use a hardened kernel, please pin it explicitly with a 726 + versioned attribute such as 727 + <literal>linuxPackages_5_10_hardened</literal>. 716 728 </para> 717 729 </listitem> 718 730 </itemizedlist>
+42 -5
nixos/doc/manual/installation/installing.xml
··· 64 64 </para> 65 65 66 66 <para> 67 - To manually configure the network on the graphical installer, first disable 68 - network-manager with <command>systemctl stop NetworkManager</command>. 67 + On the graphical installer, you can configure the network, wifi included, 68 + through NetworkManager. Using the <command>nmtui</command> program, you 69 + can do so even in a non-graphical session. If you prefer to configure the 70 + network manually, disable NetworkManager with 71 + <command>systemctl stop NetworkManager</command>. 69 72 </para> 70 73 71 74 <para> 72 - To manually configure the wifi on the minimal installer, run 73 - <command>wpa_supplicant -B -i interface -c &lt;(wpa_passphrase 'SSID' 74 - 'key')</command>. 75 + On the minimal installer, NetworkManager is not available, so configuration 76 + must be perfomed manually. To configure the wifi, first start wpa_supplicant 77 + with <command>sudo systemctl start wpa_supplicant</command>, then run 78 + <command>wpa_cli</command>. For most home networks, you need to type 79 + in the following commands: 80 + <programlisting> 81 + <prompt>&gt; </prompt>add_network 82 + 0 83 + <prompt>&gt; </prompt>set_network 0 ssid "myhomenetwork" 84 + OK 85 + <prompt>&gt; </prompt>set_network 0 psk "mypassword" 86 + OK 87 + <prompt>&gt; </prompt>set_network 0 key_mgmt WPA-PSK 88 + OK 89 + <prompt>&gt; </prompt>enable_network 0 90 + OK 91 + </programlisting> 92 + For enterprise networks, for example <emphasis>eduroam</emphasis>, instead do: 93 + <programlisting> 94 + <prompt>&gt; </prompt>add_network 95 + 0 96 + <prompt>&gt; </prompt>set_network 0 ssid "eduroam" 97 + OK 98 + <prompt>&gt; </prompt>set_network 0 identity "myname@example.com" 99 + OK 100 + <prompt>&gt; </prompt>set_network 0 password "mypassword" 101 + OK 102 + <prompt>&gt; </prompt>set_network 0 key_mgmt WPA-EAP 103 + OK 104 + <prompt>&gt; </prompt>enable_network 0 105 + OK 106 + </programlisting> 107 + When successfully connected, you should see a line such as this one 108 + <programlisting> 109 + &lt;3&gt;CTRL-EVENT-CONNECTED - Connection to 32:85:ab:ef:24:5c completed [id=0 id_str=] 110 + </programlisting> 111 + you can now leave <command>wpa_cli</command> by typing <command>quit</command>. 75 112 </para> 76 113 77 114 <para>
+1 -1
nixos/doc/manual/release-notes/rl-2105.section.md
··· 30 30 31 31 - Python optimizations were disabled again. Builds with optimizations enabled are not reproducible. Optimizations can now be enabled with an option. 32 32 33 - - The linux_latest kernel was updated to the 5.12 series. It currently is not officially supported for use with the zfs filesystem. If you use zfs, you should use a different kernel version (either the LTS kernel, or track a specific one). 33 + - The linux_latest kernel was updated to the 5.13 series. It currently is not officially supported for use with the zfs filesystem. If you use zfs, you should use a different kernel version (either the LTS kernel, or track a specific one). 34 34 35 35 ## New Services {#sec-release-21.05-new-services} 36 36
+7 -1
nixos/doc/manual/release-notes/rl-2111.section.md
··· 171 171 172 172 - `programs.neovim.runtime` switched to a `linkFarm` internally, making it impossible to use wildcards in the `source` argument. 173 173 174 - <<<<<<< HEAD 175 174 - The `openrazer` and `openrazer-daemon` packages as well as the `hardware.openrazer` module now require users to be members of the `openrazer` group instead of `plugdev`. With this change, users no longer need be granted the entire set of `plugdev` group permissions, which can include permissions other than those required by `openrazer`. This is desirable from a security point of view. The setting [`harware.openrazer.users`](options.html#opt-services.hardware.openrazer.users) can be used to add users to the `openrazer` group. 176 175 177 176 - The `yambar` package has been split into `yambar` and `yambar-wayland`, corresponding to the xorg and wayland backend respectively. Please switch to `yambar-wayland` if you are on wayland. ··· 181 180 To be able to access the web UI this port needs to be opened in the firewall. 182 181 183 182 - The `varnish` package was upgraded from 6.3.x to 6.5.x. `varnish60` for the last LTS release is also still available. 183 + 184 + - The `kubernetes` package was upgraded to 1.22. The `kubernetes.apiserver.kubeletHttps` option was removed and HTTPS is always used. 185 + 186 + - The attribute `linuxPackages_latest_hardened` was dropped because the hardened patches 187 + lag behind the upstream kernel which made version bumps harder. If you want to use 188 + a hardened kernel, please pin it explicitly with a versioned attribute such as 189 + `linuxPackages_5_10_hardened`. 184 190 185 191 ## Other Notable Changes {#sec-release-21.11-notable-changes} 186 192
+4 -2
nixos/lib/test-driver/test-driver.py
··· 1029 1029 1030 1030 args = arg_parser.parse_args() 1031 1031 global test_script 1032 + testscript = pathlib.Path(args.testscript).read_text() 1032 1033 1033 1034 def test_script() -> None: 1034 1035 with log.nested("running the VM test script"): 1035 - exec(pathlib.Path(args.testscript).read_text(), globals()) 1036 + exec(testscript, globals()) 1036 1037 1037 1038 log = Logger() 1038 1039 ··· 1061 1062 process.terminate() 1062 1063 log.close() 1063 1064 1065 + interactive = args.interactive or (not bool(testscript)) 1064 1066 tic = time.time() 1065 - run_tests(args.interactive) 1067 + run_tests(interactive) 1066 1068 toc = time.time() 1067 1069 print("test script finished in {:.2f}s".format(toc - tic))
+8
nixos/lib/testing-python.nix
··· 186 186 --set startScripts "''${vmStartScripts[*]}" \ 187 187 --set testScript "$out/test-script" \ 188 188 --set vlans '${toString vlans}' 189 + 190 + ${lib.optionalString (testScript == "") '' 191 + ln -s ${testDriver}/bin/nixos-test-driver $out/bin/nixos-run-vms 192 + wrapProgram $out/bin/nixos-run-vms \ 193 + --set startScripts "''${vmStartScripts[*]}" \ 194 + --set testScript "${pkgs.writeText "start-all" "start_all(); join_all();"}" \ 195 + --set vlans '${toString vlans}' 196 + ''} 189 197 ''); 190 198 191 199 # Make a full-blown test
+6
nixos/modules/profiles/installation-device.nix
··· 54 54 An ssh daemon is running. You then must set a password 55 55 for either "root" or "nixos" with `passwd` or add an ssh key 56 56 to /home/nixos/.ssh/authorized_keys be able to login. 57 + 58 + If you need a wireless connection, type 59 + `sudo systemctl start wpa_supplicant` and configure a 60 + network using `wpa_cli`. See the NixOS manual for details. 57 61 '' + optionalString config.services.xserver.enable '' 62 + 58 63 Type `sudo systemctl start display-manager' to 59 64 start the graphical user interface. 60 65 ''; ··· 71 76 72 77 # Enable wpa_supplicant, but don't start it by default. 73 78 networking.wireless.enable = mkDefault true; 79 + networking.wireless.userControlled.enable = true; 74 80 systemd.services.wpa_supplicant.wantedBy = mkOverride 50 []; 75 81 76 82 # Tell the Nix evaluator to garbage collect more aggressively.
+2 -2
nixos/modules/services/blockchain/ethereum/geth.nix
··· 83 83 }; 84 84 85 85 syncmode = mkOption { 86 - type = types.enum [ "fast" "full" "light" ]; 87 - default = "fast"; 86 + type = types.enum [ "snap" "fast" "full" "light" ]; 87 + default = "snap"; 88 88 description = "Blockchain sync mode."; 89 89 }; 90 90
-7
nixos/modules/services/cluster/kubernetes/apiserver.nix
··· 190 190 type = nullOr path; 191 191 }; 192 192 193 - kubeletHttps = mkOption { 194 - description = "Whether to use https for connections to kubelet."; 195 - default = true; 196 - type = bool; 197 - }; 198 - 199 193 preferredAddressTypes = mkOption { 200 194 description = "List of the preferred NodeAddressTypes to use for kubelet connections."; 201 195 type = nullOr str; ··· 365 359 "--feature-gates=${concatMapStringsSep "," (feature: "${feature}=true") cfg.featureGates}"} \ 366 360 ${optionalString (cfg.basicAuthFile != null) 367 361 "--basic-auth-file=${cfg.basicAuthFile}"} \ 368 - --kubelet-https=${boolToString cfg.kubeletHttps} \ 369 362 ${optionalString (cfg.kubeletClientCaFile != null) 370 363 "--kubelet-certificate-authority=${cfg.kubeletClientCaFile}"} \ 371 364 ${optionalString (cfg.kubeletClientCertFile != null)
+2 -2
nixos/modules/services/cluster/kubernetes/flannel.nix
··· 58 58 services.kubernetes.addonManager.bootstrapAddons = mkIf ((storageBackend == "kubernetes") && (elem "RBAC" top.apiserver.authorizationMode)) { 59 59 60 60 flannel-cr = { 61 - apiVersion = "rbac.authorization.k8s.io/v1beta1"; 61 + apiVersion = "rbac.authorization.k8s.io/v1"; 62 62 kind = "ClusterRole"; 63 63 metadata = { name = "flannel"; }; 64 64 rules = [{ ··· 79 79 }; 80 80 81 81 flannel-crb = { 82 - apiVersion = "rbac.authorization.k8s.io/v1beta1"; 82 + apiVersion = "rbac.authorization.k8s.io/v1"; 83 83 kind = "ClusterRoleBinding"; 84 84 metadata = { name = "flannel"; }; 85 85 roleRef = {
+9 -1
nixos/modules/services/web-servers/caddy.nix
··· 90 90 ''; 91 91 }; 92 92 93 + resume = mkOption { 94 + default = false; 95 + type = types.bool; 96 + description = '' 97 + Use saved config, if any (and prefer over configuration passed with <option>services.caddy.config</option>). 98 + ''; 99 + }; 100 + 93 101 ca = mkOption { 94 102 default = "https://acme-v02.api.letsencrypt.org/directory"; 95 103 example = "https://acme-staging-v02.api.letsencrypt.org/directory"; ··· 142 150 startLimitIntervalSec = 14400; 143 151 startLimitBurst = 10; 144 152 serviceConfig = { 145 - ExecStart = "${cfg.package}/bin/caddy run --config ${configJSON}"; 153 + ExecStart = "${cfg.package}/bin/caddy run ${optionalString cfg.resume "--resume"} --config ${configJSON}"; 146 154 ExecReload = "${cfg.package}/bin/caddy reload --config ${configJSON}"; 147 155 Type = "simple"; 148 156 User = cfg.user;
+1 -1
nixos/modules/system/boot/stage-1.nix
··· 375 375 } 376 376 trap cleanup EXIT 377 377 378 - tmp=$(mktemp -d initrd-secrets.XXXXXXXXXX) 378 + tmp=$(mktemp -d ''${TMPDIR:-/tmp}/initrd-secrets.XXXXXXXXXX) 379 379 380 380 ${lib.concatStringsSep "\n" (mapAttrsToList (dest: source: 381 381 let source' = if source == null then dest else toString source; in
-3
nixos/modules/tasks/network-interfaces-systemd.nix
··· 33 33 assertion = cfg.defaultGatewayWindowSize == null; 34 34 message = "networking.defaultGatewayWindowSize is not supported by networkd."; 35 35 } { 36 - assertion = cfg.vswitches == {}; 37 - message = "networking.vswitches are not supported by networkd."; 38 - } { 39 36 assertion = cfg.defaultGateway == null || cfg.defaultGateway.interface == null; 40 37 message = "networking.defaultGateway.interface is not supported by networkd."; 41 38 } {
+1
nixos/tests/all-tests.nix
··· 259 259 miniflux = handleTest ./miniflux.nix {}; 260 260 minio = handleTest ./minio.nix {}; 261 261 misc = handleTest ./misc.nix {}; 262 + mod_perl = handleTest ./mod_perl.nix {}; 262 263 moinmoin = handleTest ./moinmoin.nix {}; 263 264 mongodb = handleTest ./mongodb.nix {}; 264 265 moodle = handleTest ./moodle.nix {};
+2 -26
nixos/tests/hardened.nix
··· 33 33 34 34 testScript = 35 35 let 36 - hardened-malloc-tests = pkgs.stdenv.mkDerivation { 37 - name = "hardened-malloc-tests-${pkgs.graphene-hardened-malloc.version}"; 38 - src = pkgs.graphene-hardened-malloc.src; 39 - buildPhase = '' 40 - cd test/simple-memory-corruption 41 - make -j4 42 - ''; 43 - 44 - installPhase = '' 45 - find . -type f -executable -exec install -Dt $out/bin '{}' + 46 - ''; 47 - }; 36 + hardened-malloc-tests = pkgs.graphene-hardened-malloc.ld-preload-tests; 48 37 in 49 38 '' 50 39 machine.wait_for_unit("multi-user.target") ··· 107 96 machine.fail("systemctl kexec") 108 97 109 98 110 - # Test hardened memory allocator 111 - def runMallocTestProg(prog_name, error_text): 112 - text = "fatal allocator error: " + error_text 113 - if not text in machine.fail( 114 - "${hardened-malloc-tests}/bin/" 115 - + prog_name 116 - + " 2>&1" 117 - ): 118 - raise Exception("Hardened malloc does not work for {}".format(error_text)) 119 - 120 - 121 99 with subtest("The hardened memory allocator works"): 122 - runMallocTestProg("double_free_large", "invalid free") 123 - runMallocTestProg("unaligned_free_small", "invalid unaligned free") 124 - runMallocTestProg("write_after_free_small", "detected write after free") 100 + machine.succeed("${hardened-malloc-tests}/bin/run-tests") 125 101 ''; 126 102 })
+5 -1
nixos/tests/kernel-generic.nix
··· 33 33 linux_4_19 = makeKernelTest "4.19" packages.linux_4_19; 34 34 linux_5_4 = makeKernelTest "5.4" packages.linux_5_4; 35 35 linux_5_10 = makeKernelTest "5.10" packages.linux_5_10; 36 - linux_5_12 = makeKernelTest "5.12" packages.linux_5_12; 37 36 linux_5_13 = makeKernelTest "5.13" packages.linux_5_13; 37 + 38 + linux_hardened_4_14 = makeKernelTest "4.14" packages.linux_4_14_hardened; 39 + linux_hardened_4_19 = makeKernelTest "4.19" packages.linux_4_19_hardened; 40 + linux_hardened_5_4 = makeKernelTest "5.4" packages.linux_5_4_hardened; 41 + linux_hardened_5_10 = makeKernelTest "5.10" packages.linux_5_10_hardened; 38 42 39 43 linux_testing = makeKernelTest "testing" linuxPackages_testing; 40 44 }
+53
nixos/tests/mod_perl.nix
··· 1 + import ./make-test-python.nix ({ pkgs, lib, ... }: { 2 + name = "mod_perl"; 3 + 4 + meta = with pkgs.lib.maintainers; { 5 + maintainers = [ sgo ]; 6 + }; 7 + 8 + machine = { config, lib, pkgs, ... }: { 9 + services.httpd = { 10 + enable = true; 11 + adminAddr = "admin@localhost"; 12 + virtualHosts."modperl" = 13 + let 14 + inc = pkgs.writeTextDir "ModPerlTest.pm" '' 15 + package ModPerlTest; 16 + use strict; 17 + use Apache2::RequestRec (); 18 + use Apache2::RequestIO (); 19 + use Apache2::Const -compile => qw(OK); 20 + sub handler { 21 + my $r = shift; 22 + $r->content_type('text/plain'); 23 + print "Hello mod_perl!\n"; 24 + return Apache2::Const::OK; 25 + } 26 + 1; 27 + ''; 28 + startup = pkgs.writeScript "startup.pl" '' 29 + use lib "${inc}", 30 + split ":","${with pkgs.perl.pkgs; makeFullPerlPath ([ mod_perl2 ])}"; 31 + 1; 32 + ''; 33 + in 34 + { 35 + extraConfig = '' 36 + PerlRequire ${startup} 37 + ''; 38 + locations."/modperl" = { 39 + extraConfig = '' 40 + SetHandler perl-script 41 + PerlResponseHandler ModPerlTest 42 + ''; 43 + }; 44 + }; 45 + enablePerl = true; 46 + }; 47 + }; 48 + testScript = { ... }: '' 49 + machine.wait_for_unit("httpd.service") 50 + response = machine.succeed("curl -fvvv -s http://127.0.0.1:80/modperl") 51 + assert "Hello mod_perl!" in response, "/modperl handler did not respond" 52 + ''; 53 + })
+2 -2
pkgs/applications/audio/hqplayer-desktop/default.nix
··· 18 18 19 19 mkDerivation rec { 20 20 pname = "hqplayer-desktop"; 21 - version = "4.12.2-36"; 21 + version = "4.13.1-38"; 22 22 23 23 src = fetchurl { 24 24 url = "https://www.signalyst.eu/bins/hqplayer/fc34/hqplayer4desktop-${version}.fc34.x86_64.rpm"; 25 - sha256 = "sha256-ng0Tkx6CSnzTxuunStaBhUYjxUmzx31ZaOY2gBWnH6Q="; 25 + sha256 = "sha256-DEZWEGk5SfhcNQddehCBVbfeTH8KfVCdaxQ+F3MrRe8="; 26 26 }; 27 27 28 28 unpackPhase = ''
+2 -2
pkgs/applications/audio/mopidy/iris.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "Mopidy-Iris"; 5 - version = "3.54.0"; 5 + version = "3.58.0"; 6 6 7 7 src = python3Packages.fetchPypi { 8 8 inherit pname version; 9 - sha256 = "0qnshn77dv7fl6smwnpnbq67mbc1vic9gf85skiqnqy8v8w5829f"; 9 + sha256 = "1bsmc4p7b6v4mm8fi9zsy0knzdccnz1dc6ckrdr18kw2ji0hiyx2"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [
+2 -2
pkgs/applications/audio/mopidy/spotify.nix
··· 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 pname = "mopidy-spotify"; 5 - version = "4.0.1"; 5 + version = "4.1.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mopidy/mopidy-spotify/archive/v${version}.tar.gz"; 9 - sha256 = "1ac8r8050i5r3ag1hlblbcyskqjqz7wgamndbzsmw52qi6hxk44f"; 9 + sha256 = "0054gqvnx3brpfxr06dcby0z0dirwv9ydi6gj5iz0cxn0fbi6gv2"; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ mopidy pythonPackages.pyspotify ];
+1 -1
pkgs/applications/blockchains/whirlpool-gui/default.nix
··· 19 19 yarnCache = stdenv.mkDerivation { 20 20 name = "${pname}-${version}-${system}-yarn-cache"; 21 21 inherit src; 22 - phases = [ "unpackPhase" "buildPhase" ]; 22 + dontInstall = true; 23 23 nativeBuildInputs = [ yarn ]; 24 24 buildPhase = '' 25 25 export HOME=$NIX_BUILD_ROOT
+4 -4
pkgs/applications/editors/standardnotes/default.nix
··· 2 2 , fetchurl, libsecret, gtk3, gsettings-desktop-schemas }: 3 3 4 4 let 5 - version = "3.5.18"; 5 + version = "3.8.18"; 6 6 pname = "standardnotes"; 7 7 name = "${pname}-${version}"; 8 8 9 9 plat = { 10 - i386-linux = "-i386"; 10 + i386-linux = "i386"; 11 11 x86_64-linux = "x86_64"; 12 12 }.${stdenv.hostPlatform.system}; 13 13 14 14 sha256 = { 15 - i386-linux = "009fnnd7ysxkyykkbmhvr0vn13b21j1j5mzwdvqdkhm9v3c9rbgj"; 16 - x86_64-linux = "1zrnvvr9x0s2gp948iajsmgn38xm6x0g2dgxrfjis39rpplsrdww"; 15 + i386-linux = "1xiypsmvpk8i6kab862pipbdfb0y5d5355hdwjmva7v7g26aa7h7"; 16 + x86_64-linux = "03qlxlgyypnvcr40jh6i4wriyax2jbfhrb798cq0n7qlc1y4pg8r"; 17 17 }.${stdenv.hostPlatform.system}; 18 18 19 19 src = fetchurl {
+4 -4
pkgs/applications/editors/texmaker/default.nix
··· 1 - { lib, mkDerivation, fetchurl, qtbase, qtscript, qmake, zlib, pkg-config, poppler }: 1 + { lib, mkDerivation, fetchurl, qtbase, qtscript, qtwebengine, qmake, zlib, pkg-config, poppler }: 2 2 3 3 mkDerivation rec { 4 4 pname = "texmaker"; 5 - version = "5.0.4"; 5 + version = "5.1.0"; 6 6 7 7 src = fetchurl { 8 8 url = "http://www.xm1math.net/texmaker/${pname}-${version}.tar.bz2"; 9 - sha256 = "1qnh5g8zkjpjmw2l8spcynpfgs3wpcfcla5ms2kkgvkbdlzspqqx"; 9 + sha256 = "0zhqq9s5r2w44p7xhlxkj0c10jyx0hji5bjdpgp7xdlrvckr9yf6"; 10 10 }; 11 11 12 - buildInputs = [ qtbase qtscript poppler zlib ]; 12 + buildInputs = [ qtbase qtscript poppler zlib qtwebengine ]; 13 13 nativeBuildInputs = [ pkg-config poppler qmake ]; 14 14 NIX_CFLAGS_COMPILE="-I${poppler.dev}/include/poppler"; 15 15
+2 -10
pkgs/applications/graphics/drawpile/default.nix
··· 69 69 70 70 in mkDerivation rec { 71 71 pname = "drawpile"; 72 - version = "2.1.17"; 72 + version = "2.1.19"; 73 73 74 74 src = fetchFromGitHub { 75 75 owner = "drawpile"; 76 76 repo = "drawpile"; 77 77 rev = version; 78 - sha256 = "sha256-AFFY+FcY9ExAur13OoWR9285RZtBe6jnRIrwi5raiCM="; 78 + sha256 = "sha256-MNmzcqTHfMms6q3ZilrChE5WoGzGxnAOkB0a75udA1I="; 79 79 }; 80 - 81 - patches = [ 82 - # fix for libmicrohttpd 0.9.71 83 - (fetchpatch { 84 - url = "https://github.com/drawpile/Drawpile/commit/ed1a75deb113da2d1df91a28f557509c4897130e.diff"; 85 - sha256 = "sha256-54wabH5F3Hf+6vv9rpCwCRdhjSaUFtuF/mE1/U+CpOA="; 86 - name = "mhdfix.patch"; }) 87 - ]; 88 80 89 81 nativeBuildInputs = [ extra-cmake-modules ]; 90 82
+11 -2
pkgs/applications/graphics/qview/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, qmake, qtbase }: 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , qmake 5 + , qtbase 6 + , qtimageformats 7 + , qtsvg 8 + }: 2 9 3 10 mkDerivation rec { 4 11 pname = "qview"; ··· 15 22 16 23 buildInputs = [ 17 24 qtbase 25 + qtimageformats 26 + qtsvg 18 27 ]; 19 28 20 29 patchPhase = '' ··· 24 33 meta = with lib; { 25 34 description = "Practical and minimal image viewer"; 26 35 homepage = "https://interversehq.com/qview/"; 27 - license = licenses.gpl3; 36 + license = licenses.gpl3Plus; 28 37 maintainers = with maintainers; [ acowley ]; 29 38 platforms = platforms.all; 30 39 };
+3 -3
pkgs/applications/misc/dasel/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "dasel"; 8 - version = "1.18.0"; 8 + version = "1.19.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "TomWright"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-wp5GrOchNvGfQN9trcaq2hnhIHQ+W7zolvCzhCRDSqw="; 14 + sha256 = "sha256-hV8+j66Z8cs6K1TElM+3ar2C8tSqJJBvBYoU+OWcqcU="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-BdX4DO77mIf/+aBdkNVFUzClsIml1UMcgvikDbbdgcY="; 17 + vendorSha256 = "sha256-fRG70f2SZr8BOmF+MNLEdJmK1308h+HY4N0kkTpvuPc="; 18 18 19 19 ldflags = [ 20 20 "-s" "-w" "-X github.com/tomwright/dasel/internal.Version=${version}"
+2 -2
pkgs/applications/misc/notejot/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "notejot"; 21 - version = "3.0.4"; 21 + version = "3.1.0"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "lainsce"; 25 25 repo = pname; 26 26 rev = version; 27 - hash = "sha256-p8rca3PsnT/3Lp6W30VvqR9aPr6EIuNrH5gsxL0lZ0Q="; 27 + hash = "sha256-jR1zOmVkFGgA5bzMDHQ8HMToi18Y3n2aJDx7pwsZEhM="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/obsidian/default.nix
··· 30 30 31 31 in stdenv.mkDerivation rec { 32 32 pname = "obsidian"; 33 - version = "0.12.3"; 33 + version = "0.12.12"; 34 34 35 35 src = fetchurl { 36 36 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/obsidian-${version}.tar.gz"; 37 - sha256 = "sha256-nwtQp7BkMZwMzfnA5wdcMAhfezM//Lm9cf0pbvnOVZE="; 37 + sha256 = "sha256-zvWJvMmb0TlFYXrT2QUgMG6uleT42+y+F4bSZQ2ftnE="; 38 38 }; 39 39 40 40 nativeBuildInputs = [ makeWrapper graphicsmagick ];
+2 -2
pkgs/applications/misc/sfm/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sfm"; 5 - version = "0.2"; 5 + version = "0.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "afify"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-DwXKrSqcebNI5N9REXyMV16W2kr72IH9+sKSVehc5zw="; 11 + hash = "sha256-NmafUezwKK9bYPAWDNhegyjqkb4GY/i1WEtQ9puIaig="; 12 12 }; 13 13 14 14 configFile = lib.optionalString (conf!=null) (writeText "config.def.h" conf);
+3 -3
pkgs/applications/misc/wtf/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "wtf"; 11 - version = "0.36.0"; 11 + version = "0.38.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "wtfutil"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-JVHcunpS+2/0d7XaUZ95m9QpVHCG1Tq8LJ9KNURSRy8="; 17 + sha256 = "sha256-ZKv207pkjgXtCZ6kXGn94i8QtOBHpSkPKo1Sy2Nw9qQ="; 18 18 }; 19 19 20 - vendorSha256 = "sha256-4uRhbRPfCRYwFlfucXOYhLruj7hkV4G9Sxjh9yQkDEQ="; 20 + vendorSha256 = "sha256-E5sfT7uGnruVUfhhjkZM2mgauXzbmcLWS6s1J85nssE="; 21 21 22 22 doCheck = false; 23 23
+21
pkgs/applications/misc/xmrig/moneroocean.nix
··· 1 + { fetchFromGitHub, lib, xmrig }: 2 + 3 + xmrig.overrideAttrs (oldAttrs: rec { 4 + pname = "xmrig-mo"; 5 + version = "6.14.1-mo1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "MoneroOcean"; 9 + repo = "xmrig"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-1YG0llNv1VR8ocNFxYLZFXMzowNNqpqSyIu7iCr/rfM="; 12 + }; 13 + 14 + meta = with lib; { 15 + description = "A fork of the XMRig CPU miner with support for algorithm switching"; 16 + homepage = "https://github.com/MoneroOcean/xmrig"; 17 + license = licenses.gpl3Plus; 18 + platforms = [ "x86_64-linux" "x86_64-darwin" ]; 19 + maintainers = with maintainers; [ j0hax ]; 20 + }; 21 + })
+14 -1
pkgs/applications/networking/browsers/chromium/common.nix
··· 256 256 257 257 gnFlags = mkGnFlags ({ 258 258 # Main build and toolchain settings: 259 + # Create an official and optimized release build (only official builds 260 + # should be distributed to users, as non-official builds are intended for 261 + # development and may not be configured appropriately for production, 262 + # e.g. unsafe developer builds have developer-friendly features that may 263 + # weaken or disable security measures like sandboxing or ASLR): 259 264 is_official_build = true; 265 + # Build Chromium using the system toolchain (for Linux distributions): 260 266 custom_toolchain = "//build/toolchain/linux/unbundle:default"; 261 267 host_toolchain = "//build/toolchain/linux/unbundle:default"; 268 + # Don't build against a sysroot image downloaded from Cloud Storage: 262 269 use_sysroot = false; 270 + # The default value is hardcoded instead of using pkg-config: 263 271 system_wayland_scanner_path = "${wayland}/bin/wayland-scanner"; 272 + # Because we use a different toolchain / compiler version: 264 273 treat_warnings_as_errors = false; 274 + # We aren't compiling with Chrome's Clang (would enable Chrome-specific 275 + # plugins for enforcing coding guidelines, etc.): 265 276 clang_use_chrome_plugins = false; 277 + # Disable symbols (they would negatively affect the performance of the 278 + # build since the symbols are large and dealing with them is slow): 279 + symbol_level = 0; 266 280 blink_symbol_level = 0; 267 - symbol_level = 0; 268 281 269 282 # Google API key, see: https://www.chromium.org/developers/how-tos/api-keys 270 283 # Note: The API key is for NixOS/nixpkgs use ONLY.
+3 -3
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 1 1 { 2 2 "stable": { 3 - "version": "92.0.4515.131", 4 - "sha256": "0fnfyh61w6dmavvfbf2x1zzrby0xpx4jd4ifjsgyc39rsl789b5n", 5 - "sha256bin64": "04ykc7vgq47m595j0g0gl28n5rkki6aic7ck8xr08r5cia46gk3g", 3 + "version": "92.0.4515.159", 4 + "sha256": "04gxgimg5ygzx6nvfws5y9dppdfjg1fhyl8zbykmksbh1myk6zfr", 5 + "sha256bin64": "0lxnqsvqr1kw6swvkhhz475j0xvaa58ha8r1gq8zxmk48mp41985", 6 6 "deps": { 7 7 "gn": { 8 8 "version": "2021-05-07",
+2 -2
pkgs/applications/networking/browsers/firefox-bin/default.nix
··· 72 72 73 73 policies = { 74 74 DisableAppUpdate = true; 75 - }; 75 + } // config.firefox.policies or {}; 76 76 77 - policiesJson = writeText "no-update-firefox-policy.json" (builtins.toJSON { inherit policies; }); 77 + policiesJson = writeText "firefox-policies.json" (builtins.toJSON { inherit policies; }); 78 78 79 79 defaultSource = lib.findFirst (sourceMatches "en-US") {} sources; 80 80
+3 -3
pkgs/applications/networking/cluster/istioctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "istioctl"; 5 - version = "1.10.3"; 5 + version = "1.11.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "istio"; 9 9 repo = "istio"; 10 10 rev = version; 11 - sha256 = "sha256-MHERRJ9t7EG4sd4gevUnZLA25UnRqZprCXFWkp5roms="; 11 + sha256 = "sha256-pQ8Xhhjpcp9RAUUqEDNWRf9JI7xkDVh2PG2KB0lmScs="; 12 12 }; 13 - vendorSha256 = "sha256-lzRIXZXrNQOwgl774B9r6OW/O8QwykSk3Mv5oGmvDuY="; 13 + vendorSha256 = "sha256-PBMPTrTk5AzzELitSVQijHnx8YDCiZ7R+cpetUfe2KU="; 14 14 15 15 doCheck = false; 16 16
+2 -2
pkgs/applications/networking/feedreaders/rss2email/default.nix
··· 4 4 5 5 buildPythonApplication rec { 6 6 pname = "rss2email"; 7 - version = "3.13"; 7 + version = "3.13.1"; 8 8 9 9 propagatedBuildInputs = [ feedparser html2text ]; 10 10 checkInputs = [ beautifulsoup4 ]; 11 11 12 12 src = fetchurl { 13 13 url = "mirror://pypi/r/rss2email/${pname}-${version}.tar.gz"; 14 - sha256 = "09vp2y0ibv20y9yysniv6njzigif4h74pkj31l2a8xw5g19gclna"; 14 + sha256 = "3994444766874bb35c9f886da76f3b24be1cb7bbaf40fad12b16f2af80ac1296"; 15 15 }; 16 16 17 17 outputs = [ "out" "man" "doc" ];
-92
pkgs/applications/networking/instant-messengers/signal-desktop/db-reencryption-wrapper.py
··· 1 - #!@PYTHON@ 2 - 3 - import json 4 - import os 5 - import re 6 - import shlex 7 - import sqlite3 8 - import subprocess 9 - import sys 10 - 11 - 12 - DB_PATH = os.path.join(os.environ['HOME'], '.config/Signal/sql/db.sqlite') 13 - DB_COPY = os.path.join(os.environ['HOME'], '.config/Signal/sql/db.tmp') 14 - CONFIG_PATH = os.path.join(os.environ['HOME'], '.config/Signal/config.json') 15 - 16 - 17 - def zenity_askyesno(title, text): 18 - args = [ 19 - '@ZENITY@', 20 - '--question', 21 - '--title', 22 - shlex.quote(title), 23 - '--text', 24 - shlex.quote(text) 25 - ] 26 - return subprocess.run(args).returncode == 0 27 - 28 - 29 - def start_signal(): 30 - os.execvp('@SIGNAL-DESKTOP@', ['@SIGNAL-DESKTOP@'] + sys.argv[1:]) 31 - 32 - 33 - def copy_pragma(name): 34 - result = subprocess.run([ 35 - '@SQLCIPHER@', 36 - DB_PATH, 37 - f"PRAGMA {name};" 38 - ], check=True, capture_output=True).stdout 39 - result = re.search(r'[0-9]+', result.decode()).group(0) 40 - subprocess.run([ 41 - '@SQLCIPHER@', 42 - DB_COPY, 43 - f"PRAGMA key = \"x'{key}'\"; PRAGMA {name} = {result};" 44 - ], check=True, capture_output=True) 45 - 46 - 47 - try: 48 - # Test if DB is encrypted: 49 - con = sqlite3.connect(f'file:{DB_PATH}?mode=ro', uri=True) 50 - cursor = con.cursor() 51 - cursor.execute("SELECT name FROM sqlite_master WHERE type='table';") 52 - con.close() 53 - except: 54 - # DB is encrypted, everything ok: 55 - start_signal() 56 - 57 - 58 - # DB is unencrypted! 59 - answer = zenity_askyesno( 60 - "Error: Signal-Desktop database is not encrypted", 61 - "Should we try to fix this automatically?" 62 - + "You likely want to backup ~/.config/Signal/ first." 63 - ) 64 - if not answer: 65 - answer = zenity_askyesno( 66 - "Launch Signal-Desktop", 67 - "DB is unencrypted, should we still launch Signal-Desktop?" 68 - + "Warning: This could result in data loss!" 69 - ) 70 - if not answer: 71 - print('Aborted') 72 - sys.exit(0) 73 - start_signal() 74 - 75 - # Re-encrypt the DB: 76 - with open(CONFIG_PATH) as json_file: 77 - key = json.load(json_file)['key'] 78 - result = subprocess.run([ 79 - '@SQLCIPHER@', 80 - DB_PATH, 81 - f" ATTACH DATABASE '{DB_COPY}' AS signal_db KEY \"x'{key}'\";" 82 - + " SELECT sqlcipher_export('signal_db');" 83 - + " DETACH DATABASE signal_db;" 84 - ]).returncode 85 - if result != 0: 86 - print('DB encryption failed') 87 - sys.exit(1) 88 - # Need to copy user_version and schema_version manually: 89 - copy_pragma('user_version') 90 - copy_pragma('schema_version') 91 - os.rename(DB_COPY, DB_PATH) 92 - start_signal()
+1 -14
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
··· 10 10 , hunspellDicts, spellcheckerLanguage ? null # E.g. "de_DE" 11 11 # For a full list of available languages: 12 12 # $ cat pkgs/development/libraries/hunspell/dictionaries.nix | grep "dictFileName =" | awk '{ print $3 }' 13 - , python3 14 - , gnome 15 - , sqlcipher 16 13 }: 17 14 18 15 let ··· 115 112 116 113 # Symlink to bin 117 114 mkdir -p $out/bin 118 - ln -s $out/lib/Signal/signal-desktop $out/bin/signal-desktop-unwrapped 115 + ln -s $out/lib/Signal/signal-desktop $out/bin/signal-desktop 119 116 120 117 runHook postInstall 121 118 ''; ··· 138 135 139 136 autoPatchelf --no-recurse -- $out/lib/Signal/ 140 137 patchelf --add-needed ${libpulseaudio}/lib/libpulse.so $out/lib/Signal/resources/app.asar.unpacked/node_modules/ringrtc/build/linux/libringrtc-x64.node 141 - ''; 142 - 143 - postFixup = '' 144 - # This hack is temporarily required to avoid data-loss for users: 145 - cp ${./db-reencryption-wrapper.py} $out/bin/signal-desktop 146 - substituteInPlace $out/bin/signal-desktop \ 147 - --replace '@PYTHON@' '${python3}/bin/python3' \ 148 - --replace '@ZENITY@' '${gnome.zenity}/bin/zenity' \ 149 - --replace '@SQLCIPHER@' '${sqlcipher}/bin/sqlcipher' \ 150 - --replace '@SIGNAL-DESKTOP@' "$out/bin/signal-desktop-unwrapped" 151 138 ''; 152 139 153 140 # Tests if the application launches and waits for "Link your phone to Signal Desktop":
+3 -10
pkgs/applications/networking/irc/catgirl/default.nix
··· 1 - { ctags, fetchurl, fetchpatch, lib, libressl, ncurses, pkg-config, stdenv }: 1 + { ctags, fetchurl, lib, libressl, ncurses, pkg-config, stdenv }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "catgirl"; 5 - version = "1.9"; 5 + version = "1.9a"; 6 6 7 7 src = fetchurl { 8 8 url = "https://git.causal.agency/catgirl/snapshot/${pname}-${version}.tar.gz"; 9 - sha256 = "182l7yryqm1ffxqgz3i4lcnzwzpbpm2qvadddmj0xc8dh8513s0w"; 9 + sha256 = "sha256-MEm5mrrWfNp+mBHFjGSOGvvfvBJ+Ho/K+mPUxzJDkV0="; 10 10 }; 11 - 12 - patches = [ 13 - (fetchpatch { 14 - url = "https://git.causal.agency/catgirl/patch/?id=3f3585d0f32e66ad5c8c6c713f315e14810230eb"; 15 - sha256 = "1vrgimvf007bxz8blxm3vjc7g3xwxplwxyrblnsryq54cqaw0xv3"; 16 - }) 17 - ]; 18 11 19 12 nativeBuildInputs = [ ctags pkg-config ]; 20 13 buildInputs = [ libressl ncurses ];
+267 -277
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "78.13.0"; 2 + version = "91.0"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/af/thunderbird-78.13.0.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/af/thunderbird-91.0.tar.bz2"; 5 5 locale = "af"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "f08190514cb9e7a429e12db93b5423e83f8c4f8b34079e266b797099d6e5b3cb"; 7 + sha256 = "6fb57813f9f0568f3f97aa512c9b94df540e4e2aebdadb11994237bdf167a929"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ar/thunderbird-78.13.0.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ar/thunderbird-91.0.tar.bz2"; 10 10 locale = "ar"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "cafc6a55a1bd4b1ed0c412cdcce917d803f1d81689a496e09ffd702bf1495c8e"; 12 + sha256 = "398ac9528f19d2457689eb0d4579cfaeb21fe7d0be4a40a66a4216fd6d1e5f16"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ast/thunderbird-78.13.0.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ast/thunderbird-91.0.tar.bz2"; 15 15 locale = "ast"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "b444e1b6cc64b28069382e97f8b966f6d154fbc4216cc67b20ce0105ebd0be89"; 17 + sha256 = "2ac99b80f8ba4f36406fc9df3eaf6f9290f89a23e99736820b5e9fdc14b549ab"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/be/thunderbird-78.13.0.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/be/thunderbird-91.0.tar.bz2"; 20 20 locale = "be"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "18ef49bc393dfc223638edb54525a336f604c606c36f40e3c0f6e4a883cbb1d9"; 22 + sha256 = "0088a693289b0cdfb441837843dc0342d772c8e0f5d57dd68b620b18e7cc7be5"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/bg/thunderbird-78.13.0.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/bg/thunderbird-91.0.tar.bz2"; 25 25 locale = "bg"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "2fe1b34fbb43e22f8fb7238baca4aa2d5d5df3dbf4baf0aa276fc8bd0dd5bc02"; 27 + sha256 = "ee23796c539b5c118d39a6dcfd3ebb3b3e9c2f0720a45eb920e782e7a43ded14"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/br/thunderbird-78.13.0.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/br/thunderbird-91.0.tar.bz2"; 30 30 locale = "br"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "e1a46004fefb79e3febf8bcd2b8aa6aa7140b97170740c4b5cc4b6351cb1fd6f"; 32 + sha256 = "5bf147164fbf9dbe3dbe5eba6c4ba81438870da10a6c0e71606ed95a333fcfba"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ca/thunderbird-78.13.0.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ca/thunderbird-91.0.tar.bz2"; 35 35 locale = "ca"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "d7e9112b78155af6e684f9f306e35fb7aa8862f2008aa842729aedf10e5b62ef"; 37 + sha256 = "a1cab93e6e8c3c22ba65364dfabc39a0fa7fb0c6c35b002036068c894d68a093"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/cak/thunderbird-78.13.0.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/cak/thunderbird-91.0.tar.bz2"; 40 40 locale = "cak"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "325acc4638890583fcd2483846cce33a4ed9a2fb376265c926bb8904e37cb6cf"; 42 + sha256 = "9b51ed781b637f417a230901b05018a5a69bbdfee98d1100140bf8e7e1aa8992"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/cs/thunderbird-78.13.0.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/cs/thunderbird-91.0.tar.bz2"; 45 45 locale = "cs"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "a9926717859e51e5f66c41c0a11a70e8d4e635b8dae3486f454ad24464ad1e80"; 47 + sha256 = "3384ec93657fb7e93bebb010d24edac3dcda240d87dc3c9be3918a8d559e9e3a"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/cy/thunderbird-78.13.0.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/cy/thunderbird-91.0.tar.bz2"; 50 50 locale = "cy"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "e8d6edb4ba1b6749517ef5d4ae3300aed654c3aa9d6a6e6d7f4a0ff6c829d139"; 52 + sha256 = "e2e8a9adafc1038872264bedb76a702217502738304a790f887b5cd326c0e58c"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/da/thunderbird-78.13.0.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/da/thunderbird-91.0.tar.bz2"; 55 55 locale = "da"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "ab5288a8d809f9979eb3a330ec0cd8bb4c5deab564b755f064470fe13df3d0be"; 57 + sha256 = "40a63673b7f3d2cd68758476448b181e1ef1b0ede3dc1031938bf91cb261ba17"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/de/thunderbird-78.13.0.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/de/thunderbird-91.0.tar.bz2"; 60 60 locale = "de"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "9a477fe13a4a99fc48fae4713b82771ecca367869047ef268d8811dac1aac220"; 62 + sha256 = "4244dbfae753f96287e576680ef8dc9767bcfa1c1ceec68e58580e03d0ef7587"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/dsb/thunderbird-78.13.0.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/dsb/thunderbird-91.0.tar.bz2"; 65 65 locale = "dsb"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "deb4947364fd806e06b5c69ea4b51b411b9cd10bec92a23d6d7432d8ba0bbdf0"; 67 + sha256 = "3ba7f369886303bff8ab524218ab588dd6521a3c2d2fb98c857dba69992c7352"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/el/thunderbird-78.13.0.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/el/thunderbird-91.0.tar.bz2"; 70 70 locale = "el"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "18cc09ee14827e4a3f155215a11551791e5708106ae0d993145ccce4890d8cf0"; 72 + sha256 = "d8af9b00e7b27be272b22381dcf5dee91acbabee3113a909cd0f12143ced9ce0"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/en-CA/thunderbird-78.13.0.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/en-CA/thunderbird-91.0.tar.bz2"; 75 75 locale = "en-CA"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "6afd716eeae087a27a8c75029735e501fd7e32f95a8842bc5ba0e3a64cb31630"; 77 + sha256 = "de8a4a8be9dbf3aedfad1ea8fda7aa14758923d232148f96f1ee356781e87b4f"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/en-GB/thunderbird-78.13.0.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/en-GB/thunderbird-91.0.tar.bz2"; 80 80 locale = "en-GB"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "91e0ad90be9e4e89f5245e660e09c3ad06d1ff807a30b3eb696261a883ea77ea"; 82 + sha256 = "b76b69cd6d10ff0140da9c53b35842f04b798235427f5a058d9911e111e1c73c"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/en-US/thunderbird-78.13.0.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/en-US/thunderbird-91.0.tar.bz2"; 85 85 locale = "en-US"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "97515bda6e141aef0d74696db3459711985f7fb526ca0e2d7544725d72f5fb3b"; 87 + sha256 = "74776e073932dc77d24bf8967b6ff09052c3be7f8b78d82fd4684ed395f633e4"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/es-AR/thunderbird-78.13.0.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/es-AR/thunderbird-91.0.tar.bz2"; 90 90 locale = "es-AR"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "ef6067e00544e37786694d85957c0fbdf12bb20add6f6f5dadc03b095d24513d"; 92 + sha256 = "449d7b060da5f95b8605a49f1ee12e6633b3bd1b3b96a50837fc641e558331b0"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/es-ES/thunderbird-78.13.0.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/es-ES/thunderbird-91.0.tar.bz2"; 95 95 locale = "es-ES"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "be6df6fa4ed5facfb77a5849e0a4008ec42c2629deb5ea2dc3fa5251891e0306"; 97 + sha256 = "b18e38da156c4242a5108eede2c8cdf236d48561175d842fe54b5dcde2ccfbb6"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/et/thunderbird-78.13.0.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/et/thunderbird-91.0.tar.bz2"; 100 100 locale = "et"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "6c63ddb05366d3a9d0baadceccb3aac8fe3c6788515feeb2649bdc5d717d6d0c"; 102 + sha256 = "96eae79eec62e2661f01424e4a6363c4f541a22cb47bf8d674606553bcf367fd"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/eu/thunderbird-78.13.0.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/eu/thunderbird-91.0.tar.bz2"; 105 105 locale = "eu"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "215861f41e59b6e9c5892e9b10483b890a7a4c351376c455001215af4c3bf276"; 107 + sha256 = "68db1e219d0cda1f67ac7f6b4f1de727e1dc2c11bfc705a16f83710b0d265c0b"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/fa/thunderbird-78.13.0.tar.bz2"; 110 - locale = "fa"; 111 - arch = "linux-x86_64"; 112 - sha256 = "6486a7b0923d5b689e15eb2082317127e62f050d68f887dbe410619f5c36a470"; 113 - } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/fi/thunderbird-78.13.0.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/fi/thunderbird-91.0.tar.bz2"; 115 110 locale = "fi"; 116 111 arch = "linux-x86_64"; 117 - sha256 = "5e6a55e1520174f9cd27a82e3634999df0703f8bbdee82fdec433f862c41daaf"; 112 + sha256 = "90edac8bbac821f7d286ee24042c6b2e993606ea7457b9b132b0e591744d8448"; 118 113 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/fr/thunderbird-78.13.0.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/fr/thunderbird-91.0.tar.bz2"; 120 115 locale = "fr"; 121 116 arch = "linux-x86_64"; 122 - sha256 = "7c9573fbf4a0d16e89a9f8d8fae71874cf49577b3749ba942ecb71b1b6a3a8d5"; 117 + sha256 = "abf6c364d18fdd015654f6179be07ff701a3dfac2fcd028a5eeb6b0171da584c"; 123 118 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/fy-NL/thunderbird-78.13.0.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/fy-NL/thunderbird-91.0.tar.bz2"; 125 120 locale = "fy-NL"; 126 121 arch = "linux-x86_64"; 127 - sha256 = "6ff1fe09e82b723ebc7022744bba0cd064da2fcc7b8b92fc23475bbbea57c0fb"; 122 + sha256 = "dc3226237442171bf23f0781ed9be5fe77fe89514dff0155a34ae224a9109132"; 128 123 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ga-IE/thunderbird-78.13.0.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ga-IE/thunderbird-91.0.tar.bz2"; 130 125 locale = "ga-IE"; 131 126 arch = "linux-x86_64"; 132 - sha256 = "be25c020f47cf42c05dfd33338b210ad603ede6af97f8b41528d8a18be209fe3"; 127 + sha256 = "1808e5d949005b3adc4ed40f5ed0ad5350a7c6e8e5692347b07bb7db3eb2e85a"; 133 128 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/gd/thunderbird-78.13.0.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/gd/thunderbird-91.0.tar.bz2"; 135 130 locale = "gd"; 136 131 arch = "linux-x86_64"; 137 - sha256 = "65cd07e5151809ae64a905163c939bfdef60226b4fe24b9657f6de3a2c10eaa6"; 132 + sha256 = "93592836614498d617d60aa0799957371c63747029343836da5f1afaa415cd96"; 138 133 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/gl/thunderbird-78.13.0.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/gl/thunderbird-91.0.tar.bz2"; 140 135 locale = "gl"; 141 136 arch = "linux-x86_64"; 142 - sha256 = "882ed57366537562882a5e7822789a7b16d6161b8a68e7292d86741d9c3f4b95"; 137 + sha256 = "917a816447dbc5381b14ca18331a8979aaf65c8b593376ae1dfc5a53953f6150"; 143 138 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/he/thunderbird-78.13.0.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/he/thunderbird-91.0.tar.bz2"; 145 140 locale = "he"; 146 141 arch = "linux-x86_64"; 147 - sha256 = "115e4cb00d50dd7c5c42e94a432b04e4ac6129e1409c5b5c578594917a1b60d0"; 142 + sha256 = "85a78253b374a4134021ff5d8bf3b8146fd864ce5cd40d60668e9130f8ff915c"; 148 143 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/hr/thunderbird-78.13.0.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/hr/thunderbird-91.0.tar.bz2"; 150 145 locale = "hr"; 151 146 arch = "linux-x86_64"; 152 - sha256 = "325cfc1ea9f0a8cb8bd3cb7c881e1bd84a8d8813b78618dcdc7b1ca7b4647b30"; 147 + sha256 = "38c912e4ab89f49caaea46da01c3042764a859e541f749f94737ccd85594aaa7"; 153 148 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/hsb/thunderbird-78.13.0.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/hsb/thunderbird-91.0.tar.bz2"; 155 150 locale = "hsb"; 156 151 arch = "linux-x86_64"; 157 - sha256 = "c92d6bd04f71dc7379c3777186d094706ea41ad6a3e1fefa515d0a2316c7735d"; 152 + sha256 = "b3e51840364ac97b080008fd1dc65af8ba8f827bf3867d182b0486448c118877"; 158 153 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/hu/thunderbird-78.13.0.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/hu/thunderbird-91.0.tar.bz2"; 160 155 locale = "hu"; 161 156 arch = "linux-x86_64"; 162 - sha256 = "ee0ab2733affbbd7f23589f1e07399ef73fd3c8901463085a67d6c9a3f6e5302"; 157 + sha256 = "4b8e82e5726de6ce682b7e0192adb013f036dd9cd6745afc4e227074fee69ebe"; 163 158 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/hy-AM/thunderbird-78.13.0.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/hy-AM/thunderbird-91.0.tar.bz2"; 165 160 locale = "hy-AM"; 166 161 arch = "linux-x86_64"; 167 - sha256 = "fa5b38c93c4777046213b00e6162a7afe14cafb1a3fec47383f54a9fd11a440b"; 162 + sha256 = "43d70569709895d1ab015dc7f7f984cef05b100b360285ab51bfaef38ed41b3e"; 168 163 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/id/thunderbird-78.13.0.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/id/thunderbird-91.0.tar.bz2"; 170 165 locale = "id"; 171 166 arch = "linux-x86_64"; 172 - sha256 = "a5602d079dd6ae9edbd5b1461474d858085c3250edb33573afd7f4ea2b232176"; 167 + sha256 = "11b1a3d2f12ffef1bb434b428ae60a5c40cf7f90186d3b0e301c8422731f9959"; 173 168 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/is/thunderbird-78.13.0.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/is/thunderbird-91.0.tar.bz2"; 175 170 locale = "is"; 176 171 arch = "linux-x86_64"; 177 - sha256 = "eed6de442870f9c4933bef7e94019bbc386465ba5f7f2baa26de2b79973fa567"; 172 + sha256 = "8a62b5defb2abfa1a3f37c1a0fbd890fb650aedb565da97b47def80bc7ef4349"; 178 173 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/it/thunderbird-78.13.0.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/it/thunderbird-91.0.tar.bz2"; 180 175 locale = "it"; 181 176 arch = "linux-x86_64"; 182 - sha256 = "960c1552022ea30da269981d986b5715c971438e5d379d74fde59f18d033d862"; 177 + sha256 = "160440d4f5bbd1d305a3de2096847a692b155a8c4da2b5e1273b2ff2a9595a1b"; 183 178 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ja/thunderbird-78.13.0.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ja/thunderbird-91.0.tar.bz2"; 185 180 locale = "ja"; 186 181 arch = "linux-x86_64"; 187 - sha256 = "0a13ffba546db10ff44ff5c5db7d17813febdf557b8aea7d7399b6987806e8da"; 182 + sha256 = "69ed5d8fb0822991511e70487a90f0b564d84b1f5774bbf493d2b128c49f5852"; 188 183 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ka/thunderbird-78.13.0.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ka/thunderbird-91.0.tar.bz2"; 190 185 locale = "ka"; 191 186 arch = "linux-x86_64"; 192 - sha256 = "42b41113b2886cc35afe5ed48026d503519e8c318efad6123f5e074caa8ca425"; 187 + sha256 = "b536d8b558296a04b6ce5cee4accca28b286ded4046f6b47f5725f79551947d6"; 193 188 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/kab/thunderbird-78.13.0.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/kab/thunderbird-91.0.tar.bz2"; 195 190 locale = "kab"; 196 191 arch = "linux-x86_64"; 197 - sha256 = "17f0fdf3f2697256052335808a6ad1ef81d97fc94f848c29df9e717a3e63fba8"; 192 + sha256 = "3ff28c944d78bba5cdca8f859baa9d142e7e26f2cf31a6d3de3e38c9af4ca6af"; 198 193 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/kk/thunderbird-78.13.0.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/kk/thunderbird-91.0.tar.bz2"; 200 195 locale = "kk"; 201 196 arch = "linux-x86_64"; 202 - sha256 = "94956589eeaaf7c9dd3c3c5c004907f33d6ee515d1202dad8f651cfbd1726638"; 197 + sha256 = "ae412956e8acfb68c4a36f912940e8b8faa9d3e1240982aea9fd01ec1d86f273"; 203 198 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ko/thunderbird-78.13.0.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ko/thunderbird-91.0.tar.bz2"; 205 200 locale = "ko"; 206 201 arch = "linux-x86_64"; 207 - sha256 = "0a7efb01da1befb18111c117d2ed4c69e52de0b3f3aa24e6e3e2d0356bf645d8"; 202 + sha256 = "a51368f6ac4efe83873d2e8208aa17b0fc8887c8d6f605ac910ad72a7f4c411c"; 208 203 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/lt/thunderbird-78.13.0.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/lt/thunderbird-91.0.tar.bz2"; 210 205 locale = "lt"; 211 206 arch = "linux-x86_64"; 212 - sha256 = "810dae8617107773cc0d0de4ed7cc4fad42282edcea81fb2b6419777d7386bae"; 207 + sha256 = "a22d65720566d38eaa75944001d5f077ee3df3787e8b4b5220609f819474c6e4"; 213 208 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ms/thunderbird-78.13.0.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/lv/thunderbird-91.0.tar.bz2"; 210 + locale = "lv"; 211 + arch = "linux-x86_64"; 212 + sha256 = "ec05e9a802dc01349d5226eeb88dbbc980c867cb037404c46e2535587463465d"; 213 + } 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ms/thunderbird-91.0.tar.bz2"; 215 215 locale = "ms"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "ae4fdae5ca5a07e3f1b9fdd3b9eaff1cd1d8448eefb0b67cde16124514f075a3"; 217 + sha256 = "540d7f9530515abf49909b4dce562d25f679d2e41e5871b3f8d76410ef6527fb"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/nb-NO/thunderbird-78.13.0.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/nb-NO/thunderbird-91.0.tar.bz2"; 220 220 locale = "nb-NO"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "ce73218100a0153fee49edaedc78910cfda0784ebf59ec90847b7718eb108b73"; 222 + sha256 = "e4a6790bca7720bbf44bdd7e9dfbdc7b229a536f3054ff497917b60484095bfb"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/nl/thunderbird-78.13.0.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/nl/thunderbird-91.0.tar.bz2"; 225 225 locale = "nl"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "63e23bba6301b86da1df350e87d107c53bc04b5eaf54c36bb57e0140b79a1479"; 227 + sha256 = "0f0a6ceef0a0e8a9bc05f3bf948a635a05073dc4b7750788ac94ef0ca600fe96"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/nn-NO/thunderbird-78.13.0.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/nn-NO/thunderbird-91.0.tar.bz2"; 230 230 locale = "nn-NO"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "287efd5bc94297448895121c8df4fe43beaf39850ce8a82cda31d9a89a4d7b62"; 232 + sha256 = "f13232443a5b5d89c971a07e6867ab8874dbd1fc090e9f5126af1fc3641183ff"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/pa-IN/thunderbird-78.13.0.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/pa-IN/thunderbird-91.0.tar.bz2"; 235 235 locale = "pa-IN"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "7079c15ce806ba3cb20bb50b6c36004ffa745ac083f514b2ac5b5dece95eef89"; 237 + sha256 = "a5ff0f2bbc3f1dc52394e3f6c28538af4caf23e9b7b58b9eea07f1df16a2c7ec"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/pl/thunderbird-78.13.0.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/pl/thunderbird-91.0.tar.bz2"; 240 240 locale = "pl"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "30048a59149c8ca6b9d240140826b61a777752dafa221c47738d291c51e70ccd"; 242 + sha256 = "17326bf010c05bc718bf01f9d080c8b9987ca249809244751a87424d88ac744c"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/pt-BR/thunderbird-78.13.0.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/pt-BR/thunderbird-91.0.tar.bz2"; 245 245 locale = "pt-BR"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "38cf30326280109a1f08de860ac1045c78b27a1dc851a7972e03e8c8d07bf6b9"; 247 + sha256 = "dc82c57f2577ba459aa90f8394f03944c9322b40ac84d0fa9023334932888b8b"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/pt-PT/thunderbird-78.13.0.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/pt-PT/thunderbird-91.0.tar.bz2"; 250 250 locale = "pt-PT"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "ef892e822f76b00b06f088335f736552cd7c864212eadfdf4afcd4e6a7eba2dd"; 252 + sha256 = "706e80a83dcd92c32b85da31f5c5e304342ef4f3723bfc45e8a8c0f5b415950d"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/rm/thunderbird-78.13.0.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/rm/thunderbird-91.0.tar.bz2"; 255 255 locale = "rm"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "c19dc84c5437b1126ab568a5be2c5256403511cb2624c4d5ff253f5579cdd2ab"; 257 + sha256 = "0f616312c7e92e49062df968561096b41f20b0c62283f7647bfc35ec562ed845"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ro/thunderbird-78.13.0.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ro/thunderbird-91.0.tar.bz2"; 260 260 locale = "ro"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "263d6cfc4efd27849017ae3f13849f6e5be0bd7dd6a9964b6716a948705beb20"; 262 + sha256 = "b61faa886fd34207c4453adbab6e3a83cb45b6ff204ad52d55e9bed591922b13"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/ru/thunderbird-78.13.0.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/ru/thunderbird-91.0.tar.bz2"; 265 265 locale = "ru"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "425b1544350335e5a15dc8dfe2525c6c3143e34377bb9bbfb25f9b1a688b202a"; 268 - } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/si/thunderbird-78.13.0.tar.bz2"; 270 - locale = "si"; 271 - arch = "linux-x86_64"; 272 - sha256 = "bc506ac571d49e70e330ccbfd62c566985754c7b98f8b484209128ab173a6b08"; 267 + sha256 = "8042b28e80dccbb2d130f8eaf6c6c6d27f32072a09e6e037fc2df4ec2b4c8364"; 273 268 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/sk/thunderbird-78.13.0.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/sk/thunderbird-91.0.tar.bz2"; 275 270 locale = "sk"; 276 271 arch = "linux-x86_64"; 277 - sha256 = "46b479e0085402f43446bd003ff4b9c014e888b4eec0cbcdcdf9336893ffc967"; 272 + sha256 = "7810727d8b959ac680163a1a4c8bea093e50a8ec0a4a7b805cbc3629bf60b06a"; 278 273 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/sl/thunderbird-78.13.0.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/sl/thunderbird-91.0.tar.bz2"; 280 275 locale = "sl"; 281 276 arch = "linux-x86_64"; 282 - sha256 = "a8a70d172e8d5890394f9974208de1cf422290b6fd8e5629a31b2f7706eaaa35"; 277 + sha256 = "fc9173ee213df06ac278ce2ead827f6ee4dfa897b232281db6d804cd49997962"; 283 278 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/sq/thunderbird-78.13.0.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/sq/thunderbird-91.0.tar.bz2"; 285 280 locale = "sq"; 286 281 arch = "linux-x86_64"; 287 - sha256 = "f26287b10e906805984b0beb4ea6890bfb62a82ae8138bd26b7a5febc628be7c"; 282 + sha256 = "4447920125210987660b5fcd19c86127242a10dc2449a61d1c68fac7de1a5c5b"; 288 283 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/sr/thunderbird-78.13.0.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/sr/thunderbird-91.0.tar.bz2"; 290 285 locale = "sr"; 291 286 arch = "linux-x86_64"; 292 - sha256 = "20fc984078efae2ddcbbe7dbd81238a79342a7fe7d1f8736594c1fb290104ed0"; 287 + sha256 = "f88a957406464a5f8827acbfdcd716cd52807da522825e6c815e6f44c8f79691"; 293 288 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/sv-SE/thunderbird-78.13.0.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/sv-SE/thunderbird-91.0.tar.bz2"; 295 290 locale = "sv-SE"; 296 291 arch = "linux-x86_64"; 297 - sha256 = "ea67fdba6f8f3825ed1637fd7f73b9f8159c519de3920165ae58052b351c0936"; 292 + sha256 = "71f11757b02eb9b4ab463ddb61ca283e77a7015c38b2cb1a2f3ecd21506369ca"; 298 293 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/th/thunderbird-78.13.0.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/th/thunderbird-91.0.tar.bz2"; 300 295 locale = "th"; 301 296 arch = "linux-x86_64"; 302 - sha256 = "86f069a0a4ef2e5338754e3a5de369a25b0d8fe96b3b7047dbfd009171e8fcf9"; 297 + sha256 = "497b2c6e3af11c9a53f75db9a6765ac810a82a57e771c42126adbe424104444c"; 303 298 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/tr/thunderbird-78.13.0.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/tr/thunderbird-91.0.tar.bz2"; 305 300 locale = "tr"; 306 301 arch = "linux-x86_64"; 307 - sha256 = "9e975e5d8493a7f2b4dab36b5719b5a80c239820cd7d1adddb83440e9560d810"; 302 + sha256 = "75de22f190e83058c2e85b88ae5d8775328a4257c60d17ef7be20240ffd4c2c2"; 308 303 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/uk/thunderbird-78.13.0.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/uk/thunderbird-91.0.tar.bz2"; 310 305 locale = "uk"; 311 306 arch = "linux-x86_64"; 312 - sha256 = "a0d14c98ee3534d7eb7f0098d0fd7b8f64b4c70d5bc0bd78ea695b42babefa17"; 307 + sha256 = "b257f216e2472628c420ed8c09ad98567256ce5d5c89748dbf7562cc2dbbc88a"; 313 308 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/uz/thunderbird-78.13.0.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/uz/thunderbird-91.0.tar.bz2"; 315 310 locale = "uz"; 316 311 arch = "linux-x86_64"; 317 - sha256 = "e7d1e5b0b6a72d8b0e3611f1d4f245c46222148c1f69805a15057a85cccda9dd"; 312 + sha256 = "6af949a5f1632e98013fe4d9254a62f4d3233cc250eded67f45db89faa82a86f"; 318 313 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/vi/thunderbird-78.13.0.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/vi/thunderbird-91.0.tar.bz2"; 320 315 locale = "vi"; 321 316 arch = "linux-x86_64"; 322 - sha256 = "67a733ec644060ca58673dccf1e4e534bb1e17f7f40e0c248e6f666450ad8b07"; 317 + sha256 = "28d8125827c79822bf24e7e14b71497b1522bac11fb55e9210b7e86066e48f99"; 323 318 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/zh-CN/thunderbird-78.13.0.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/zh-CN/thunderbird-91.0.tar.bz2"; 325 320 locale = "zh-CN"; 326 321 arch = "linux-x86_64"; 327 - sha256 = "324c6f5c203b9ecc050bce51cf657785c7129251130efbe9f216540bbd32438c"; 322 + sha256 = "34d6dcd8e83c5f0ee773b32a3bfdf53bfbef36f3a5a76861e68b5cdd63515dec"; 328 323 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-x86_64/zh-TW/thunderbird-78.13.0.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-x86_64/zh-TW/thunderbird-91.0.tar.bz2"; 330 325 locale = "zh-TW"; 331 326 arch = "linux-x86_64"; 332 - sha256 = "e2df519a3fdfe586edac6ffb9496637df8d6ab3ba93c51c7ee979cd4b901a1e5"; 327 + sha256 = "d67c370be24af901e29833ab4334185186366545d51c4c3c111a4044f199b927"; 333 328 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/af/thunderbird-78.13.0.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/af/thunderbird-91.0.tar.bz2"; 335 330 locale = "af"; 336 331 arch = "linux-i686"; 337 - sha256 = "1228035980663d4712877ccbef838522ce8e7c80d04598bc37f42972f6b01b12"; 332 + sha256 = "0251ce2b251bb2637338618dcd2c083b1b99c4337c04b7cd6757dd28005df405"; 338 333 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ar/thunderbird-78.13.0.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ar/thunderbird-91.0.tar.bz2"; 340 335 locale = "ar"; 341 336 arch = "linux-i686"; 342 - sha256 = "1b4950bc1227ae4e38da2db53a381609eb836afb4ee14dd23e7f1d93db58718d"; 337 + sha256 = "d833ebf9924458b8aac37e1de52b3a043bda6b179365fc896be8306afbdccfcb"; 343 338 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ast/thunderbird-78.13.0.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ast/thunderbird-91.0.tar.bz2"; 345 340 locale = "ast"; 346 341 arch = "linux-i686"; 347 - sha256 = "ad399d8ec5e48ee79470018df8db138791e4207156f3f7c818d24a9688b83ae4"; 342 + sha256 = "22b051502a38aad41132e05526b4d0e881c9d66e36effaf5c0bb0730a66e4641"; 348 343 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/be/thunderbird-78.13.0.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/be/thunderbird-91.0.tar.bz2"; 350 345 locale = "be"; 351 346 arch = "linux-i686"; 352 - sha256 = "00c324154a4d2cfcd1399dec6dea9d60812c89ffb7fa7d8ad0caa699a2826f9f"; 347 + sha256 = "ede16ceae207d1c7bfa3bf909879b701c3eac49cb4a7e133a929ee4ee89ae6a4"; 353 348 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/bg/thunderbird-78.13.0.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/bg/thunderbird-91.0.tar.bz2"; 355 350 locale = "bg"; 356 351 arch = "linux-i686"; 357 - sha256 = "f3b88a019536ca8446600d5f5b35ce5d35d5dc483ae63437d2ee0ed9a8696426"; 352 + sha256 = "a1dbe387348c427ddb9948129a2ec1f8aeb34532103def94a086e1b405c532fc"; 358 353 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/br/thunderbird-78.13.0.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/br/thunderbird-91.0.tar.bz2"; 360 355 locale = "br"; 361 356 arch = "linux-i686"; 362 - sha256 = "d76b6774e0ca7e25687fe25936f81e80167dca6b7ef1a2cd1248be71e2bb3abd"; 357 + sha256 = "a89b7d357349353d96d608fddb2e2279c5b8a222eab113c56aed7531ccb77848"; 363 358 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ca/thunderbird-78.13.0.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ca/thunderbird-91.0.tar.bz2"; 365 360 locale = "ca"; 366 361 arch = "linux-i686"; 367 - sha256 = "d1a0da69ebf33a8d96110133fe91fd7799e95f303b55aec750d8a3b5ad395e49"; 362 + sha256 = "34086af5fd1b2bf9b603f1379bf7f1ef25583f5021266f2b636853c7d047ba39"; 368 363 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/cak/thunderbird-78.13.0.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/cak/thunderbird-91.0.tar.bz2"; 370 365 locale = "cak"; 371 366 arch = "linux-i686"; 372 - sha256 = "b61a9548b72fdf5e3211cf238129a17df3d8b3fdf76da3aa06cf83ff9ba43b7e"; 367 + sha256 = "86a8f3938b8dfcd371e043effa0f6a80d2bbdf8046eb5242c8c49f43f27463a9"; 373 368 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/cs/thunderbird-78.13.0.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/cs/thunderbird-91.0.tar.bz2"; 375 370 locale = "cs"; 376 371 arch = "linux-i686"; 377 - sha256 = "605b02fcbc6b1aafa261cbad5aa12d85342f9f9d9458b4a154ee23bbbc91d49b"; 372 + sha256 = "4add72a1fd8cd104b30a51ddf5f73e1e66beb5e416a8552f84cc39c815670586"; 378 373 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/cy/thunderbird-78.13.0.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/cy/thunderbird-91.0.tar.bz2"; 380 375 locale = "cy"; 381 376 arch = "linux-i686"; 382 - sha256 = "af5bf08dd943334629f60fe139392dfc957bae073bc50ec4e10bdace08b2fe1a"; 377 + sha256 = "539d32830b885ae7790bc9367e45caaa4bd8dcde7328f8b75f6652882aab6533"; 383 378 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/da/thunderbird-78.13.0.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/da/thunderbird-91.0.tar.bz2"; 385 380 locale = "da"; 386 381 arch = "linux-i686"; 387 - sha256 = "ac1e4082bc78248ca1dc8760cf71901fc0e0e537b92e7dadb9af5ac9c80c49f8"; 382 + sha256 = "ebffd062f2ede3fa1e4659781e44f1905099882e7fe2a994ea283e865bb9926e"; 388 383 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/de/thunderbird-78.13.0.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/de/thunderbird-91.0.tar.bz2"; 390 385 locale = "de"; 391 386 arch = "linux-i686"; 392 - sha256 = "a26ba23ae9eeaeba09d2a9fbb4fecbe87e6b5662488d7c0dded0fee89cbb5107"; 387 + sha256 = "3f06fb893e22d9b3e27f433c3e8081c9ced29e87492a6b4c4d0660bbfd427579"; 393 388 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/dsb/thunderbird-78.13.0.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/dsb/thunderbird-91.0.tar.bz2"; 395 390 locale = "dsb"; 396 391 arch = "linux-i686"; 397 - sha256 = "775d9f85cc392e2c219e2c19800d4fba8aba1762e1c7b3a2f328dc61925b9638"; 392 + sha256 = "ff985eb9a3d697fa19d1e803a79e0964607b6803a36b7540b68b37b0ae36b3fb"; 398 393 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/el/thunderbird-78.13.0.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/el/thunderbird-91.0.tar.bz2"; 400 395 locale = "el"; 401 396 arch = "linux-i686"; 402 - sha256 = "d11d1c2b09d8f9e55dee43e19d64157cf040865729eb2986dbe8aeca8fabfa6f"; 397 + sha256 = "fb463af56b39f8f22d2806174c3a79d3c57f125d88329e3dad14eb448fe21ef5"; 403 398 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/en-CA/thunderbird-78.13.0.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/en-CA/thunderbird-91.0.tar.bz2"; 405 400 locale = "en-CA"; 406 401 arch = "linux-i686"; 407 - sha256 = "14691fa34a7ced54eec6a7485a5258af4934e0f07cc612588698e88fd624a07a"; 402 + sha256 = "a86e775b7d271766efccbe851c24fcaa2e2abf45bc6099600f68f90db31a9a38"; 408 403 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/en-GB/thunderbird-78.13.0.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/en-GB/thunderbird-91.0.tar.bz2"; 410 405 locale = "en-GB"; 411 406 arch = "linux-i686"; 412 - sha256 = "919b63cd0018df0913d9f230d36e5d8124bef5afe9d224072eaa1d40dc45fa28"; 407 + sha256 = "ee83c2d28e66acb52aa969380b2be197f14118172e2f9a9a5e683e65e2fbb3f8"; 413 408 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/en-US/thunderbird-78.13.0.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/en-US/thunderbird-91.0.tar.bz2"; 415 410 locale = "en-US"; 416 411 arch = "linux-i686"; 417 - sha256 = "1fc8e76d7840ec8fccdabe4765e72555e75e027d47359e7a3f2fb092a30d2673"; 412 + sha256 = "a96d6e6fd81b1bcebaa47901a1262b339e07321a47f82be0d913ada978f995b8"; 418 413 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/es-AR/thunderbird-78.13.0.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/es-AR/thunderbird-91.0.tar.bz2"; 420 415 locale = "es-AR"; 421 416 arch = "linux-i686"; 422 - sha256 = "0c38fe5f220b3ed9f096c026e05ebfb195bf6c545e2041fd5d1f84e95bc2c238"; 417 + sha256 = "f7454e9aa448b7f108d4a6f0b74cb943ea7cc5cafe638d7f45ed201bb5e560f4"; 423 418 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/es-ES/thunderbird-78.13.0.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/es-ES/thunderbird-91.0.tar.bz2"; 425 420 locale = "es-ES"; 426 421 arch = "linux-i686"; 427 - sha256 = "db0dcd82200922451b79a00ad7660ad2e1df6a2abb84ea4ff7ebdc73a751c068"; 422 + sha256 = "d2b2be182440b49b386cd4e4d09e1f4133f3fec08e83fa2ef23ce6de612220be"; 428 423 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/et/thunderbird-78.13.0.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/et/thunderbird-91.0.tar.bz2"; 430 425 locale = "et"; 431 426 arch = "linux-i686"; 432 - sha256 = "a3c802a85f607d85c97e955c45ba4e35842da4bc5bebc6dd43407c6aea546d65"; 427 + sha256 = "4e4580b8dd9c84b7921b420b0d336bb866cd82eb93a06bb73f240cd4324f5ab0"; 433 428 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/eu/thunderbird-78.13.0.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/eu/thunderbird-91.0.tar.bz2"; 435 430 locale = "eu"; 436 431 arch = "linux-i686"; 437 - sha256 = "3bc5f4ceb596334fb9a570be31807898efe3684441fe9a9f96a28d16d4269864"; 438 - } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/fa/thunderbird-78.13.0.tar.bz2"; 440 - locale = "fa"; 441 - arch = "linux-i686"; 442 - sha256 = "eba6a5b4bd14860d97a71c7eabcd893c733ae52ebc5e06c9e12afda86552d35a"; 432 + sha256 = "e2b9a805c5eca39621cbe4927cdd1ecf0582e21fa78d3c27a5df6996fab51cdf"; 443 433 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/fi/thunderbird-78.13.0.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/fi/thunderbird-91.0.tar.bz2"; 445 435 locale = "fi"; 446 436 arch = "linux-i686"; 447 - sha256 = "77d8335a6c5fb8e302cc5a4490f6248e51e555e5d5c428116557b0cb560f2b14"; 437 + sha256 = "1f7a337dda1d3a99e174d5d3b26630238560b30fba9a058575b041e44be15d8d"; 448 438 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/fr/thunderbird-78.13.0.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/fr/thunderbird-91.0.tar.bz2"; 450 440 locale = "fr"; 451 441 arch = "linux-i686"; 452 - sha256 = "2fce215ad23039c43624e897353b8b696eff73281c0739050ca5621b1ad209c2"; 442 + sha256 = "1287c936d0f089998484bba6a32d5ee78eb866f7ae0b7bf8eaa832ce1e3796d3"; 453 443 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/fy-NL/thunderbird-78.13.0.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/fy-NL/thunderbird-91.0.tar.bz2"; 455 445 locale = "fy-NL"; 456 446 arch = "linux-i686"; 457 - sha256 = "1c670d870e6e9cc1366467d0c0acfab98a83842442bcd3b7b2bb1d302c2cf331"; 447 + sha256 = "0f88569ae12ac7b3b796d4bd244c242cad29224e2f11aaee7f07b30756b169d8"; 458 448 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ga-IE/thunderbird-78.13.0.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ga-IE/thunderbird-91.0.tar.bz2"; 460 450 locale = "ga-IE"; 461 451 arch = "linux-i686"; 462 - sha256 = "77207016b5cd5204c9dcf849ec099c5bdf3bee4d79ec8ecde2cf61dc6719fb8c"; 452 + sha256 = "556ee9841a0588de5dad84062d9d908976f46e92e45659b5ebabb7f3b8bf105d"; 463 453 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/gd/thunderbird-78.13.0.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/gd/thunderbird-91.0.tar.bz2"; 465 455 locale = "gd"; 466 456 arch = "linux-i686"; 467 - sha256 = "5ee8c00cd937b9e7c62b13c594db9138b9550ddefa0c38127f7636cdaea7e420"; 457 + sha256 = "24059e8f399cfafc0847645a2007c958e015e8977639bae75b5bf0cc9e97b160"; 468 458 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/gl/thunderbird-78.13.0.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/gl/thunderbird-91.0.tar.bz2"; 470 460 locale = "gl"; 471 461 arch = "linux-i686"; 472 - sha256 = "2fe3765c8dcbb2a281f7de1ae481a9f725c2df785552d840e1f65f922e94d42e"; 462 + sha256 = "600bb0d4c4ad77074511d1bfa80f8f752d18ef06d1a861f604189581dec8011e"; 473 463 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/he/thunderbird-78.13.0.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/he/thunderbird-91.0.tar.bz2"; 475 465 locale = "he"; 476 466 arch = "linux-i686"; 477 - sha256 = "f63094c0bc5cdbdf0640d9281e52bcdbab517f3d72f84e4a01a120c148f39ea0"; 467 + sha256 = "153e8e37ecca9783f1737e699f36b2cd35524e9d8ef8a57e0f0bfa96fd3ffcf0"; 478 468 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/hr/thunderbird-78.13.0.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/hr/thunderbird-91.0.tar.bz2"; 480 470 locale = "hr"; 481 471 arch = "linux-i686"; 482 - sha256 = "0740acd2e924fb424790a806e2fef66ad43cf53e43fbaa87ac984225616b6167"; 472 + sha256 = "aaa099d96c0a05f8b4773483aef740fe125a83b98fe78d73b25cfec35639112a"; 483 473 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/hsb/thunderbird-78.13.0.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/hsb/thunderbird-91.0.tar.bz2"; 485 475 locale = "hsb"; 486 476 arch = "linux-i686"; 487 - sha256 = "bf6d4d7230d55ec1ddb7fb9764fc182dc8468bf57663661ef7e87d0762080900"; 477 + sha256 = "2159cabe4a9873ff6d9ca5a12c8e530a027c252f85c9d18c29248223fc402447"; 488 478 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/hu/thunderbird-78.13.0.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/hu/thunderbird-91.0.tar.bz2"; 490 480 locale = "hu"; 491 481 arch = "linux-i686"; 492 - sha256 = "a4d9f65e964787fba470c0a091edbe7a21e667ab80e1f7dd1fc76290230aa721"; 482 + sha256 = "235a419a02ff897ba82676c2a1a38a274163fc069bb45ef6d49b04b5da575b03"; 493 483 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/hy-AM/thunderbird-78.13.0.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/hy-AM/thunderbird-91.0.tar.bz2"; 495 485 locale = "hy-AM"; 496 486 arch = "linux-i686"; 497 - sha256 = "9718afe2417006bda611b12c42ed2dc74d397cbd6703d86ca758119535226d0f"; 487 + sha256 = "f36574058412d452951b789610d7752a4db280a38314d4f1c54a2d7c48ecc32d"; 498 488 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/id/thunderbird-78.13.0.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/id/thunderbird-91.0.tar.bz2"; 500 490 locale = "id"; 501 491 arch = "linux-i686"; 502 - sha256 = "d3b9d86bddb1ed6db4a4e6456d09295d057da47aed4ad23a95021f3a2aa38ec4"; 492 + sha256 = "9e0c91956ad10fe0ba944134ef68a0d58631d74a75804d12f3cb1a7e596ff36d"; 503 493 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/is/thunderbird-78.13.0.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/is/thunderbird-91.0.tar.bz2"; 505 495 locale = "is"; 506 496 arch = "linux-i686"; 507 - sha256 = "e2dc5cf9120dcaa54516393b9b14659b24a43a86809b3113724cc0480dad7a71"; 497 + sha256 = "5b06606613bc420769b4071ef2781214c8ab918bb7653594753e655aac49282c"; 508 498 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/it/thunderbird-78.13.0.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/it/thunderbird-91.0.tar.bz2"; 510 500 locale = "it"; 511 501 arch = "linux-i686"; 512 - sha256 = "66c24020386335156d2659f70570f798982f2cf36014fbb8b866f1e3870b9dcb"; 502 + sha256 = "b9d3f3e1a03a256a0c4b835d3b93ca220217f8d628ac05513ff161126effa385"; 513 503 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ja/thunderbird-78.13.0.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ja/thunderbird-91.0.tar.bz2"; 515 505 locale = "ja"; 516 506 arch = "linux-i686"; 517 - sha256 = "ece2f1660ef41a31ae4116a32b9b025547a419fcbd8612d1a36d9bc0b9e821af"; 507 + sha256 = "5ba904085b47370f414d74761394f6ddc71aa3c0fac9cdc023661b70bc708d14"; 518 508 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ka/thunderbird-78.13.0.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ka/thunderbird-91.0.tar.bz2"; 520 510 locale = "ka"; 521 511 arch = "linux-i686"; 522 - sha256 = "b549016df313c46518ee50c03b7f075c78feefeaadfd5a5c0ec2508d0607d999"; 512 + sha256 = "9ae8fecd564a1a8e8c6db848e05adc4655baf42e8b4602c28965a3ee76c5d1d2"; 523 513 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/kab/thunderbird-78.13.0.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/kab/thunderbird-91.0.tar.bz2"; 525 515 locale = "kab"; 526 516 arch = "linux-i686"; 527 - sha256 = "c56fe1f7051a47c05834a7378313b24fe8fdbbd816692dcaeefaf3635f09eab9"; 517 + sha256 = "a9cde5c6b4c41d0ccfedacd5eeb9f6ef946282cf07bc98c45704bb5f7b4b6210"; 528 518 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/kk/thunderbird-78.13.0.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/kk/thunderbird-91.0.tar.bz2"; 530 520 locale = "kk"; 531 521 arch = "linux-i686"; 532 - sha256 = "86594f4e1d92d495c76bbe20cadeb3bea74d5f57a4b3155edd01ff4f62c5f1a5"; 522 + sha256 = "4710e947dcb3bba71d187ad828ad09011183ef104758e7d79c8dbc528f9460fb"; 533 523 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ko/thunderbird-78.13.0.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ko/thunderbird-91.0.tar.bz2"; 535 525 locale = "ko"; 536 526 arch = "linux-i686"; 537 - sha256 = "47c8cb4a58643c56f005fa36b0790344546f5efad5446c2b5b49040906eb9339"; 527 + sha256 = "1b4d7ce21c95ecd2510bd073bdf74e0d7f748ef69d32adc2eefdb0fae42fd717"; 538 528 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/lt/thunderbird-78.13.0.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/lt/thunderbird-91.0.tar.bz2"; 540 530 locale = "lt"; 541 531 arch = "linux-i686"; 542 - sha256 = "e3afe316e77d4c33e936574f32c3d477643b51fd0f0f228d52cce676c8ab4f82"; 532 + sha256 = "ed69b146a789715f51ed78132a4f32c12afae67847faea9629371221e99e4a8a"; 543 533 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ms/thunderbird-78.13.0.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/lv/thunderbird-91.0.tar.bz2"; 535 + locale = "lv"; 536 + arch = "linux-i686"; 537 + sha256 = "6562ae94bd90af19778df1157da2ee39b9da4ae164111c60adae1064400bcefc"; 538 + } 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ms/thunderbird-91.0.tar.bz2"; 545 540 locale = "ms"; 546 541 arch = "linux-i686"; 547 - sha256 = "626dd1acb63356a2f531095833b0e697231009f5b0c51f401a17e8551b21a32d"; 542 + sha256 = "812a399146c30e6532eb57597df9a08cce7d769a57df6efd17230db75405be08"; 548 543 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/nb-NO/thunderbird-78.13.0.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/nb-NO/thunderbird-91.0.tar.bz2"; 550 545 locale = "nb-NO"; 551 546 arch = "linux-i686"; 552 - sha256 = "fe236ce5d719b3ac205f47ab4837ea3ad5d6f2817c44e2e562b0a011480a91ce"; 547 + sha256 = "ac5b0231d8bfbc9d318579dd97c3a4e49d723797224cf3f4e1591520ce9c9e07"; 553 548 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/nl/thunderbird-78.13.0.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/nl/thunderbird-91.0.tar.bz2"; 555 550 locale = "nl"; 556 551 arch = "linux-i686"; 557 - sha256 = "33fb2a46384f38e887575297ad495eaaea0ff0910b59cc05ea4512dd9498b9eb"; 552 + sha256 = "fb6f8a3e79ec3c41201ef3595608cbc24c2070baee0a60c2fc489ef391db9fa1"; 558 553 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/nn-NO/thunderbird-78.13.0.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/nn-NO/thunderbird-91.0.tar.bz2"; 560 555 locale = "nn-NO"; 561 556 arch = "linux-i686"; 562 - sha256 = "5e724e31b26ae96a0b535495dd10b77c954a5a043e0353fd17962601ec042e3c"; 557 + sha256 = "e258d8ae0b1ee94386015168d6ebbe31ddd69c513a9badbe6b6a910e0ef3f6df"; 563 558 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/pa-IN/thunderbird-78.13.0.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/pa-IN/thunderbird-91.0.tar.bz2"; 565 560 locale = "pa-IN"; 566 561 arch = "linux-i686"; 567 - sha256 = "ee1db2f6e9000ff4ca6ba4fd4b758109ea0f94d066fad9c20020e75935f5fc05"; 562 + sha256 = "c96de96b276ddff6f6a9592dd1505df946e8c1dd80a0133c039e6969508e1377"; 568 563 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/pl/thunderbird-78.13.0.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/pl/thunderbird-91.0.tar.bz2"; 570 565 locale = "pl"; 571 566 arch = "linux-i686"; 572 - sha256 = "b09d9c4655b4c32b9554b83fdd2b2635586b9d8f669ec39f5722e7ac8175b79e"; 567 + sha256 = "de159419d5e0123379604cae0e482d8cb3ddd8aa2d879113142e87f809ae3aeb"; 573 568 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/pt-BR/thunderbird-78.13.0.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/pt-BR/thunderbird-91.0.tar.bz2"; 575 570 locale = "pt-BR"; 576 571 arch = "linux-i686"; 577 - sha256 = "f774513c0c23794c69112b962999512485beaa2a97517b06e335e4fce5b23d9a"; 572 + sha256 = "7b58d79a7710669427076bba99d3d6b32e08643a77f722bdc6b89378c943b497"; 578 573 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/pt-PT/thunderbird-78.13.0.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/pt-PT/thunderbird-91.0.tar.bz2"; 580 575 locale = "pt-PT"; 581 576 arch = "linux-i686"; 582 - sha256 = "39f0f2fd17ea216acc5383f3c65e4da8928d56e4b8bdf2d1bb76d6dfc8491ec1"; 577 + sha256 = "dbbca7893c6d504b493936d1ca364e52da45a71cab69a59ec0352ca68d47b0a7"; 583 578 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/rm/thunderbird-78.13.0.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/rm/thunderbird-91.0.tar.bz2"; 585 580 locale = "rm"; 586 581 arch = "linux-i686"; 587 - sha256 = "3a966692544873281adf12a850ae904e1304ce08d8bd09ede0ad8b0cf66b5f09"; 582 + sha256 = "98649ae64eb9a8d93f7ecfd699e02e8eae5ac0a2a2e837f0704df7772ed44097"; 588 583 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ro/thunderbird-78.13.0.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ro/thunderbird-91.0.tar.bz2"; 590 585 locale = "ro"; 591 586 arch = "linux-i686"; 592 - sha256 = "4514976e0a5d433b64fc28e42f3baca52e871f7c99434e2993984dda9025b370"; 587 + sha256 = "479d886c83f53bcb96ea12ddd27f7134fdfa482800337f9c7cef8d8762710839"; 593 588 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/ru/thunderbird-78.13.0.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/ru/thunderbird-91.0.tar.bz2"; 595 590 locale = "ru"; 596 591 arch = "linux-i686"; 597 - sha256 = "97915e34bbbf036fbe8093bdf79a426181c57b78bd8d8b7f99b97fd1c3dceb7c"; 598 - } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/si/thunderbird-78.13.0.tar.bz2"; 600 - locale = "si"; 601 - arch = "linux-i686"; 602 - sha256 = "e27e823a4a6141141b92c2c1c55cd77e591d3e2b05d0fa6cc9502b4bc21e67a8"; 592 + sha256 = "c371992e54bf74571596d4b295a10fb00495017c3e40665e6d3d698d9da03bc4"; 603 593 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/sk/thunderbird-78.13.0.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/sk/thunderbird-91.0.tar.bz2"; 605 595 locale = "sk"; 606 596 arch = "linux-i686"; 607 - sha256 = "ff4d89bc1e0ae8d10dc8dcf377c4b3c45ab1db38c0489ca328e0a8f3145772c6"; 597 + sha256 = "95a4e41e6be48bdc4da11864b02d326a85a0dc29faf4acd2297dff03b874e8f7"; 608 598 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/sl/thunderbird-78.13.0.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/sl/thunderbird-91.0.tar.bz2"; 610 600 locale = "sl"; 611 601 arch = "linux-i686"; 612 - sha256 = "27d34b8508afa306d6ce94e73a2251071cf4480c5f55cc087597e56511e85173"; 602 + sha256 = "36e702b13f5c3a75625fb0dfc15403438282acda703c372c69f9c865a26baba3"; 613 603 } 614 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/sq/thunderbird-78.13.0.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/sq/thunderbird-91.0.tar.bz2"; 615 605 locale = "sq"; 616 606 arch = "linux-i686"; 617 - sha256 = "3fb60c21d42ae9a961838081c12eea7e98e43a27ebc24ef7470e912bf13053ca"; 607 + sha256 = "0ff2b572ab9751eab4791f960d0f1d4b6658f296251fefb5987b92317c8521e8"; 618 608 } 619 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/sr/thunderbird-78.13.0.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/sr/thunderbird-91.0.tar.bz2"; 620 610 locale = "sr"; 621 611 arch = "linux-i686"; 622 - sha256 = "dab84cca4db8412b3ce40690e7b31df1d66b06979cb39f4efd8206684a802edc"; 612 + sha256 = "37798d5093c0f6846984e830fe8a371e7facc2e710874b40774f038aeda7a6ea"; 623 613 } 624 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/sv-SE/thunderbird-78.13.0.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/sv-SE/thunderbird-91.0.tar.bz2"; 625 615 locale = "sv-SE"; 626 616 arch = "linux-i686"; 627 - sha256 = "cec350da20515ca0e5b317264e3969e1465e9d055de743c130c4011d5f3cc825"; 617 + sha256 = "71e34f95f97ea4cf2e213d60f170ade0de5f199b37ba103ee08b2de568d9af7f"; 628 618 } 629 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/th/thunderbird-78.13.0.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/th/thunderbird-91.0.tar.bz2"; 630 620 locale = "th"; 631 621 arch = "linux-i686"; 632 - sha256 = "0a8302af0995624d37c71757c851e8ba3ffdcbe89d90023c69c5f69a6ec888b7"; 622 + sha256 = "385b0dc2137c97976d7cb9f49502f13723865071099c97d0cb9b73cac18fe853"; 633 623 } 634 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/tr/thunderbird-78.13.0.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/tr/thunderbird-91.0.tar.bz2"; 635 625 locale = "tr"; 636 626 arch = "linux-i686"; 637 - sha256 = "8c7013e71cd57795f0bddc5061b24e43fcd5b1f23abc7c1653ad345869d73b24"; 627 + sha256 = "6dd8bb7b49ece0b4b21216bbe4be831bc49c6bcf44d973d5bf4c37372aa6285d"; 638 628 } 639 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/uk/thunderbird-78.13.0.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/uk/thunderbird-91.0.tar.bz2"; 640 630 locale = "uk"; 641 631 arch = "linux-i686"; 642 - sha256 = "ed9a30630c0821b515a2984257d6dc19410ca1f6a723e856bfe8758ad32b11f1"; 632 + sha256 = "2bd6803f23fc17b9530055e912e2ff6cdc0284f1c656965a88b50d6adee67e08"; 643 633 } 644 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/uz/thunderbird-78.13.0.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/uz/thunderbird-91.0.tar.bz2"; 645 635 locale = "uz"; 646 636 arch = "linux-i686"; 647 - sha256 = "b834c2f59b3945a362d1ace0dd5b6275a1ba90587c8fcb894678a188301f3848"; 637 + sha256 = "72e0727bb25cfc0d73b81cf782d4e37e6d72f0807284c8f057aa220690047185"; 648 638 } 649 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/vi/thunderbird-78.13.0.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/vi/thunderbird-91.0.tar.bz2"; 650 640 locale = "vi"; 651 641 arch = "linux-i686"; 652 - sha256 = "9f724e2c2e3faf0ad1d1ac6d08f8bc595ad16b408d7e712e3fc2f51b3d6f2a95"; 642 + sha256 = "43a6b740ee93cc0ce99ba2d9fb6ddbae1004c53d209bdb3a4b92c5f685d7bf62"; 653 643 } 654 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/zh-CN/thunderbird-78.13.0.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/zh-CN/thunderbird-91.0.tar.bz2"; 655 645 locale = "zh-CN"; 656 646 arch = "linux-i686"; 657 - sha256 = "7c8f7982d035bebf250542232d782834709becd60c766e6bd85a617bc6a443bd"; 647 + sha256 = "bdfc475d49cd201f8685fab59e273425741335d7c1f83abce7c79cca45116473"; 658 648 } 659 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.13.0/linux-i686/zh-TW/thunderbird-78.13.0.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0/linux-i686/zh-TW/thunderbird-91.0.tar.bz2"; 660 650 locale = "zh-TW"; 661 651 arch = "linux-i686"; 662 - sha256 = "a4c90eb3a5bf2fcd04b40b60e976accda049d10666e487f477c8d154c8928be5"; 652 + sha256 = "2c3a20d639c793853ae57e850f15910ea3a9d35b1900ae8dc4d14689df080c42"; 663 653 } 664 654 ]; 665 655 }
+3 -3
pkgs/applications/science/logic/elan/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "elan"; 10 - version = "1.0.6"; 10 + version = "1.0.7"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "leanprover"; 14 14 repo = "elan"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-Ns8vSS/PDlfopigW4Nz3fdR9PCMG8gDoL36+/s0Qkeo="; 16 + sha256 = "sha256-SFY9RbUHoaOXCaK+uIqhnKbzSkbtWiS6os/JvsggagI="; 17 17 }; 18 18 19 - cargoSha256 = "sha256-NDtldiVo4SyE88f6ntKn1WJDFdvwN5Ps4DxQH15iNZE="; 19 + cargoSha256 = "sha256-6TFionZw76V4htYQrz8eLX7ioW7Fbgd63rtz53s0TLU="; 20 20 21 21 nativeBuildInputs = [ pkg-config makeWrapper ]; 22 22
+11 -7
pkgs/applications/science/logic/tlaplus/tlaps.nix
··· 1 1 { fetchurl 2 - , lib, stdenv 3 - , ocaml, isabelle, cvc3, perl, wget, which 2 + , lib 3 + , stdenv 4 + , ocaml 5 + , isabelle 6 + , cvc3 7 + , perl 8 + , wget 9 + , which 4 10 }: 5 11 6 12 stdenv.mkDerivation rec { ··· 12 18 }; 13 19 14 20 buildInputs = [ ocaml isabelle cvc3 perl wget which ]; 15 - 16 - phases = [ "unpackPhase" "installPhase" ]; 17 21 18 22 installPhase = '' 19 23 mkdir -pv "$out" ··· 45 49 and scalable to large system specifications. It provides a 46 50 consistent abstraction over the various “backend” verifiers. 47 51 ''; 48 - homepage = "https://tla.msr-inria.inria.fr/tlaps/content/Home.html"; 49 - license = lib.licenses.bsd2; 50 - platforms = lib.platforms.unix; 52 + homepage = "https://tla.msr-inria.inria.fr/tlaps/content/Home.html"; 53 + license = lib.licenses.bsd2; 54 + platforms = lib.platforms.unix; 51 55 maintainers = [ ]; 52 56 }; 53 57
+12 -5
pkgs/applications/science/logic/tlaplus/toolbox.nix
··· 1 - { lib, fetchzip, makeWrapper, makeDesktopItem, stdenv 2 - , gtk3, libXtst, glib, zlib, wrapGAppsHook 1 + { lib 2 + , fetchzip 3 + , makeWrapper 4 + , makeDesktopItem 5 + , stdenv 6 + , gtk3 7 + , libXtst 8 + , glib 9 + , zlib 10 + , wrapGAppsHook 3 11 }: 4 12 5 13 let ··· 17 25 }; 18 26 19 27 20 - in stdenv.mkDerivation rec { 28 + in 29 + stdenv.mkDerivation rec { 21 30 pname = "tla-toolbox"; 22 31 version = "1.7.1"; 23 32 src = fetchzip { ··· 30 39 nativeBuildInputs = [ makeWrapper wrapGAppsHook ]; 31 40 32 41 dontWrapGApps = true; 33 - 34 - phases = [ "installPhase" ]; 35 42 36 43 installPhase = '' 37 44 runHook preInstall
+3 -7
pkgs/applications/terminal-emulators/xterm/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "xterm"; 7 - version = "367"; 7 + version = "368"; 8 8 9 9 src = fetchurl { 10 10 urls = [ 11 11 "ftp://ftp.invisible-island.net/xterm/${pname}-${version}.tgz" 12 12 "https://invisible-mirror.net/archives/xterm/${pname}-${version}.tgz" 13 13 ]; 14 - sha256 = "07y51l06n344pjyxdddq6sdvxw25nl10irl4avynkqjnqyqsiw97"; 14 + sha256 = "L/UWmTC2tJ7wuvteEzHJTxqYwxBEK7p3mK3YIcdq5xI="; 15 15 }; 16 16 17 17 strictDeps = true; 18 18 19 - nativeBuildInputs = [ 20 - makeWrapper 21 - pkg-config 22 - fontconfig 23 - ]; 19 + nativeBuildInputs = [ makeWrapper pkg-config fontconfig ]; 24 20 25 21 buildInputs = [ 26 22 xorg.libXaw
+2 -2
pkgs/applications/video/xplayer/default.nix
··· 34 34 35 35 stdenv.mkDerivation rec { 36 36 pname = "xplayer"; 37 - version = "2.4.0"; 37 + version = "2.4.2"; 38 38 39 39 src = fetchFromGitHub { 40 40 owner = "linuxmint"; 41 41 repo = pname; 42 42 rev = version; 43 - sha256 = "1xcv6nr2gc0vji5afwy283v7bgx46kzgrq79hl8q9pz995qq2kbp"; 43 + sha256 = "sha256-qoBJKY0CZyhp9foUehq5hInEENRGZuy1D6jAMjbjYhA="; 44 44 }; 45 45 46 46 # configure wants to find gst-inspect-1.0 via pkgconfig but
+53
pkgs/applications/virtualization/containerd/1.4.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildGoPackage 4 + , btrfs-progs 5 + , go-md2man 6 + , installShellFiles 7 + , util-linux 8 + , nixosTests 9 + }: 10 + 11 + buildGoPackage rec { 12 + pname = "containerd"; 13 + version = "1.4.9"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "containerd"; 17 + repo = "containerd"; 18 + rev = "v${version}"; 19 + sha256 = "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52"; 20 + }; 21 + 22 + goPackagePath = "github.com/containerd/containerd"; 23 + outputs = [ "out" "man" ]; 24 + 25 + nativeBuildInputs = [ go-md2man installShellFiles util-linux ]; 26 + 27 + buildInputs = [ btrfs-progs ]; 28 + 29 + buildFlags = [ "VERSION=v${version}" "REVISION=${src.rev}" ]; 30 + 31 + buildPhase = '' 32 + cd go/src/${goPackagePath} 33 + patchShebangs . 34 + make binaries man $buildFlags 35 + ''; 36 + 37 + installPhase = '' 38 + install -Dm555 bin/* -t $out/bin 39 + installManPage man/*.[1-9] 40 + installShellCompletion --bash contrib/autocomplete/ctr 41 + installShellCompletion --zsh --name _ctr contrib/autocomplete/zsh_autocomplete 42 + ''; 43 + 44 + passthru.tests = { inherit (nixosTests) docker; }; 45 + 46 + meta = with lib; { 47 + homepage = "https://containerd.io/"; 48 + description = "A daemon to control runC"; 49 + license = licenses.asl20; 50 + maintainers = with maintainers; [ ]; 51 + platforms = platforms.linux; 52 + }; 53 + }
+11 -11
pkgs/applications/virtualization/docker/default.nix
··· 12 12 # package dependencies 13 13 , stdenv, fetchFromGitHub, buildGoPackage 14 14 , makeWrapper, installShellFiles, pkg-config, glibc 15 - , go-md2man, go, containerd, runc, docker-proxy, tini, libtool 15 + , go-md2man, go, containerd_1_4, runc, docker-proxy, tini, libtool 16 16 , sqlite, iproute2, lvm2, systemd, docker-buildx 17 17 , btrfs-progs, iptables, e2fsprogs, xz, util-linux, xfsprogs, git 18 18 , procps, libseccomp ··· 33 33 patches = []; 34 34 }); 35 35 36 - docker-containerd = containerd.overrideAttrs (oldAttrs: { 36 + docker-containerd = containerd_1_4.overrideAttrs (oldAttrs: { 37 37 name = "docker-containerd-${version}"; 38 38 inherit version; 39 39 src = fetchFromGitHub { ··· 210 210 homepage = "https://www.docker.com/"; 211 211 description = "An open source project to pack, ship and run any application as a lightweight container"; 212 212 license = licenses.asl20; 213 - maintainers = with maintainers; [ offline tailhook vdemeester periklis mikroskeem ]; 213 + maintainers = with maintainers; [ offline tailhook vdemeester periklis mikroskeem maxeaubrey ]; 214 214 platforms = with platforms; linux ++ darwin; 215 215 }; 216 216 ··· 221 221 # Get revisions from 222 222 # https://github.com/moby/moby/tree/${version}/hack/dockerfile/install/* 223 223 docker_20_10 = callPackage dockerGen rec { 224 - version = "20.10.7"; 224 + version = "20.10.8"; 225 225 rev = "v${version}"; 226 - sha256 = "1r854jrjph4v1n5lr82z0cl0241ycili4qr3qh3k3bmqx790cds3"; 226 + sha256 = "sha256-betZIAH4mFpb/OywWyixCjVmy5EGTrg+WbxDXkVRrsI="; 227 227 moby-src = fetchFromGitHub { 228 228 owner = "moby"; 229 229 repo = "moby"; 230 230 rev = "v${version}"; 231 - sha256 = "0xhn11kgcbzda4z9j0rflvq0nfivizh3jrzhanwn5vnghafy4zqw"; 231 + sha256 = "1pjjdwzad2z337zwby88w5zwl71ch4lcwbw0sy8slvyjv387jjlm"; 232 232 }; 233 - runcRev = "b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7"; # v1.0.0-rc95 234 - runcSha256 = "18sbvmlvb6kird4w3rqsfrjdj7n25firabvdxsl0rxjfy9r1g2xb"; 235 - containerdRev = "12dca9790f4cb6b18a6a7a027ce420145cb98ee7"; # v1.5.1 236 - containerdSha256 = "16q34yiv5q98b9d5vgy1lmmppg8agrmnfd1kzpakkf4czkws0p4d"; 237 - tiniRev = "de40ad007797e0dcd8b7126f27bb87401d224240"; # v0.19.0 233 + runcRev = "v1.0.1"; # v1.0.1 234 + runcSha256 = "1zfa1zr8i9n1915nyv7hyaj7q27cy7fiihk9rr1377ayaqg3mpn5"; 235 + containerdRev = "v1.4.9"; # v1.4.9 236 + containerdSha256 = "1ykikks6ihgg899ibk9m9m0hqrbss0cx7l7z4yjb873b10bacj52"; 237 + tiniRev = "v0.19.0"; # v0.19.0 238 238 tiniSha256 = "1h20i3wwlbd8x4jr2gz68hgklh0lb0jj7y5xk1wvr8y58fip1rdn"; 239 239 }; 240 240 }
+4 -4
pkgs/data/misc/hackage/pin.json
··· 1 1 { 2 - "commit": "8977803787241e1474bdbb35cbc704c57cce6fcd", 3 - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/8977803787241e1474bdbb35cbc704c57cce6fcd.tar.gz", 4 - "sha256": "1ivdqlmpdqpa5m5cdwdk6l258nmnz9a6466y8xs19x0wkdx4b738", 5 - "msg": "Update from Hackage at 2021-08-07T10:52:35Z" 2 + "commit": "dfb0b040033334d2e676906786c7a90805310e7d", 3 + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/dfb0b040033334d2e676906786c7a90805310e7d.tar.gz", 4 + "sha256": "0x53gkkpxlcm6qa38yksx8cws9phl2zxvdys5imjpg8dl1sal3pg", 5 + "msg": "Update from Hackage at 2021-08-10T19:15:27Z" 6 6 }
+2 -2
pkgs/data/misc/wireless-regdb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wireless-regdb"; 5 - version = "2021.04.21"; 5 + version = "2021.07.14"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-nkwCsqlxDfTb2zJ8OWEujLuuZJWYev7drrqyjB6j2Po="; 9 + sha256 = "sha256-Li3SFqXxoxC4SXdK9j5jCdlMIgfDR3GlNMR64YsWJ0I="; 10 10 }; 11 11 12 12 dontBuild = true;
+4 -3
pkgs/data/themes/marwaita-manjaro/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchFromGitHub 3 4 , gdk-pixbuf 4 5 , gtk-engine-murrine ··· 8 9 9 10 stdenv.mkDerivation rec { 10 11 pname = "marwaita-manjaro"; 11 - version = "2.0"; 12 + version = "10.3"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "darkomarko42"; 15 16 repo = pname; 16 17 rev = version; 17 - sha256 = "1si0gaa1njyf4194i6rbx4qjp31sw238svvb2x8r8cfhm8mkhm8d"; 18 + sha256 = "0qihxipk7ya6n3p9kg20bk6plnb85pg3ahwd02qq4bqfiw6mx3gw"; 18 19 }; 19 20 20 21 buildInputs = [
+2 -2
pkgs/desktops/cinnamon/xapps/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "xapps"; 24 - version = "2.0.6"; 24 + version = "2.2.3"; 25 25 26 26 outputs = [ "out" "dev" ]; 27 27 ··· 29 29 owner = "linuxmint"; 30 30 repo = pname; 31 31 rev = version; 32 - sha256 = "11qbz547qlfsvkz4bdxhryrsf10aw5jc2f1glbik7pvmmm87gf4f"; 32 + sha256 = "sha256-hrSyoHA3XQXQb9N3YJ+NNfBjJNOuUhXhKEimh/n73MM="; 33 33 }; 34 34 35 35 # TODO: https://github.com/NixOS/nixpkgs/issues/36468
+2 -2
pkgs/desktops/cinnamon/xviewer/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "xviewer"; 28 - version = "2.8.3"; 28 + version = "3.0.2"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "linuxmint"; 32 32 repo = pname; 33 33 rev = version; 34 - sha256 = "0h3qgqaiz5swy09fr6z3ag2952hgzsk5d2fpwmwb78yjrzrhnzpy"; 34 + sha256 = "sha256-hvoTb9afyVdcm5suB1ZxkxUyNFSVRFjYuNVc0jE3RF0="; 35 35 }; 36 36 37 37 nativeBuildInputs = [
pkgs/development/arduino/arduino-ci/default.nix pkgs/development/embedded/arduino/arduino-ci/default.nix
pkgs/development/arduino/arduino-cli/default.nix pkgs/development/embedded/arduino/arduino-cli/default.nix
pkgs/development/arduino/arduino-core/default.nix pkgs/development/embedded/arduino/arduino-core/default.nix
pkgs/development/arduino/arduino-core/downloads.nix pkgs/development/embedded/arduino/arduino-core/downloads.nix
pkgs/development/arduino/arduino-mk/default.nix pkgs/development/embedded/arduino/arduino-mk/default.nix
pkgs/development/arduino/ino/default.nix pkgs/development/embedded/arduino/ino/default.nix
pkgs/development/arduino/platformio/chrootenv.nix pkgs/development/embedded/platformio/chrootenv.nix
pkgs/development/arduino/platformio/core.nix pkgs/development/embedded/platformio/core.nix
pkgs/development/arduino/platformio/default.nix pkgs/development/embedded/platformio/default.nix
pkgs/development/arduino/platformio/fix-searchpath.patch pkgs/development/embedded/platformio/fix-searchpath.patch
pkgs/development/arduino/platformio/missing-udev-rules-nixos.patch pkgs/development/embedded/platformio/missing-udev-rules-nixos.patch
pkgs/development/arduino/platformio/use-local-spdx-license-list.patch pkgs/development/embedded/platformio/use-local-spdx-license-list.patch
+9 -5
pkgs/development/beam-modules/fetch-hex.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 - { pkg, version, sha256 4 - , meta ? {} 3 + { pkg 4 + , version 5 + , sha256 6 + , meta ? { } 5 7 }: 6 8 7 9 with lib; 8 10 9 11 stdenv.mkDerivation ({ 10 - name = "hex-source-${pkg}-${version}"; 12 + pname = "hex-source-${pkg}"; 13 + inherit version; 14 + dontBuild = true; 15 + dontConfigure = true; 16 + dontFixup = true; 11 17 12 18 src = fetchurl { 13 19 url = "https://repo.hex.pm/tarballs/${pkg}-${version}.tar"; 14 20 inherit sha256; 15 21 }; 16 - 17 - phases = [ "unpackPhase" "installPhase" ]; 18 22 19 23 unpackCmd = '' 20 24 tar -xf $curSrc contents.tar.gz
+14 -5
pkgs/development/beam-modules/fetch-rebar-deps.nix
··· 1 1 { lib, stdenv, rebar3 }: 2 2 3 - { name, version, sha256, src 4 - , meta ? {} 3 + { name 4 + , version 5 + , sha256 6 + , src 7 + , meta ? { } 5 8 }: 6 9 7 10 with lib; 8 11 9 12 stdenv.mkDerivation ({ 10 - name = "rebar-deps-${name}-${version}"; 13 + pname = "rebar-deps-${name}"; 14 + inherit version; 11 15 12 - phases = [ "downloadPhase" "installPhase" ]; 16 + dontUnpack = true; 17 + dontConfigure = true; 18 + dontBuild = true; 19 + dontFixup = true; 13 20 14 - downloadPhase = '' 21 + prePhases = '' 15 22 cp ${src} . 16 23 HOME='.' DEBUG=1 ${rebar3}/bin/rebar3 get-deps 17 24 ''; 18 25 19 26 installPhase = '' 27 + runHook preInstall 20 28 mkdir -p "$out/_checkouts" 21 29 for i in ./_build/default/lib/* ; do 22 30 echo "$i" 23 31 cp -R "$i" "$out/_checkouts" 24 32 done 33 + runHook postInstall 25 34 ''; 26 35 27 36 outputHashAlgo = "sha256";
+7 -1
pkgs/development/compilers/gcc/common/configure-flags.nix
··· 158 158 (lib.enableFeature enablePlugin "plugin") 159 159 ] 160 160 161 - # Support -m32 on powerpc64le 161 + # Support -m32 on powerpc64le/be 162 162 ++ lib.optional (targetPlatform.system == "powerpc64le-linux") 163 163 "--enable-targets=powerpcle-linux" 164 + ++ lib.optional (targetPlatform.system == "powerpc64-linux") 165 + "--enable-targets=powerpc-linux" 166 + 167 + # Fix "unknown long double size, cannot define BFP_FMT" 168 + ++ lib.optional (targetPlatform.isPower && targetPlatform.isMusl) 169 + "--disable-decimal-float" 164 170 165 171 # Optional features 166 172 ++ lib.optional (isl != null) "--with-isl=${isl}"
+1
pkgs/development/compilers/ghc/head.nix
··· 311 311 homepage = "http://haskell.org/ghc"; 312 312 description = "The Glasgow Haskell Compiler"; 313 313 maintainers = with lib.maintainers; [ marcweber andres peti ]; 314 + timeout = 24 * 3600; 314 315 inherit (ghc.meta) license platforms; 315 316 # ghcHEAD times out on aarch64-linux on Hydra. 316 317 hydraPlatforms = builtins.filter (p: p != "aarch64-linux") ghc.meta.platforms;
+7 -6
pkgs/development/compilers/gprolog/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "gprolog-1.5.0"; 4 + pname = "gprolog"; 5 + version = "1.5.0"; 5 6 6 7 src = fetchurl { 7 8 urls = [ 8 - "mirror://gnu/gprolog/${name}.tar.gz" 9 - "http://www.gprolog.org/${name}.tar.gz" 9 + "mirror://gnu/gprolog/gprolog-${version}.tar.gz" 10 + "http://www.gprolog.org/gprolog-${version}.tar.gz" 10 11 ]; 11 12 sha256 = "sha256-ZwZCtDwPqifr1olh77F+vnB2iPkbaAlWbd1gYTlRLAE="; 12 13 }; ··· 22 23 configureFlagsArray=( 23 24 "--with-install-dir=$out" 24 25 "--without-links-dir" 25 - "--with-examples-dir=$out/share/${name}/examples" 26 - "--with-doc-dir=$out/share/${name}/doc" 26 + "--with-examples-dir=$out/share/gprolog-${version}/examples" 27 + "--with-doc-dir=$out/share/gprolog-${version}/doc" 27 28 ) 28 29 ''; 29 30 30 31 postInstall = '' 31 - mv -v $out/[A-Z]* $out/gprolog.ico $out/share/${name}/ 32 + mv -v $out/[A-Z]* $out/gprolog.ico $out/share/gprolog-${version}/ 32 33 ''; 33 34 34 35 doCheck = true;
+4
pkgs/development/haskell-modules/configuration-common.nix
··· 1458 1458 addBuildDepend (unmarkBroken super.hercules-ci-cli) super.hercules-ci-optparse-applicative 1459 1459 ); 1460 1460 1461 + # Readline uses Distribution.Simple from Cabal 2, in a way that is not 1462 + # compatible with Cabal 3. No upstream repository found so far 1463 + readline = appendPatch super.readline ./patches/readline-fix-for-cabal-3.patch; 1464 + 1461 1465 # 2020-12-05: http-client is fixed on too old version 1462 1466 essence-of-live-coding-warp = doJailbreak (super.essence-of-live-coding-warp.override { 1463 1467 http-client = self.http-client_0_7_8;
+2 -1
pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
··· 735 735 - compilation 736 736 - complex-generic 737 737 - compose-trans 738 + - composite-dhall 738 739 - composite-opaleye 739 740 - composition-tree 740 741 - comprehensions-ghc ··· 2558 2559 - jenga 2559 2560 - jenkinsPlugins2nix 2560 2561 - jespresso 2562 + - jet-stream 2561 2563 - jinquantities 2562 2564 - jml-web-service 2563 2565 - jni ··· 3898 3900 - read-bounded 3899 3901 - read-ctags 3900 3902 - read-io 3901 - - readline 3902 3903 - readme-lhs 3903 3904 - readshp 3904 3905 - really-simple-xml-parser
+4 -12
pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
··· 58 58 - CC-delcont-alt 59 59 - CMCompare 60 60 - CPBrainfuck 61 - - CPL 62 61 - CSPM-Interpreter 63 62 - CSPM-ToProlog 64 63 - CSPM-cspm ··· 371 370 - XSaiga 372 371 - YACPong 373 372 - Yablog 374 - - Yogurt 375 - - Yogurt-Standalone 376 373 - Z-Botan 377 374 - Z-IO 378 375 - Z-MessagePack ··· 1559 1556 - hoodle-publish 1560 1557 - hoodle-render 1561 1558 - hoovie 1562 - - hoq 1563 1559 - hp2any-graph 1564 1560 - hp2any-manager 1565 1561 - hpaco ··· 1613 1609 - hset 1614 1610 - hsfacter 1615 1611 - hslogstash 1616 - - hsnock 1617 1612 - hspec-expectations-pretty 1618 1613 - hspec-pg-transact 1619 1614 - hspec-setup ··· 1655 1650 - hunt-searchengine 1656 1651 - hunt-server 1657 1652 - hurdle 1658 - - husky 1659 1653 - huzzy 1660 1654 - hw-all 1661 1655 - hw-dsv ··· 1973 1967 - llvm-tools 1974 1968 - lmonad-yesod 1975 1969 - lnd-client 1970 + - lnurl 1971 + - lnurl-authenticator 1976 1972 - local-search 1977 1973 - localize 1978 1974 - locked-poll ··· 2078 2074 - minecraft-data 2079 2075 - minesweeper 2080 2076 - mini-egison 2081 - - miniforth 2082 2077 - minilight-lua 2083 2078 - minimung 2084 2079 - minioperational ··· 2087 2082 - missing-py2 2088 2083 - mixed-strategies 2089 2084 - mkbndl 2090 - - mkcabal 2091 2085 - mlist 2092 2086 - mmark-cli 2093 2087 - mmark-ext ··· 2107 2101 - monetdb-mapi 2108 2102 - mongrel2-handler 2109 2103 - monky 2104 + - monomer 2110 2105 - monte-carlo 2111 2106 - moo 2112 2107 - moo-nad ··· 2385 2380 - postgresql-tx-query 2386 2381 - postgresql-tx-squeal 2387 2382 - postgresql-tx-squeal-compat-simple 2383 + - postgrest_8_0_0 2388 2384 - postmark 2389 2385 - potoki 2390 2386 - potoki-cereal ··· 2449 2445 - queryparser-hive 2450 2446 - queryparser-presto 2451 2447 - queryparser-vertica 2452 - - questioner 2453 2448 - queuelike 2454 2449 - quickbench 2455 2450 - quickcheck-combinators ··· 2513 2508 - reactive-fieldtrip 2514 2509 - reactive-glut 2515 2510 - reactor 2516 - - readline-statevar 2517 2511 - readpyc 2518 2512 - reanimate 2519 2513 - record-aeson ··· 2899 2893 - svg2q 2900 2894 - svgone 2901 2895 - swapper 2902 - - swearjure 2903 2896 - sweet-egison 2904 2897 - switch 2905 2898 - sylvia ··· 3041 3034 - twidge 3042 3035 - twilight-stm 3043 3036 - twill 3044 - - twitter 3045 3037 - twitter-enumerator 3046 3038 - type-assertions 3047 3039 - type-cache
+555 -120
pkgs/development/haskell-modules/hackage-packages.nix
··· 2483 2483 ]; 2484 2484 description = "An interpreter of Hagino's Categorical Programming Language (CPL)"; 2485 2485 license = lib.licenses.bsd3; 2486 - hydraPlatforms = lib.platforms.none; 2487 2486 }) {}; 2488 2487 2489 2488 "CSPM-CoreLanguage" = callPackage ··· 11589 11588 }: 11590 11589 mkDerivation { 11591 11590 pname = "Jikka"; 11592 - version = "5.1.0.0"; 11593 - sha256 = "0zr558lds5gqlgdpxgm65zjm4frcln50wr9q01djjq3441cxciqf"; 11591 + version = "5.2.0.0"; 11592 + sha256 = "0rg96x1y928dd8n2znddp8b2wgmpv6vdkm4s8xcr39rqw4jsqk0l"; 11594 11593 isLibrary = true; 11595 11594 isExecutable = true; 11596 11595 enableSeparateDataOutput = true; ··· 13766 13765 pname = "MonadRandom"; 13767 13766 version = "0.5.3"; 13768 13767 sha256 = "17qaw1gg42p9v6f87dj5vih7l88lddbyd8880ananj8avanls617"; 13769 - revision = "1"; 13770 - editedCabalFile = "1wpgmcv704i7x38jwalnbmx8c10vdw269gbvzjxaj4rlvff3s4sq"; 13768 + revision = "2"; 13769 + editedCabalFile = "1diy29if7w1c9ckc465mrrb52fm0zmd8zzym1h5ryh5a58qafwhr"; 13771 13770 libraryHaskellDepends = [ 13772 13771 base mtl primitive random transformers transformers-compat 13773 13772 ]; ··· 21918 21917 ]; 21919 21918 description = "A MUD client library"; 21920 21919 license = lib.licenses.bsd3; 21921 - hydraPlatforms = lib.platforms.none; 21922 21920 }) {}; 21923 21921 21924 21922 "Yogurt-Standalone" = callPackage ··· 21938 21936 executableSystemDepends = [ readline ]; 21939 21937 description = "A functional MUD client"; 21940 21938 license = lib.licenses.bsd3; 21941 - hydraPlatforms = lib.platforms.none; 21942 21939 }) {inherit (pkgs) readline;}; 21943 21940 21944 21941 "Z-Botan" = callPackage ··· 44686 44683 }) {}; 44687 44684 44688 44685 "bnb-staking-csvs" = callPackage 44689 - ({ mkDerivation, aeson, base, bytestring, cassava, hedgehog, req 44690 - , scientific, tasty, tasty-hedgehog, tasty-hunit, text, time 44686 + ({ mkDerivation, aeson, base, bytestring, cassava, cmdargs 44687 + , cointracking-imports, hedgehog, req, scientific, tasty 44688 + , tasty-hedgehog, tasty-hunit, text, time 44691 44689 }: 44692 44690 mkDerivation { 44693 44691 pname = "bnb-staking-csvs"; 44694 - version = "0.1.0.0"; 44695 - sha256 = "0dy68qklr8zajcmw4zff921n35j99klgndpgpq0ra9k3g6n22gkn"; 44696 - revision = "1"; 44697 - editedCabalFile = "0pjrkqkjyq3hl14q7k9sx2xia06z06lv2i1sfs0vbcc3fh1s3wn1"; 44692 + version = "0.2.0.0"; 44693 + sha256 = "1m2bd6cwlgavq3nri3xwbqim2zikzv1dxqf5a5gxkqra1qgbvm4v"; 44698 44694 isLibrary = true; 44699 44695 isExecutable = true; 44700 44696 libraryHaskellDepends = [ 44701 - aeson base bytestring cassava req scientific text time 44697 + aeson base bytestring cassava cmdargs cointracking-imports req 44698 + scientific text time 44702 44699 ]; 44703 44700 executableHaskellDepends = [ base ]; 44704 44701 testHaskellDepends = [ ··· 47591 47588 ]; 47592 47589 description = "Read strings describing a number of bytes like 2Kb and 0.5 MiB"; 47593 47590 license = lib.licenses.gpl3Only; 47591 + }) {}; 47592 + 47593 + "byte-count-reader_0_10_1_4" = callPackage 47594 + ({ mkDerivation, base, extra, hspec, parsec, parsec-numbers, text 47595 + }: 47596 + mkDerivation { 47597 + pname = "byte-count-reader"; 47598 + version = "0.10.1.4"; 47599 + sha256 = "1rscz0dqz8h4cazf1kb0w628a93ysphrih5x0yppvl3w0iy26sh0"; 47600 + libraryHaskellDepends = [ base extra parsec parsec-numbers text ]; 47601 + testHaskellDepends = [ 47602 + base extra hspec parsec parsec-numbers text 47603 + ]; 47604 + description = "Read strings describing a number of bytes like 2Kb and 0.5 MiB"; 47605 + license = lib.licenses.gpl3Only; 47606 + hydraPlatforms = lib.platforms.none; 47594 47607 }) {}; 47595 47608 47596 47609 "byte-order" = callPackage ··· 51154 51167 }: 51155 51168 mkDerivation { 51156 51169 pname = "capnp"; 51157 - version = "0.11.0.0"; 51158 - sha256 = "1pbgnaiv1zlykpc13vgr5aklfjc2bl84nz8fpvga5djjd0x905cw"; 51170 + version = "0.12.0.0"; 51171 + sha256 = "0wv1rp511vzq7hkzcgcpa0jvc90bflysddz0s69dzl6llr71gb6x"; 51159 51172 isLibrary = true; 51160 51173 isExecutable = true; 51161 51174 libraryHaskellDepends = [ ··· 53858 53871 53859 53872 "chassis" = callPackage 53860 53873 ({ mkDerivation, base, bytestring, comonad, composite-base 53861 - , containers, contravariant, distributive, either, exceptions 53862 - , extra, first-class-families, path, profunctors, rio, text, time 53863 - , vinyl 53874 + , containers, distributive, extra, first-class-families, path 53875 + , profunctors, text, time, vinyl 53864 53876 }: 53865 53877 mkDerivation { 53866 53878 pname = "chassis"; 53867 - version = "0.0.5.0"; 53868 - sha256 = "0f9iipl7l9jhi6754yysk9kkliiab60ds95k8r4gjcch3hh4zbcj"; 53879 + version = "0.0.6.0"; 53880 + sha256 = "0lb2hkyzyq7rm3h6s5n16v4zvqsan98p3k3a1fig9gf61538rkvy"; 53869 53881 libraryHaskellDepends = [ 53870 - base bytestring comonad composite-base containers contravariant 53871 - distributive either exceptions extra first-class-families path 53872 - profunctors rio text time vinyl 53882 + base bytestring comonad composite-base containers distributive 53883 + extra first-class-families path profunctors text time vinyl 53873 53884 ]; 53874 - description = "Prelude with algebraic constructs and polykinds on"; 53885 + description = "Polykinded Prelude Kernel"; 53875 53886 license = lib.licenses.mit; 53876 53887 }) {}; 53877 53888 ··· 54375 54386 benchmarkHaskellDepends = [ base gauge mtl random ]; 54376 54387 description = "Lazy infinite streams with O(1) indexing"; 54377 54388 license = lib.licenses.bsd3; 54389 + }) {}; 54390 + 54391 + "chimera_0_3_2_0" = callPackage 54392 + ({ mkDerivation, adjunctions, base, distributive, mtl, QuickCheck 54393 + , random, tasty, tasty-bench, tasty-hunit, tasty-quickcheck 54394 + , tasty-smallcheck, vector 54395 + }: 54396 + mkDerivation { 54397 + pname = "chimera"; 54398 + version = "0.3.2.0"; 54399 + sha256 = "1p8in1a37hrb0qwvabwi4a9ahzydkd8j3v402cn2i3xmkzcr0kh9"; 54400 + libraryHaskellDepends = [ 54401 + adjunctions base distributive mtl vector 54402 + ]; 54403 + testHaskellDepends = [ 54404 + base QuickCheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck 54405 + vector 54406 + ]; 54407 + benchmarkHaskellDepends = [ base mtl random tasty-bench ]; 54408 + description = "Lazy infinite streams with O(1) indexing and applications for memoization"; 54409 + license = lib.licenses.bsd3; 54410 + hydraPlatforms = lib.platforms.none; 54378 54411 }) {}; 54379 54412 54380 54413 "chiphunk" = callPackage ··· 58669 58702 broken = true; 58670 58703 }) {}; 58671 58704 58705 + "cointracking-imports" = callPackage 58706 + ({ mkDerivation, base, base-compat-batteries, bytestring, cassava 58707 + , filepath, hedgehog, lens, scientific, tasty, tasty-hedgehog 58708 + , tasty-hunit, text, time, xlsx 58709 + }: 58710 + mkDerivation { 58711 + pname = "cointracking-imports"; 58712 + version = "0.1.0.1"; 58713 + sha256 = "19in8n8sigcbph29cgrbg1ccbxzadav1siryfjfc1g112p6mrf91"; 58714 + libraryHaskellDepends = [ 58715 + base base-compat-batteries bytestring cassava filepath lens 58716 + scientific text time xlsx 58717 + ]; 58718 + testHaskellDepends = [ 58719 + base base-compat-batteries bytestring cassava filepath hedgehog 58720 + lens scientific tasty tasty-hedgehog tasty-hunit text time xlsx 58721 + ]; 58722 + description = "Generate CSV & XLSX files for importing into CoinTracking"; 58723 + license = lib.licenses.bsd3; 58724 + }) {}; 58725 + 58672 58726 "colada" = callPackage 58673 58727 ({ mkDerivation, base, bytestring, cereal, cmdargs, containers 58674 58728 , fclabels, ghc-prim, ListZipper, monad-atom, mtl, nlp-scores ··· 60132 60186 pname = "compdoc"; 60133 60187 version = "0.3.0.0"; 60134 60188 sha256 = "07gbs64r8qsxw4j0mlk7kldbdjjzz4v34pm8b5cj7a6r1l33w7k5"; 60189 + revision = "3"; 60190 + editedCabalFile = "1k9hahs857mg72krmhb0n1igfqy344pnlllbishrrj6hknc84xfq"; 60135 60191 libraryHaskellDepends = [ 60136 60192 aeson base composite-aeson composite-aeson-throw composite-base 60137 60193 pandoc pandoc-throw path rio vinyl ··· 60496 60552 }) {}; 60497 60553 60498 60554 "composite-dhall" = callPackage 60499 - ({ mkDerivation, base, composite-base, dhall, lens, text }: 60555 + ({ mkDerivation, base, composite-base, dhall, tasty, tasty-hunit 60556 + , text, vinyl 60557 + }: 60500 60558 mkDerivation { 60501 60559 pname = "composite-dhall"; 60502 - version = "0.0.1.0"; 60503 - sha256 = "1hhy3incp4j8n0c8jyk12qi9zgxmwqpvb08zhc8rql855g88rpfq"; 60504 - revision = "3"; 60505 - editedCabalFile = "0c6mim2i1bzdnm19cglm01i6kf0yka8i5nwjl7wcczvqy27fqlrz"; 60506 - libraryHaskellDepends = [ base composite-base dhall lens text ]; 60560 + version = "0.0.3.0"; 60561 + sha256 = "1ynamdgamlri6ll0vh02kp4iy04vgsplsrda49by1b4vc9b4hcdz"; 60562 + libraryHaskellDepends = [ base composite-base dhall text vinyl ]; 60563 + testHaskellDepends = [ 60564 + base composite-base dhall tasty tasty-hunit text vinyl 60565 + ]; 60507 60566 description = "Dhall instances for composite records"; 60508 60567 license = lib.licenses.mit; 60568 + hydraPlatforms = lib.platforms.none; 60569 + broken = true; 60509 60570 }) {}; 60510 60571 60511 60572 "composite-ekg" = callPackage ··· 60531 60592 libraryHaskellDepends = [ base composite-base hashable ]; 60532 60593 description = "Orphan hashable instances"; 60533 60594 license = lib.licenses.bsd3; 60595 + }) {}; 60596 + 60597 + "composite-lens-extra" = callPackage 60598 + ({ mkDerivation, base, composite-base, lens, vinyl }: 60599 + mkDerivation { 60600 + pname = "composite-lens-extra"; 60601 + version = "0.0.1.0"; 60602 + sha256 = "1dcasjymwkgkbpx0ynmdagpazfdnrjidvn5fywnm1jf1r08armzy"; 60603 + libraryHaskellDepends = [ base composite-base lens vinyl ]; 60604 + description = "Extra lens functions for composite"; 60605 + license = lib.licenses.mit; 60534 60606 }) {}; 60535 60607 60536 60608 "composite-opaleye" = callPackage ··· 74929 75001 pname = "diagrams-builder"; 74930 75002 version = "0.8.0.5"; 74931 75003 sha256 = "0dz617kfkvjf3f2zbphkdx1scglcjj162qsfk9xj7slbapnj918m"; 75004 + revision = "1"; 75005 + editedCabalFile = "0rcj755n729gs9rgmjwai1xacigwpyk4b91x0cadfsl7xrgqax0c"; 74932 75006 configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ]; 74933 75007 isLibrary = true; 74934 75008 isExecutable = true; ··· 76334 76408 }) {}; 76335 76409 76336 76410 "diohsc" = callPackage 76337 - ({ mkDerivation, asn1-types, base, bytestring, containers 76338 - , cryptonite, data-default-class, data-hash, directory 76411 + ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring 76412 + , containers, cryptonite, data-default-class, data-hash, directory 76339 76413 , drunken-bishop, exceptions, filepath, haskeline, hourglass, iconv 76340 - , mime, mtl, network, network-simple, network-uri, parsec, pem 76341 - , process, regex-compat, safe, temporary, terminal-size, text, tls 76342 - , transformers, unix, x509, x509-store, x509-validation 76414 + , memory, mime, mtl, network, network-simple, network-uri, parsec 76415 + , pem, process, regex-compat, safe, temporary, terminal-size, text 76416 + , tls, transformers, unix, x509, x509-store, x509-validation 76343 76417 }: 76344 76418 mkDerivation { 76345 76419 pname = "diohsc"; 76346 - version = "0.1.7"; 76347 - sha256 = "0xhpj1dhcppvxv8558aai1azx8i3awv4adwl0vffzwj2kas23gjm"; 76420 + version = "0.1.8"; 76421 + sha256 = "0a614db90pwfc689gb174af6q5fdrb6i9bvhjgvq8vkgldicg4wb"; 76348 76422 isLibrary = false; 76349 76423 isExecutable = true; 76350 76424 executableHaskellDepends = [ 76351 - asn1-types base bytestring containers cryptonite data-default-class 76352 - data-hash directory drunken-bishop exceptions filepath haskeline 76353 - hourglass iconv mime mtl network network-simple network-uri parsec 76354 - pem process regex-compat safe temporary terminal-size text tls 76355 - transformers unix x509 x509-store x509-validation 76425 + asn1-encoding asn1-types base bytestring containers cryptonite 76426 + data-default-class data-hash directory drunken-bishop exceptions 76427 + filepath haskeline hourglass iconv memory mime mtl network 76428 + network-simple network-uri parsec pem process regex-compat safe 76429 + temporary terminal-size text tls transformers unix x509 x509-store 76430 + x509-validation 76356 76431 ]; 76357 76432 description = "Gemini client"; 76358 76433 license = lib.licenses.gpl3Only; ··· 80442 80517 }: 80443 80518 mkDerivation { 80444 80519 pname = "dsv"; 80445 - version = "1.0.0.1"; 80446 - sha256 = "1lf6fan0mis0hs30yfpslfyj0gpk028z24wca3lylq877pq7z6nz"; 80520 + version = "1.0.0.2"; 80521 + sha256 = "1499qdsxn6qvavgi0g6x75w0cl21dc1f7nn79ajr0lq56dpdx873"; 80447 80522 enableSeparateDataOutput = true; 80448 80523 libraryHaskellDepends = [ 80449 80524 attoparsec base bytestring cassava containers foldl pipes ··· 83342 83417 license = lib.licenses.bsd3; 83343 83418 }) {}; 83344 83419 83420 + "elm-bridge_0_7_0" = callPackage 83421 + ({ mkDerivation, aeson, base, containers, hspec, QuickCheck 83422 + , template-haskell, text 83423 + }: 83424 + mkDerivation { 83425 + pname = "elm-bridge"; 83426 + version = "0.7.0"; 83427 + sha256 = "1ccqsvyy60bzq7vhy9kwbl6rmlnpk0bpy7wyqapm54qxkx71bfk6"; 83428 + libraryHaskellDepends = [ aeson base template-haskell ]; 83429 + testHaskellDepends = [ 83430 + aeson base containers hspec QuickCheck text 83431 + ]; 83432 + description = "Derive Elm types and Json code from Haskell types, using aeson's options"; 83433 + license = lib.licenses.bsd3; 83434 + hydraPlatforms = lib.platforms.none; 83435 + }) {}; 83436 + 83345 83437 "elm-build-lib" = callPackage 83346 83438 ({ mkDerivation, base, bytestring, containers, elm-compiler 83347 83439 , elm-core-sources, file-embed, template-haskell ··· 89591 89683 tasty-smallcheck 89592 89684 ]; 89593 89685 benchmarkHaskellDepends = [ base digits gauge ]; 89686 + doHaddock = false; 89687 + description = "Integer-to-digits conversion"; 89688 + license = lib.licenses.gpl3Only; 89689 + hydraPlatforms = lib.platforms.none; 89690 + }) {}; 89691 + 89692 + "fast-digits_0_3_1_0" = callPackage 89693 + ({ mkDerivation, base, integer-gmp, QuickCheck, smallcheck, tasty 89694 + , tasty-bench, tasty-quickcheck, tasty-smallcheck 89695 + }: 89696 + mkDerivation { 89697 + pname = "fast-digits"; 89698 + version = "0.3.1.0"; 89699 + sha256 = "1q6kq5rrd4ivg4s8yhzqsc3gx4n554nz7285mgfqwxgfx8r4mmki"; 89700 + libraryHaskellDepends = [ base integer-gmp ]; 89701 + testHaskellDepends = [ 89702 + base QuickCheck smallcheck tasty tasty-quickcheck tasty-smallcheck 89703 + ]; 89704 + benchmarkHaskellDepends = [ base tasty-bench ]; 89594 89705 doHaddock = false; 89595 89706 description = "Integer-to-digits conversion"; 89596 89707 license = lib.licenses.gpl3Only; ··· 102726 102837 ({ mkDerivation, base, ghc, transformers }: 102727 102838 mkDerivation { 102728 102839 pname = "ghc-tcplugin-api"; 102729 - version = "0.3.0.0"; 102730 - sha256 = "129pcvbyp416gimqva8s368kq64sp17lsyxr2z6j6qbif2xl9pcy"; 102840 + version = "0.3.1.0"; 102841 + sha256 = "10s9i2n8r3ckdz3kd1s4pwwm4j8p8fg13xhn2m2dy4832iwg12bz"; 102731 102842 libraryHaskellDepends = [ base ghc transformers ]; 102732 102843 description = "An API for type-checker plugins"; 102733 102844 license = lib.licenses.bsd3; ··· 105691 105802 license = lib.licenses.bsd3; 105692 105803 }) {}; 105693 105804 105805 + "github-rest_1_1_0" = callPackage 105806 + ({ mkDerivation, aeson, aeson-qq, base, bytestring, http-client 105807 + , http-client-tls, http-types, jwt, mtl, scientific, tasty 105808 + , tasty-golden, tasty-hunit, tasty-quickcheck, text, time 105809 + , transformers, unliftio, unliftio-core 105810 + }: 105811 + mkDerivation { 105812 + pname = "github-rest"; 105813 + version = "1.1.0"; 105814 + sha256 = "0xyvmc8hj3rfglnhg6xcrdsd9gbii8yzh8qw5xjdyccmdsibckx3"; 105815 + libraryHaskellDepends = [ 105816 + aeson base bytestring http-client http-client-tls http-types jwt 105817 + mtl scientific text time transformers unliftio unliftio-core 105818 + ]; 105819 + testHaskellDepends = [ 105820 + aeson aeson-qq base bytestring http-client http-client-tls 105821 + http-types jwt mtl scientific tasty tasty-golden tasty-hunit 105822 + tasty-quickcheck text time transformers unliftio unliftio-core 105823 + ]; 105824 + description = "Query the GitHub REST API programmatically"; 105825 + license = lib.licenses.bsd3; 105826 + hydraPlatforms = lib.platforms.none; 105827 + }) {}; 105828 + 105694 105829 "github-tools" = callPackage 105695 105830 ({ mkDerivation, base, bytestring, containers, exceptions, github 105696 105831 , groom, html, http-client, http-client-tls, monad-parallel ··· 130293 130428 maintainers = with lib.maintainers; [ peti ]; 130294 130429 }) {}; 130295 130430 130296 - , monadLib 130431 + "hledger_1_22_2" = callPackage 130297 130432 , monadLib 130298 130433 , monadLib 130299 130434 , monadLib ··· 130304 130439 }: 130305 130440 mkDerivation { 130306 130441 , monadLib 130307 - , monadLib 130308 - , monadLib 130442 + version = "1.22.2"; 130443 + sha256 = "1g1v56fxgs7ya8yl22brwgrs49a50kd77k8ad8m8l5cnlnviqb3g"; 130309 130444 isLibrary = true; 130310 130445 isExecutable = true; 130311 130446 libraryHaskellDepends = [ ··· 130562 130697 license = lib.licenses.gpl3Only; 130563 130698 }) {}; 130564 130699 130565 - , monadLib 130700 + "hledger-lib_1_22_2" = callPackage 130566 130701 , monadLib 130567 130702 , monadLib 130568 130703 , monadLib ··· 130574 130709 }: 130575 130710 mkDerivation { 130576 130711 , monadLib 130577 - , monadLib 130578 - , monadLib 130712 + version = "1.22.2"; 130713 + sha256 = "0xv8g6xyqjlqqlgq4qc0r1nskj4r53q000q5075hzp7gww8lzidl"; 130579 130714 libraryHaskellDepends = [ 130580 130715 , monadLib 130581 130716 , monadLib ··· 130671 130806 maintainers = with lib.maintainers; [ peti ]; 130672 130807 }) {}; 130673 130808 130674 - , monadLib 130809 + "hledger-ui_1_22_2" = callPackage 130675 130810 , monadLib 130676 130811 , monadLib 130677 130812 , monadLib ··· 130680 130815 }: 130681 130816 mkDerivation { 130682 130817 , monadLib 130683 - , monadLib 130684 - , monadLib 130818 + version = "1.22.2"; 130819 + sha256 = "07mal5ql3yvx0m38kkfh7zyjqn34m5a07jmhm23mwv4a4pdck4rw"; 130685 130820 isLibrary = false; 130686 130821 isExecutable = true; 130687 130822 executableHaskellDepends = [ ··· 130753 130888 maintainers = with lib.maintainers; [ peti ]; 130754 130889 }) {}; 130755 130890 130756 - , monadLib 130891 + "hledger-web_1_22_2" = callPackage 130757 130892 ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring 130758 130893 , monadLib 130759 130894 , monadLib ··· 130766 130901 }: 130767 130902 mkDerivation { 130768 130903 , monadLib 130769 - , monadLib 130770 - , monadLib 130904 + version = "1.22.2"; 130905 + sha256 = "1ia11h2r6cl1985lij598qighxfhqfcv4am0nyfpvfihik14fq4c"; 130771 130906 isLibrary = true; 130772 130907 isExecutable = true; 130773 130908 libraryHaskellDepends = [ ··· 133737 133872 executableToolDepends = [ alex happy ]; 133738 133873 description = "A language based on homotopy type theory with an interval type"; 133739 133874 license = lib.licenses.gpl2Only; 133740 - hydraPlatforms = lib.platforms.none; 133741 133875 }) {}; 133742 133876 133743 133877 "hora" = callPackage ··· 137198 137332 , hspec-discover, hspec-expectations, hspec-wai, http-api-data 137199 137333 , http-media, http-types, hw-hspec-hedgehog, list-t, microlens 137200 137334 , mmorph, mtl, network-uri, retry, scientific, servant 137201 - , servant-server, stm, stm-containers, string-conversions 137202 - , template-haskell, text, time, unordered-containers, uuid, wai 137203 - , wai-extra, warp 137335 + , servant-client, servant-client-core, servant-server, stm 137336 + , stm-containers, string-conversions, template-haskell, text, time 137337 + , unordered-containers, uuid, wai, wai-extra, warp 137204 137338 }: 137205 137339 mkDerivation { 137206 137340 pname = "hscim"; 137207 - version = "0.3.4"; 137208 - sha256 = "0jyb630gsbiw7zy043mqh9i86nj19y0gn0mgs9hvh21h8xfp6xvj"; 137341 + version = "0.3.5"; 137342 + sha256 = "16qkrw1a5la2x26d3q1bixxlnf1giqcc8bx4gn4swbynkyrsihr5"; 137209 137343 isLibrary = true; 137210 137344 isExecutable = true; 137211 137345 libraryHaskellDepends = [ ··· 137213 137347 email-validate hashable hedgehog hspec hspec-expectations hspec-wai 137214 137348 http-api-data http-media http-types hw-hspec-hedgehog list-t 137215 137349 microlens mmorph mtl network-uri retry scientific servant 137216 - servant-server stm stm-containers string-conversions 137217 - template-haskell text time unordered-containers uuid wai wai-extra 137218 - warp 137350 + servant-client servant-client-core servant-server stm 137351 + stm-containers string-conversions template-haskell text time 137352 + unordered-containers uuid wai wai-extra warp 137219 137353 ]; 137220 137354 executableHaskellDepends = [ 137221 137355 aeson aeson-qq attoparsec base bytestring case-insensitive 137222 137356 email-validate hashable hedgehog hspec hspec-expectations hspec-wai 137223 137357 http-api-data http-media http-types hw-hspec-hedgehog list-t 137224 137358 microlens mmorph mtl network-uri retry scientific servant 137225 - servant-server stm stm-containers string-conversions 137226 - template-haskell text time unordered-containers uuid wai wai-extra 137227 - warp 137359 + servant-client servant-client-core servant-server stm 137360 + stm-containers string-conversions template-haskell text time 137361 + unordered-containers uuid wai wai-extra warp 137228 137362 ]; 137229 137363 testHaskellDepends = [ 137230 137364 aeson aeson-qq attoparsec base bytestring case-insensitive 137231 137365 email-validate hashable hedgehog hspec hspec-expectations hspec-wai 137232 137366 http-api-data http-media http-types hw-hspec-hedgehog list-t 137233 137367 microlens mmorph mtl network-uri retry scientific servant 137234 - servant-server stm stm-containers string-conversions 137235 - template-haskell text time unordered-containers uuid wai wai-extra 137236 - warp 137368 + servant-client servant-client-core servant-server stm 137369 + stm-containers string-conversions template-haskell text time 137370 + unordered-containers uuid wai wai-extra warp 137237 137371 ]; 137238 137372 testToolDepends = [ hspec-discover ]; 137239 137373 description = "hscim json schema and server implementation"; ··· 138333 138467 ]; 138334 138468 description = "Nock 5K interpreter"; 138335 138469 license = lib.licenses.publicDomain; 138336 - hydraPlatforms = lib.platforms.none; 138337 138470 }) {}; 138338 138471 138339 138472 "hsnoise" = callPackage ··· 143024 143157 ]; 143025 143158 description = "A simple command line calculator"; 143026 143159 license = "GPL"; 143027 - hydraPlatforms = lib.platforms.none; 143028 143160 }) {}; 143029 143161 143030 143162 "hutton" = callPackage ··· 152851 152983 broken = true; 152852 152984 }) {}; 152853 152985 152986 + "jet-stream" = callPackage 152987 + ({ mkDerivation, async, base, bytestring, conceit, doctest, foldl 152988 + , process, stm, stm-chans, tasty, tasty-hunit, text, time 152989 + }: 152990 + mkDerivation { 152991 + pname = "jet-stream"; 152992 + version = "1.0.0.0"; 152993 + sha256 = "1nbxm1g83wf2wv0hlrrc37rppj80r4hwij47j98n6rwsm94rvigd"; 152994 + libraryHaskellDepends = [ 152995 + async base bytestring conceit process stm stm-chans text 152996 + ]; 152997 + testHaskellDepends = [ 152998 + async base bytestring conceit doctest foldl process stm stm-chans 152999 + tasty tasty-hunit text time 153000 + ]; 153001 + description = "Yet another streaming library"; 153002 + license = lib.licenses.bsd3; 153003 + hydraPlatforms = lib.platforms.none; 153004 + broken = true; 153005 + }) {}; 153006 + 152854 153007 "jinquantities" = callPackage 152855 153008 ({ mkDerivation, base, containers, doctest, Glob, hlint, hspec, mtl 152856 153009 , parsec, process, quantities, regex-compat ··· 167135 167288 hydraPlatforms = lib.platforms.none; 167136 167289 }) {}; 167137 167290 167291 + "lnurl" = callPackage 167292 + ({ mkDerivation, aeson, base, base16, base64, bytestring, cereal 167293 + , cryptonite, extra, haskoin-core, http-types, memory, network-uri 167294 + , text 167295 + }: 167296 + mkDerivation { 167297 + pname = "lnurl"; 167298 + version = "0.1.0.0"; 167299 + sha256 = "0rw4z8rg06a1dp0adgnxqgcv75v183apm9lcpc986sx4pns96pjs"; 167300 + libraryHaskellDepends = [ 167301 + aeson base base16 base64 bytestring cereal cryptonite extra 167302 + haskoin-core http-types memory network-uri text 167303 + ]; 167304 + description = "Support for developing against the LNURL protocol"; 167305 + license = lib.licenses.bsd3; 167306 + hydraPlatforms = lib.platforms.none; 167307 + }) {}; 167308 + 167309 + "lnurl-authenticator" = callPackage 167310 + ({ mkDerivation, aeson, base, bech32, bytestring, Clipboard 167311 + , containers, cryptonite, directory, filepath, haskeline 167312 + , haskoin-core, http-client, http-client-tls, lnurl, memory 167313 + , optparse-applicative, text, time 167314 + }: 167315 + mkDerivation { 167316 + pname = "lnurl-authenticator"; 167317 + version = "0.1.0.0"; 167318 + sha256 = "0jzw0h4rp9i3cqa60i3y0vxhaplqg07qmf1182h6anhzmi16n43h"; 167319 + isLibrary = true; 167320 + isExecutable = true; 167321 + libraryHaskellDepends = [ 167322 + aeson base bech32 bytestring containers cryptonite directory 167323 + filepath haskeline haskoin-core http-client http-client-tls lnurl 167324 + memory text time 167325 + ]; 167326 + executableHaskellDepends = [ base Clipboard optparse-applicative ]; 167327 + description = "A command line tool to manage LNURL auth identities"; 167328 + license = lib.licenses.bsd3; 167329 + hydraPlatforms = lib.platforms.none; 167330 + }) {}; 167331 + 167138 167332 "load-balancing" = callPackage 167139 167333 ({ mkDerivation, base, containers, hslogger, PSQueue, stm }: 167140 167334 mkDerivation { ··· 168590 168784 }: 168591 168785 mkDerivation { 168592 168786 pname = "lorentz"; 168593 - version = "0.12.0"; 168594 - sha256 = "0cx879gb37gbldzhkmkz9bcdq4zkjisqrc7x1i85wqr5xjcaphvb"; 168787 + version = "0.12.1"; 168788 + sha256 = "1ba511lxmlmv3dj483q6bgk5bvb16d2js0qldz513j4azqjr5f19"; 168595 168789 libraryHaskellDepends = [ 168596 168790 aeson-pretty base-noprelude bimap bytestring constraints containers 168597 168791 data-default first-class-families fmt interpolate lens morley ··· 176326 176520 ]; 176327 176521 description = "Miniature FORTH-like interpreter"; 176328 176522 license = lib.licenses.mit; 176329 - hydraPlatforms = lib.platforms.none; 176330 176523 }) {}; 176331 176524 176332 176525 "minilens" = callPackage ··· 177178 177371 ]; 177179 177372 description = "Generate cabal files for a Haskell project"; 177180 177373 license = "GPL"; 177181 - hydraPlatforms = lib.platforms.none; 177182 177374 }) {}; 177183 177375 177184 177376 "ml-w" = callPackage ··· 180238 180430 broken = true; 180239 180431 }) {}; 180240 180432 180433 + "monomer" = callPackage 180434 + ({ mkDerivation, aeson, async, attoparsec, base, bytestring 180435 + , bytestring-to-vector, c2hs, containers, data-default, directory 180436 + , exceptions, extra, formatting, GLEW, hspec, http-client, HUnit 180437 + , JuicyPixels, lens, mtl, nanovg, OpenGL, process, random, safe 180438 + , scientific, sdl2, silently, stm, text, text-show, time 180439 + , transformers, unordered-containers, vector, websockets, wreq 180440 + , wuss 180441 + }: 180442 + mkDerivation { 180443 + pname = "monomer"; 180444 + version = "1.0.0.0"; 180445 + sha256 = "136ja518hybhdl336772pyl5gfpvq7bzbm4gka53fmw3f42a1gkw"; 180446 + isLibrary = true; 180447 + isExecutable = true; 180448 + libraryHaskellDepends = [ 180449 + async attoparsec base bytestring bytestring-to-vector containers 180450 + data-default exceptions extra formatting http-client JuicyPixels 180451 + lens mtl nanovg OpenGL process safe sdl2 stm text text-show time 180452 + transformers unordered-containers vector wreq 180453 + ]; 180454 + librarySystemDepends = [ GLEW ]; 180455 + libraryToolDepends = [ c2hs ]; 180456 + executableHaskellDepends = [ 180457 + aeson async attoparsec base bytestring bytestring-to-vector 180458 + containers data-default exceptions extra formatting http-client 180459 + JuicyPixels lens mtl nanovg OpenGL process random safe scientific 180460 + sdl2 stm text text-show time transformers unordered-containers 180461 + vector websockets wreq wuss 180462 + ]; 180463 + testHaskellDepends = [ 180464 + async attoparsec base bytestring bytestring-to-vector containers 180465 + data-default directory exceptions extra formatting hspec 180466 + http-client HUnit JuicyPixels lens mtl nanovg OpenGL process safe 180467 + sdl2 silently stm text text-show time transformers 180468 + unordered-containers vector wreq 180469 + ]; 180470 + description = "A GUI library for writing native Haskell applications"; 180471 + license = lib.licenses.bsd3; 180472 + hydraPlatforms = lib.platforms.none; 180473 + }) {GLEW = null;}; 180474 + 180241 180475 "monomorphic" = callPackage 180242 180476 ({ mkDerivation, base }: 180243 180477 mkDerivation { ··· 180528 180762 }: 180529 180763 mkDerivation { 180530 180764 pname = "morley"; 180531 - version = "1.15.0"; 180532 - sha256 = "174wdjcwkfks7cl3hapm342bf7dgvnfhn6ma6fgdvjd7cag5h8z9"; 180765 + version = "1.15.1"; 180766 + sha256 = "03r6p37b9hw9n0b143d38z07fjv05jnbw76s1fjx92rm2ybbgh3p"; 180533 180767 isLibrary = true; 180534 180768 isExecutable = true; 180535 180769 libraryHaskellDepends = [ ··· 180561 180795 ({ mkDerivation, base-noprelude, lens, universum }: 180562 180796 mkDerivation { 180563 180797 pname = "morley-prelude"; 180564 - version = "0.4.1"; 180565 - sha256 = "19d9nxvdr26rmn197rhiwx7nryp6awsmyx6dz1lp9v2f376gs5dh"; 180798 + version = "0.4.2"; 180799 + sha256 = "0cmrs0hqrbwrmxycqk39csk0y7hswj2r6p1hgzrxyhy536szabby"; 180566 180800 libraryHaskellDepends = [ base-noprelude lens universum ]; 180567 180801 description = "A custom prelude used in Morley"; 180568 180802 license = lib.licenses.mit; ··· 181155 181389 description = "MPD/PowerMate executable"; 181156 181390 license = lib.licenses.bsd3; 181157 181391 hydraPlatforms = lib.platforms.none; 181392 + }) {}; 181393 + 181394 + "mpeff" = callPackage 181395 + ({ mkDerivation, base, ghc-prim, primitive }: 181396 + mkDerivation { 181397 + pname = "mpeff"; 181398 + version = "0.1.0.0"; 181399 + sha256 = "08i06akvjxgxspkz5lrfzyd7fx0pnajb0ksbm38zf66f7zm8dk54"; 181400 + libraryHaskellDepends = [ base ghc-prim primitive ]; 181401 + description = "Efficient effect handlers based on evidence-passing semantics"; 181402 + license = lib.licenses.mit; 181158 181403 }) {}; 181159 181404 181160 181405 "mpg123-bindings" = callPackage ··· 195099 195344 license = lib.licenses.bsd3; 195100 195345 }) {}; 195101 195346 195347 + "ormolu_0_2_0_0" = callPackage 195348 + ({ mkDerivation, ansi-terminal, base, bytestring, containers, Diff 195349 + , dlist, exceptions, filepath, ghc-lib-parser, gitrev, hspec 195350 + , hspec-discover, mtl, optparse-applicative, path, path-io, syb 195351 + , text 195352 + }: 195353 + mkDerivation { 195354 + pname = "ormolu"; 195355 + version = "0.2.0.0"; 195356 + sha256 = "0zivz7vcl4m1rjay5md6cdqac9cnfwz9c844l20byiz5h49bwfhb"; 195357 + isLibrary = true; 195358 + isExecutable = true; 195359 + libraryHaskellDepends = [ 195360 + ansi-terminal base bytestring containers Diff dlist exceptions 195361 + ghc-lib-parser mtl syb text 195362 + ]; 195363 + executableHaskellDepends = [ 195364 + base filepath ghc-lib-parser gitrev optparse-applicative text 195365 + ]; 195366 + testHaskellDepends = [ 195367 + base containers filepath hspec path path-io text 195368 + ]; 195369 + testToolDepends = [ hspec-discover ]; 195370 + description = "A formatter for Haskell source code"; 195371 + license = lib.licenses.bsd3; 195372 + hydraPlatforms = lib.platforms.none; 195373 + }) {}; 195374 + 195102 195375 "orthotope" = callPackage 195103 195376 ({ mkDerivation, base, deepseq, dlist, HUnit, pretty, QuickCheck 195104 195377 , test-framework, test-framework-hunit, test-framework-quickcheck2 ··· 202687 202960 ({ mkDerivation, base }: 202688 202961 mkDerivation { 202689 202962 pname = "phonetic-languages-rhythmicity"; 202690 - version = "0.5.2.0"; 202691 - sha256 = "05l2nj9rwz0cl3ig8ysi49jjhs7fngfww1rg10klrlg19whwf24j"; 202963 + version = "0.6.0.1"; 202964 + sha256 = "0rhn5xsqy4b330y17saa78v72dc7lq24y2k5p5r3xfbw621plwba"; 202692 202965 libraryHaskellDepends = [ base ]; 202693 202966 description = "Allows to estimate the rhythmicity properties for the text"; 202694 202967 license = lib.licenses.mit; ··· 202737 203010 }: 202738 203011 mkDerivation { 202739 203012 pname = "phonetic-languages-simplified-examples-array"; 202740 - version = "0.6.2.0"; 202741 - sha256 = "0h6zmvv8zfsaz29z5hyqjw2zcsrjcdxyl76cz8m0yiklinc5b2wb"; 203013 + version = "0.7.0.0"; 203014 + sha256 = "13v2wizjrnpwi7x42c9aqgsa5yr2x3blpmyqv9jkqxx7ksx0fbfg"; 202742 203015 isLibrary = true; 202743 203016 isExecutable = true; 202744 203017 libraryHaskellDepends = [ ··· 202799 203072 }: 202800 203073 mkDerivation { 202801 203074 pname = "phonetic-languages-simplified-generalized-examples-array"; 202802 - version = "0.6.2.0"; 202803 - sha256 = "03z076ml2wzi521f9p022khhzdg0ymhs52sapqcq6x5xx0x5plzz"; 203075 + version = "0.7.0.0"; 203076 + sha256 = "1qy4j61mkrkpa5451bzqg92jcbr77djn1jpvdd008pmvzijhnwqr"; 202804 203077 libraryHaskellDepends = [ 202805 203078 base heaps mmsyn2-array mmsyn3 parallel 202806 203079 phonetic-languages-constraints-array ··· 202838 203111 }: 202839 203112 mkDerivation { 202840 203113 pname = "phonetic-languages-simplified-generalized-properties-array"; 202841 - version = "0.4.2.0"; 202842 - sha256 = "09j5j79kclz32g59mbd0djq8hs1r17vy4mcb3n9zvs2ydlsyx2x2"; 203114 + version = "0.5.0.0"; 203115 + sha256 = "0hxlii3d522ikh6czh720p1x97ixjh3b4s16zr6a2vk3h6pkvqw4"; 202843 203116 libraryHaskellDepends = [ 202844 203117 base phonetic-languages-phonetics-basics 202845 203118 phonetic-languages-rhythmicity phonetic-languages-simplified-base ··· 202890 203163 }: 202891 203164 mkDerivation { 202892 203165 pname = "phonetic-languages-simplified-properties-array"; 202893 - version = "0.4.2.0"; 202894 - sha256 = "0mq7cdlqk6gz54pz394ns7fq3rz0jdwryy6r8kcfpf1qywb61b4s"; 203166 + version = "0.5.0.0"; 203167 + sha256 = "1zv3ax3idvlhvaspmsalrrw1816rf3w1sza3yscdv221yn1783g7"; 202895 203168 libraryHaskellDepends = [ 202896 203169 base phonetic-languages-rhythmicity 202897 203170 phonetic-languages-simplified-base ukrainian-phonetics-basic-array ··· 209284 209557 license = lib.licenses.mit; 209285 209558 }) {}; 209286 209559 209560 + "postgrest_8_0_0" = callPackage 209561 + ({ mkDerivation, aeson, aeson-qq, ansi-wl-pprint, async 209562 + , auto-update, base, base64-bytestring, bytestring 209563 + , case-insensitive, cassava, configurator-pg, containers 209564 + , contravariant, contravariant-extras, cookie, directory, either 209565 + , fast-logger, gitrev, hasql, hasql-dynamic-statements 209566 + , hasql-notifications, hasql-pool, hasql-transaction, heredoc 209567 + , hspec, hspec-wai, hspec-wai-json, HTTP, http-types 209568 + , insert-ordered-containers, interpolatedstring-perl6, jose, lens 209569 + , lens-aeson, monad-control, mtl, network, network-uri 209570 + , optparse-applicative, parsec, process, protolude, Ranged-sets 209571 + , regex-tdfa, retry, scientific, swagger2, text, time 209572 + , transformers-base, unix, unordered-containers, vector, wai 209573 + , wai-cors, wai-extra, wai-logger, wai-middleware-static, warp 209574 + }: 209575 + mkDerivation { 209576 + pname = "postgrest"; 209577 + version = "8.0.0"; 209578 + sha256 = "0ypgfpm8732rg94yiava27w1pyng9fg0zqad5nb94q1z402rfgfi"; 209579 + isLibrary = true; 209580 + isExecutable = true; 209581 + libraryHaskellDepends = [ 209582 + aeson ansi-wl-pprint auto-update base base64-bytestring bytestring 209583 + case-insensitive cassava configurator-pg containers contravariant 209584 + contravariant-extras cookie directory either fast-logger gitrev 209585 + hasql hasql-dynamic-statements hasql-notifications hasql-pool 209586 + hasql-transaction heredoc HTTP http-types insert-ordered-containers 209587 + interpolatedstring-perl6 jose lens lens-aeson mtl network 209588 + network-uri optparse-applicative parsec protolude Ranged-sets 209589 + regex-tdfa retry scientific swagger2 text time unix 209590 + unordered-containers vector wai wai-cors wai-extra wai-logger 209591 + wai-middleware-static warp 209592 + ]; 209593 + executableHaskellDepends = [ base containers protolude ]; 209594 + testHaskellDepends = [ 209595 + aeson aeson-qq async auto-update base base64-bytestring bytestring 209596 + case-insensitive cassava containers contravariant hasql 209597 + hasql-dynamic-statements hasql-pool hasql-transaction heredoc hspec 209598 + hspec-wai hspec-wai-json http-types lens lens-aeson monad-control 209599 + process protolude regex-tdfa text time transformers-base wai 209600 + wai-extra 209601 + ]; 209602 + description = "REST API for any Postgres database"; 209603 + license = lib.licenses.mit; 209604 + hydraPlatforms = lib.platforms.none; 209605 + }) {}; 209606 + 209287 209607 "postgrest-ws" = callPackage 209288 209608 ({ mkDerivation, aeson, ansi-wl-pprint, base, base64-bytestring 209289 209609 , bytestring, configurator, containers, contravariant, either ··· 216037 216357 ]; 216038 216358 description = "A package for prompting values from the command-line"; 216039 216359 license = lib.licenses.mit; 216040 - hydraPlatforms = lib.platforms.none; 216041 216360 }) {}; 216042 216361 216043 216362 "queue" = callPackage ··· 219794 220113 librarySystemDepends = [ ncurses readline ]; 219795 220114 description = "An interface to the GNU readline library"; 219796 220115 license = "GPL"; 219797 - hydraPlatforms = lib.platforms.none; 219798 - broken = true; 219799 220116 }) {inherit (pkgs) ncurses; inherit (pkgs) readline;}; 219800 220117 219801 220118 "readline-statevar" = callPackage ··· 219807 220124 libraryHaskellDepends = [ base readline StateVar ]; 219808 220125 description = "Readline with variables (setX/getY) wrapped in state vars"; 219809 220126 license = lib.licenses.bsd3; 219810 - hydraPlatforms = lib.platforms.none; 219811 220127 }) {}; 219812 220128 219813 220129 "readme-lhs" = callPackage ··· 224257 224573 broken = true; 224258 224574 }) {}; 224259 224575 224576 + "req-conduit_1_0_1" = callPackage 224577 + ({ mkDerivation, base, bytestring, conduit, conduit-extra, hspec 224578 + , hspec-discover, http-client, req, resourcet, temporary 224579 + , transformers, weigh 224580 + }: 224581 + mkDerivation { 224582 + pname = "req-conduit"; 224583 + version = "1.0.1"; 224584 + sha256 = "0zyy9j6iiz8z2jdx25vp77arfbmrck7bjndm3p4s9l9399c5bm62"; 224585 + libraryHaskellDepends = [ 224586 + base bytestring conduit http-client req resourcet transformers 224587 + ]; 224588 + testHaskellDepends = [ 224589 + base bytestring conduit conduit-extra hspec req resourcet temporary 224590 + transformers 224591 + ]; 224592 + testToolDepends = [ hspec-discover ]; 224593 + benchmarkHaskellDepends = [ 224594 + base bytestring conduit conduit-extra req resourcet temporary weigh 224595 + ]; 224596 + description = "Conduit helpers for the req HTTP client library"; 224597 + license = lib.licenses.bsd3; 224598 + hydraPlatforms = lib.platforms.none; 224599 + broken = true; 224600 + }) {}; 224601 + 224260 224602 "req-oauth2" = callPackage 224261 224603 ({ mkDerivation, aeson, base, base64-bytestring, bytestring 224262 224604 , data-default-class, hspec, http-client, http-types, lens ··· 226195 226537 ]; 226196 226538 description = "A standard library for Haskell"; 226197 226539 license = lib.licenses.mit; 226540 + }) {}; 226541 + 226542 + "rio_0_1_21_0" = callPackage 226543 + ({ mkDerivation, base, bytestring, containers, deepseq, directory 226544 + , exceptions, filepath, hashable, hspec, hspec-discover, microlens 226545 + , microlens-mtl, mtl, primitive, process, QuickCheck, text, time 226546 + , typed-process, unix, unliftio, unliftio-core 226547 + , unordered-containers, vector 226548 + }: 226549 + mkDerivation { 226550 + pname = "rio"; 226551 + version = "0.1.21.0"; 226552 + sha256 = "013m4xgsmg8h1rba9krxppz49lc5wz26gksms5zibsjj0w59m58h"; 226553 + libraryHaskellDepends = [ 226554 + base bytestring containers deepseq directory exceptions filepath 226555 + hashable microlens microlens-mtl mtl primitive process text time 226556 + typed-process unix unliftio unliftio-core unordered-containers 226557 + vector 226558 + ]; 226559 + testHaskellDepends = [ 226560 + base bytestring containers deepseq directory exceptions filepath 226561 + hashable hspec microlens microlens-mtl mtl primitive process 226562 + QuickCheck text time typed-process unix unliftio unliftio-core 226563 + unordered-containers vector 226564 + ]; 226565 + testToolDepends = [ hspec-discover ]; 226566 + description = "A standard library for Haskell"; 226567 + license = lib.licenses.mit; 226568 + hydraPlatforms = lib.platforms.none; 226198 226569 }) {}; 226199 226570 226200 226571 "rio-app" = callPackage ··· 244946 245317 license = lib.licenses.bsd3; 244947 245318 }) {}; 244948 245319 245320 + "snowchecked" = callPackage 245321 + ({ mkDerivation, base, bytestring, data-default, deepseq, hedgehog 245322 + , time, wide-word 245323 + }: 245324 + mkDerivation { 245325 + pname = "snowchecked"; 245326 + version = "0.0.0.3"; 245327 + sha256 = "08a4v3i3ky4vbllag7wmmf4qbnf6dan93h7ipcngxk9vhx9wh4vh"; 245328 + libraryHaskellDepends = [ 245329 + base bytestring data-default deepseq time wide-word 245330 + ]; 245331 + testHaskellDepends = [ 245332 + base bytestring data-default deepseq hedgehog time wide-word 245333 + ]; 245334 + description = "A checksummed variation on Twitter's Snowflake UID generation algorithm"; 245335 + license = lib.licenses.asl20; 245336 + }) {}; 245337 + 244949 245338 "snowflake" = callPackage 244950 245339 ({ mkDerivation, base, time }: 244951 245340 mkDerivation { ··· 245396 245785 245397 245786 "solana-staking-csvs" = callPackage 245398 245787 ({ mkDerivation, aeson, base, bytestring, cassava, cmdargs 245399 - , hedgehog, mtl, req, scientific, tasty, tasty-hedgehog 245400 - , tasty-hunit, text, time 245788 + , cointracking-imports, hedgehog, mtl, req, scientific, tasty 245789 + , tasty-hedgehog, tasty-hunit, text, time 245401 245790 }: 245402 245791 mkDerivation { 245403 245792 pname = "solana-staking-csvs"; 245404 - version = "0.1.0.0"; 245405 - sha256 = "1rswlfanbkh6k3f8dnnlrh9wbk8qbi87c61bi30ndw7gndf3gyqj"; 245406 - revision = "1"; 245407 - editedCabalFile = "0n83h717zi900ph65imqi5z7va00nm492g911m25j0hgnrj0wd06"; 245793 + version = "0.1.1.0"; 245794 + sha256 = "0ya63vgh0nf4p7hz6fj38m44wr77jj76bf2qxdgra3lpiziqsjd5"; 245408 245795 isLibrary = true; 245409 245796 isExecutable = true; 245410 245797 libraryHaskellDepends = [ 245411 - aeson base bytestring cassava cmdargs mtl req scientific text time 245798 + aeson base bytestring cassava cmdargs cointracking-imports mtl req 245799 + scientific text time 245412 245800 ]; 245413 245801 executableHaskellDepends = [ base ]; 245414 245802 testHaskellDepends = [ ··· 254852 255240 ]; 254853 255241 description = "Clojure without alphanumerics"; 254854 255242 license = lib.licenses.lgpl3Only; 254855 - hydraPlatforms = lib.platforms.none; 254856 255243 }) {}; 254857 255244 254858 255245 "sweet-egison" = callPackage ··· 255112 255499 hydraPlatforms = lib.platforms.none; 255113 255500 }) {}; 255114 255501 255115 - "sydtest_0_3_0_2" = callPackage 255502 + "sydtest_0_3_0_3" = callPackage 255116 255503 ({ mkDerivation, async, base, bytestring, containers, Diff, dlist 255117 255504 , envparse, filepath, MonadRandom, mtl, optparse-applicative, path 255118 255505 , path-io, pretty-show, QuickCheck, quickcheck-io, random-shuffle ··· 255121 255508 }: 255122 255509 mkDerivation { 255123 255510 pname = "sydtest"; 255124 - version = "0.3.0.2"; 255125 - sha256 = "1823g9czwgf0p0jyxlddqwnpwhs3622892c9ah6cacvl9xfl3sg9"; 255511 + version = "0.3.0.3"; 255512 + sha256 = "1h6x9k5shpsp028d5mhi03pgzg324qglapk1nick1cnr0njr7v7w"; 255126 255513 libraryHaskellDepends = [ 255127 255514 async base bytestring containers Diff dlist envparse filepath 255128 255515 MonadRandom mtl optparse-applicative path path-io pretty-show ··· 261813 262200 broken = true; 261814 262201 }) {}; 261815 262202 261816 - "text_1_2_4_1" = callPackage 261817 - ({ mkDerivation, array, base, binary, bytestring, deepseq, ghc-prim 261818 - , integer-gmp, template-haskell 262203 + "text_1_2_5_0" = callPackage 262204 + ({ mkDerivation, array, base, binary, bytestring, bytestring-lexing 262205 + , containers, deepseq, directory, filepath, ghc-prim, QuickCheck 262206 + , quickcheck-unicode, random, stringsearch, tasty, tasty-bench 262207 + , tasty-hunit, tasty-inspection-testing, tasty-quickcheck 262208 + , template-haskell, transformers, vector 261819 262209 }: 261820 262210 mkDerivation { 261821 262211 pname = "text"; 261822 - version = "1.2.4.1"; 261823 - sha256 = "0bnb4g5lpranra58zpwqh14hvwdh6zc4nz3hwppzrpdahi10s7hv"; 262212 + version = "1.2.5.0"; 262213 + sha256 = "0wwgsq7px8cvmqj3264132xsbj6b92j6mfgd1jlk08vdl8hmx821"; 261824 262214 libraryHaskellDepends = [ 261825 - array base binary bytestring deepseq ghc-prim integer-gmp 262215 + array base binary bytestring deepseq ghc-prim template-haskell 262216 + ]; 262217 + testHaskellDepends = [ 262218 + base bytestring deepseq directory QuickCheck quickcheck-unicode 262219 + random tasty tasty-hunit tasty-inspection-testing tasty-quickcheck 261826 262220 template-haskell 262221 + ]; 262222 + benchmarkHaskellDepends = [ 262223 + base binary bytestring bytestring-lexing containers deepseq 262224 + filepath stringsearch tasty-bench transformers vector 261827 262225 ]; 261828 262226 doCheck = false; 261829 262227 description = "An efficient packed Unicode text type"; ··· 267056 267454 ({ mkDerivation, base, filepath, hspec, profunctors, text }: 267057 267455 mkDerivation { 267058 267456 pname = "tophat"; 267059 - version = "1.0.3.0"; 267060 - sha256 = "07ph3jh84wq9373kzw5xv4gzk2wcq9dj5akw5a79lhzphl9py7w0"; 267457 + version = "1.0.4.0"; 267458 + sha256 = "1hzppwrdqz4l88r33m1gh9kzialjq82m1mhzqzzlsaicy5ps84zw"; 267061 267459 isLibrary = true; 267062 267460 isExecutable = true; 267063 267461 libraryHaskellDepends = [ base profunctors text ]; ··· 270613 271011 ]; 270614 271012 description = "A Haskell-based CLI Twitter client"; 270615 271013 license = lib.licenses.bsd3; 270616 - hydraPlatforms = lib.platforms.none; 270617 271014 }) {}; 270618 271015 270619 271016 "twitter-conduit" = callPackage ··· 280813 281210 license = lib.licenses.mit; 280814 281211 }) {}; 280815 281212 281213 + "wai-middleware-auth_0_2_5_1" = callPackage 281214 + ({ mkDerivation, aeson, base, base64-bytestring, binary 281215 + , blaze-builder, blaze-html, bytestring, case-insensitive, cereal 281216 + , clientsession, cookie, exceptions, hedgehog, hoauth2, http-client 281217 + , http-client-tls, http-conduit, http-reverse-proxy, http-types 281218 + , jose, microlens, mtl, optparse-applicative, optparse-simple 281219 + , regex-posix, safe-exceptions, shakespeare, tasty, tasty-hedgehog 281220 + , tasty-hunit, text, time, unix-compat, unordered-containers 281221 + , uri-bytestring, vault, wai, wai-app-static, wai-extra, warp, yaml 281222 + }: 281223 + mkDerivation { 281224 + pname = "wai-middleware-auth"; 281225 + version = "0.2.5.1"; 281226 + sha256 = "0ch9vh14bhnf7g789rbqqgnn3q2nc892xs73kf7k6l8n9p2md0yd"; 281227 + isLibrary = true; 281228 + isExecutable = true; 281229 + libraryHaskellDepends = [ 281230 + aeson base base64-bytestring binary blaze-builder blaze-html 281231 + bytestring case-insensitive cereal clientsession cookie exceptions 281232 + hoauth2 http-client http-client-tls http-conduit http-reverse-proxy 281233 + http-types jose microlens mtl regex-posix safe-exceptions 281234 + shakespeare text time unix-compat unordered-containers 281235 + uri-bytestring vault wai wai-app-static wai-extra yaml 281236 + ]; 281237 + executableHaskellDepends = [ 281238 + base bytestring cereal clientsession optparse-applicative 281239 + optparse-simple wai-extra warp 281240 + ]; 281241 + testHaskellDepends = [ 281242 + aeson base binary bytestring clientsession cookie hedgehog hoauth2 281243 + http-types jose microlens mtl tasty tasty-hedgehog tasty-hunit text 281244 + time uri-bytestring wai wai-extra warp 281245 + ]; 281246 + description = "Authentication middleware that secures WAI application"; 281247 + license = lib.licenses.mit; 281248 + hydraPlatforms = lib.platforms.none; 281249 + }) {}; 281250 + 280816 281251 "wai-middleware-brotli" = callPackage 280817 281252 ({ mkDerivation, base, binary, bytestring, directory, filepath 280818 281253 , hs-brotli, http-types, mtl, tasty, tasty-hspec, tasty-hunit, unix ··· 284790 285225 }: 284791 285226 mkDerivation { 284792 285227 pname = "wkt-geom"; 284793 - version = "0.0.11"; 284794 - sha256 = "19mcfs9php03g3kb7pgfxcpilvmq5bxbyfkx59mk41nx6f0jfl0d"; 285228 + version = "0.0.12"; 285229 + sha256 = "118wl1g1p4cqbqil0swr5n0czwd5wi2qqngjwdggrhkspzmqbqd1"; 284795 285230 libraryHaskellDepends = [ 284796 285231 base base16-bytestring binary bytestring containers geojson 284797 285232 scientific trifecta utf8-string vector
+8
pkgs/development/haskell-modules/patches/readline-fix-for-cabal-3.patch
··· 1 + --- a/Setup.hs 2021-02-04 14:01:09.557970245 +0100 2 + +++ b/Setup.hs 2021-02-04 14:07:45.047443753 +0100 3 + @@ -3,4 +3,4 @@ 4 + import Distribution.Simple 5 + 6 + main :: IO () 7 + -main = defaultMainWithHooks defaultUserHooks 8 + +main = defaultMainWithHooks autoconfUserHooks
-39
pkgs/development/libraries/boost/1.67.nix
··· 1 - { lib, stdenv, callPackage, fetchurl, fetchpatch, ... } @ args: 2 - 3 - callPackage ./generic.nix (args // { 4 - version = "1.67.0"; 5 - 6 - patches = [ 7 - (fetchpatch { 8 - url = "https://github.com/boostorg/lockfree/commit/12726cda009a855073b9bedbdce57b6ce7763da2.patch"; 9 - sha256 = "0x65nkwzv8fdacj8sw5njl3v63jj19dirrpklbwy6qpsncw7fc7h"; 10 - stripLen = 1; 11 - }) 12 - ] ++ lib.optionals stdenv.cc.isClang [ 13 - # Fixes https://github.com/boostorg/atomic/issues/15 14 - (fetchpatch { 15 - url = "https://github.com/boostorg/atomic/commit/6e14ca24dab50ad4c1fa8c27c7dd6f1cb791b534.patch"; 16 - sha256 = "102g35ygvv8cxagp9651284xk4vybk93q2fm577y4mdxf5k46b7a"; 17 - stripLen = 1; 18 - }) 19 - 20 - # Needed for the next patch 21 - (fetchpatch { 22 - url = "https://github.com/boostorg/asio/commit/38cb19719748ad56b14d73ca1fff5828f36e5894.patch"; 23 - sha256 = "0cj9cxz9rfbsx8p8f5alxx00dq3r7g0vh23j68bbxbs9gq1arq2n"; 24 - stripLen = 1; 25 - }) 26 - # Fixes https://github.com/boostorg/asio/pull/91 27 - (fetchpatch { 28 - url = "https://github.com/boostorg/asio/commit/43874d5497414c67655d901e48c939ef01337edb.patch"; 29 - sha256 = "1c2ds164s2ygvpb4785p4ncv8ywbpm08cphirb99xp4mqvb693is"; 30 - stripLen = 1; 31 - }) 32 - ]; 33 - 34 - src = fetchurl { 35 - url = "mirror://sourceforge/boost/boost_1_67_0.tar.bz2"; 36 - # SHA256 from http://www.boost.org/users/history/version_1_66_0.html 37 - sha256 = "2684c972994ee57fc5632e03bf044746f6eb45d4920c343937a465fd67a5adba"; 38 - }; 39 - })
+14 -4
pkgs/development/libraries/cmark/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cmark"; ··· 11 11 sha256 = "sha256-UjDM2N6gCwO94F1nW3qCP9JX42MYAicAuGTKAXMy1Gg="; 12 12 }; 13 13 14 + patches = [ 15 + # Fix libcmark.pc paths (should be incorporated next release) 16 + (fetchpatch { 17 + url = "https://github.com/commonmark/cmark/commit/15762d7d391483859c241cdf82b1615c6b6a5a19.patch"; 18 + sha256 = "sha256-wdyK1tQolgfiwYMAaWMQZdCSbMDCijug5ykpoDl/HwI="; 19 + }) 20 + ]; 21 + 14 22 nativeBuildInputs = [ cmake ]; 15 23 16 24 cmakeFlags = [ ··· 19 27 "-DCMARK_STATIC=OFF" 20 28 ]; 21 29 22 - doCheck = !stdenv.isDarwin; 30 + doCheck = true; 23 31 24 - preCheck = '' 25 - export LD_LIBRARY_PATH=$(readlink -f ./src) 32 + preCheck = let 33 + lib_path = if stdenv.isDarwin then "DYLD_FALLBACK_LIBRARY_PATH" else "LD_LIBRARY_PATH"; 34 + in '' 35 + export ${lib_path}=$(readlink -f ./src) 26 36 ''; 27 37 28 38 meta = with lib; {
+2
pkgs/development/libraries/enchant/2.x.nix
··· 5 5 , glib 6 6 , hunspell 7 7 , hspell 8 + , nuspell 8 9 , unittest-cpp 9 10 }: 10 11 ··· 26 27 buildInputs = [ 27 28 glib 28 29 hunspell 30 + nuspell 29 31 ]; 30 32 31 33 checkInputs = [
+20 -24
pkgs/development/libraries/freetype/default.nix
··· 9 9 useEncumberedCode ? true 10 10 }: 11 11 12 - let 13 - inherit (lib) optional optionalString; 14 12 15 - in stdenv.mkDerivation rec { 13 + stdenv.mkDerivation rec { 16 14 pname = "freetype"; 17 15 version = "2.11.0"; 18 16 19 - meta = with lib; { 20 - description = "A font rendering engine"; 21 - longDescription = '' 22 - FreeType is a portable and efficient library for rendering fonts. It 23 - supports TrueType, Type 1, CFF fonts, and WOFF, PCF, FNT, BDF and PFR 24 - fonts. It has a bytecode interpreter and has an automatic hinter called 25 - autofit which can be used instead of hinting instructions included in 26 - fonts. 27 - ''; 28 - homepage = "https://www.freetype.org/"; 29 - license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause) 30 - platforms = platforms.all; 31 - maintainers = with maintainers; [ ttuegel ]; 32 - }; 33 - 34 17 src = fetchurl { 35 18 url = "mirror://savannah/${pname}/${pname}-${version}.tar.xz"; 36 19 sha256 = "sha256-i+45vTloxIBLcGFKCjrVlyma0OgkvIqtXOiq9IBnvec="; ··· 41 24 # dependence on harfbuzz is looser than the reverse dependence 42 25 nativeBuildInputs = [ pkg-config which makeWrapper ] 43 26 # FreeType requires GNU Make, which is not part of stdenv on FreeBSD. 44 - ++ optional (!stdenv.isLinux) gnumake; 27 + ++ lib.optional (!stdenv.isLinux) gnumake; 45 28 46 - patches = 47 - [ ./enable-table-validation.patch 48 - ] ++ 49 - optional useEncumberedCode ./enable-subpixel-rendering.patch; 29 + patches = [ 30 + ./enable-table-validation.patch 31 + ] ++ lib.optional useEncumberedCode ./enable-subpixel-rendering.patch; 50 32 51 33 outputs = [ "out" "dev" ]; 52 34 ··· 56 38 CC_BUILD = "${buildPackages.stdenv.cc}/bin/cc"; 57 39 58 40 # The asm for armel is written with the 'asm' keyword. 59 - CFLAGS = optionalString stdenv.isAarch32 "-std=gnu99"; 41 + CFLAGS = lib.optionalString stdenv.isAarch32 "-std=gnu99"; 60 42 61 43 enableParallelBuilding = true; 62 44 ··· 70 52 --set PKG_CONFIG_PATH "$PKG_CONFIG_PATH:$dev/lib/pkgconfig" 71 53 ''; 72 54 55 + meta = with lib; { 56 + description = "A font rendering engine"; 57 + longDescription = '' 58 + FreeType is a portable and efficient library for rendering fonts. It 59 + supports TrueType, Type 1, CFF fonts, and WOFF, PCF, FNT, BDF and PFR 60 + fonts. It has a bytecode interpreter and has an automatic hinter called 61 + autofit which can be used instead of hinting instructions included in 62 + fonts. 63 + ''; 64 + homepage = "https://www.freetype.org/"; 65 + license = licenses.gpl2Plus; # or the FreeType License (BSD + advertising clause) 66 + platforms = platforms.all; 67 + maintainers = with maintainers; [ ttuegel ]; 68 + }; 73 69 }
+54 -23
pkgs/development/libraries/graphene-hardened-malloc/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl, python3, runCommand, makeWrapper, stress-ng }: 2 2 3 - stdenv.mkDerivation rec { 3 + lib.fix (self: stdenv.mkDerivation rec { 4 4 pname = "graphene-hardened-malloc"; 5 - version = "2"; 5 + version = "8"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/GrapheneOS/hardened_malloc/archive/${version}.tar.gz"; 9 - sha256 = "0zsl4vl65ic6lw5rzcjzvcxg8makg683abnwvy60zfap8hvijvjb"; 9 + sha256 = "0lipyd2pb1bmghkyv9zmg25jwcglj7m281f01zlh3ghz3xlfh0ym"; 10 10 }; 11 11 12 + doCheck = true; 13 + checkInputs = [ python3 ]; 14 + # these tests cover use as a build-time-linked library 15 + checkPhase = '' 16 + make test 17 + ''; 18 + 12 19 installPhase = '' 20 + install -Dm444 -t $out/include include/* 13 21 install -Dm444 -t $out/lib libhardened_malloc.so 14 22 15 23 mkdir -p $out/bin ··· 19 27 20 28 separateDebugInfo = true; 21 29 22 - doInstallCheck = true; 23 - installCheckPhase = '' 24 - pushd test 25 - make 26 - $out/bin/preload-hardened-malloc ./offset 30 + passthru = { 31 + ld-preload-tests = stdenv.mkDerivation { 32 + name = "${self.name}-ld-preload-tests"; 33 + src = self.src; 27 34 28 - pushd simple-memory-corruption 29 - make 35 + nativeBuildInputs = [ makeWrapper ]; 30 36 31 - # these tests don't actually appear to generate overflows currently 32 - rm read_after_free_small string_overflow eight_byte_overflow_large 37 + # reuse the projects tests to cover use with LD_PRELOAD. we have 38 + # to convince the test programs to build as though they're naive 39 + # standalone executables. this includes disabling tests for 40 + # malloc_object_size, which doesn't make sense to use via LD_PRELOAD. 41 + buildPhase = '' 42 + pushd test/simple-memory-corruption 43 + make LDLIBS= LDFLAGS=-Wl,--unresolved-symbols=ignore-all CXXFLAGS=-lstdc++ 44 + substituteInPlace test_smc.py \ 45 + --replace 'test_malloc_object_size' 'dont_test_malloc_object_size' \ 46 + --replace 'test_invalid_malloc_object_size' 'dont_test_invalid_malloc_object_size' 47 + popd # test/simple-memory-corruption 48 + ''; 33 49 34 - for t in `find . -regex ".*/[a-z_]+"` ; do 35 - echo "Running $t..." 36 - # the program being aborted (as it should be) would result in an exit code > 128 37 - (($out/bin/preload-hardened-malloc $t) && false) \ 38 - || (test $? -gt 128 || (echo "$t was not aborted" && false)) 39 - done 40 - popd 50 + installPhase = '' 51 + mkdir -p $out/test 52 + cp -r test/simple-memory-corruption $out/test/simple-memory-corruption 41 53 42 - popd 43 - ''; 54 + mkdir -p $out/bin 55 + makeWrapper ${python3.interpreter} $out/bin/run-tests \ 56 + --add-flags "-I -m unittest discover --start-directory $out/test/simple-memory-corruption" 57 + ''; 58 + }; 59 + tests = { 60 + ld-preload = runCommand "ld-preload-test-run" {} '' 61 + ${self}/bin/preload-hardened-malloc ${self.ld-preload-tests}/bin/run-tests 62 + touch $out 63 + ''; 64 + # to compensate for the lack of tests of correct normal malloc operation 65 + stress = runCommand "stress-test-run" {} '' 66 + ${self}/bin/preload-hardened-malloc ${stress-ng}/bin/stress-ng \ 67 + --no-rand-seed \ 68 + --malloc 8 \ 69 + --malloc-ops 1000000 \ 70 + --verify 71 + touch $out 72 + ''; 73 + }; 74 + }; 44 75 45 76 meta = with lib; { 46 77 homepage = "https://github.com/GrapheneOS/hardened_malloc"; ··· 54 85 maintainers = with maintainers; [ ris ]; 55 86 platforms = [ "x86_64-linux" "aarch64-linux" ]; 56 87 }; 57 - } 88 + })
+10 -3
pkgs/development/libraries/gusb/default.nix
··· 1 - { lib, stdenv, fetchurl, meson, ninja, pkg-config, gettext, gobject-introspection 1 + { lib, stdenv, fetchurl, substituteAll, meson, ninja, pkg-config, gettext, gobject-introspection 2 2 , gtk-doc, docbook_xsl, docbook_xml_dtd_412, docbook_xml_dtd_44, python3 3 3 , glib, systemd, libusb1, vala, hwdata 4 4 }: ··· 10 10 in 11 11 stdenv.mkDerivation rec { 12 12 pname = "gusb"; 13 - version = "0.3.5"; 13 + version = "0.3.7"; 14 14 15 15 outputs = [ "bin" "out" "dev" "devdoc" ]; 16 16 17 17 src = fetchurl { 18 18 url = "https://people.freedesktop.org/~hughsient/releases/libgusb-${version}.tar.xz"; 19 - sha256 = "1pv5ivbwxb9anq2j34i68r8fgs8nwsi4hmss7h9v1i3wk7300ajv"; 19 + sha256 = "sha256-2l8l1oc2ImibM1FIbL4CjvwlRAP2Rt2BIl3+hULYxn0="; 20 20 }; 21 + 22 + patches = [ 23 + (substituteAll { 24 + src = ./fix-python-path.patch; 25 + python = "${pythonEnv}/bin/python3"; 26 + }) 27 + ]; 21 28 22 29 nativeBuildInputs = [ 23 30 meson ninja pkg-config gettext pythonEnv
+14
pkgs/development/libraries/gusb/fix-python-path.patch
··· 1 + diff --git a/gusb/meson.build b/gusb/meson.build 2 + index 8236a2b..282aa48 100644 3 + --- a/gusb/meson.build 4 + +++ b/gusb/meson.build 5 + @@ -147,7 +147,7 @@ libgusb_gir = libgusb_girtarget[0] 6 + libgusb_typelib = libgusb_girtarget[1] 7 + 8 + pymod = import('python') 9 + -py_installation = pymod.find_installation() 10 + +py_installation = pymod.find_installation('@python@') 11 + 12 + # Verify the map file is correct -- note we can't actually use the generated 13 + # file for two reasons: 14 +
+1 -1
pkgs/development/libraries/libopus/default.nix
··· 15 15 configureFlags = lib.optional fixedPoint "--enable-fixed-point" 16 16 ++ lib.optional withCustomModes "--enable-custom-modes"; 17 17 18 - doCheck = !stdenv.isi686; # test_unit_LPC_inv_pred_gain fails 18 + doCheck = !stdenv.isi686 && !stdenv.isAarch32; # test_unit_LPC_inv_pred_gain fails 19 19 20 20 meta = with lib; { 21 21 description = "Open, royalty-free, highly versatile audio codec";
+1 -1
pkgs/development/libraries/libtins/default.nix
··· 13 13 14 14 postPatch = '' 15 15 rm -rf googletest 16 - cp -r ${gtest.src}/googletest googletest 16 + cp -r ${gtest.src} googletest 17 17 chmod -R a+w googletest 18 18 ''; 19 19
+12
pkgs/development/libraries/openssl/1.0.2/darwin64-arm64.patch
··· 1 + diff --git a/Configure b/Configure 2 + index 494e0b3..0b448aa 100755 3 + --- a/Configure 4 + +++ b/Configure 5 + @@ -652,6 +652,8 @@ my %table=( 6 + "darwin64-x86_64-cc","cc:-arch x86_64 -O3 -DL_ENDIAN -Wall::-D_REENTRANT:MACOSX:-Wl,-search_paths_first%:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:".eval{my $asm=$x86_64_asm;$asm=~s/rc4\-[^:]+//;$asm}.":macosx:dlfcn:darwin-shared:-fPIC -fno-common:-arch x86_64 -dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", 7 + "debug-darwin64-x86_64-cc","cc:-arch x86_64 -ggdb -g2 -O0 -DL_ENDIAN -Wall::-D_REENTRANT:MACOSX:-Wl,-search_paths_first%:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:".eval{my $asm=$x86_64_asm;$asm=~s/rc4\-[^:]+//;$asm}.":macosx:dlfcn:darwin-shared:-fPIC -fno-common:-arch x86_64 -dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", 8 + "debug-darwin-ppc-cc","cc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DB_ENDIAN -g -Wall -O::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${ppc32_asm}:osx32:dlfcn:darwin-shared:-fPIC:-dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", 9 + +"darwin64-arm64-cc","cc:-arch arm64 -O3 -DL_ENDIAN -Wall::-D_REENTRANT:MACOSX:-Wl,-search_paths_first%:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${no_asm}:dlfcn:darwin-shared:-fPIC -fno-common:-arch arm64 -dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", 10 + +"debug-darwin64-arm64-cc","cc:-arch arm64 -ggdb -g2 -O0 -DL_ENDIAN -Wall::-D_REENTRANT:MACOSX:-Wl,-search_paths_first%:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${no_asm}:dlfcn:darwin-shared:-fPIC -fno-common:-arch arm64 -dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", 11 + # iPhoneOS/iOS 12 + "iphoneos-cross","llvm-gcc:-O3 -isysroot \$(CROSS_TOP)/SDKs/\$(CROSS_SDK) -fomit-frame-pointer -fno-common::-D_REENTRANT:iOS:-Wl,-search_paths_first%:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${no_asm}:dlfcn:darwin-shared:-fPIC -fno-common:-dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib",
+2
pkgs/development/libraries/openssl/default.nix
··· 185 185 (if stdenv.hostPlatform.isDarwin 186 186 then ./1.0.2/use-etc-ssl-certs-darwin.patch 187 187 else ./1.0.2/use-etc-ssl-certs.patch) 188 + ] ++ lib.optionals (stdenv.hostPlatform.system == "aarch64-darwin") [ 189 + ./1.0.2/darwin64-arm64.patch 188 190 ]; 189 191 extraMeta.knownVulnerabilities = [ "Support for OpenSSL 1.0.2 ended with 2019." ]; 190 192 };
+2 -2
pkgs/development/libraries/openxr-loader/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "openxr-loader"; 5 - version = "1.0.14"; 5 + version = "1.0.18"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "KhronosGroup"; 9 9 repo = "OpenXR-SDK-Source"; 10 10 rev = "release-${version}"; 11 - sha256 = "sha256-ZmaxHm4MPd2q83PLduoavoynqRPEI79IpMfW32gkV14="; 11 + sha256 = "sha256-Ek4gFL10/aRciCoJBNaaSX/Hdbap4X/K4k+KeAfpKDg="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake python3 ];
+23 -2
pkgs/development/lisp-modules/shell.nix
··· 10 10 freetds 11 11 lispPackages.quicklisp-to-nix lispPackages.quicklisp-to-nix-system-info 12 12 ]; 13 - CPATH = "${libfixposix}/include"; 14 - LD_LIBRARY_PATH = "${openssl.out}/lib:${fuse}/lib:${libuv}/lib:${libev}/lib:${libmysqlclient}/lib:${libmysqlclient}/lib/mysql:${postgresql.lib}/lib:${sqlite.out}/lib:${libfixposix}/lib:${freetds}/lib:${openssl_lib_marked}/lib:${glib.out}/lib:${gdk-pixbuf}/lib:${cairo}/lib:${pango.out}/lib:${gtk3}/lib:${webkitgtk}/lib:${gobject-introspection}/lib"; 13 + CPATH = lib.makeSearchPath "include" 14 + [ libfixposix 15 + ]; 16 + LD_LIBRARY_PATH = lib.makeLibraryPath 17 + [ cairo 18 + freetds 19 + fuse 20 + gdk-pixbuf 21 + glib 22 + gobject-introspection 23 + gtk3 24 + libev 25 + libfixposix 26 + libmysqlclient 27 + libuv 28 + openssl 29 + openssl_lib_marked 30 + pango 31 + postgresql 32 + sqlite 33 + webkitgtk 34 + ] 35 + + ":${libmysqlclient}/lib/mysql"; 15 36 }; 16 37 in stdenv.mkDerivation self
pkgs/development/misc/stm32/betaflight/default.nix pkgs/development/embedded/stm32/betaflight/default.nix
pkgs/development/misc/stm32/inav/default.nix pkgs/development/embedded/stm32/inav/default.nix
+1218 -977
pkgs/development/node-packages/node-packages.nix
··· 238 238 sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w=="; 239 239 }; 240 240 }; 241 - "@apollo/client-3.4.7" = { 241 + "@apollo/client-3.4.8" = { 242 242 name = "_at_apollo_slash_client"; 243 243 packageName = "@apollo/client"; 244 - version = "3.4.7"; 244 + version = "3.4.8"; 245 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.7.tgz"; 247 - sha512 = "EmqGxXD8hr05cIFWJFwtGXifc+Lo8hTCEuiaQMtKknHszJfqIFXSxqP+H+eJnjfuoxH74aTSsZKtJlnE83Vt6w=="; 246 + url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.8.tgz"; 247 + sha512 = "/cNqTSwc2Dw8q6FDDjdd30+yvhP7rI0Fvl3Hbro0lTtFuhzkevfNyQaI2jAiOrjU6Jc0RbanxULaNrX7UmvjSQ=="; 248 248 }; 249 249 }; 250 250 "@apollo/protobufjs-1.2.2" = { ··· 1651 1651 sha512 = "3E4/6sCLEcoPUk6FJHOpLGqBNSE2AHrIrErXKRFU3je/MZotxvWrfrZY3IsENJgjJ69Zv0dxMxTZo/l+BVNa3w=="; 1652 1652 }; 1653 1653 }; 1654 - "@chemzqm/neovim-5.3.4" = { 1654 + "@chemzqm/neovim-5.3.5" = { 1655 1655 name = "_at_chemzqm_slash_neovim"; 1656 1656 packageName = "@chemzqm/neovim"; 1657 - version = "5.3.4"; 1657 + version = "5.3.5"; 1658 1658 src = fetchurl { 1659 - url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.3.4.tgz"; 1660 - sha512 = "UVH9xoNSwhzsnEhhcIc4hoDpmyUhGcqBbco5tuISdGV4gEgOKN48c7WhVMmyrsSGogohVCwPHuDugdssUx66tQ=="; 1659 + url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.3.5.tgz"; 1660 + sha512 = "khqF4y0Z1WLPJR3LPJRgTAAZHQYTxHFXw3Nzr799aRsKXummSX85SS7ZLnVDyDjzd3x4yonYdWk89K2ZpJslnQ=="; 1661 1661 }; 1662 1662 }; 1663 1663 "@cnakazawa/watch-1.0.4" = { ··· 2506 2506 sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw=="; 2507 2507 }; 2508 2508 }; 2509 - "@google-cloud/pubsub-2.16.3" = { 2509 + "@google-cloud/pubsub-2.16.4" = { 2510 2510 name = "_at_google-cloud_slash_pubsub"; 2511 2511 packageName = "@google-cloud/pubsub"; 2512 - version = "2.16.3"; 2512 + version = "2.16.4"; 2513 2513 src = fetchurl { 2514 - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.16.3.tgz"; 2515 - sha512 = "KkH0IH1PUzgWBquUhWfSG//R/8K3agYRyrqqeNtLjbr2lnehrOVllPtdnroO4q2lxoul3WrK+esPvtVywkb4Ag=="; 2514 + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.16.4.tgz"; 2515 + sha512 = "u6P5Hg+GsjoSQ/grmL36r9vz8BfMFVH99x/c+o4ASvAhCMeHSI1AZ0l3DOlLJ2zgjZ01o+B3aONWi9CFhZg3+w=="; 2516 2516 }; 2517 2517 }; 2518 2518 "@graphql-cli/common-4.1.0" = { ··· 2605 2605 sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; 2606 2606 }; 2607 2607 }; 2608 - "@graphql-tools/merge-8.0.0" = { 2608 + "@graphql-tools/merge-8.0.1" = { 2609 2609 name = "_at_graphql-tools_slash_merge"; 2610 2610 packageName = "@graphql-tools/merge"; 2611 - version = "8.0.0"; 2611 + version = "8.0.1"; 2612 2612 src = fetchurl { 2613 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.0.0.tgz"; 2614 - sha512 = "Hdhp3qwDeRwPGUVUkmRwTg5KX/bp1MNkplhI6szgQHeDPaC2l9a1iS6LznVP6xQjsyb8oRPqlVPKfiXemodwFw=="; 2613 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.0.1.tgz"; 2614 + sha512 = "YAozogbjC2Oun+UcwG0LZFumhlCiHBmqe68OIf7bqtBdp4pbPAiVuK/J9oJqRVJmzvUqugo6RD9zz1qDTKZaiQ=="; 2615 2615 }; 2616 2616 }; 2617 - "@graphql-tools/mock-8.2.0" = { 2617 + "@graphql-tools/mock-8.2.1" = { 2618 2618 name = "_at_graphql-tools_slash_mock"; 2619 2619 packageName = "@graphql-tools/mock"; 2620 - version = "8.2.0"; 2620 + version = "8.2.1"; 2621 2621 src = fetchurl { 2622 - url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.2.0.tgz"; 2623 - sha512 = "E6rZITUsexmTssAsPSiVFFBePI9L7VZ33+WQBWldJwqduJ9z1WsL+2eJuKPlOIsQ15cbpnHkr2mIv/yrZv99ug=="; 2622 + url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.2.1.tgz"; 2623 + sha512 = "/DyU742thZ3wSR8NxbzeV2K5sxtfPcnRJDuaN+WuHDOE1X1lsFiS49J0TouEnZCfLuAmhSjUMT/2GbD0xu6ggw=="; 2624 2624 }; 2625 2625 }; 2626 2626 "@graphql-tools/schema-7.1.5" = { ··· 2632 2632 sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; 2633 2633 }; 2634 2634 }; 2635 - "@graphql-tools/schema-8.1.0" = { 2635 + "@graphql-tools/schema-8.1.1" = { 2636 2636 name = "_at_graphql-tools_slash_schema"; 2637 2637 packageName = "@graphql-tools/schema"; 2638 - version = "8.1.0"; 2638 + version = "8.1.1"; 2639 2639 src = fetchurl { 2640 - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.1.0.tgz"; 2641 - sha512 = "k6M877jFTKjlRU2f2YYjWx+FKXlhuQlCQQ8IdG5API4UL1qk57zYoNnYlT+CJfWxEfcMvEd6AlJ8wvmapzr53A=="; 2640 + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.1.1.tgz"; 2641 + sha512 = "u+0kxPtuP+GcKnGNt459Ob7iIpzesIJeJTmPPailaG7ZhB5hkXIizl4uHrzEIAh2Ja1P/VA8sEBYpu1N0n6Mmg=="; 2642 2642 }; 2643 2643 }; 2644 2644 "@graphql-tools/url-loader-6.10.1" = { ··· 2677 2677 sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; 2678 2678 }; 2679 2679 }; 2680 - "@graphql-tools/utils-8.1.0" = { 2680 + "@graphql-tools/utils-8.1.1" = { 2681 2681 name = "_at_graphql-tools_slash_utils"; 2682 2682 packageName = "@graphql-tools/utils"; 2683 - version = "8.1.0"; 2683 + version = "8.1.1"; 2684 2684 src = fetchurl { 2685 - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.1.0.tgz"; 2686 - sha512 = "V5a7xAxZ6DHzrYYticmsLgWim+vGnC6ztbiOXrO5cGtOOk5NSK657SZXsyVOR7hNvdWiHSW0dlBZb6zkkfOnHA=="; 2685 + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.1.1.tgz"; 2686 + sha512 = "QbFNoBmBiZ+ej4y6mOv8Ba4lNhcrTEKXAhZ0f74AhdEXi7b9xbGUH/slO5JaSyp85sGQYIPmxjRPpXBjLklbmw=="; 2687 2687 }; 2688 2688 }; 2689 2689 "@graphql-tools/wrap-7.0.8" = { ··· 2720 2720 src = fetchurl { 2721 2721 url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.4.tgz"; 2722 2722 sha512 = "AxtZcm0mArQhY9z8T3TynCYVEaSKxNCa9mVhVwBCUnsuUEe8Zn94bPYYKVQSLt+hJJ1y0ukr3mUvtWfcATL/IQ=="; 2723 - }; 2724 - }; 2725 - "@grpc/grpc-js-1.3.5" = { 2726 - name = "_at_grpc_slash_grpc-js"; 2727 - packageName = "@grpc/grpc-js"; 2728 - version = "1.3.5"; 2729 - src = fetchurl { 2730 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.5.tgz"; 2731 - sha512 = "V29L2QNKkLWM3bcJfVFMSo+Z7kkO8A1s7MAfdzBXLYEC1PE5/M0n1iXBDiD5aUtyVLh5GILcbme2bGtIHl0FMQ=="; 2732 2723 }; 2733 2724 }; 2734 2725 "@grpc/grpc-js-1.3.6" = { ··· 2875 2866 sha512 = "2JYy//YE2YINTe21hpdVMBNc7aYFkgDeY9JUz/BCjFZmYLn0UjGaCc4BpTcMGXNJwuqoUenw2WGOFGHsJqlIDw=="; 2876 2867 }; 2877 2868 }; 2869 + "@hpcc-js/wasm-1.4.1" = { 2870 + name = "_at_hpcc-js_slash_wasm"; 2871 + packageName = "@hpcc-js/wasm"; 2872 + version = "1.4.1"; 2873 + src = fetchurl { 2874 + url = "https://registry.npmjs.org/@hpcc-js/wasm/-/wasm-1.4.1.tgz"; 2875 + sha512 = "WYeIuG/B1B1cTcM9D9bC6qDFSZnEcJ9R3SpTW5jh10sTh0hD1h1t/dZudfLwarJD+ce8q4/BP43BplbP3CeNkQ=="; 2876 + }; 2877 + }; 2878 2878 "@humanwhocodes/config-array-0.5.0" = { 2879 2879 name = "_at_humanwhocodes_slash_config-array"; 2880 2880 packageName = "@humanwhocodes/config-array"; ··· 3118 3118 sha512 = "Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg=="; 3119 3119 }; 3120 3120 }; 3121 - "@jest/types-24.9.0" = { 3122 - name = "_at_jest_slash_types"; 3123 - packageName = "@jest/types"; 3124 - version = "24.9.0"; 3125 - src = fetchurl { 3126 - url = "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz"; 3127 - sha512 = "XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw=="; 3128 - }; 3129 - }; 3130 3121 "@jest/types-25.5.0" = { 3131 3122 name = "_at_jest_slash_types"; 3132 3123 packageName = "@jest/types"; ··· 3145 3136 sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 3146 3137 }; 3147 3138 }; 3148 - "@joplin/fork-htmlparser2-4.1.32" = { 3139 + "@joplin/fork-htmlparser2-4.1.33" = { 3149 3140 name = "_at_joplin_slash_fork-htmlparser2"; 3150 3141 packageName = "@joplin/fork-htmlparser2"; 3151 - version = "4.1.32"; 3142 + version = "4.1.33"; 3152 3143 src = fetchurl { 3153 - url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.32.tgz"; 3154 - sha512 = "WmIsWhMOXULb8ilfJF1AC/pkqPofXQV0siCQgTcouCQVbD/+nlBcmePkfabBJR9WfkeGiteafBlAV/rZExC+CA=="; 3144 + url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.33.tgz"; 3145 + sha512 = "Q5GR6mVKS/1JgNTHtS0hc08YexfVZIq9RAj9j33Zm9SXEDstXn0WP4UpULCWLYOen3ffJ2z4uv9a2vLKcvbbIg=="; 3155 3146 }; 3156 3147 }; 3157 - "@joplin/fork-sax-1.2.36" = { 3148 + "@joplin/fork-sax-1.2.37" = { 3158 3149 name = "_at_joplin_slash_fork-sax"; 3159 3150 packageName = "@joplin/fork-sax"; 3160 - version = "1.2.36"; 3151 + version = "1.2.37"; 3161 3152 src = fetchurl { 3162 - url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.36.tgz"; 3163 - sha512 = "gbhLk1Ic8+fNqU/fKdssUpIvhAhysXcr5CWZy8UMHvryvCB/n8NwR7W1knU5KTZY1omT/OOL21YnRUrpQtQ5mg=="; 3153 + url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.37.tgz"; 3154 + sha512 = "3S71WcFLsZQ4tlZ7LNZRBoEE0LJJL8gxhqwAKZXKYTF5syShZDNWwSpntB4AoFWry3L0I+HnjXm2psQfQzo15Q=="; 3164 3155 }; 3165 3156 }; 3166 - "@joplin/lib-2.2.4" = { 3157 + "@joplin/lib-2.3.1" = { 3167 3158 name = "_at_joplin_slash_lib"; 3168 3159 packageName = "@joplin/lib"; 3169 - version = "2.2.4"; 3160 + version = "2.3.1"; 3170 3161 src = fetchurl { 3171 - url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.2.4.tgz"; 3172 - sha512 = "RXxN4dp7d6VYN1ERA6xt+DzmAloPwqQycEsWNWZWKwXnn2nfTc3qNIEFbQ1QPn2Rh6Z6WmGmHeh0HnhuYDuraw=="; 3162 + url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.3.1.tgz"; 3163 + sha512 = "/OIyf4AdF/JLFf+ZTYsusrjl5XCDV20wwi0JnvxnySYgG9Y4GgNusDPI0/77+rj+KQA/E91FzGeWoSDc5XOUsA=="; 3173 3164 }; 3174 3165 }; 3175 - "@joplin/renderer-2.2.4" = { 3166 + "@joplin/renderer-2.3.1" = { 3176 3167 name = "_at_joplin_slash_renderer"; 3177 3168 packageName = "@joplin/renderer"; 3178 - version = "2.2.4"; 3169 + version = "2.3.1"; 3179 3170 src = fetchurl { 3180 - url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.2.4.tgz"; 3181 - sha512 = "nGycXJ0r0hcJSsqNn/G/9oX/vPdj8rR0UlNCJttUND3wB1qSxTVlDGcWWMye9WwypASiLej1lnF1N/dKCsLvDA=="; 3171 + url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.3.1.tgz"; 3172 + sha512 = "wOxuScEao2f3kIs+A0qroWe6CiWs1LeZqwBz/w869Qi8MW8wvy2aeyirpnb7yEYh9aCevfiQcUMUvYZ9ekMskg=="; 3182 3173 }; 3183 3174 }; 3184 - "@joplin/turndown-4.0.54" = { 3175 + "@joplin/turndown-4.0.55" = { 3185 3176 name = "_at_joplin_slash_turndown"; 3186 3177 packageName = "@joplin/turndown"; 3187 - version = "4.0.54"; 3178 + version = "4.0.55"; 3188 3179 src = fetchurl { 3189 - url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.54.tgz"; 3190 - sha512 = "1jA4/aGHwMAENO0sMVjh+TZu6K0WihFSez2DJYr+t2PpJ9oXFVaYPoJBfZWiFPSnc32cjfySR6ocf/hmNPIm/Q=="; 3180 + url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.55.tgz"; 3181 + sha512 = "9IgtCAQXzCtkXNE+/4q6dWnbt90kvZIefTLFXLxE+w/gLbBDxSmTCfhCCFPzUA1ORp3LkAJZIiE710fRM0O3gg=="; 3191 3182 }; 3192 3183 }; 3193 - "@joplin/turndown-plugin-gfm-1.0.36" = { 3184 + "@joplin/turndown-plugin-gfm-1.0.37" = { 3194 3185 name = "_at_joplin_slash_turndown-plugin-gfm"; 3195 3186 packageName = "@joplin/turndown-plugin-gfm"; 3196 - version = "1.0.36"; 3187 + version = "1.0.37"; 3197 3188 src = fetchurl { 3198 - url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.36.tgz"; 3199 - sha512 = "gjihxMRn5Al49F+7VWgADT1DRFtG+frC0ZySkUofqlSMM/TPBbm2HPR2aj4GE6T7UIAzJ32lXyxIrdxrGFNaKg=="; 3189 + url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.37.tgz"; 3190 + sha512 = "LRiIezmtnJSdczIT3mPuCvUIdFT01lDYTBDdSNGwBheNt7R9tYIj0nh87OnpBGztktIIsOH/66nbB8KQjVtisQ=="; 3200 3191 }; 3201 3192 }; 3202 3193 "@josephg/resolvable-1.0.1" = { ··· 3217 3208 sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 3218 3209 }; 3219 3210 }; 3220 - "@jsii/spec-1.32.0" = { 3211 + "@jsii/check-node-1.33.0" = { 3212 + name = "_at_jsii_slash_check-node"; 3213 + packageName = "@jsii/check-node"; 3214 + version = "1.33.0"; 3215 + src = fetchurl { 3216 + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.33.0.tgz"; 3217 + sha512 = "Bajxa09dhkuQ8bM1ve6qtm2oFNhW9/+GaKRh4Deewsk/G86ovLXI/rRS6TfCsSw4E0TGPFWzWy0tBeJuEDo7sw=="; 3218 + }; 3219 + }; 3220 + "@jsii/spec-1.33.0" = { 3221 3221 name = "_at_jsii_slash_spec"; 3222 3222 packageName = "@jsii/spec"; 3223 - version = "1.32.0"; 3223 + version = "1.33.0"; 3224 3224 src = fetchurl { 3225 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.32.0.tgz"; 3226 - sha512 = "XjSnqvmBXvFork9w3ehacqaa0JmUVaEYubOzR1l6z67z2FDZ9C4KP7EqMqjnv/S+j+Ou3tWQPfLICnl6aK1iGA=="; 3225 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.33.0.tgz"; 3226 + sha512 = "JUu4NhmFQiLnzegaj4gJ5xAt7YjB2fUteJppIN/J49TQJd1kWxsFFmYIMJDuUiAUzo0Gx99N4YqgcfKK3kLAbQ=="; 3227 3227 }; 3228 3228 }; 3229 3229 "@kwsites/file-exists-1.1.1" = { ··· 3964 3964 sha512 = "7AQsO0hMmpqDledV7AhBuSYqYPFsKP9PaltMecX9nlnsyFxqtsqUg9/pvB2L/jxvskrDrNkdKYz2KTbQznCtng=="; 3965 3965 }; 3966 3966 }; 3967 - "@mdn/browser-compat-data-3.3.7" = { 3967 + "@mdn/browser-compat-data-3.3.14" = { 3968 3968 name = "_at_mdn_slash_browser-compat-data"; 3969 3969 packageName = "@mdn/browser-compat-data"; 3970 - version = "3.3.7"; 3970 + version = "3.3.14"; 3971 3971 src = fetchurl { 3972 - url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-3.3.7.tgz"; 3973 - sha512 = "X42YckpwhdWwWVWR3UpEUB21oIpYoKGMuswZb34yPcsMCySNwLqHnoE972q/UD8VwtpnmO69fsTFiRT2s1gjfA=="; 3972 + url = "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-3.3.14.tgz"; 3973 + sha512 = "n2RC9d6XatVbWFdHLimzzUJxJ1KY8LdjqrW6YvGPiRmsHkhOUx74/Ct10x5Yo7bC/Jvqx7cDEW8IMPv/+vwEzA=="; 3974 3974 }; 3975 3975 }; 3976 3976 "@mdx-js/util-2.0.0-next.8" = { ··· 4081 4081 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 4082 4082 }; 4083 4083 }; 4084 - "@netlify/build-18.2.7" = { 4084 + "@netlify/build-18.2.11" = { 4085 4085 name = "_at_netlify_slash_build"; 4086 4086 packageName = "@netlify/build"; 4087 - version = "18.2.7"; 4087 + version = "18.2.11"; 4088 4088 src = fetchurl { 4089 - url = "https://registry.npmjs.org/@netlify/build/-/build-18.2.7.tgz"; 4090 - sha512 = "1KlY84X+aFVnprlPLnNArcYPOXjDN9elHrD6v6A5SahYFOB307ehQJrDcERIde20r1tRvjb8ly67HI1VY9ib9Q=="; 4089 + url = "https://registry.npmjs.org/@netlify/build/-/build-18.2.11.tgz"; 4090 + sha512 = "jZHWv2Mzq9Em2YbYlg+9F1aRbX7e9SgvngKLBFm2QOxwtpIOkKf8MihcFiF27Q+RM6KJR1IJHmf2bUd2Kqzz2w=="; 4091 4091 }; 4092 4092 }; 4093 - "@netlify/cache-utils-2.0.1" = { 4093 + "@netlify/cache-utils-2.0.2" = { 4094 4094 name = "_at_netlify_slash_cache-utils"; 4095 4095 packageName = "@netlify/cache-utils"; 4096 - version = "2.0.1"; 4096 + version = "2.0.2"; 4097 4097 src = fetchurl { 4098 - url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.1.tgz"; 4099 - sha512 = "fAw8rMnl14f9TZmKV1g8+/8yVriitfNf4KcdfGPpGLpmQtpnSiynbzhpOLBHsLtViBCJ8O1vy24LK6CJx9JoqA=="; 4098 + url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.2.tgz"; 4099 + sha512 = "JqmFPDvzSv/emIYUjnM5aN630igsvZ/LcODSGEP2dyLxhmL5XirkEljzl4M+XBnVF4Ah0+EKBwo2ofHpdyeTJA=="; 4100 4100 }; 4101 4101 }; 4102 - "@netlify/config-15.3.0" = { 4102 + "@netlify/config-15.3.4" = { 4103 4103 name = "_at_netlify_slash_config"; 4104 4104 packageName = "@netlify/config"; 4105 - version = "15.3.0"; 4105 + version = "15.3.4"; 4106 4106 src = fetchurl { 4107 - url = "https://registry.npmjs.org/@netlify/config/-/config-15.3.0.tgz"; 4108 - sha512 = "aOkD/RqXVp6mfM+Wd3PcYTko4JCR4d/VZtyBp9rfPAkLTBvayBZjATpI3uVWuOpVq8NUm4ERpQ0jKW0IBWUwkw=="; 4107 + url = "https://registry.npmjs.org/@netlify/config/-/config-15.3.4.tgz"; 4108 + sha512 = "kzS+JN5TqY56aYbk5hGobZq+5AHDUaaHBTJJNp3pSxj0RCoPgvJt9U4JyRRMkkmwhnnWLNzgbAQczlKzjfMKXQ=="; 4109 4109 }; 4110 4110 }; 4111 4111 "@netlify/esbuild-0.13.6" = { ··· 4117 4117 sha512 = "tiKmDcHM2riSVN79c0mJY/67EBDafXQAMitHuLiCDAMdtz3kfv+NqdVG5krgf5lWR8Uf8AeZrUW5Q9RP25REvw=="; 4118 4118 }; 4119 4119 }; 4120 - "@netlify/framework-info-5.8.0" = { 4120 + "@netlify/framework-info-5.9.0" = { 4121 4121 name = "_at_netlify_slash_framework-info"; 4122 4122 packageName = "@netlify/framework-info"; 4123 - version = "5.8.0"; 4123 + version = "5.9.0"; 4124 4124 src = fetchurl { 4125 - url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.8.0.tgz"; 4126 - sha512 = "gc8K0BT6CSHnYFirLmUWLoKah+AjStWBsGmwa7gbRmeAaRThJhkRcRVE03EhSnrMQkAMO3IIIMklbE8i/9UpEg=="; 4125 + url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.9.0.tgz"; 4126 + sha512 = "rrinZyy3pj5rNe2LPPCwsKT7d4jltDe5cK1JACbvxMXAh7hLMo2nDXsLCsejci2fqfFo2k64UtRsC6XDYbrxPw=="; 4127 4127 }; 4128 4128 }; 4129 4129 "@netlify/functions-utils-2.0.2" = { ··· 4504 4504 sha512 = "QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg=="; 4505 4505 }; 4506 4506 }; 4507 - "@npmcli/run-script-1.8.5" = { 4507 + "@npmcli/run-script-1.8.6" = { 4508 4508 name = "_at_npmcli_slash_run-script"; 4509 4509 packageName = "@npmcli/run-script"; 4510 - version = "1.8.5"; 4510 + version = "1.8.6"; 4511 4511 src = fetchurl { 4512 - url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.5.tgz"; 4513 - sha512 = "NQspusBCpTjNwNRFMtz2C5MxoxyzlbuJ4YEhxAKrIonTiirKDtatsZictx9RgamQIx6+QuHMNmPl0wQdoESs9A=="; 4512 + url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.8.6.tgz"; 4513 + sha512 = "e42bVZnC6VluBZBAFEr3YrdqSspG3bgilyg4nSLBJ7TRGNCzxHa92XAHxQBLYg0BmgwO4b2mf3h/l5EkEWRn3g=="; 4514 4514 }; 4515 4515 }; 4516 4516 "@oclif/color-0.1.2" = { ··· 4540 4540 sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA=="; 4541 4541 }; 4542 4542 }; 4543 - "@oclif/core-0.5.29" = { 4543 + "@oclif/core-0.5.30" = { 4544 4544 name = "_at_oclif_slash_core"; 4545 4545 packageName = "@oclif/core"; 4546 - version = "0.5.29"; 4546 + version = "0.5.30"; 4547 4547 src = fetchurl { 4548 - url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.29.tgz"; 4549 - sha512 = "v5MMxeTgEKbVcEl7D3jsTVL8Wy3lLTDj0KHX7cOmI751yfjdAOqy9frHQ6IXssxubDkBW6sXzbYN9Bw12zsBqg=="; 4548 + url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.30.tgz"; 4549 + sha512 = "J655ku+fptWPukM15F4DzGZnD1Q1UAzsS7jUy/nHIVhuwjwhl7u9QHLTjZ+1ud/99N2iXaYsa70UcnC1G3mfHQ=="; 4550 4550 }; 4551 4551 }; 4552 4552 "@oclif/errors-1.3.5" = { ··· 4711 4711 sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 4712 4712 }; 4713 4713 }; 4714 - "@octokit/plugin-rest-endpoint-methods-5.7.0" = { 4714 + "@octokit/plugin-rest-endpoint-methods-5.8.0" = { 4715 4715 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 4716 4716 packageName = "@octokit/plugin-rest-endpoint-methods"; 4717 - version = "5.7.0"; 4717 + version = "5.8.0"; 4718 4718 src = fetchurl { 4719 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.7.0.tgz"; 4720 - sha512 = "G7sgccWRYQMwcHJXkDY/sDxbXeKiZkFQqUtzBCwmrzCNj2GQf3VygQ4T/BFL2crLVpIbenkE/c0ErhYOte2MPw=="; 4719 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.8.0.tgz"; 4720 + sha512 = "qeLZZLotNkoq+it6F+xahydkkbnvSK0iDjlXFo3jNTB+Ss0qIbYQb9V/soKLMkgGw8Q2sHjY5YEXiA47IVPp4A=="; 4721 4721 }; 4722 4722 }; 4723 4723 "@octokit/request-5.6.1" = { ··· 4738 4738 sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg=="; 4739 4739 }; 4740 4740 }; 4741 - "@octokit/rest-18.9.0" = { 4741 + "@octokit/rest-18.9.1" = { 4742 4742 name = "_at_octokit_slash_rest"; 4743 4743 packageName = "@octokit/rest"; 4744 - version = "18.9.0"; 4744 + version = "18.9.1"; 4745 4745 src = fetchurl { 4746 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.9.0.tgz"; 4747 - sha512 = "VrmrE8gjpuOoDAGjrQq2j9ZhOE6LxaqxaQg0yMrrEnnQZy2ZcAnr5qbVfKsMF0up/48PRV/VFS/2GSMhA7nTdA=="; 4746 + url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.9.1.tgz"; 4747 + sha512 = "idZ3e5PqXVWOhtZYUa546IDHTHjkGZbj3tcJsN0uhCy984KD865e8GB2WbYDc2ZxFuJRiyd0AftpL2uPNhF+UA=="; 4748 4748 }; 4749 4749 }; 4750 4750 "@octokit/types-6.25.0" = { ··· 5404 5404 sha512 = "9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw=="; 5405 5405 }; 5406 5406 }; 5407 - "@rollup/plugin-commonjs-17.1.0" = { 5408 - name = "_at_rollup_slash_plugin-commonjs"; 5409 - packageName = "@rollup/plugin-commonjs"; 5410 - version = "17.1.0"; 5411 - src = fetchurl { 5412 - url = "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-17.1.0.tgz"; 5413 - sha512 = "PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew=="; 5414 - }; 5415 - }; 5416 5407 "@rollup/plugin-commonjs-18.1.0" = { 5417 5408 name = "_at_rollup_slash_plugin-commonjs"; 5418 5409 packageName = "@rollup/plugin-commonjs"; ··· 5449 5440 sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; 5450 5441 }; 5451 5442 }; 5452 - "@rollup/plugin-node-resolve-13.0.4" = { 5453 - name = "_at_rollup_slash_plugin-node-resolve"; 5454 - packageName = "@rollup/plugin-node-resolve"; 5455 - version = "13.0.4"; 5456 - src = fetchurl { 5457 - url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.0.4.tgz"; 5458 - sha512 = "eYq4TFy40O8hjeDs+sIxEH/jc9lyuI2k9DM557WN6rO5OpnC2qXMBNj4IKH1oHrnAazL49C5p0tgP0/VpqJ+/w=="; 5459 - }; 5460 - }; 5461 5443 "@rollup/pluginutils-3.1.0" = { 5462 5444 name = "_at_rollup_slash_pluginutils"; 5463 5445 packageName = "@rollup/pluginutils"; ··· 5611 5593 sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog=="; 5612 5594 }; 5613 5595 }; 5614 - "@serverless/utils-5.6.0" = { 5596 + "@serverless/utils-5.7.0" = { 5615 5597 name = "_at_serverless_slash_utils"; 5616 5598 packageName = "@serverless/utils"; 5617 - version = "5.6.0"; 5599 + version = "5.7.0"; 5618 5600 src = fetchurl { 5619 - url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.6.0.tgz"; 5620 - sha512 = "R3mb6DlPwrlo49fwQNz3YTQb2XJCxVui+s/olVBSdAh82fi8EbbjgkZkaLKB9ES7lV2MIr3jqrIWjYyGE/2Bgw=="; 5601 + url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.7.0.tgz"; 5602 + sha512 = "4/9lTag4NNMtgoK7qRSoP//VplnKUTqgKMJ5pjvuXHFTBNoGYbdi5Cr1UmbHwnG8FfYBUy95jNUHjSEeUXDqgg=="; 5621 5603 }; 5622 5604 }; 5623 5605 "@serverless/utils-china-1.1.4" = { ··· 5782 5764 sha512 = "T3xfDqrEFKclHGdJx4/5+D5F7e76/99f33guE4RTlVITBhy7VVnjz4t/NDr3UYqcC0MgAmiC4bSVYHnlshuwJw=="; 5783 5765 }; 5784 5766 }; 5785 - "@snyk/cloud-config-parser-1.10.1" = { 5767 + "@snyk/cloud-config-parser-1.10.2" = { 5786 5768 name = "_at_snyk_slash_cloud-config-parser"; 5787 5769 packageName = "@snyk/cloud-config-parser"; 5788 - version = "1.10.1"; 5770 + version = "1.10.2"; 5789 5771 src = fetchurl { 5790 - url = "https://registry.npmjs.org/@snyk/cloud-config-parser/-/cloud-config-parser-1.10.1.tgz"; 5791 - sha512 = "boqO3H4zkGo+Q2C7qyG2l/sQX80ZRSOlPCiRtgN9Xa7u9fM+qFGOaFOgNWfZZtU0wLBy2yDs5ipzdfqvp0ZEjg=="; 5772 + url = "https://registry.npmjs.org/@snyk/cloud-config-parser/-/cloud-config-parser-1.10.2.tgz"; 5773 + sha512 = "ovA6iX59jLOVMfZr6rsqYNcOIjZTYAbm34bn41m3hRbCPuZkxe3JNKxjsEFCFkZQBnGSebrbz8TGoe81y0L2Cw=="; 5792 5774 }; 5793 5775 }; 5794 5776 "@snyk/cocoapods-lockfile-parser-3.6.2" = { ··· 7141 7123 sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 7142 7124 }; 7143 7125 }; 7144 - "@types/mime-types-2.1.0" = { 7126 + "@types/mime-types-2.1.1" = { 7145 7127 name = "_at_types_slash_mime-types"; 7146 7128 packageName = "@types/mime-types"; 7147 - version = "2.1.0"; 7129 + version = "2.1.1"; 7148 7130 src = fetchurl { 7149 - url = "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.0.tgz"; 7150 - sha1 = "9ca52cda363f699c69466c2a6ccdaad913ea7a73"; 7131 + url = "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz"; 7132 + sha512 = "vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw=="; 7151 7133 }; 7152 7134 }; 7153 7135 "@types/minimatch-3.0.5" = { ··· 7312 7294 sha512 = "7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA=="; 7313 7295 }; 7314 7296 }; 7315 - "@types/node-16.3.2" = { 7316 - name = "_at_types_slash_node"; 7317 - packageName = "@types/node"; 7318 - version = "16.3.2"; 7319 - src = fetchurl { 7320 - url = "https://registry.npmjs.org/@types/node/-/node-16.3.2.tgz"; 7321 - sha512 = "jJs9ErFLP403I+hMLGnqDRWT0RYKSvArxuBVh2veudHV7ifEC1WAmjJADacZ7mRbA2nWgHtn8xyECMAot0SkAw=="; 7322 - }; 7323 - }; 7324 7297 "@types/node-16.3.3" = { 7325 7298 name = "_at_types_slash_node"; 7326 7299 packageName = "@types/node"; ··· 7330 7303 sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7331 7304 }; 7332 7305 }; 7333 - "@types/node-16.4.3" = { 7306 + "@types/node-16.6.0" = { 7334 7307 name = "_at_types_slash_node"; 7335 7308 packageName = "@types/node"; 7336 - version = "16.4.3"; 7309 + version = "16.6.0"; 7337 7310 src = fetchurl { 7338 - url = "https://registry.npmjs.org/@types/node/-/node-16.4.3.tgz"; 7339 - sha512 = "GKM4FLMkWDc0sfx7tXqPWkM6NBow1kge0fgQh0bOnlqo4iT1kvTvMEKE0c1RtUGnbLlGRXiAA8SumE//90uKAg=="; 7311 + url = "https://registry.npmjs.org/@types/node/-/node-16.6.0.tgz"; 7312 + sha512 = "OyiZPohMMjZEYqcVo/UJ04GyAxXOJEZO/FpzyXxcH4r/ArrVoXHf4MbUrkLp0Tz7/p1mMKpo5zJ6ZHl8XBNthQ=="; 7340 7313 }; 7341 7314 }; 7342 7315 "@types/node-16.6.1" = { ··· 7483 7456 sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; 7484 7457 }; 7485 7458 }; 7486 - "@types/rc-1.1.0" = { 7459 + "@types/rc-1.2.0" = { 7487 7460 name = "_at_types_slash_rc"; 7488 7461 packageName = "@types/rc"; 7489 - version = "1.1.0"; 7462 + version = "1.2.0"; 7490 7463 src = fetchurl { 7491 - url = "https://registry.npmjs.org/@types/rc/-/rc-1.1.0.tgz"; 7492 - sha512 = "qw1q31xPnaeExbOA1daA3nfeKW2uZQN4Xg8QqZDM3vsXPHK/lyDpjWXJQIcrByRDcBzZJ3ccchSMMTDtCWgFpA=="; 7464 + url = "https://registry.npmjs.org/@types/rc/-/rc-1.2.0.tgz"; 7465 + sha512 = "eEQ6Hq0K0VShe00iDzG1DKxA5liTsk7jgcR5eDZ5d5cnivLjPqqcDgqurS5NlQJNfgTNg51dp7zFGWHomr5NJQ=="; 7493 7466 }; 7494 7467 }; 7495 7468 "@types/react-16.14.13" = { ··· 7861 7834 sha512 = "8mbDgtc8xpxDDem5Gwj76stBDJX35KQ3YBoayxlqUQcL5BZUthiqP/VQ4PQnLHqM4PmlbyO74t98eJpURO+gPA=="; 7862 7835 }; 7863 7836 }; 7864 - "@types/ws-7.4.6" = { 7865 - name = "_at_types_slash_ws"; 7866 - packageName = "@types/ws"; 7867 - version = "7.4.6"; 7868 - src = fetchurl { 7869 - url = "https://registry.npmjs.org/@types/ws/-/ws-7.4.6.tgz"; 7870 - sha512 = "ijZ1vzRawI7QoWnTNL8KpHixd2b2XVb9I9HAqI3triPsh1EC0xH0Eg6w2O3TKbDCgiNNlJqfrof6j4T2I+l9vw=="; 7871 - }; 7872 - }; 7873 7837 "@types/ws-7.4.7" = { 7874 7838 name = "_at_types_slash_ws"; 7875 7839 packageName = "@types/ws"; ··· 7877 7841 src = fetchurl { 7878 7842 url = "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz"; 7879 7843 sha512 = "JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww=="; 7880 - }; 7881 - }; 7882 - "@types/yargs-13.0.12" = { 7883 - name = "_at_types_slash_yargs"; 7884 - packageName = "@types/yargs"; 7885 - version = "13.0.12"; 7886 - src = fetchurl { 7887 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz"; 7888 - sha512 = "qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ=="; 7889 7844 }; 7890 7845 }; 7891 7846 "@types/yargs-15.0.14" = { ··· 7942 7897 sha512 = "fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw=="; 7943 7898 }; 7944 7899 }; 7945 - "@typescript-eslint/eslint-plugin-4.29.1" = { 7900 + "@typescript-eslint/eslint-plugin-4.29.2" = { 7946 7901 name = "_at_typescript-eslint_slash_eslint-plugin"; 7947 7902 packageName = "@typescript-eslint/eslint-plugin"; 7948 - version = "4.29.1"; 7903 + version = "4.29.2"; 7949 7904 src = fetchurl { 7950 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.1.tgz"; 7951 - sha512 = "AHqIU+SqZZgBEiWOrtN94ldR3ZUABV5dUG94j8Nms9rQnHFc8fvDOue/58K4CFz6r8OtDDc35Pw9NQPWo0Ayrw=="; 7905 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.2.tgz"; 7906 + sha512 = "x4EMgn4BTfVd9+Z+r+6rmWxoAzBaapt4QFqE+d8L8sUtYZYLDTK6VG/y/SMMWA5t1/BVU5Kf+20rX4PtWzUYZg=="; 7952 7907 }; 7953 7908 }; 7954 7909 "@typescript-eslint/experimental-utils-3.10.1" = { ··· 7960 7915 sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw=="; 7961 7916 }; 7962 7917 }; 7963 - "@typescript-eslint/experimental-utils-4.29.1" = { 7918 + "@typescript-eslint/experimental-utils-4.29.2" = { 7964 7919 name = "_at_typescript-eslint_slash_experimental-utils"; 7965 7920 packageName = "@typescript-eslint/experimental-utils"; 7966 - version = "4.29.1"; 7921 + version = "4.29.2"; 7967 7922 src = fetchurl { 7968 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.1.tgz"; 7969 - sha512 = "kl6QG6qpzZthfd2bzPNSJB2YcZpNOrP6r9jueXupcZHnL74WiuSjaft7WSu17J9+ae9zTlk0KJMXPUj0daBxMw=="; 7923 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.2.tgz"; 7924 + sha512 = "P6mn4pqObhftBBPAv4GQtEK7Yos1fz/MlpT7+YjH9fTxZcALbiiPKuSIfYP/j13CeOjfq8/fr9Thr2glM9ub7A=="; 7970 7925 }; 7971 7926 }; 7972 7927 "@typescript-eslint/parser-3.10.1" = { ··· 7978 7933 sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw=="; 7979 7934 }; 7980 7935 }; 7981 - "@typescript-eslint/parser-4.29.1" = { 7936 + "@typescript-eslint/parser-4.29.2" = { 7982 7937 name = "_at_typescript-eslint_slash_parser"; 7983 7938 packageName = "@typescript-eslint/parser"; 7984 - version = "4.29.1"; 7939 + version = "4.29.2"; 7985 7940 src = fetchurl { 7986 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.1.tgz"; 7987 - sha512 = "3fL5iN20hzX3Q4OkG7QEPFjZV2qsVGiDhEwwh+EkmE/w7oteiOvUNzmpu5eSwGJX/anCryONltJ3WDmAzAoCMg=="; 7941 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.2.tgz"; 7942 + sha512 = "WQ6BPf+lNuwteUuyk1jD/aHKqMQ9jrdCn7Gxt9vvBnzbpj7aWEf+aZsJ1zvTjx5zFxGCt000lsbD9tQPEL8u6g=="; 7988 7943 }; 7989 7944 }; 7990 - "@typescript-eslint/scope-manager-4.29.1" = { 7945 + "@typescript-eslint/scope-manager-4.29.2" = { 7991 7946 name = "_at_typescript-eslint_slash_scope-manager"; 7992 7947 packageName = "@typescript-eslint/scope-manager"; 7993 - version = "4.29.1"; 7948 + version = "4.29.2"; 7994 7949 src = fetchurl { 7995 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.29.1.tgz"; 7996 - sha512 = "Hzv/uZOa9zrD/W5mftZa54Jd5Fed3tL6b4HeaOpwVSabJK8CJ+2MkDasnX/XK4rqP5ZTWngK1ZDeCi6EnxPQ7A=="; 7950 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.29.2.tgz"; 7951 + sha512 = "mfHmvlQxmfkU8D55CkZO2sQOueTxLqGvzV+mG6S/6fIunDiD2ouwsAoiYCZYDDK73QCibYjIZmGhpvKwAB5BOA=="; 7997 7952 }; 7998 7953 }; 7999 7954 "@typescript-eslint/types-3.10.1" = { ··· 8005 7960 sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ=="; 8006 7961 }; 8007 7962 }; 8008 - "@typescript-eslint/types-4.29.1" = { 7963 + "@typescript-eslint/types-4.29.2" = { 8009 7964 name = "_at_typescript-eslint_slash_types"; 8010 7965 packageName = "@typescript-eslint/types"; 8011 - version = "4.29.1"; 7966 + version = "4.29.2"; 8012 7967 src = fetchurl { 8013 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.29.1.tgz"; 8014 - sha512 = "Jj2yu78IRfw4nlaLtKjVaGaxh/6FhofmQ/j8v3NXmAiKafbIqtAPnKYrf0sbGjKdj0hS316J8WhnGnErbJ4RCA=="; 7968 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.29.2.tgz"; 7969 + sha512 = "K6ApnEXId+WTGxqnda8z4LhNMa/pZmbTFkDxEBLQAbhLZL50DjeY0VIDCml/0Y3FlcbqXZrABqrcKxq+n0LwzQ=="; 8015 7970 }; 8016 7971 }; 8017 7972 "@typescript-eslint/typescript-estree-3.10.1" = { ··· 8023 7978 sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w=="; 8024 7979 }; 8025 7980 }; 8026 - "@typescript-eslint/typescript-estree-4.29.1" = { 7981 + "@typescript-eslint/typescript-estree-4.29.2" = { 8027 7982 name = "_at_typescript-eslint_slash_typescript-estree"; 8028 7983 packageName = "@typescript-eslint/typescript-estree"; 8029 - version = "4.29.1"; 7984 + version = "4.29.2"; 8030 7985 src = fetchurl { 8031 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.1.tgz"; 8032 - sha512 = "lIkkrR9E4lwZkzPiRDNq0xdC3f2iVCUjw/7WPJ4S2Sl6C3nRWkeE1YXCQ0+KsiaQRbpY16jNaokdWnm9aUIsfw=="; 7986 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.2.tgz"; 7987 + sha512 = "TJ0/hEnYxapYn9SGn3dCnETO0r+MjaxtlWZ2xU+EvytF0g4CqTpZL48SqSNn2hXsPolnewF30pdzR9a5Lj3DNg=="; 8033 7988 }; 8034 7989 }; 8035 7990 "@typescript-eslint/visitor-keys-3.10.1" = { ··· 8041 7996 sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ=="; 8042 7997 }; 8043 7998 }; 8044 - "@typescript-eslint/visitor-keys-4.29.1" = { 7999 + "@typescript-eslint/visitor-keys-4.29.2" = { 8045 8000 name = "_at_typescript-eslint_slash_visitor-keys"; 8046 8001 packageName = "@typescript-eslint/visitor-keys"; 8047 - version = "4.29.1"; 8002 + version = "4.29.2"; 8048 8003 src = fetchurl { 8049 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.1.tgz"; 8050 - sha512 = "zLqtjMoXvgdZY/PG6gqA73V8BjqPs4af1v2kiiETBObp+uC6gRYnJLmJHxC0QyUrrHDLJPIWNYxoBV3wbcRlag=="; 8004 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.2.tgz"; 8005 + sha512 = "bDgJLQ86oWHJoZ1ai4TZdgXzJxsea3Ee9u9wsTAvjChdj2WLcVsgWYAPeY7RQMn16tKrlQaBnpKv7KBfs4EQag=="; 8051 8006 }; 8052 8007 }; 8053 8008 "@uifabric/foundation-7.9.26" = { ··· 8230 8185 sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA=="; 8231 8186 }; 8232 8187 }; 8233 - "@vue/compiler-core-3.2.2" = { 8188 + "@vue/compiler-core-3.2.3" = { 8234 8189 name = "_at_vue_slash_compiler-core"; 8235 8190 packageName = "@vue/compiler-core"; 8236 - version = "3.2.2"; 8191 + version = "3.2.3"; 8237 8192 src = fetchurl { 8238 - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.2.tgz"; 8239 - sha512 = "QhCI0ZU5nAR0LMcLgzW3v75374tIrHGp8XG5CzJS7Nsy+iuignbE4MZ2XJfh5TGIrtpuzfWA4eTIfukZf/cRdg=="; 8193 + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.3.tgz"; 8194 + sha512 = "qQpACs40hClYqghS209OBh6NDArKPrS5emWMOH/hzDy0KtOV7Kfyy2ILWRfamIsygq8mg+xHcqtVXOjr21WvQw=="; 8240 8195 }; 8241 8196 }; 8242 - "@vue/compiler-dom-3.2.2" = { 8197 + "@vue/compiler-dom-3.2.3" = { 8243 8198 name = "_at_vue_slash_compiler-dom"; 8244 8199 packageName = "@vue/compiler-dom"; 8245 - version = "3.2.2"; 8200 + version = "3.2.3"; 8246 8201 src = fetchurl { 8247 - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.2.tgz"; 8248 - sha512 = "ggcc+NV/ENIE0Uc3TxVE/sKrhYVpLepMAAmEiQ047332mbKOvUkowz4TTFZ+YkgOIuBOPP0XpCxmCMg7p874mA=="; 8202 + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.3.tgz"; 8203 + sha512 = "hEKd+h9eIT+et/l0Nmiup5CWFHC4KuhUcrdAIPLcv1uskVQA3gSDAAx9UGB/G9cRB2gmBpFONHEi8zKrlnsaWQ=="; 8249 8204 }; 8250 8205 }; 8251 - "@vue/shared-3.2.2" = { 8206 + "@vue/shared-3.2.3" = { 8252 8207 name = "_at_vue_slash_shared"; 8253 8208 packageName = "@vue/shared"; 8254 - version = "3.2.2"; 8209 + version = "3.2.3"; 8255 8210 src = fetchurl { 8256 - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.2.tgz"; 8257 - sha512 = "dvYb318tk9uOzHtSaT3WII/HscQSIRzoCZ5GyxEb3JlkEXASpAUAQwKnvSe2CudnF8XHFRTB7VITWSnWNLZUtA=="; 8211 + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.3.tgz"; 8212 + sha512 = "1f8kyoabSgoga0E89itGIoaCo2Ayr6i6jQq/kHhhYrrBxoK7LNNwuWQghW0k/bapimyIzQiN891XzquYP78aqg=="; 8258 8213 }; 8259 8214 }; 8260 8215 "@webassemblyjs/ast-1.11.1" = { ··· 8770 8725 sha512 = "ASiVB3t9LOKHs5DyVUcxpraBXDOKubYu/ihHhU+t1UPpxsivg6Od2E2qU4gJCekfEddzRBzHhzA/Acyw/mlK/w=="; 8771 8726 }; 8772 8727 }; 8773 - "@webpack-cli/serve-1.5.1" = { 8728 + "@webpack-cli/serve-1.5.2" = { 8774 8729 name = "_at_webpack-cli_slash_serve"; 8775 8730 packageName = "@webpack-cli/serve"; 8776 - version = "1.5.1"; 8731 + version = "1.5.2"; 8777 8732 src = fetchurl { 8778 - url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.5.1.tgz"; 8779 - sha512 = "4vSVUiOPJLmr45S8rMGy7WDvpWxfFxfP/Qx/cxZFCfvoypTYpPPL1X8VIZMe0WTA+Jr7blUxwUSEZNkjoMTgSw=="; 8733 + url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.5.2.tgz"; 8734 + sha512 = "vgJ5OLWadI8aKjDlOH3rb+dYyPd2GTZuQC/Tihjct6F9GpXGZINo3Y/IVuZVTM1eDQB+/AOsjPUWH/WySDaXvw=="; 8780 8735 }; 8781 8736 }; 8782 8737 "@wry/context-0.6.1" = { ··· 9310 9265 sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa"; 9311 9266 }; 9312 9267 }; 9313 - "addons-linter-3.8.0" = { 9268 + "addons-linter-3.12.0" = { 9314 9269 name = "addons-linter"; 9315 9270 packageName = "addons-linter"; 9316 - version = "3.8.0"; 9271 + version = "3.12.0"; 9317 9272 src = fetchurl { 9318 - url = "https://registry.npmjs.org/addons-linter/-/addons-linter-3.8.0.tgz"; 9319 - sha512 = "k2s7PS7Oiq9NZnpf1SjG6hyefMC082a91BhSw30QEUgvDT54E2d6j8wfbar1WEigc9uYZgGv3VfzEeqTgoLUpw=="; 9273 + url = "https://registry.npmjs.org/addons-linter/-/addons-linter-3.12.0.tgz"; 9274 + sha512 = "GAvHjjqxVn8cQYBD6xshneACdaY2KjakWIyUhXrVbx3g8TZSF78ISucKZ1+XtKZLDvEr1LIJjeeYlR49LNH3CQ=="; 9320 9275 }; 9321 9276 }; 9322 - "addons-scanner-utils-4.8.0" = { 9277 + "addons-scanner-utils-4.9.0" = { 9323 9278 name = "addons-scanner-utils"; 9324 9279 packageName = "addons-scanner-utils"; 9325 - version = "4.8.0"; 9280 + version = "4.9.0"; 9326 9281 src = fetchurl { 9327 - url = "https://registry.npmjs.org/addons-scanner-utils/-/addons-scanner-utils-4.8.0.tgz"; 9328 - sha512 = "LjwZql59OKrQgppreOvRcgJDYrnj9XKVW2gb5Q1ZyGG3CH46VCiiNHJB6nYMgOntLo+DPQwQQPOSknZ1zW+wTw=="; 9282 + url = "https://registry.npmjs.org/addons-scanner-utils/-/addons-scanner-utils-4.9.0.tgz"; 9283 + sha512 = "RF+pVMSj3CcWV6NH4pBboCZnpzfr48ZmJCBXt/LZbU59PNepZDFxax9tl2MXzX01AXNwKUGa321pPyc5h4zV5A=="; 9329 9284 }; 9330 9285 }; 9331 9286 "addr-to-ip-port-1.5.4" = { ··· 9562 9517 sha512 = "USH2jBb+C/hIpwD2iRjp0pe0k+MvzG0mlSn/FIdCgQhUb9ALPRjt2KIQdfZDS9r0ZIeUAg7gOu9KL0PFqGqr5Q=="; 9563 9518 }; 9564 9519 }; 9520 + "ajv-formats-2.1.1" = { 9521 + name = "ajv-formats"; 9522 + packageName = "ajv-formats"; 9523 + version = "2.1.1"; 9524 + src = fetchurl { 9525 + url = "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz"; 9526 + sha512 = "Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA=="; 9527 + }; 9528 + }; 9565 9529 "ajv-keywords-1.5.1" = { 9566 9530 name = "ajv-keywords"; 9567 9531 packageName = "ajv-keywords"; ··· 11425 11389 sha512 = "vRfQwcqBnJTLzVQo72Sf7KIUbcSUP5hNchx6udI1U6LuPQpfePgdjJzlCe76yFZ8pxlLjn9lwcl/Ya0TSOv0Tw=="; 11426 11390 }; 11427 11391 }; 11428 - "async-retry-1.3.1" = { 11392 + "async-retry-1.3.3" = { 11429 11393 name = "async-retry"; 11430 11394 packageName = "async-retry"; 11431 - version = "1.3.1"; 11395 + version = "1.3.3"; 11432 11396 src = fetchurl { 11433 - url = "https://registry.npmjs.org/async-retry/-/async-retry-1.3.1.tgz"; 11434 - sha512 = "aiieFW/7h3hY0Bq5d+ktDBejxuwR78vRu9hDUdR8rNhSaQ29VzPL4AoIRG7D/c7tdenwOcKvgPM6tIxB3cB6HA=="; 11397 + url = "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz"; 11398 + sha512 = "wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw=="; 11435 11399 }; 11436 11400 }; 11437 11401 "async-retry-ng-2.0.1" = { ··· 11668 11632 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11669 11633 }; 11670 11634 }; 11671 - "aws-sdk-2.968.0" = { 11635 + "aws-sdk-2.969.0" = { 11672 11636 name = "aws-sdk"; 11673 11637 packageName = "aws-sdk"; 11674 - version = "2.968.0"; 11638 + version = "2.969.0"; 11675 11639 src = fetchurl { 11676 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.968.0.tgz"; 11677 - sha512 = "6kXJ/4asP+zI8oFJAUqEmVoaLOnAYriorigKy8ZjFe3ISl4w0PEOXBG1TtQFuLiNPR3BAvhRuOQ5yH6JfqDNNw=="; 11640 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.969.0.tgz"; 11641 + sha512 = "bDQenWDH9CdPIsgh7E6zgq2bO576teSnlQv1Oz0IwxVq+AbGsArSJXjNrvniV1l9TrqPOZk9dqBa/q4mOzwyLw=="; 11678 11642 }; 11679 11643 }; 11680 11644 "aws-sign2-0.6.0" = { ··· 16745 16709 sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; 16746 16710 }; 16747 16711 }; 16748 - "codemaker-1.32.0" = { 16712 + "codemaker-1.33.0" = { 16749 16713 name = "codemaker"; 16750 16714 packageName = "codemaker"; 16751 - version = "1.32.0"; 16715 + version = "1.33.0"; 16752 16716 src = fetchurl { 16753 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.32.0.tgz"; 16754 - sha512 = "RYHzKPI83NJi0u7KjUVeAm4rmMwIPjLsFjcSv8sIZizNiVFwWNxON99YhtFvbg0YMbdMnjpkx0W/VADNuwETGA=="; 16717 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.33.0.tgz"; 16718 + sha512 = "u9PYqE1HaKINgMDpV7HyYVbtPDbHJNSPn1rTsYSsUkmi1DH1/3tK5nBJ7eUGNbkMP+k2hz7SQGTVcWEMRNAZ0w=="; 16755 16719 }; 16756 16720 }; 16757 16721 "codepage-1.4.0" = { ··· 17339 17303 sha1 = "34fc3672cd24393e8bb47e70caa0293811f4f2c5"; 17340 17304 }; 17341 17305 }; 17342 - "commonmark-0.29.3" = { 17306 + "commonmark-0.30.0" = { 17343 17307 name = "commonmark"; 17344 17308 packageName = "commonmark"; 17345 - version = "0.29.3"; 17309 + version = "0.30.0"; 17346 17310 src = fetchurl { 17347 - url = "https://registry.npmjs.org/commonmark/-/commonmark-0.29.3.tgz"; 17348 - sha512 = "fvt/NdOFKaL2gyhltSy6BC4LxbbxbnPxBMl923ittqO/JBM0wQHaoYZliE4tp26cRxX/ZZtRsJlZzQrVdUkXAA=="; 17311 + url = "https://registry.npmjs.org/commonmark/-/commonmark-0.30.0.tgz"; 17312 + sha512 = "j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA=="; 17349 17313 }; 17350 17314 }; 17351 17315 "compact2string-1.4.1" = { ··· 17798 17762 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 17799 17763 }; 17800 17764 }; 17801 - "constructs-3.3.121" = { 17765 + "constructs-3.3.125" = { 17802 17766 name = "constructs"; 17803 17767 packageName = "constructs"; 17804 - version = "3.3.121"; 17768 + version = "3.3.125"; 17805 17769 src = fetchurl { 17806 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.121.tgz"; 17807 - sha512 = "vYTkqiaoGWecZ5yyBkeuPkJd6HsQbABuewGMMUTHI7FcvQk9A52j5KZMfIQ0O5TS2ssPUt4WytuIOdTEW+vIRQ=="; 17770 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.125.tgz"; 17771 + sha512 = "uO6Cm4tINBpnqky9OAGi1fMAESW2adKlwvaTebAtCdmY3COaeGgu1AMwiaLg4INROZE+yONdI4W6xfuq7uDoHQ=="; 17808 17772 }; 17809 17773 }; 17810 17774 "consume-http-header-1.0.0" = { ··· 17880 17844 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 17881 17845 }; 17882 17846 }; 17883 - "contentful-management-7.31.0" = { 17847 + "contentful-management-7.32.0" = { 17884 17848 name = "contentful-management"; 17885 17849 packageName = "contentful-management"; 17886 - version = "7.31.0"; 17850 + version = "7.32.0"; 17887 17851 src = fetchurl { 17888 - url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.31.0.tgz"; 17889 - sha512 = "YhPikvkO/ckRTO400I+iHYpVLuHwPyMzTQcMwBWpUluXYCF45I/RpWw7cyNQciQ19Q0NpjgEfUTQnhFhIqHtwA=="; 17852 + url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.32.0.tgz"; 17853 + sha512 = "L3W3XuSwRzW5X0iVj4rwW8IGSc8+yr+VIzSmTzu5aJv0qVGpYyIAq741nhZj8WhnkJJJu1JisZaRNbj6mGe1wQ=="; 17890 17854 }; 17891 17855 }; 17892 17856 "contentful-sdk-core-6.8.0" = { ··· 18303 18267 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 18304 18268 }; 18305 18269 }; 18306 - "core-js-3.12.0" = { 18270 + "core-js-3.16.0" = { 18307 18271 name = "core-js"; 18308 18272 packageName = "core-js"; 18309 - version = "3.12.0"; 18273 + version = "3.16.0"; 18310 18274 src = fetchurl { 18311 - url = "https://registry.npmjs.org/core-js/-/core-js-3.12.0.tgz"; 18312 - sha512 = "SaMnchL//WwU2Ot1hhkPflE8gzo7uq1FGvUJ8GKmi3TOU7rGTHIU+eir1WGf6qOtTyxdfdcp10yPdGZ59sQ3hw=="; 18275 + url = "https://registry.npmjs.org/core-js/-/core-js-3.16.0.tgz"; 18276 + sha512 = "5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g=="; 18313 18277 }; 18314 18278 }; 18315 - "core-js-3.16.1" = { 18279 + "core-js-3.16.2" = { 18316 18280 name = "core-js"; 18317 18281 packageName = "core-js"; 18318 - version = "3.16.1"; 18282 + version = "3.16.2"; 18319 18283 src = fetchurl { 18320 - url = "https://registry.npmjs.org/core-js/-/core-js-3.16.1.tgz"; 18321 - sha512 = "AAkP8i35EbefU+JddyWi12AWE9f2N/qr/pwnDtWz4nyUIBGMJPX99ANFFRSw6FefM374lDujdtLDyhN2A/btHw=="; 18284 + url = "https://registry.npmjs.org/core-js/-/core-js-3.16.2.tgz"; 18285 + sha512 = "P0KPukO6OjMpjBtHSceAZEWlDD1M2Cpzpg6dBbrjFqFhBHe/BwhxaP820xKOjRn/lZRQirrCusIpLS/n2sgXLQ=="; 18322 18286 }; 18323 18287 }; 18324 - "core-js-compat-3.16.1" = { 18288 + "core-js-compat-3.16.2" = { 18325 18289 name = "core-js-compat"; 18326 18290 packageName = "core-js-compat"; 18327 - version = "3.16.1"; 18291 + version = "3.16.2"; 18328 18292 src = fetchurl { 18329 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.1.tgz"; 18330 - sha512 = "NHXQXvRbd4nxp9TEmooTJLUf94ySUG6+DSsscBpTftN1lQLQ4LjnWvc7AoIo4UjDsFF3hB8Uh5LLCRRdaiT5MQ=="; 18293 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.2.tgz"; 18294 + sha512 = "4lUshXtBXsdmp8cDWh6KKiHUg40AjiuPD3bOWkNVsr1xkAhpUqCjaZ8lB1bKx9Gb5fXcbRbFJ4f4qpRIRTuJqQ=="; 18331 18295 }; 18332 18296 }; 18333 - "core-js-pure-3.16.1" = { 18297 + "core-js-pure-3.16.2" = { 18334 18298 name = "core-js-pure"; 18335 18299 packageName = "core-js-pure"; 18336 - version = "3.16.1"; 18300 + version = "3.16.2"; 18337 18301 src = fetchurl { 18338 - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.1.tgz"; 18339 - sha512 = "TyofCdMzx0KMhi84mVRS8rL1XsRk2SPUNz2azmth53iRN0/08Uim9fdhQTaZTG1LqaXHYVci4RDHka6WrXfnvg=="; 18302 + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.2.tgz"; 18303 + sha512 = "oxKe64UH049mJqrKkynWp6Vu0Rlm/BTXO/bJZuN2mmR3RtOFNepLlSWDd1eo16PzHpQAoNG97rLU1V/YxesJjw=="; 18340 18304 }; 18341 18305 }; 18342 18306 "core-util-is-1.0.2" = { ··· 18445 18409 src = fetchurl { 18446 18410 url = "https://registry.npmjs.org/count-trailing-zeros/-/count-trailing-zeros-1.0.1.tgz"; 18447 18411 sha1 = "aba6c5833be410d45b1eca3e6d583844ce682c77"; 18448 - }; 18449 - }; 18450 - "cp-file-6.2.0" = { 18451 - name = "cp-file"; 18452 - packageName = "cp-file"; 18453 - version = "6.2.0"; 18454 - src = fetchurl { 18455 - url = "https://registry.npmjs.org/cp-file/-/cp-file-6.2.0.tgz"; 18456 - sha512 = "fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA=="; 18457 18412 }; 18458 18413 }; 18459 18414 "cp-file-7.0.0" = { ··· 19401 19356 sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; 19402 19357 }; 19403 19358 }; 19359 + "d3-7.0.1" = { 19360 + name = "d3"; 19361 + packageName = "d3"; 19362 + version = "7.0.1"; 19363 + src = fetchurl { 19364 + url = "https://registry.npmjs.org/d3/-/d3-7.0.1.tgz"; 19365 + sha512 = "74zonD4nAtxF9dtwFwJ3RuoHPh2D/UTFX26midBuMVH+7pRbOezuyLUIb8mbQMuYFlcUXT+xy++orCmnvMM/CA=="; 19366 + }; 19367 + }; 19404 19368 "d3-array-1.2.4" = { 19405 19369 name = "d3-array"; 19406 19370 packageName = "d3-array"; ··· 19419 19383 sha512 = "B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ=="; 19420 19384 }; 19421 19385 }; 19386 + "d3-array-3.0.2" = { 19387 + name = "d3-array"; 19388 + packageName = "d3-array"; 19389 + version = "3.0.2"; 19390 + src = fetchurl { 19391 + url = "https://registry.npmjs.org/d3-array/-/d3-array-3.0.2.tgz"; 19392 + sha512 = "nTN4OC6ufZueotlexbxBd2z8xmG1eIfhvP2m1auH2ONps0L+AZn1r0JWuzMXZ6XgOj1VBOp7GGZmEs9NUFEBbA=="; 19393 + }; 19394 + }; 19422 19395 "d3-axis-1.0.12" = { 19423 19396 name = "d3-axis"; 19424 19397 packageName = "d3-axis"; ··· 19428 19401 sha512 = "ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ=="; 19429 19402 }; 19430 19403 }; 19404 + "d3-axis-3.0.0" = { 19405 + name = "d3-axis"; 19406 + packageName = "d3-axis"; 19407 + version = "3.0.0"; 19408 + src = fetchurl { 19409 + url = "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz"; 19410 + sha512 = "IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw=="; 19411 + }; 19412 + }; 19431 19413 "d3-brush-1.1.6" = { 19432 19414 name = "d3-brush"; 19433 19415 packageName = "d3-brush"; ··· 19437 19419 sha512 = "7RW+w7HfMCPyZLifTz/UnJmI5kdkXtpCbombUSs8xniAyo0vIbrDzDwUJB6eJOgl9u5DQOt2TQlYumxzD1SvYA=="; 19438 19420 }; 19439 19421 }; 19422 + "d3-brush-3.0.0" = { 19423 + name = "d3-brush"; 19424 + packageName = "d3-brush"; 19425 + version = "3.0.0"; 19426 + src = fetchurl { 19427 + url = "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz"; 19428 + sha512 = "ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ=="; 19429 + }; 19430 + }; 19440 19431 "d3-chord-1.0.6" = { 19441 19432 name = "d3-chord"; 19442 19433 packageName = "d3-chord"; ··· 19446 19437 sha512 = "JXA2Dro1Fxw9rJe33Uv+Ckr5IrAa74TlfDEhE/jfLOaXegMQFQTAgAw9WnZL8+HxVBRXaRGCkrNU7pJeylRIuA=="; 19447 19438 }; 19448 19439 }; 19440 + "d3-chord-3.0.1" = { 19441 + name = "d3-chord"; 19442 + packageName = "d3-chord"; 19443 + version = "3.0.1"; 19444 + src = fetchurl { 19445 + url = "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz"; 19446 + sha512 = "VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g=="; 19447 + }; 19448 + }; 19449 19449 "d3-collection-1.0.7" = { 19450 19450 name = "d3-collection"; 19451 19451 packageName = "d3-collection"; ··· 19473 19473 sha512 = "SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ=="; 19474 19474 }; 19475 19475 }; 19476 + "d3-color-3.0.1" = { 19477 + name = "d3-color"; 19478 + packageName = "d3-color"; 19479 + version = "3.0.1"; 19480 + src = fetchurl { 19481 + url = "https://registry.npmjs.org/d3-color/-/d3-color-3.0.1.tgz"; 19482 + sha512 = "6/SlHkDOBLyQSJ1j1Ghs82OIUXpKWlR0hCsw0XrLSQhuUPuCSmLQ1QPH98vpnQxMUQM2/gfAkUEWsupVpd9JGw=="; 19483 + }; 19484 + }; 19476 19485 "d3-contour-1.3.2" = { 19477 19486 name = "d3-contour"; 19478 19487 packageName = "d3-contour"; ··· 19482 19491 sha512 = "hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg=="; 19483 19492 }; 19484 19493 }; 19494 + "d3-contour-3.0.1" = { 19495 + name = "d3-contour"; 19496 + packageName = "d3-contour"; 19497 + version = "3.0.1"; 19498 + src = fetchurl { 19499 + url = "https://registry.npmjs.org/d3-contour/-/d3-contour-3.0.1.tgz"; 19500 + sha512 = "0Oc4D0KyhwhM7ZL0RMnfGycLN7hxHB8CMmwZ3+H26PWAG0ozNuYG5hXSDNgmP1SgJkQMrlG6cP20HoaSbvcJTQ=="; 19501 + }; 19502 + }; 19485 19503 "d3-delaunay-5.3.0" = { 19486 19504 name = "d3-delaunay"; 19487 19505 packageName = "d3-delaunay"; ··· 19491 19509 sha512 = "amALSrOllWVLaHTnDLHwMIiz0d1bBu9gZXd1FiLfXf8sHcX9jrcj81TVZOqD4UX7MgBZZ07c8GxzEgBpJqc74w=="; 19492 19510 }; 19493 19511 }; 19512 + "d3-delaunay-6.0.2" = { 19513 + name = "d3-delaunay"; 19514 + packageName = "d3-delaunay"; 19515 + version = "6.0.2"; 19516 + src = fetchurl { 19517 + url = "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.2.tgz"; 19518 + sha512 = "IMLNldruDQScrcfT+MWnazhHbDJhcRJyOEBAJfwQnHle1RPh6WDuLvxNArUju2VSMSUuKlY5BGHRJ2cYyoFLQQ=="; 19519 + }; 19520 + }; 19494 19521 "d3-dispatch-1.0.6" = { 19495 19522 name = "d3-dispatch"; 19496 19523 packageName = "d3-dispatch"; ··· 19509 19536 sha512 = "S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA=="; 19510 19537 }; 19511 19538 }; 19539 + "d3-dispatch-3.0.1" = { 19540 + name = "d3-dispatch"; 19541 + packageName = "d3-dispatch"; 19542 + version = "3.0.1"; 19543 + src = fetchurl { 19544 + url = "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz"; 19545 + sha512 = "rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg=="; 19546 + }; 19547 + }; 19512 19548 "d3-drag-1.2.5" = { 19513 19549 name = "d3-drag"; 19514 19550 packageName = "d3-drag"; ··· 19518 19554 sha512 = "rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w=="; 19519 19555 }; 19520 19556 }; 19557 + "d3-drag-2.0.0" = { 19558 + name = "d3-drag"; 19559 + packageName = "d3-drag"; 19560 + version = "2.0.0"; 19561 + src = fetchurl { 19562 + url = "https://registry.npmjs.org/d3-drag/-/d3-drag-2.0.0.tgz"; 19563 + sha512 = "g9y9WbMnF5uqB9qKqwIIa/921RYWzlUDv9Jl1/yONQwxbOfszAWTCm8u7HOTgJgRDXiRZN56cHT9pd24dmXs8w=="; 19564 + }; 19565 + }; 19566 + "d3-drag-3.0.0" = { 19567 + name = "d3-drag"; 19568 + packageName = "d3-drag"; 19569 + version = "3.0.0"; 19570 + src = fetchurl { 19571 + url = "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz"; 19572 + sha512 = "pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg=="; 19573 + }; 19574 + }; 19521 19575 "d3-dsv-1.2.0" = { 19522 19576 name = "d3-dsv"; 19523 19577 packageName = "d3-dsv"; ··· 19536 19590 sha512 = "E+Pn8UJYx9mViuIUkoc93gJGGYut6mSDKy2+XaPwccwkRGlR+LO97L2VCCRjQivTwLHkSnAJG7yo00BWY6QM+w=="; 19537 19591 }; 19538 19592 }; 19593 + "d3-dsv-3.0.1" = { 19594 + name = "d3-dsv"; 19595 + packageName = "d3-dsv"; 19596 + version = "3.0.1"; 19597 + src = fetchurl { 19598 + url = "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz"; 19599 + sha512 = "UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q=="; 19600 + }; 19601 + }; 19539 19602 "d3-ease-1.0.7" = { 19540 19603 name = "d3-ease"; 19541 19604 packageName = "d3-ease"; ··· 19545 19608 sha512 = "lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ=="; 19546 19609 }; 19547 19610 }; 19611 + "d3-ease-2.0.0" = { 19612 + name = "d3-ease"; 19613 + packageName = "d3-ease"; 19614 + version = "2.0.0"; 19615 + src = fetchurl { 19616 + url = "https://registry.npmjs.org/d3-ease/-/d3-ease-2.0.0.tgz"; 19617 + sha512 = "68/n9JWarxXkOWMshcT5IcjbB+agblQUaIsbnXmrzejn2O82n3p2A9R2zEB9HIEFWKFwPAEDDN8gR0VdSAyyAQ=="; 19618 + }; 19619 + }; 19620 + "d3-ease-3.0.1" = { 19621 + name = "d3-ease"; 19622 + packageName = "d3-ease"; 19623 + version = "3.0.1"; 19624 + src = fetchurl { 19625 + url = "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz"; 19626 + sha512 = "wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w=="; 19627 + }; 19628 + }; 19548 19629 "d3-fetch-1.2.0" = { 19549 19630 name = "d3-fetch"; 19550 19631 packageName = "d3-fetch"; ··· 19554 19635 sha512 = "yC78NBVcd2zFAyR/HnUiBS7Lf6inSCoWcSxFfw8FYL7ydiqe80SazNwoffcqOfs95XaLo7yebsmQqDKSsXUtvA=="; 19555 19636 }; 19556 19637 }; 19638 + "d3-fetch-3.0.1" = { 19639 + name = "d3-fetch"; 19640 + packageName = "d3-fetch"; 19641 + version = "3.0.1"; 19642 + src = fetchurl { 19643 + url = "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz"; 19644 + sha512 = "kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw=="; 19645 + }; 19646 + }; 19557 19647 "d3-force-1.2.1" = { 19558 19648 name = "d3-force"; 19559 19649 packageName = "d3-force"; ··· 19572 19662 sha512 = "nAuHEzBqMvpFVMf9OX75d00OxvOXdxY+xECIXjW6Gv8BRrXu6gAWbv/9XKrvfJ5i5DCokDW7RYE50LRoK092ew=="; 19573 19663 }; 19574 19664 }; 19665 + "d3-force-3.0.0" = { 19666 + name = "d3-force"; 19667 + packageName = "d3-force"; 19668 + version = "3.0.0"; 19669 + src = fetchurl { 19670 + url = "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz"; 19671 + sha512 = "zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg=="; 19672 + }; 19673 + }; 19575 19674 "d3-format-1.4.5" = { 19576 19675 name = "d3-format"; 19577 19676 packageName = "d3-format"; ··· 19590 19689 sha512 = "Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA=="; 19591 19690 }; 19592 19691 }; 19692 + "d3-format-3.0.1" = { 19693 + name = "d3-format"; 19694 + packageName = "d3-format"; 19695 + version = "3.0.1"; 19696 + src = fetchurl { 19697 + url = "https://registry.npmjs.org/d3-format/-/d3-format-3.0.1.tgz"; 19698 + sha512 = "hdL7+HBIohpgfolhBxr1KX47VMD6+vVD/oEFrxk5yhmzV2prk99EkFKYpXuhVkFpTgHdJ6/4bYcjdLPPXV4tIA=="; 19699 + }; 19700 + }; 19593 19701 "d3-geo-1.12.1" = { 19594 19702 name = "d3-geo"; 19595 19703 packageName = "d3-geo"; ··· 19608 19716 sha512 = "8pM1WGMLGFuhq9S+FpPURxic+gKzjluCD/CHTuUF3mXMeiCo0i6R0tO1s4+GArRFde96SLcW/kOFRjoAosPsFA=="; 19609 19717 }; 19610 19718 }; 19719 + "d3-geo-3.0.1" = { 19720 + name = "d3-geo"; 19721 + packageName = "d3-geo"; 19722 + version = "3.0.1"; 19723 + src = fetchurl { 19724 + url = "https://registry.npmjs.org/d3-geo/-/d3-geo-3.0.1.tgz"; 19725 + sha512 = "Wt23xBych5tSy9IYAM1FR2rWIBFWa52B/oF/GYe5zbdHrg08FU8+BuI6X4PvTwPDdqdAdq04fuWJpELtsaEjeA=="; 19726 + }; 19727 + }; 19611 19728 "d3-geo-projection-3.0.0" = { 19612 19729 name = "d3-geo-projection"; 19613 19730 packageName = "d3-geo-projection"; ··· 19617 19734 sha512 = "1JE+filVbkEX2bT25dJdQ05iA4QHvUwev6o0nIQHOSrNlHCAKfVss/U10vEM3pA4j5v7uQoFdQ4KLbx9BlEbWA=="; 19618 19735 }; 19619 19736 }; 19737 + "d3-graphviz-4.0.0" = { 19738 + name = "d3-graphviz"; 19739 + packageName = "d3-graphviz"; 19740 + version = "4.0.0"; 19741 + src = fetchurl { 19742 + url = "https://registry.npmjs.org/d3-graphviz/-/d3-graphviz-4.0.0.tgz"; 19743 + sha512 = "j+fRjPiLnMa3C2QLIWld13vJQzkd9uBhYXZJQSgKI7z2uTvCdMcrvvxJYg7vGdzqceMImKq5Is/oX8kDw+1xng=="; 19744 + }; 19745 + }; 19620 19746 "d3-hierarchy-1.1.9" = { 19621 19747 name = "d3-hierarchy"; 19622 19748 packageName = "d3-hierarchy"; ··· 19633 19759 src = fetchurl { 19634 19760 url = "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-2.0.0.tgz"; 19635 19761 sha512 = "SwIdqM3HxQX2214EG9GTjgmCc/mbSx4mQBn+DuEETubhOw6/U3fmnji4uCVrmzOydMHSO1nZle5gh6HB/wdOzw=="; 19762 + }; 19763 + }; 19764 + "d3-hierarchy-3.0.1" = { 19765 + name = "d3-hierarchy"; 19766 + packageName = "d3-hierarchy"; 19767 + version = "3.0.1"; 19768 + src = fetchurl { 19769 + url = "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.0.1.tgz"; 19770 + sha512 = "RlLTaofEoOrMK1JoXYIGhKTkJFI/6rFrYPgxy6QlZo2BcVc4HGTqEU0rPpzuMq5T/5XcMtAzv1XiLA3zRTfygw=="; 19636 19771 }; 19637 19772 }; 19638 19773 "d3-interpolate-1.4.0" = { ··· 19653 19788 sha512 = "c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ=="; 19654 19789 }; 19655 19790 }; 19791 + "d3-interpolate-3.0.1" = { 19792 + name = "d3-interpolate"; 19793 + packageName = "d3-interpolate"; 19794 + version = "3.0.1"; 19795 + src = fetchurl { 19796 + url = "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz"; 19797 + sha512 = "3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g=="; 19798 + }; 19799 + }; 19656 19800 "d3-path-1.0.9" = { 19657 19801 name = "d3-path"; 19658 19802 packageName = "d3-path"; ··· 19669 19813 src = fetchurl { 19670 19814 url = "https://registry.npmjs.org/d3-path/-/d3-path-2.0.0.tgz"; 19671 19815 sha512 = "ZwZQxKhBnv9yHaiWd6ZU4x5BtCQ7pXszEV9CU6kRgwIQVQGLMv1oiL4M+MK/n79sYzsj+gcgpPQSctJUsLN7fA=="; 19816 + }; 19817 + }; 19818 + "d3-path-3.0.1" = { 19819 + name = "d3-path"; 19820 + packageName = "d3-path"; 19821 + version = "3.0.1"; 19822 + src = fetchurl { 19823 + url = "https://registry.npmjs.org/d3-path/-/d3-path-3.0.1.tgz"; 19824 + sha512 = "gq6gZom9AFZby0YLduxT1qmrp4xpBA1YZr19OI717WIdKE2OM5ETq5qrHLb301IgxhLwcuxvGZVLeeWc/k1I6w=="; 19672 19825 }; 19673 19826 }; 19674 19827 "d3-polygon-1.0.6" = { ··· 19680 19833 sha512 = "k+RF7WvI08PC8reEoXa/w2nSg5AUMTi+peBD9cmFc+0ixHfbs4QmxxkarVal1IkVkgxVuk9JSHhJURHiyHKAuQ=="; 19681 19834 }; 19682 19835 }; 19836 + "d3-polygon-3.0.1" = { 19837 + name = "d3-polygon"; 19838 + packageName = "d3-polygon"; 19839 + version = "3.0.1"; 19840 + src = fetchurl { 19841 + url = "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz"; 19842 + sha512 = "3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg=="; 19843 + }; 19844 + }; 19683 19845 "d3-quadtree-1.0.7" = { 19684 19846 name = "d3-quadtree"; 19685 19847 packageName = "d3-quadtree"; ··· 19698 19860 sha512 = "b0Ed2t1UUalJpc3qXzKi+cPGxeXRr4KU9YSlocN74aTzp6R/Ud43t79yLLqxHRWZfsvWXmbDWPpoENK1K539xw=="; 19699 19861 }; 19700 19862 }; 19863 + "d3-quadtree-3.0.1" = { 19864 + name = "d3-quadtree"; 19865 + packageName = "d3-quadtree"; 19866 + version = "3.0.1"; 19867 + src = fetchurl { 19868 + url = "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz"; 19869 + sha512 = "04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw=="; 19870 + }; 19871 + }; 19701 19872 "d3-random-1.1.2" = { 19702 19873 name = "d3-random"; 19703 19874 packageName = "d3-random"; ··· 19707 19878 sha512 = "6AK5BNpIFqP+cx/sreKzNjWbwZQCSUatxq+pPRmFIQaWuoD+NrbVWw7YWpHiXpCQ/NanKdtGDuB+VQcZDaEmYQ=="; 19708 19879 }; 19709 19880 }; 19881 + "d3-random-3.0.1" = { 19882 + name = "d3-random"; 19883 + packageName = "d3-random"; 19884 + version = "3.0.1"; 19885 + src = fetchurl { 19886 + url = "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz"; 19887 + sha512 = "FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ=="; 19888 + }; 19889 + }; 19710 19890 "d3-scale-2.2.2" = { 19711 19891 name = "d3-scale"; 19712 19892 packageName = "d3-scale"; ··· 19725 19905 sha512 = "1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ=="; 19726 19906 }; 19727 19907 }; 19908 + "d3-scale-4.0.0" = { 19909 + name = "d3-scale"; 19910 + packageName = "d3-scale"; 19911 + version = "4.0.0"; 19912 + src = fetchurl { 19913 + url = "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.0.tgz"; 19914 + sha512 = "foHQYKpWQcyndH1CGoHdUC4PECxTxonzwwBXGT8qu+Drb1FIc6ON6dG2P5f4hRRMkLiIKeWK7iFtdznDUrnuPQ=="; 19915 + }; 19916 + }; 19728 19917 "d3-scale-chromatic-1.5.0" = { 19729 19918 name = "d3-scale-chromatic"; 19730 19919 packageName = "d3-scale-chromatic"; ··· 19734 19923 sha512 = "ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg=="; 19735 19924 }; 19736 19925 }; 19926 + "d3-scale-chromatic-3.0.0" = { 19927 + name = "d3-scale-chromatic"; 19928 + packageName = "d3-scale-chromatic"; 19929 + version = "3.0.0"; 19930 + src = fetchurl { 19931 + url = "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz"; 19932 + sha512 = "Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g=="; 19933 + }; 19934 + }; 19737 19935 "d3-selection-1.4.2" = { 19738 19936 name = "d3-selection"; 19739 19937 packageName = "d3-selection"; ··· 19743 19941 sha512 = "SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg=="; 19744 19942 }; 19745 19943 }; 19944 + "d3-selection-2.0.0" = { 19945 + name = "d3-selection"; 19946 + packageName = "d3-selection"; 19947 + version = "2.0.0"; 19948 + src = fetchurl { 19949 + url = "https://registry.npmjs.org/d3-selection/-/d3-selection-2.0.0.tgz"; 19950 + sha512 = "XoGGqhLUN/W14NmaqcO/bb1nqjDAw5WtSYb2X8wiuQWvSZUsUVYsOSkOybUrNvcBjaywBdYPy03eXHMXjk9nZA=="; 19951 + }; 19952 + }; 19953 + "d3-selection-3.0.0" = { 19954 + name = "d3-selection"; 19955 + packageName = "d3-selection"; 19956 + version = "3.0.0"; 19957 + src = fetchurl { 19958 + url = "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz"; 19959 + sha512 = "fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ=="; 19960 + }; 19961 + }; 19746 19962 "d3-shape-1.3.7" = { 19747 19963 name = "d3-shape"; 19748 19964 packageName = "d3-shape"; ··· 19761 19977 sha512 = "PnjUqfM2PpskbSLTJvAzp2Wv4CZsnAgTfcVRTwW03QR3MkXF8Uo7B1y/lWkAsmbKwuecto++4NlsYcvYpXpTHA=="; 19762 19978 }; 19763 19979 }; 19980 + "d3-shape-3.0.1" = { 19981 + name = "d3-shape"; 19982 + packageName = "d3-shape"; 19983 + version = "3.0.1"; 19984 + src = fetchurl { 19985 + url = "https://registry.npmjs.org/d3-shape/-/d3-shape-3.0.1.tgz"; 19986 + sha512 = "HNZNEQoDhuCrDWEc/BMbF/hKtzMZVoe64TvisFLDp2Iyj0UShB/E6/lBsLlJTfBMbYgftHj90cXJ0SEitlE6Xw=="; 19987 + }; 19988 + }; 19764 19989 "d3-time-1.1.0" = { 19765 19990 name = "d3-time"; 19766 19991 packageName = "d3-time"; ··· 19779 20004 sha512 = "/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ=="; 19780 20005 }; 19781 20006 }; 20007 + "d3-time-3.0.0" = { 20008 + name = "d3-time"; 20009 + packageName = "d3-time"; 20010 + version = "3.0.0"; 20011 + src = fetchurl { 20012 + url = "https://registry.npmjs.org/d3-time/-/d3-time-3.0.0.tgz"; 20013 + sha512 = "zmV3lRnlaLI08y9IMRXSDshQb5Nj77smnfpnd2LrBa/2K281Jijactokeak14QacHs/kKq0AQ121nidNYlarbQ=="; 20014 + }; 20015 + }; 19782 20016 "d3-time-format-2.3.0" = { 19783 20017 name = "d3-time-format"; 19784 20018 packageName = "d3-time-format"; ··· 19797 20031 sha512 = "UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag=="; 19798 20032 }; 19799 20033 }; 20034 + "d3-time-format-4.0.0" = { 20035 + name = "d3-time-format"; 20036 + packageName = "d3-time-format"; 20037 + version = "4.0.0"; 20038 + src = fetchurl { 20039 + url = "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.0.0.tgz"; 20040 + sha512 = "nzaCwlj+ZVBIlFuVOT1RmU+6xb/7D5IcnhHzHQcBgS/aTa5K9fWZNN5LCXA27LgF5WxoSNJqKBbLcGMtM6Ca6A=="; 20041 + }; 20042 + }; 19800 20043 "d3-timer-1.0.10" = { 19801 20044 name = "d3-timer"; 19802 20045 packageName = "d3-timer"; ··· 19815 20058 sha512 = "TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA=="; 19816 20059 }; 19817 20060 }; 20061 + "d3-timer-3.0.1" = { 20062 + name = "d3-timer"; 20063 + packageName = "d3-timer"; 20064 + version = "3.0.1"; 20065 + src = fetchurl { 20066 + url = "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz"; 20067 + sha512 = "ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA=="; 20068 + }; 20069 + }; 19818 20070 "d3-transition-1.3.2" = { 19819 20071 name = "d3-transition"; 19820 20072 packageName = "d3-transition"; ··· 19824 20076 sha512 = "sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA=="; 19825 20077 }; 19826 20078 }; 20079 + "d3-transition-2.0.0" = { 20080 + name = "d3-transition"; 20081 + packageName = "d3-transition"; 20082 + version = "2.0.0"; 20083 + src = fetchurl { 20084 + url = "https://registry.npmjs.org/d3-transition/-/d3-transition-2.0.0.tgz"; 20085 + sha512 = "42ltAGgJesfQE3u9LuuBHNbGrI/AJjNL2OAUdclE70UE6Vy239GCBEYD38uBPoLeNsOhFStGpPI0BAOV+HMxog=="; 20086 + }; 20087 + }; 20088 + "d3-transition-3.0.1" = { 20089 + name = "d3-transition"; 20090 + packageName = "d3-transition"; 20091 + version = "3.0.1"; 20092 + src = fetchurl { 20093 + url = "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz"; 20094 + sha512 = "ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w=="; 20095 + }; 20096 + }; 19827 20097 "d3-voronoi-1.1.4" = { 19828 20098 name = "d3-voronoi"; 19829 20099 packageName = "d3-voronoi"; ··· 19842 20112 sha512 = "VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ=="; 19843 20113 }; 19844 20114 }; 20115 + "d3-zoom-2.0.0" = { 20116 + name = "d3-zoom"; 20117 + packageName = "d3-zoom"; 20118 + version = "2.0.0"; 20119 + src = fetchurl { 20120 + url = "https://registry.npmjs.org/d3-zoom/-/d3-zoom-2.0.0.tgz"; 20121 + sha512 = "fFg7aoaEm9/jf+qfstak0IYpnesZLiMX6GZvXtUSdv8RH2o4E2qeelgdU09eKS6wGuiGMfcnMI0nTIqWzRHGpw=="; 20122 + }; 20123 + }; 20124 + "d3-zoom-3.0.0" = { 20125 + name = "d3-zoom"; 20126 + packageName = "d3-zoom"; 20127 + version = "3.0.0"; 20128 + src = fetchurl { 20129 + url = "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz"; 20130 + sha512 = "b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw=="; 20131 + }; 20132 + }; 19845 20133 "dag-map-1.0.2" = { 19846 20134 name = "dag-map"; 19847 20135 packageName = "dag-map"; ··· 20911 21199 src = fetchurl { 20912 21200 url = "https://registry.npmjs.org/delaunator/-/delaunator-4.0.1.tgz"; 20913 21201 sha512 = "WNPWi1IRKZfCt/qIDMfERkDp93+iZEmOxN2yy4Jg+Xhv8SLk2UTqqbe1sfiipn0and9QrE914/ihdx82Y/Giag=="; 21202 + }; 21203 + }; 21204 + "delaunator-5.0.0" = { 21205 + name = "delaunator"; 21206 + packageName = "delaunator"; 21207 + version = "5.0.0"; 21208 + src = fetchurl { 21209 + url = "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz"; 21210 + sha512 = "AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw=="; 20914 21211 }; 20915 21212 }; 20916 21213 "delay-4.4.1" = { ··· 22524 22821 sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; 22525 22822 }; 22526 22823 }; 22527 - "electron-13.1.9" = { 22824 + "electron-13.2.0" = { 22528 22825 name = "electron"; 22529 22826 packageName = "electron"; 22530 - version = "13.1.9"; 22827 + version = "13.2.0"; 22531 22828 src = fetchurl { 22532 - url = "https://registry.npmjs.org/electron/-/electron-13.1.9.tgz"; 22533 - sha512 = "By4Zb72XNQLrPb70BXdIW3NtEHFwybP5DIQjohnCxOYONq5vojuHjNcTuWnBgMvwQ2qwykk6Tw5EwF2Pt0CWjA=="; 22829 + url = "https://registry.npmjs.org/electron/-/electron-13.2.0.tgz"; 22830 + sha512 = "ZnRm1WWhHIKyoNAKVz7nPOHG42v5dhe0uqFsGW5x/KLK8kikHEXIduRnC4Y2XanckHeUFI9tZddWVSIBgqGBGg=="; 22534 22831 }; 22535 22832 }; 22536 22833 "electron-notarize-1.1.0" = { ··· 22569 22866 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22570 22867 }; 22571 22868 }; 22572 - "electron-to-chromium-1.3.805" = { 22869 + "electron-to-chromium-1.3.808" = { 22573 22870 name = "electron-to-chromium"; 22574 22871 packageName = "electron-to-chromium"; 22575 - version = "1.3.805"; 22872 + version = "1.3.808"; 22576 22873 src = fetchurl { 22577 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.805.tgz"; 22578 - sha512 = "uUJF59M6pNSRHQaXwdkaNB4BhSQ9lldRdG1qCjlrAFkynPGDc5wPoUcYEQQeQGmKyAWJPvGkYAWmtVrxWmDAkg=="; 22874 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.808.tgz"; 22875 + sha512 = "espnsbWTuUw0a2jMwfabCc09py2ujB+FZZE1hZWn5yYijEmxzEhdhTLKUfZGjynHvdIMQ4X/Pr/t8s4eiyH/QQ=="; 22579 22876 }; 22580 22877 }; 22581 22878 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 23417 23714 sha512 = "HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg=="; 23418 23715 }; 23419 23716 }; 23717 + "es6-promisify-7.0.0" = { 23718 + name = "es6-promisify"; 23719 + packageName = "es6-promisify"; 23720 + version = "7.0.0"; 23721 + src = fetchurl { 23722 + url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-7.0.0.tgz"; 23723 + sha512 = "ginqzK3J90Rd4/Yz7qRrqUeIpe3TwSXTPPZtPne7tGBPeAaQiU8qt4fpKApnxHcq1AwtUdHVg5P77x/yrggG8Q=="; 23724 + }; 23725 + }; 23420 23726 "es6-set-0.1.5" = { 23421 23727 name = "es6-set"; 23422 23728 packageName = "es6-set"; ··· 23624 23930 sha512 = "S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg=="; 23625 23931 }; 23626 23932 }; 23627 - "eslint-7.28.0" = { 23628 - name = "eslint"; 23629 - packageName = "eslint"; 23630 - version = "7.28.0"; 23631 - src = fetchurl { 23632 - url = "https://registry.npmjs.org/eslint/-/eslint-7.28.0.tgz"; 23633 - sha512 = "UMfH0VSjP0G4p3EWirscJEQ/cHqnT/iuH6oNZOB94nBjWbMnhGEPxsZm1eyIW0C/9jLI0Fow4W5DXLjEI7mn1g=="; 23634 - }; 23635 - }; 23636 23933 "eslint-7.32.0" = { 23637 23934 name = "eslint"; 23638 23935 packageName = "eslint"; ··· 23741 24038 sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 23742 24039 }; 23743 24040 }; 24041 + "eslint-visitor-keys-3.0.0" = { 24042 + name = "eslint-visitor-keys"; 24043 + packageName = "eslint-visitor-keys"; 24044 + version = "3.0.0"; 24045 + src = fetchurl { 24046 + url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.0.0.tgz"; 24047 + sha512 = "mJOZa35trBTb3IyRmo8xmKBZlxf+N7OnUl4+ZhJHs/r+0770Wh/LEACE2pqMGMe27G/4y8P2bYGk4J70IC5k1Q=="; 24048 + }; 24049 + }; 23744 24050 "esmangle-1.0.1" = { 23745 24051 name = "esmangle"; 23746 24052 packageName = "esmangle"; ··· 23795 24101 sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 23796 24102 }; 23797 24103 }; 24104 + "espree-8.0.0" = { 24105 + name = "espree"; 24106 + packageName = "espree"; 24107 + version = "8.0.0"; 24108 + src = fetchurl { 24109 + url = "https://registry.npmjs.org/espree/-/espree-8.0.0.tgz"; 24110 + sha512 = "y/+i23dwTjIDJrYCcjcAMr3c3UGbPIjC6THMQKjWmhP97fW0FPiI89kmpKfmgV/5jrkIi6toQP+CMm3qBE1Hig=="; 24111 + }; 24112 + }; 23798 24113 "esprima-1.1.1" = { 23799 24114 name = "esprima"; 23800 24115 packageName = "esprima"; ··· 25019 25334 sha512 = "xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w=="; 25020 25335 }; 25021 25336 }; 25022 - "fast-equals-1.6.3" = { 25023 - name = "fast-equals"; 25024 - packageName = "fast-equals"; 25025 - version = "1.6.3"; 25026 - src = fetchurl { 25027 - url = "https://registry.npmjs.org/fast-equals/-/fast-equals-1.6.3.tgz"; 25028 - sha512 = "4WKW0AL5+WEqO0zWavAfYGY1qwLsBgE//DN4TTcVEN2UlINgkv9b3vm2iHicoenWKSX9mKWmGOsU/iI5IST7pQ=="; 25029 - }; 25030 - }; 25031 25337 "fast-equals-2.0.3" = { 25032 25338 name = "fast-equals"; 25033 25339 packageName = "fast-equals"; ··· 25179 25485 src = fetchurl { 25180 25486 url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.8.tgz"; 25181 25487 sha512 = "lXatBjf3WPjmWD6DpIZxkeSsCOwqI0maYMpgDlx8g4U2qi4lbjA9oH/HD2a87G+KfsUmo5WbJFmqBZlPxtptag=="; 25182 - }; 25183 - }; 25184 - "fast-stringify-1.1.2" = { 25185 - name = "fast-stringify"; 25186 - packageName = "fast-stringify"; 25187 - version = "1.1.2"; 25188 - src = fetchurl { 25189 - url = "https://registry.npmjs.org/fast-stringify/-/fast-stringify-1.1.2.tgz"; 25190 - sha512 = "SfslXjiH8km0WnRiuPfpUKwlZjW5I878qsOm+2x8x3TgqmElOOLh1rgJFb+PolNdNRK3r8urEefqx0wt7vx1dA=="; 25191 25488 }; 25192 25489 }; 25193 25490 "fast-text-encoding-1.0.3" = { ··· 28188 28485 sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 28189 28486 }; 28190 28487 }; 28191 - "globby-12.0.0" = { 28488 + "globby-12.0.1" = { 28192 28489 name = "globby"; 28193 28490 packageName = "globby"; 28194 - version = "12.0.0"; 28491 + version = "12.0.1"; 28195 28492 src = fetchurl { 28196 - url = "https://registry.npmjs.org/globby/-/globby-12.0.0.tgz"; 28197 - sha512 = "3mOIUduqSMHm6gNjIw9E641TZ93NB8lFVt+6MKIw6vUaIS5aSsw/6cl0gT86z1IoKlaL90BiOQlA593GUMlzEA=="; 28493 + url = "https://registry.npmjs.org/globby/-/globby-12.0.1.tgz"; 28494 + sha512 = "AofdCGi+crQ1uN9+nMbTnvC4XGNPJN9hRiPf+A76lUZIZoWoj4Z9iyUQGge7xCGKgR/7ejB36qoIlLoDBc7fYw=="; 28198 28495 }; 28199 28496 }; 28200 28497 "globby-4.1.0" = { ··· 28332 28629 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 28333 28630 }; 28334 28631 }; 28335 - "google-gax-2.24.0" = { 28632 + "google-gax-2.24.1" = { 28336 28633 name = "google-gax"; 28337 28634 packageName = "google-gax"; 28338 - version = "2.24.0"; 28635 + version = "2.24.1"; 28339 28636 src = fetchurl { 28340 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.24.0.tgz"; 28341 - sha512 = "PtE/Zk3jPrUIAL9YsIq5e+04U3aqEg6/0DmtR/tXKhbcS7SRA1sbPZja+vevuUavIdCXEiBbaKkrBqcQvSxXmw=="; 28637 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.24.1.tgz"; 28638 + sha512 = "/oBk3S2jKZO5e85Dnqe0Zo3iAkQuMhy3BfczU6LoLxsoY99E/8EmOPiT7gHxb5KWZzghjo5HyITExLiuIjJ+0A=="; 28342 28639 }; 28343 28640 }; 28344 28641 "google-p12-pem-3.1.2" = { ··· 29581 29878 src = fetchurl { 29582 29879 url = "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz"; 29583 29880 sha512 = "tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A=="; 29881 + }; 29882 + }; 29883 + "highlight.js-11.2.0" = { 29884 + name = "highlight.js"; 29885 + packageName = "highlight.js"; 29886 + version = "11.2.0"; 29887 + src = fetchurl { 29888 + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-11.2.0.tgz"; 29889 + sha512 = "JOySjtOEcyG8s4MLR2MNbLUyaXqUunmSnL2kdV/KuGJOmHZuAR5xC54Ko7goAXBWNhf09Vy3B+U7vR62UZ/0iw=="; 29584 29890 }; 29585 29891 }; 29586 29892 "highlight.js-8.2.0" = { ··· 30376 30682 sha512 = "yozWXZx3yXVprf/MM9WqMt5WY60Im8k6ELJDNFGfyMeO+UieITbDmkvVwMnKQA3ptWqUK8fPf/tEGgklWh7Weg=="; 30377 30683 }; 30378 30684 }; 30379 - "hyperbee-1.6.1" = { 30685 + "hyperbee-1.6.2" = { 30380 30686 name = "hyperbee"; 30381 30687 packageName = "hyperbee"; 30382 - version = "1.6.1"; 30688 + version = "1.6.2"; 30383 30689 src = fetchurl { 30384 - url = "https://registry.npmjs.org/hyperbee/-/hyperbee-1.6.1.tgz"; 30385 - sha512 = "MqGw1q2cXi0PX7pbQupbZPCu6L2myyMftiUPWFdIm09gLHETdpoXoeWm7w2R6dSoDgVHXBKdSzBo0Q0o/CpPPQ=="; 30690 + url = "https://registry.npmjs.org/hyperbee/-/hyperbee-1.6.2.tgz"; 30691 + sha512 = "0pn4srJRD8edAOfJpSsdYGO9bwteD+A9OzHjjZZrfIdWZXXwtg862Wi/6L6JZhJ9ITfhlkEZTYJnOwi+wNwWqA=="; 30386 30692 }; 30387 30693 }; 30388 30694 "hypercore-7.7.1" = { ··· 31526 31832 src = fetchurl { 31527 31833 url = "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz"; 31528 31834 sha512 = "lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw=="; 31835 + }; 31836 + }; 31837 + "internmap-2.0.1" = { 31838 + name = "internmap"; 31839 + packageName = "internmap"; 31840 + version = "2.0.1"; 31841 + src = fetchurl { 31842 + url = "https://registry.npmjs.org/internmap/-/internmap-2.0.1.tgz"; 31843 + sha512 = "Ujwccrj9FkGqjbY3iVoxD1VV+KdZZeENx0rphrtzmRXbFvkFO88L80BL/zeSIguX/7T+y8k04xqtgWgS5vxwxw=="; 31529 31844 }; 31530 31845 }; 31531 31846 "interpret-1.1.0" = { ··· 33535 33850 sha512 = "z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A=="; 33536 33851 }; 33537 33852 }; 33538 - "jest-get-type-24.9.0" = { 33853 + "jest-get-type-25.2.6" = { 33539 33854 name = "jest-get-type"; 33540 33855 packageName = "jest-get-type"; 33541 - version = "24.9.0"; 33856 + version = "25.2.6"; 33542 33857 src = fetchurl { 33543 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz"; 33544 - sha512 = "lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q=="; 33858 + url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz"; 33859 + sha512 = "DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig=="; 33545 33860 }; 33546 33861 }; 33547 - "jest-get-type-25.2.6" = { 33862 + "jest-get-type-26.3.0" = { 33548 33863 name = "jest-get-type"; 33549 33864 packageName = "jest-get-type"; 33550 - version = "25.2.6"; 33865 + version = "26.3.0"; 33551 33866 src = fetchurl { 33552 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.2.6.tgz"; 33553 - sha512 = "DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig=="; 33867 + url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz"; 33868 + sha512 = "TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig=="; 33554 33869 }; 33555 33870 }; 33556 33871 "jest-haste-map-25.5.1" = { ··· 33589 33904 sha512 = "KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA=="; 33590 33905 }; 33591 33906 }; 33592 - "jest-validate-24.9.0" = { 33907 + "jest-validate-25.5.0" = { 33593 33908 name = "jest-validate"; 33594 33909 packageName = "jest-validate"; 33595 - version = "24.9.0"; 33910 + version = "25.5.0"; 33596 33911 src = fetchurl { 33597 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz"; 33598 - sha512 = "HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ=="; 33912 + url = "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz"; 33913 + sha512 = "okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ=="; 33599 33914 }; 33600 33915 }; 33601 - "jest-validate-25.5.0" = { 33916 + "jest-validate-26.6.2" = { 33602 33917 name = "jest-validate"; 33603 33918 packageName = "jest-validate"; 33604 - version = "25.5.0"; 33919 + version = "26.6.2"; 33605 33920 src = fetchurl { 33606 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-25.5.0.tgz"; 33607 - sha512 = "okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ=="; 33921 + url = "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz"; 33922 + sha512 = "NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ=="; 33608 33923 }; 33609 33924 }; 33610 33925 "jest-worker-25.5.0" = { ··· 34057 34372 sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 34058 34373 }; 34059 34374 }; 34060 - "jsii-1.32.0" = { 34375 + "jsii-1.33.0" = { 34061 34376 name = "jsii"; 34062 34377 packageName = "jsii"; 34063 - version = "1.32.0"; 34378 + version = "1.33.0"; 34064 34379 src = fetchurl { 34065 - url = "https://registry.npmjs.org/jsii/-/jsii-1.32.0.tgz"; 34066 - sha512 = "Vw/xjiRgMdb+wbSSUaA7DTvVfSYfCR0k8Gdei43xSOOqmRfyLsmrWkN4ypnsbfaWfEYLpTj/HXGc4rJmw9Vnrw=="; 34380 + url = "https://registry.npmjs.org/jsii/-/jsii-1.33.0.tgz"; 34381 + sha512 = "0WIWlrRtoQNrp7iyEyNMoPRzvjd2EK8/Zgn/tWyzpjaMZur9HevZuk4lduCthTly/Gs9A7u1Ajdyp1cBrALeBQ=="; 34067 34382 }; 34068 34383 }; 34069 - "jsii-pacmak-1.32.0" = { 34384 + "jsii-pacmak-1.33.0" = { 34070 34385 name = "jsii-pacmak"; 34071 34386 packageName = "jsii-pacmak"; 34072 - version = "1.32.0"; 34387 + version = "1.33.0"; 34073 34388 src = fetchurl { 34074 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.32.0.tgz"; 34075 - sha512 = "zH+5ys4w9rSz7ZbfDTX0XZ8zhqpoygikuAppiWWVqjMmdk8qqZUgY9fLncZliMnI42YCXSz7q43g4tVL7dd3ng=="; 34389 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.33.0.tgz"; 34390 + sha512 = "STcsk5wmAlJSCEzl5nTPAJ5emSZLIPJYoYjBCMcwv62MI1B4zozSSsmbpI/4oPQWh9c2fD2CJIEbwyct4KTPKQ=="; 34076 34391 }; 34077 34392 }; 34078 - "jsii-reflect-1.32.0" = { 34393 + "jsii-reflect-1.33.0" = { 34079 34394 name = "jsii-reflect"; 34080 34395 packageName = "jsii-reflect"; 34081 - version = "1.32.0"; 34396 + version = "1.33.0"; 34082 34397 src = fetchurl { 34083 - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.32.0.tgz"; 34084 - sha512 = "BJN8pgxSa3LlP5yPfxtaviSjsHKpG9b4xOr2kXv6w/SElIX15Q5/tKauI4/ZHTnBHGimRWh9ACNtxXAxvH0Vqg=="; 34398 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.33.0.tgz"; 34399 + sha512 = "FH3lextueMXDFezWEPRYNEmEDcFg2Tvh4Wdjs0tBi+oSmewK3I+xCAVXmnpE8CRC2RW1zOLutH9hQbQnrKtsOw=="; 34085 34400 }; 34086 34401 }; 34087 - "jsii-rosetta-1.32.0" = { 34402 + "jsii-rosetta-1.33.0" = { 34088 34403 name = "jsii-rosetta"; 34089 34404 packageName = "jsii-rosetta"; 34090 - version = "1.32.0"; 34405 + version = "1.33.0"; 34091 34406 src = fetchurl { 34092 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.32.0.tgz"; 34093 - sha512 = "NrhHIJ0BNKxpjyvqtqhunIcHhJiA5dhlRSPPuO+EGsCQB+yc94aRj+hZZXYvWj+X1o61kdLVudJLn54sn7ESoQ=="; 34407 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.33.0.tgz"; 34408 + sha512 = "cUhDs2V2wYg7LFgm/X/uken8oF9re3vRORD08s0+z9Re8tt0pEehKmCotx3HYFhYrRhCEVvm66xjQt0t62GzXg=="; 34094 34409 }; 34095 34410 }; 34096 - "jsii-srcmak-0.1.323" = { 34411 + "jsii-srcmak-0.1.327" = { 34097 34412 name = "jsii-srcmak"; 34098 34413 packageName = "jsii-srcmak"; 34099 - version = "0.1.323"; 34414 + version = "0.1.327"; 34100 34415 src = fetchurl { 34101 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.323.tgz"; 34102 - sha512 = "7LBVa0cUitJdn72YhlmkxW6CWz2TMJZ4q4a0NgvTyinkC3VDJhn232+aOlORrAxVnDLzyLQZZPbAVn3WjtIM8A=="; 34416 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.327.tgz"; 34417 + sha512 = "ur7gwDTs7eTRSxjGvYz9Yw63g2pT8ONy5RSnoeqO/6rSqVt9v6B5u9BpF/+Ros+vpOltQvdSbL5ulta0uDQzow=="; 34103 34418 }; 34104 34419 }; 34105 34420 "json-bigint-1.0.0" = { ··· 34399 34714 sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; 34400 34715 }; 34401 34716 }; 34402 - "json2jsii-0.1.293" = { 34717 + "json2jsii-0.1.298" = { 34403 34718 name = "json2jsii"; 34404 34719 packageName = "json2jsii"; 34405 - version = "0.1.293"; 34720 + version = "0.1.298"; 34406 34721 src = fetchurl { 34407 - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.293.tgz"; 34408 - sha512 = "xIBN0udqvxYBDnC93JZT1pjGRGSzCxY2nSImQz454b7zv1S6SW0xM3LM3uY8wvXHZaUnwkNMPvHDZTXK3GDIZA=="; 34722 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.298.tgz"; 34723 + sha512 = "EWWINkRSEGvKI+9ejJGFceL6deZniUhxFd6IdDUCO/YrXie5H0A4vigdwlgURGTUhWNobjzi7ROL+uXL7KTpWA=="; 34409 34724 }; 34410 34725 }; 34411 34726 "json3-3.2.6" = { ··· 35786 36101 sha512 = "tq7AAMpjQ9sl58pW/qis/vOBzN7MCQ4F4n+ox4VQhyv1qVA+P2LgJq36I1Y6b4RX68+hK48u1eHDzSt527fEXA=="; 35787 36102 }; 35788 36103 }; 35789 - "lightning-3.3.16" = { 35790 - name = "lightning"; 35791 - packageName = "lightning"; 35792 - version = "3.3.16"; 35793 - src = fetchurl { 35794 - url = "https://registry.npmjs.org/lightning/-/lightning-3.3.16.tgz"; 35795 - sha512 = "5rltlQighO0X6IjTbdsabtfT3ZY3kE6MZN6jmK4wz6Jt3eikxMbmzVBC5/UeyMb/3Fad3iHJIneXuhu76/eY/A=="; 35796 - }; 35797 - }; 35798 36104 "lightning-3.3.9" = { 35799 36105 name = "lightning"; 35800 36106 packageName = "lightning"; ··· 35813 36119 sha512 = "lD6PgHipqedfFcTEf/9mDF3s4KGO/lecr02W6zHBJHohNphuBUZS1z68kKRJAl3N4iHmDEfLxt+G86PBP0jhHw=="; 35814 36120 }; 35815 36121 }; 35816 - "lightning-3.5.0" = { 36122 + "lightning-4.0.0" = { 35817 36123 name = "lightning"; 35818 36124 packageName = "lightning"; 35819 - version = "3.5.0"; 36125 + version = "4.0.0"; 35820 36126 src = fetchurl { 35821 - url = "https://registry.npmjs.org/lightning/-/lightning-3.5.0.tgz"; 35822 - sha512 = "6Kj1JX8tG3JiV5LXYGuZkKckiRJ/OU8ukb/R5qsp7RWq/xw32LDccCKvOK8oRnOGw9K+G8jcZAOY21exr9OSFA=="; 36127 + url = "https://registry.npmjs.org/lightning/-/lightning-4.0.0.tgz"; 36128 + sha512 = "HtEF7Lsw8qdEeQTsYY6c6QK6PFrG0YV3OBPWL6VnsAr25t+HDEsH/Fna6EIivqrQ8SVDjqX5YwMcAhunTelaVA=="; 35823 36129 }; 35824 36130 }; 35825 36131 "lilconfig-2.0.3" = { ··· 35975 36281 sha512 = "EBEeBymqktoaViGAG5aVmgIOZpWc6IwDqxq93ZYYIw+Uc9Vy/86nUDPx8A/jJC0f8lwEGcqT+hnSIiBF4SyqeA=="; 35976 36282 }; 35977 36283 }; 35978 - "ln-service-51.10.1" = { 35979 - name = "ln-service"; 35980 - packageName = "ln-service"; 35981 - version = "51.10.1"; 35982 - src = fetchurl { 35983 - url = "https://registry.npmjs.org/ln-service/-/ln-service-51.10.1.tgz"; 35984 - sha512 = "fXsA/gDh65+YYVYJ6GNDB2ALPa0rjXV59I9kgciOCkgiJo3F7AYkhNULYIGu0r2FK83J1M85AsH6tycImRVWRQ=="; 35985 - }; 35986 - }; 35987 36284 "ln-service-51.8.2" = { 35988 36285 name = "ln-service"; 35989 36286 packageName = "ln-service"; ··· 36002 36299 sha512 = "1SU0eG9/LDy6k3UGXaahmoe1wOahAJkaidWpLX5Nmlfq72I0arad420smma5ZGXAW4wNlGR/gx68KZzzYI5D4A=="; 36003 36300 }; 36004 36301 }; 36005 - "ln-service-51.9.0" = { 36302 + "ln-service-52.0.0" = { 36006 36303 name = "ln-service"; 36007 36304 packageName = "ln-service"; 36008 - version = "51.9.0"; 36009 - src = fetchurl { 36010 - url = "https://registry.npmjs.org/ln-service/-/ln-service-51.9.0.tgz"; 36011 - sha512 = "4lbC1QZ/a4BuvO/0wd8DxRr5DxdYGugENoDo9X8xnUts9tGmYLb7g5yEXuk/Ff2LPTVUlK5imAsduobUVXOzlA=="; 36012 - }; 36013 - }; 36014 - "ln-sync-0.4.6" = { 36015 - name = "ln-sync"; 36016 - packageName = "ln-sync"; 36017 - version = "0.4.6"; 36305 + version = "52.0.0"; 36018 36306 src = fetchurl { 36019 - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-0.4.6.tgz"; 36020 - sha512 = "FMfcEISlboFVz+wLTAJ+FnEIQkoMR7IHcUg4l5JNwsU/UOijM1vTQDFhHVqg5fEQAFboZe3lNd7Rh1uxxqs47Q=="; 36307 + url = "https://registry.npmjs.org/ln-service/-/ln-service-52.0.0.tgz"; 36308 + sha512 = "JxGGEqu1MJ1jnJN0cWWBsmEqi9qwbvsfM/AHslvKv7WHhMYFthp9HgGGcLn23oiYMM1boGtvqtkWuvqMf9P8AQ=="; 36021 36309 }; 36022 36310 }; 36023 36311 "ln-sync-0.4.7" = { ··· 36029 36317 sha512 = "2yqc59OhK0affnkwhgw7iY4x2tKZTb8y8KSWxRHn6cSXL3clUJgXdTNOGr4Jp8j1TkTl0iRVnLSNZlRbtU4vVA=="; 36030 36318 }; 36031 36319 }; 36032 - "ln-telegram-3.2.9" = { 36320 + "ln-telegram-3.2.10" = { 36033 36321 name = "ln-telegram"; 36034 36322 packageName = "ln-telegram"; 36035 - version = "3.2.9"; 36323 + version = "3.2.10"; 36036 36324 src = fetchurl { 36037 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.9.tgz"; 36038 - sha512 = "pjAkD1VLGLvwu1Dso3HvQDcK25L/slRX8nB7hTDDEznn+rRzxBJd1sXuNaFovwJHughvK3ZxUxAHC0BfzIatEw=="; 36325 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.10.tgz"; 36326 + sha512 = "FEI6wPb/DzpzwfWV8PPFPWq/OSWp6ETv7rEofCTCCodd/hRQGzXoJ7mDmyKFTune5TASXDBMlghol/EgZswkNg=="; 36039 36327 }; 36040 36328 }; 36041 36329 "load-ip-set-2.2.1" = { ··· 37577 37865 sha512 = "U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg=="; 37578 37866 }; 37579 37867 }; 37580 - "log-process-errors-5.1.2" = { 37868 + "log-process-errors-6.3.0" = { 37581 37869 name = "log-process-errors"; 37582 37870 packageName = "log-process-errors"; 37583 - version = "5.1.2"; 37871 + version = "6.3.0"; 37584 37872 src = fetchurl { 37585 - url = "https://registry.npmjs.org/log-process-errors/-/log-process-errors-5.1.2.tgz"; 37586 - sha512 = "s4kmYHrzj543xUAIxc/cpmoiGZcbFwKRqqwO49DbgH+hFoSTswi0sYZuJKjUUc73b49MRPQGl0CNl8cx98/Wtg=="; 37873 + url = "https://registry.npmjs.org/log-process-errors/-/log-process-errors-6.3.0.tgz"; 37874 + sha512 = "dHwGgWFuz9LUDoLIG7E0SlDurosfZEpgNLJMPzNL9GPdyh4Wdm5RJlQbuqy3Pj2wOcbDzykeTCBEqyrwriqPnA=="; 37587 37875 }; 37588 37876 }; 37589 37877 "log-symbols-1.0.2" = { ··· 38054 38342 sha512 = "zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow=="; 38055 38343 }; 38056 38344 }; 38057 - "luxon-2.0.1" = { 38345 + "luxon-2.0.2" = { 38058 38346 name = "luxon"; 38059 38347 packageName = "luxon"; 38060 - version = "2.0.1"; 38348 + version = "2.0.2"; 38061 38349 src = fetchurl { 38062 - url = "https://registry.npmjs.org/luxon/-/luxon-2.0.1.tgz"; 38063 - sha512 = "8Eawf81c9ZlQj62W3eq4mp+C7SAIAnmaS7ZuEAiX503YMcn+0C1JnMQRtfaQj6B5qTZLgHv0F4H5WabBCvi1fw=="; 38350 + url = "https://registry.npmjs.org/luxon/-/luxon-2.0.2.tgz"; 38351 + sha512 = "ZRioYLCgRHrtTORaZX1mx+jtxKtKuI5ZDvHNAmqpUzGqSrR+tL4FVLn/CUGMA3h0+AKD1MAxGI5GnCqR5txNqg=="; 38064 38352 }; 38065 38353 }; 38066 38354 "lzma-native-6.0.1" = { ··· 39512 39800 sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw=="; 39513 39801 }; 39514 39802 }; 39515 - "mermaid-8.11.4" = { 39803 + "mermaid-8.11.5" = { 39516 39804 name = "mermaid"; 39517 39805 packageName = "mermaid"; 39518 - version = "8.11.4"; 39806 + version = "8.11.5"; 39519 39807 src = fetchurl { 39520 - url = "https://registry.npmjs.org/mermaid/-/mermaid-8.11.4.tgz"; 39521 - sha512 = "iUJylv5VmsOm/6dkAVpSYRSD8iZ8NOjuiHG0Q6nMgPdmmQ9xy8z61v8MuRZn81K51JlvOeWMN06blejmsMQHqg=="; 39808 + url = "https://registry.npmjs.org/mermaid/-/mermaid-8.11.5.tgz"; 39809 + sha512 = "lbIaDQlFoIQLxnLy8hZgfS6L7gt2Wxlk83fudLslUEhj4yafHyVjzGOlojJQxgsLU5khEANhxLbo0xebtOrhXQ=="; 39522 39810 }; 39523 39811 }; 39524 39812 "meros-1.1.4" = { ··· 39656 39944 sha512 = "y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg=="; 39657 39945 }; 39658 39946 }; 39659 - "micro-memoize-2.1.2" = { 39660 - name = "micro-memoize"; 39661 - packageName = "micro-memoize"; 39662 - version = "2.1.2"; 39663 - src = fetchurl { 39664 - url = "https://registry.npmjs.org/micro-memoize/-/micro-memoize-2.1.2.tgz"; 39665 - sha512 = "COjNutiFgnDHXZEIM/jYuZPwq2h8zMUeScf6Sh6so98a+REqdlpaNS7Cb2ffGfK5I+xfgoA3Rx49NGuNJTJq3w=="; 39666 - }; 39667 - }; 39668 39947 "micro-memoize-4.0.9" = { 39669 39948 name = "micro-memoize"; 39670 39949 packageName = "micro-memoize"; ··· 40592 40871 sha1 = "114c949673e2a8a35e9d35788527aa37b679da2b"; 40593 40872 }; 40594 40873 }; 40595 - "moize-5.4.7" = { 40596 - name = "moize"; 40597 - packageName = "moize"; 40598 - version = "5.4.7"; 40599 - src = fetchurl { 40600 - url = "https://registry.npmjs.org/moize/-/moize-5.4.7.tgz"; 40601 - sha512 = "7PZH8QFJ51cIVtDv7wfUREBd3gL59JB0v/ARA3RI9zkSRa9LyGjS1Bdldii2J1/NQXRQ/3OOVOSdnZrCcVaZlw=="; 40602 - }; 40603 - }; 40604 40874 "moize-6.0.3" = { 40605 40875 name = "moize"; 40606 40876 packageName = "moize"; ··· 40734 41004 src = fetchurl { 40735 41005 url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz"; 40736 41006 sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92"; 40737 - }; 40738 - }; 40739 - "move-file-1.2.0" = { 40740 - name = "move-file"; 40741 - packageName = "move-file"; 40742 - version = "1.2.0"; 40743 - src = fetchurl { 40744 - url = "https://registry.npmjs.org/move-file/-/move-file-1.2.0.tgz"; 40745 - sha512 = "USHrRmxzGowUWAGBbJPdFjHzEqtxDU03pLHY0Rfqgtnq+q8FOIs8wvkkf+Udmg77SJKs47y9sI0jJvQeYsmiCA=="; 40746 41007 }; 40747 41008 }; 40748 41009 "move-file-2.1.0" = { ··· 41817 42078 sha512 = "BiQblBf85/GmerTZYxVH/1A4/O8qBvg0Qr8QX0MvxjAvO3j+jDUk1PSudMxNgJjU1zFw5pKM2/DBk70hP5gt+Q=="; 41818 42079 }; 41819 42080 }; 41820 - "netlify-headers-parser-2.1.1" = { 42081 + "netlify-headers-parser-3.0.1" = { 41821 42082 name = "netlify-headers-parser"; 41822 42083 packageName = "netlify-headers-parser"; 41823 - version = "2.1.1"; 42084 + version = "3.0.1"; 41824 42085 src = fetchurl { 41825 - url = "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-2.1.1.tgz"; 41826 - sha512 = "zIVVKf2+5Y/m/dx1+uLdh4xrqf7X6sDFKhFj/RHeyBS8ArqnyAF9vkm3uS0WqByfMpBTmpqZKNXPlJ8dTNihWQ=="; 42086 + url = "https://registry.npmjs.org/netlify-headers-parser/-/netlify-headers-parser-3.0.1.tgz"; 42087 + sha512 = "32oDkPa7+JdTFOp0M4H31AZDQ8YVJWgNlPkPuilb1C1dgvmAFXa8k4x+ADpgCbQfTMP3exO3vobvlfj8SUHxnA=="; 41827 42088 }; 41828 42089 }; 41829 - "netlify-redirect-parser-10.1.0" = { 42090 + "netlify-redirect-parser-11.0.2" = { 41830 42091 name = "netlify-redirect-parser"; 41831 42092 packageName = "netlify-redirect-parser"; 41832 - version = "10.1.0"; 42093 + version = "11.0.2"; 41833 42094 src = fetchurl { 41834 - url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-10.1.0.tgz"; 41835 - sha512 = "lnNp2nlyFajv3/hQmIDjzhkB6B8TqFd/5HUE9oPd16DK0S0tERiwPiZaL25XroBJFU4nvZM4xSPN907YiGcY0w=="; 42095 + url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-11.0.2.tgz"; 42096 + sha512 = "ngGSxRUv8dsao586J0MsfQFpi66TnIlYND1KRl1vCgjuuMBzvO9WbV8maqJA9d0G6f9NVKb+LqufmOQj4AkkFw=="; 41836 42097 }; 41837 42098 }; 41838 42099 "netlify-redirector-0.2.1" = { ··· 43871 44132 sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA=="; 43872 44133 }; 43873 44134 }; 43874 - "oo-ascii-tree-1.32.0" = { 44135 + "oo-ascii-tree-1.33.0" = { 43875 44136 name = "oo-ascii-tree"; 43876 44137 packageName = "oo-ascii-tree"; 43877 - version = "1.32.0"; 44138 + version = "1.33.0"; 43878 44139 src = fetchurl { 43879 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.32.0.tgz"; 43880 - sha512 = "QCYSWgdhbQwvMzw1OguyZ+K2KwZeQ1xvhFXa0/XV8XfmUXgr07MlnUoNthntfYgY6w7w+KI8WvqIxr+Q/NF5gw=="; 44140 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.33.0.tgz"; 44141 + sha512 = "pthBVMVqOl3GZ6t9WjgLP9p24Oz4oVQCabhhIsY+nG9rywUtHOfqgmSm5AD3BbrJc0cP84dyDJFVlu/bVaKyjw=="; 43881 44142 }; 43882 44143 }; 43883 44144 "opal-runtime-1.0.11" = { ··· 46481 46742 sha512 = "drPtqkkSf0ufx2gaea3TryFiBHdNIdXKf5LN0hTM82SXI4xVIve2wLwNg92e1MT6m3jASLu6VO7eGY6+mmGeyw=="; 46482 46743 }; 46483 46744 }; 46745 + "pino-6.13.0" = { 46746 + name = "pino"; 46747 + packageName = "pino"; 46748 + version = "6.13.0"; 46749 + src = fetchurl { 46750 + url = "https://registry.npmjs.org/pino/-/pino-6.13.0.tgz"; 46751 + sha512 = "mRXSTfa34tbfrWqCIp1sUpZLqBhcoaGapoyxfEwaWwJGMpLijlRdDKIQUyvq4M3DUfFH5vEglwSw8POZYwbThA=="; 46752 + }; 46753 + }; 46484 46754 "pino-std-serializers-3.2.0" = { 46485 46755 name = "pino-std-serializers"; 46486 46756 packageName = "pino-std-serializers"; ··· 46966 47236 src = fetchurl { 46967 47237 url = "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz"; 46968 47238 sha512 = "BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw=="; 46969 - }; 46970 - }; 46971 - "postcss-8.3.4" = { 46972 - name = "postcss"; 46973 - packageName = "postcss"; 46974 - version = "8.3.4"; 46975 - src = fetchurl { 46976 - url = "https://registry.npmjs.org/postcss/-/postcss-8.3.4.tgz"; 46977 - sha512 = "/tZY0PXExXXnNhKv3TOvZAOUYRyuqcCbBm2c17YMDK0PlVII3K7/LKdt3ScHL+hhouddjUWi+1sKDf9xXW+8YA=="; 46978 47239 }; 46979 47240 }; 46980 47241 "postcss-8.3.6" = { ··· 47886 48147 sha512 = "zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw=="; 47887 48148 }; 47888 48149 }; 47889 - "pretty-format-24.9.0" = { 47890 - name = "pretty-format"; 47891 - packageName = "pretty-format"; 47892 - version = "24.9.0"; 47893 - src = fetchurl { 47894 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz"; 47895 - sha512 = "00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA=="; 47896 - }; 47897 - }; 47898 48150 "pretty-format-25.5.0" = { 47899 48151 name = "pretty-format"; 47900 48152 packageName = "pretty-format"; ··· 47931 48183 sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1"; 47932 48184 }; 47933 48185 }; 47934 - "pretty-ms-5.1.0" = { 47935 - name = "pretty-ms"; 47936 - packageName = "pretty-ms"; 47937 - version = "5.1.0"; 47938 - src = fetchurl { 47939 - url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-5.1.0.tgz"; 47940 - sha512 = "4gaK1skD2gwscCfkswYQRmddUb2GJZtzDGRjHWadVHtK/DIKFufa12MvES6/xu1tVbUYeia5bmLcwJtZJQUqnw=="; 47941 - }; 47942 - }; 47943 48186 "pretty-ms-7.0.1" = { 47944 48187 name = "pretty-ms"; 47945 48188 packageName = "pretty-ms"; ··· 49596 49839 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 49597 49840 }; 49598 49841 }; 49599 - "pyright-1.1.161" = { 49842 + "pyright-1.1.162" = { 49600 49843 name = "pyright"; 49601 49844 packageName = "pyright"; 49602 - version = "1.1.161"; 49845 + version = "1.1.162"; 49603 49846 src = fetchurl { 49604 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.161.tgz"; 49605 - sha512 = "ahZ8KyDAMdyFTt9j0P/WL6SAeZWKI9qxoFRmTxw71JwyCVPSqXaeo2rK3304YjfKZKAtuHNMgtuZiAVT8U/Pbw=="; 49847 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.162.tgz"; 49848 + sha512 = "3YEM8rf/39CtuHMzZmVjsV/2cJJB6N3RfCuNR5QgUeib0VRQ303zhb4jh5RRRF9P6JpZku/waX+i16TrfSqDEQ=="; 49606 49849 }; 49607 49850 }; 49608 49851 "q-0.9.7" = { ··· 50406 50649 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 50407 50650 }; 50408 50651 }; 50409 - "react-devtools-core-4.15.0" = { 50652 + "react-devtools-core-4.16.0" = { 50410 50653 name = "react-devtools-core"; 50411 50654 packageName = "react-devtools-core"; 50412 - version = "4.15.0"; 50655 + version = "4.16.0"; 50413 50656 src = fetchurl { 50414 - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.15.0.tgz"; 50415 - sha512 = "Y1NwrWSKRg4TtwcES2upzXFDmccAW9jrGQG2D8EGQrZhK+0hmuhgFnSdKpFc3z04CSeDT5t83RMXcmX5TkR1dA=="; 50657 + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.16.0.tgz"; 50658 + sha512 = "fqyVbp+wVVey6O4uVBk5s3J/vTiPludp7lulr6a8asTBm7DIA0vLBbjmAOLCnOlkWcgdy4mjsqOgNCbu8uICWw=="; 50416 50659 }; 50417 50660 }; 50418 50661 "react-dom-16.14.0" = { ··· 52854 53097 sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b"; 52855 53098 }; 52856 53099 }; 53100 + "retry-0.13.1" = { 53101 + name = "retry"; 53102 + packageName = "retry"; 53103 + version = "0.13.1"; 53104 + src = fetchurl { 53105 + url = "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz"; 53106 + sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="; 53107 + }; 53108 + }; 52857 53109 "retry-0.6.0" = { 52858 53110 name = "retry"; 52859 53111 packageName = "retry"; ··· 53079 53331 sha512 = "CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A=="; 53080 53332 }; 53081 53333 }; 53334 + "robust-predicates-3.0.1" = { 53335 + name = "robust-predicates"; 53336 + packageName = "robust-predicates"; 53337 + version = "3.0.1"; 53338 + src = fetchurl { 53339 + url = "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.1.tgz"; 53340 + sha512 = "ndEIpszUHiG4HtDsQLeIuMvRsDnn8c8rYStabochtUeCvfuvNptb5TUbVD68LRAILPX7p9nqQGh4xJgn3EHS/g=="; 53341 + }; 53342 + }; 53082 53343 "rollup-1.32.1" = { 53083 53344 name = "rollup"; 53084 53345 packageName = "rollup"; ··· 53086 53347 src = fetchurl { 53087 53348 url = "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz"; 53088 53349 sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 53089 - }; 53090 - }; 53091 - "rollup-2.51.1" = { 53092 - name = "rollup"; 53093 - packageName = "rollup"; 53094 - version = "2.51.1"; 53095 - src = fetchurl { 53096 - url = "https://registry.npmjs.org/rollup/-/rollup-2.51.1.tgz"; 53097 - sha512 = "8xfDbAtBleXotb6qKEHWuo/jkn94a9dVqGc7Rwl3sqspCVlnCfbRek7ldhCARSi7h32H0xR4QThm1t9zHN+3uw=="; 53098 53350 }; 53099 53351 }; 53100 53352 "rollup-2.56.2" = { ··· 53619 53871 sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg=="; 53620 53872 }; 53621 53873 }; 53622 - "sass-1.37.5" = { 53874 + "sass-1.38.0" = { 53623 53875 name = "sass"; 53624 53876 packageName = "sass"; 53625 - version = "1.37.5"; 53877 + version = "1.38.0"; 53626 53878 src = fetchurl { 53627 - url = "https://registry.npmjs.org/sass/-/sass-1.37.5.tgz"; 53628 - sha512 = "Cx3ewxz9QB/ErnVIiWg2cH0kiYZ0FPvheDTVC6BsiEGBTZKKZJ1Gq5Kq6jy3PKtL6+EJ8NIoaBW/RSd2R6cZOA=="; 53879 + url = "https://registry.npmjs.org/sass/-/sass-1.38.0.tgz"; 53880 + sha512 = "WBccZeMigAGKoI+NgD7Adh0ab1HUq+6BmyBUEaGxtErbUtWUevEbdgo5EZiJQofLUGcKtlNaO2IdN73AHEua5g=="; 53629 53881 }; 53630 53882 }; 53631 53883 "sax-0.5.8" = { ··· 54690 54942 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; 54691 54943 }; 54692 54944 }; 54693 - "sign-addon-3.5.0" = { 54945 + "sign-addon-3.7.0" = { 54694 54946 name = "sign-addon"; 54695 54947 packageName = "sign-addon"; 54696 - version = "3.5.0"; 54948 + version = "3.7.0"; 54697 54949 src = fetchurl { 54698 - url = "https://registry.npmjs.org/sign-addon/-/sign-addon-3.5.0.tgz"; 54699 - sha512 = "Mc/Cg9P10Zyz8cnz8jSuvUDBnoY6rPExQf1vZvH4l5rfLZCLZVaLhJQ40QOAnbu8sE4TD2VzqB9Zogq7nTPrVA=="; 54950 + url = "https://registry.npmjs.org/sign-addon/-/sign-addon-3.7.0.tgz"; 54951 + sha512 = "XPLjMCcGuP5pPJSXpqFwKguIKxcteOx6dE1Bm2j92Brsro6pZYcklOpv4ohfRNW1UQp0J2cdi9zN2oNF4lMiRg=="; 54700 54952 }; 54701 54953 }; 54702 54954 "signal-exit-3.0.3" = { ··· 54780 55032 sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg=="; 54781 55033 }; 54782 55034 }; 54783 - "simple-git-2.43.0" = { 55035 + "simple-git-2.44.0" = { 54784 55036 name = "simple-git"; 54785 55037 packageName = "simple-git"; 54786 - version = "2.43.0"; 55038 + version = "2.44.0"; 54787 55039 src = fetchurl { 54788 - url = "https://registry.npmjs.org/simple-git/-/simple-git-2.43.0.tgz"; 54789 - sha512 = "0RQa2KtHhSoukHVJvakxjvv6blEb6zqI9s81G9yT7LzekSgZLN6rIxyyDt45K4N+Dqnzwe/rWAz0miuGwNIpEQ=="; 55040 + url = "https://registry.npmjs.org/simple-git/-/simple-git-2.44.0.tgz"; 55041 + sha512 = "wIjcAmymhzgdaM0Y/a+XxmNGlivvHQTPZDYXVmyHMShVDwdeVqu3+OOyDbYu0DnfVzqLs2EOxRTgMNbC3YquwQ=="; 54790 55042 }; 54791 55043 }; 54792 55044 "simple-handshake-3.0.0" = { ··· 55338 55590 sha512 = "IYg1Kbz/juuXrZNe7UoWTyHV+QKDveahxM3y1h/gZDwoOC9fgyVlC0p0v/RyeYRtvScxQcJchCr94V1VStwroA=="; 55339 55591 }; 55340 55592 }; 55341 - "snyk-nuget-plugin-1.22.0" = { 55593 + "snyk-nuget-plugin-1.22.1" = { 55342 55594 name = "snyk-nuget-plugin"; 55343 55595 packageName = "snyk-nuget-plugin"; 55344 - version = "1.22.0"; 55596 + version = "1.22.1"; 55345 55597 src = fetchurl { 55346 - url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.22.0.tgz"; 55347 - sha512 = "R0pmcEYeoM3B6BUMUf30jPQgQo8ngHW0gAabyGMnBV3ZDvJ99TCa7McSIjI/3obdT1ERIKKF6bZxuzps4uzVOA=="; 55598 + url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.22.1.tgz"; 55599 + sha512 = "Z/NAM7DECBTMXSGPQ9Ubc4AJsFw8ioq+UVpDQu3tkbjd83Pp0JODRjH6rElN7PnsvEADfJt8THfyC0ehXxZD/Q=="; 55348 55600 }; 55349 55601 }; 55350 55602 "snyk-paket-parser-1.6.0" = { ··· 55365 55617 sha512 = "IQcdsQBqqXVRY5DatlI7ASy4flbhtU2V7cr4P2rK9rkFnVHO6LHcitwKXVZa9ocdOmpZDzk7U6iwHJkVFcR6OA=="; 55366 55618 }; 55367 55619 }; 55368 - "snyk-poetry-lockfile-parser-1.1.6" = { 55620 + "snyk-poetry-lockfile-parser-1.1.7" = { 55369 55621 name = "snyk-poetry-lockfile-parser"; 55370 55622 packageName = "snyk-poetry-lockfile-parser"; 55371 - version = "1.1.6"; 55623 + version = "1.1.7"; 55372 55624 src = fetchurl { 55373 - url = "https://registry.npmjs.org/snyk-poetry-lockfile-parser/-/snyk-poetry-lockfile-parser-1.1.6.tgz"; 55374 - sha512 = "MoekbWOZPj9umfukjk2bd2o3eRj0OyO+58sxq9crMtHmTlze4h0/Uj4+fb0JFPBOtBO3c2zwbA+dvFQmpKoOTA=="; 55625 + url = "https://registry.npmjs.org/snyk-poetry-lockfile-parser/-/snyk-poetry-lockfile-parser-1.1.7.tgz"; 55626 + sha512 = "5waaslW7odDlox3WQMouSh/BjBrKq2rolMox3Ij/Vaju8r/3eWvs7anikzJUzNKwNcLm8AR5u4ftG/hxqDJJgA=="; 55375 55627 }; 55376 55628 }; 55377 55629 "snyk-policy-1.22.0" = { ··· 55383 55635 sha512 = "torzlNhDWcoMQLcX2xsTbCXfKXE614+5YvLHxEefQPwC1JNkbCN5u3/pU0c+2RfC2cPCa1AKEBqIx5gvr6mNyQ=="; 55384 55636 }; 55385 55637 }; 55386 - "snyk-python-plugin-1.19.11" = { 55638 + "snyk-python-plugin-1.20.1" = { 55387 55639 name = "snyk-python-plugin"; 55388 55640 packageName = "snyk-python-plugin"; 55389 - version = "1.19.11"; 55641 + version = "1.20.1"; 55390 55642 src = fetchurl { 55391 - url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.11.tgz"; 55392 - sha512 = "zUKbSbw+wU1FCUDYt+IDjaES0pc1UKBECOqjHSJMxWm9VhstvPtI4KccetwOfne2oUcmaEJJvcEp4s9VTK04XQ=="; 55643 + url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.20.1.tgz"; 55644 + sha512 = "BW5e5o59ev9PzwjVYmWWCgQpVIsMwK3rkEh1BYPMNHFbRC9QXvKsZmr9UX+jSo1rOWNy3fUIjh8t9NAK536YPQ=="; 55393 55645 }; 55394 55646 }; 55395 55647 "snyk-resolve-1.1.0" = { ··· 55437 55689 sha1 = "6e026f92e64af7fcccea1ee53d524841e418a212"; 55438 55690 }; 55439 55691 }; 55440 - "snyk-try-require-2.0.1" = { 55692 + "snyk-try-require-2.0.2" = { 55441 55693 name = "snyk-try-require"; 55442 55694 packageName = "snyk-try-require"; 55443 - version = "2.0.1"; 55695 + version = "2.0.2"; 55444 55696 src = fetchurl { 55445 - url = "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-2.0.1.tgz"; 55446 - sha512 = "VCOfFIvqLMXgCXEdooQgu3A40XYIFBnj0X8Y01RJ5iAbu08b4WKGN/uAKaRVF30dABS4EcjsalmCO+YlKUPEIA=="; 55697 + url = "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-2.0.2.tgz"; 55698 + sha512 = "kohtSHpe42qzS8QUi6dUv43S0O6puUt3W8j16ZAbmQhW2Rnf5TyTXL4DR4ZBQDC0uyWunuDK7KsalAlQGDNl8w=="; 55447 55699 }; 55448 55700 }; 55449 55701 "socket.io-1.0.6" = { ··· 56751 57003 sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; 56752 57004 }; 56753 57005 }; 56754 - "sscaff-1.2.44" = { 57006 + "sscaff-1.2.48" = { 56755 57007 name = "sscaff"; 56756 57008 packageName = "sscaff"; 56757 - version = "1.2.44"; 57009 + version = "1.2.48"; 56758 57010 src = fetchurl { 56759 - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.44.tgz"; 56760 - sha512 = "oLUwVVEPpctKxqIIsVJI3EU6Dpu9GIoel1R8GduJ+xgKbOUnC3UVhBzPAIuWzOHxAML51sGAXeKfciR2PbXu/w=="; 57011 + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.48.tgz"; 57012 + sha512 = "7CZXvV9Jw3Kj4ql+1D2o7fz1SWKLQdLt29i+nGLtiJlx+Cs7JW1i1SIwY9W1tzE+jp/P0+6tyme+yhHCby8k+w=="; 56761 57013 }; 56762 57014 }; 56763 57015 "ssh-config-1.1.6" = { ··· 64187 64439 sha512 = "QW2SFk4kln5lTPQajGNuXWtmr2z9hVA6Sfi4qPFEW2vjt2XaUAp38/1OrcUQYiJXOyXntbWN2jZJaGxg+hDUxw=="; 64188 64440 }; 64189 64441 }; 64190 - "vscode-json-languageservice-4.1.6" = { 64442 + "vscode-json-languageservice-4.1.7" = { 64191 64443 name = "vscode-json-languageservice"; 64192 64444 packageName = "vscode-json-languageservice"; 64193 - version = "4.1.6"; 64445 + version = "4.1.7"; 64194 64446 src = fetchurl { 64195 - url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.6.tgz"; 64196 - sha512 = "DIKb3tcfRtb3tIE6g9SLOl5E9tNSt6kljH08Wa5RwFlVshtXGrDDzttchze4CYy9pJpE9mBtCbRHmLvY1Z1ZXA=="; 64447 + url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.7.tgz"; 64448 + sha512 = "cwG5TwZyHYthsk2aS3W1dVgVP6Vwn3o+zscwN58uMgZt/nKuyxd9vdEB1F58Ix+S5kSKAnkUCP6hvulcoImQQQ=="; 64197 64449 }; 64198 64450 }; 64199 64451 "vscode-jsonrpc-3.5.0" = { ··· 64925 65177 sha512 = "8G0xBj05hqZybCqBtW7RPZ/hWEtP3DiLTauQzGJZuZYfVRgw7qj7iaZ+8djNqJ4VPrdOO+pS2dR1JsTbsLxdYg=="; 64926 65178 }; 64927 65179 }; 64928 - "web3-utils-1.5.1" = { 65180 + "web3-utils-1.5.2" = { 64929 65181 name = "web3-utils"; 64930 65182 packageName = "web3-utils"; 64931 - version = "1.5.1"; 65183 + version = "1.5.2"; 64932 65184 src = fetchurl { 64933 - url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.5.1.tgz"; 64934 - sha512 = "U8ULaMBwjkp9Rn+kRLjUmgAUHwPqDrM5/Q9tPKgvuDKtMWUggTLC33/KF8RY+PyAhSAlnD+lmNGfZnbjmVKBxQ=="; 65185 + url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.5.2.tgz"; 65186 + sha512 = "quTtTeQJHYSxAwIBOCGEcQtqdVcFWX6mCFNoqnp+mRbq+Hxbs8CGgO/6oqfBx4OvxIOfCpgJWYVHswRXnbEu9Q=="; 64935 65187 }; 64936 65188 }; 64937 65189 "webassemblyjs-1.11.1" = { ··· 65051 65303 sha512 = "NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag=="; 65052 65304 }; 65053 65305 }; 65054 - "webpack-cli-4.7.2" = { 65306 + "webpack-cli-4.8.0" = { 65055 65307 name = "webpack-cli"; 65056 65308 packageName = "webpack-cli"; 65057 - version = "4.7.2"; 65309 + version = "4.8.0"; 65058 65310 src = fetchurl { 65059 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.7.2.tgz"; 65060 - sha512 = "mEoLmnmOIZQNiRl0ebnjzQ74Hk0iKS5SiEEnpq3dRezoyR3yPaeQZCMCe+db4524pj1Pd5ghZXjT41KLzIhSLw=="; 65311 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.8.0.tgz"; 65312 + sha512 = "+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw=="; 65061 65313 }; 65062 65314 }; 65063 65315 "webpack-core-0.6.9" = { ··· 65231 65483 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 65232 65484 }; 65233 65485 }; 65234 - "webtorrent-1.3.9" = { 65486 + "webtorrent-1.3.10" = { 65235 65487 name = "webtorrent"; 65236 65488 packageName = "webtorrent"; 65237 - version = "1.3.9"; 65489 + version = "1.3.10"; 65238 65490 src = fetchurl { 65239 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.3.9.tgz"; 65240 - sha512 = "K52E15SutGIgrBj0YzYNYgkuQMucKePdGk2zxMwLHtFh9sJ0KVPlQgkmORhSbJqC51cRVq/4Xt2jToZde8ioRQ=="; 65491 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.3.10.tgz"; 65492 + sha512 = "w0+y6YRyfdS37on5ialAyxpM8XzIB6nFWZOO1O9MgMzG8asLEa1uJ7aGfXoZ+030FCRj235eyhzlnTxYEWBvKg=="; 65241 65493 }; 65242 65494 }; 65243 65495 "well-known-symbols-2.0.0" = { ··· 66059 66311 sha512 = "kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg=="; 66060 66312 }; 66061 66313 }; 66062 - "ws-8.0.0" = { 66314 + "ws-8.1.0" = { 66063 66315 name = "ws"; 66064 66316 packageName = "ws"; 66065 - version = "8.0.0"; 66317 + version = "8.1.0"; 66066 66318 src = fetchurl { 66067 - url = "https://registry.npmjs.org/ws/-/ws-8.0.0.tgz"; 66068 - sha512 = "6AcSIXpBlS0QvCVKk+3cWnWElLsA6SzC0lkQ43ciEglgXJXiCWK3/CGFEJ+Ybgp006CMibamAsqOlxE9s4AvYA=="; 66319 + url = "https://registry.npmjs.org/ws/-/ws-8.1.0.tgz"; 66320 + sha512 = "0UWlCD2s3RSclw8FN+D0zDTUyMO+1kHwJQQJzkgUh16S8d3NYON0AKCEQPffE0ez4JyRFu76QDA9KR5bOG/7jw=="; 66069 66321 }; 66070 66322 }; 66071 66323 "x-default-browser-0.3.1" = { ··· 66437 66689 sha512 = "iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg=="; 66438 66690 }; 66439 66691 }; 66692 + "xmldom-git://github.com/xmldom/xmldom#0.7.0" = { 66693 + name = "xmldom"; 66694 + packageName = "xmldom"; 66695 + version = "0.7.0"; 66696 + src = fetchgit { 66697 + url = "git://github.com/xmldom/xmldom"; 66698 + rev = "c568938641cc1f121cef5b4df80fcfda1e489b6e"; 66699 + sha256 = "98ae57c19ccf66bc4d67e649250f1c28adda223064fb3c8572d245cb5aa3d440"; 66700 + }; 66701 + }; 66440 66702 "xmlhttprequest-1.8.0" = { 66441 66703 name = "xmlhttprequest"; 66442 66704 packageName = "xmlhttprequest"; ··· 66823 67085 src = fetchurl { 66824 67086 url = "https://registry.npmjs.org/yargs/-/yargs-17.1.0.tgz"; 66825 67087 sha512 = "SQr7qqmQ2sNijjJGHL4u7t8vyDZdZ3Ahkmo4sc1w5xI9TBX0QDdG/g4SFnxtWOsGLjwHQue57eFALfwFCnixgg=="; 67088 + }; 67089 + }; 67090 + "yargs-17.1.1" = { 67091 + name = "yargs"; 67092 + packageName = "yargs"; 67093 + version = "17.1.1"; 67094 + src = fetchurl { 67095 + url = "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz"; 67096 + sha512 = "c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ=="; 66826 67097 }; 66827 67098 }; 66828 67099 "yargs-3.10.0" = { ··· 67286 67557 sources."@npmcli/move-file-1.1.2" 67287 67558 sources."@npmcli/node-gyp-1.0.2" 67288 67559 sources."@npmcli/promise-spawn-1.3.2" 67289 - sources."@npmcli/run-script-1.8.5" 67560 + sources."@npmcli/run-script-1.8.6" 67290 67561 sources."@schematics/angular-12.2.1" 67291 67562 sources."@tootallnate/once-1.1.2" 67292 67563 sources."@yarnpkg/lockfile-1.1.0" ··· 68213 68484 sources."hrpc-2.2.0" 68214 68485 sources."hrpc-runtime-2.1.1" 68215 68486 sources."hyperbeam-1.1.3" 68216 - sources."hyperbee-1.6.1" 68487 + sources."hyperbee-1.6.2" 68217 68488 sources."hypercore-9.10.0" 68218 68489 (sources."hypercore-byte-stream-1.0.12" // { 68219 68490 dependencies = [ ··· 68664 68935 sources."cross-spawn-7.0.3" 68665 68936 sources."deepmerge-4.2.2" 68666 68937 sources."defaults-1.0.3" 68667 - sources."electron-to-chromium-1.3.805" 68938 + sources."electron-to-chromium-1.3.808" 68668 68939 sources."emoji-regex-8.0.0" 68669 68940 sources."end-of-stream-1.4.4" 68670 68941 (sources."enhanced-resolve-5.8.2" // { ··· 69088 69359 }) 69089 69360 sources."@vue/cli-ui-addon-webpack-4.5.13" 69090 69361 sources."@vue/cli-ui-addon-widgets-4.5.13" 69091 - (sources."@vue/compiler-core-3.2.2" // { 69362 + (sources."@vue/compiler-core-3.2.3" // { 69092 69363 dependencies = [ 69093 69364 sources."source-map-0.6.1" 69094 69365 ]; 69095 69366 }) 69096 - sources."@vue/compiler-dom-3.2.2" 69097 - sources."@vue/shared-3.2.2" 69367 + sources."@vue/compiler-dom-3.2.3" 69368 + sources."@vue/shared-3.2.3" 69098 69369 sources."@wry/equality-0.1.11" 69099 69370 sources."accepts-1.3.7" 69100 69371 sources."aggregate-error-3.1.0" ··· 69154 69425 sources."assign-symbols-1.0.0" 69155 69426 sources."ast-types-0.13.3" 69156 69427 sources."async-2.6.3" 69157 - sources."async-retry-1.3.1" 69428 + sources."async-retry-1.3.3" 69158 69429 sources."asynckit-0.4.0" 69159 69430 sources."atob-2.1.2" 69160 69431 sources."aws-sign2-0.7.0" ··· 69273 69544 sources."cookie-0.4.0" 69274 69545 sources."cookie-signature-1.0.6" 69275 69546 sources."copy-descriptor-0.1.1" 69276 - (sources."core-js-compat-3.16.1" // { 69547 + (sources."core-js-compat-3.16.2" // { 69277 69548 dependencies = [ 69278 69549 sources."semver-7.0.0" 69279 69550 ]; 69280 69551 }) 69281 - sources."core-js-pure-3.16.1" 69552 + sources."core-js-pure-3.16.2" 69282 69553 sources."core-util-is-1.0.2" 69283 69554 sources."cors-2.8.5" 69284 69555 (sources."cross-spawn-6.0.5" // { ··· 69344 69615 sources."ecc-jsbn-0.1.2" 69345 69616 sources."ee-first-1.1.1" 69346 69617 sources."ejs-2.7.4" 69347 - sources."electron-to-chromium-1.3.805" 69618 + sources."electron-to-chromium-1.3.808" 69348 69619 sources."emoji-regex-7.0.3" 69349 69620 sources."encodeurl-1.0.2" 69350 69621 sources."end-of-stream-1.4.4" ··· 69829 70100 sources."responselike-1.0.2" 69830 70101 sources."restore-cursor-2.0.0" 69831 70102 sources."ret-0.1.15" 69832 - sources."retry-0.12.0" 70103 + sources."retry-0.13.1" 69833 70104 sources."reusify-1.0.4" 69834 70105 sources."rimraf-3.0.2" 69835 70106 sources."rss-parser-3.12.0" ··· 70368 70639 sources."convert-source-map-1.8.0" 70369 70640 sources."debug-4.3.2" 70370 70641 sources."ejs-3.1.6" 70371 - sources."electron-to-chromium-1.3.805" 70642 + sources."electron-to-chromium-1.3.808" 70372 70643 sources."ensure-posix-path-1.1.1" 70373 70644 sources."escalade-3.1.1" 70374 70645 sources."escape-string-regexp-1.0.5" ··· 70499 70770 sources."browserslist-4.16.7" 70500 70771 sources."caniuse-lite-1.0.30001251" 70501 70772 sources."colorette-1.3.0" 70502 - sources."electron-to-chromium-1.3.805" 70773 + sources."electron-to-chromium-1.3.808" 70503 70774 sources."escalade-3.1.1" 70504 70775 sources."fraction.js-4.1.1" 70505 70776 sources."node-releases-1.1.74" ··· 70533 70804 sources."ansi-regex-5.0.0" 70534 70805 sources."ansi-styles-4.3.0" 70535 70806 sources."ast-types-0.13.4" 70536 - (sources."aws-sdk-2.968.0" // { 70807 + (sources."aws-sdk-2.969.0" // { 70537 70808 dependencies = [ 70538 70809 sources."uuid-3.3.2" 70539 70810 ]; ··· 70737 71008 balanceofsatoshis = nodeEnv.buildNodePackage { 70738 71009 name = "balanceofsatoshis"; 70739 71010 packageName = "balanceofsatoshis"; 70740 - version = "10.7.7"; 71011 + version = "10.7.8"; 70741 71012 src = fetchurl { 70742 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.7.tgz"; 70743 - sha512 = "RDXgQytDEdr0mOIbh0j1kuI7RjMWznSCX/0QtsS4fcpbuDhKLGripPbFPfdV83jQWzCKRpGdowg98jc9izXs6Q=="; 71013 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.8.tgz"; 71014 + sha512 = "lBtaJP9EmDdvaYcsjvKhkS84sG79uZwhhoZ/Xb8Onj1FS8zwLPWFqzpRZ1SJ32COq9aJUWumLD+6LCnWH6Xbsg=="; 70744 71015 }; 70745 71016 dependencies = [ 70746 71017 sources."@alexbosworth/html2unicode-1.1.5" ··· 70817 71088 sources."asn1-0.2.4" 70818 71089 sources."assert-plus-1.0.0" 70819 71090 sources."astral-regex-2.0.0" 70820 - sources."async-3.2.0" 70821 - sources."asyncjs-util-1.2.6" 71091 + sources."async-3.2.1" 71092 + (sources."asyncjs-util-1.2.6" // { 71093 + dependencies = [ 71094 + sources."async-3.2.0" 71095 + ]; 71096 + }) 70822 71097 sources."asynckit-0.4.0" 70823 71098 sources."aws-sign2-0.7.0" 70824 71099 sources."aws4-1.9.1" ··· 70919 71194 sources."code-point-at-1.1.0" 70920 71195 sources."color-convert-2.0.1" 70921 71196 sources."color-name-1.1.4" 70922 - sources."colorette-1.2.2" 71197 + sources."colorette-1.3.0" 70923 71198 sources."colors-1.4.0" 70924 71199 sources."combined-stream-1.0.8" 70925 71200 sources."commander-6.2.1" ··· 71000 71275 sources."global-dirs-3.0.0" 71001 71276 (sources."goldengate-10.1.0" // { 71002 71277 dependencies = [ 71278 + sources."async-3.2.0" 71003 71279 sources."bech32-2.0.0" 71004 71280 sources."bn.js-5.2.0" 71005 71281 sources."cbor-7.0.5" ··· 71102 71378 (sources."lightning-3.3.9" // { 71103 71379 dependencies = [ 71104 71380 sources."@types/node-15.6.1" 71381 + sources."async-3.2.0" 71105 71382 sources."bech32-2.0.0" 71106 71383 sources."bn.js-5.2.0" 71107 71384 sources."cbor-7.0.5" ··· 71115 71392 sources."@grpc/proto-loader-0.6.3" 71116 71393 sources."@types/node-15.12.5" 71117 71394 sources."@types/ws-7.4.5" 71395 + sources."async-3.2.0" 71118 71396 sources."bn.js-5.2.0" 71119 71397 sources."cbor-7.0.5" 71120 71398 sources."lightning-3.3.12" ··· 71123 71401 sources."ws-7.5.0" 71124 71402 ]; 71125 71403 }) 71126 - (sources."ln-service-51.10.1" // { 71404 + (sources."ln-service-52.0.0" // { 71127 71405 dependencies = [ 71128 - sources."@grpc/grpc-js-1.3.6" 71406 + sources."@grpc/grpc-js-1.3.7" 71129 71407 sources."@grpc/proto-loader-0.6.4" 71130 71408 sources."@types/express-4.17.13" 71131 - sources."@types/node-16.4.3" 71132 - sources."@types/request-2.48.6" 71409 + sources."@types/node-16.6.0" 71410 + sources."@types/request-2.48.7" 71133 71411 sources."@types/ws-7.4.7" 71134 71412 sources."bn.js-5.2.0" 71135 - sources."cbor-7.0.6" 71136 71413 sources."form-data-2.5.1" 71137 - sources."lightning-3.5.0" 71138 - sources."nofilter-2.0.3" 71139 - sources."ws-8.0.0" 71414 + sources."lightning-4.0.0" 71415 + sources."ws-8.1.0" 71140 71416 ]; 71141 71417 }) 71142 71418 (sources."ln-sync-0.4.7" // { ··· 71147 71423 sources."@types/node-16.3.3" 71148 71424 sources."@types/request-2.48.6" 71149 71425 sources."@types/ws-7.4.7" 71426 + sources."async-3.2.0" 71150 71427 sources."bn.js-5.2.0" 71151 71428 sources."cbor-7.0.6" 71429 + sources."colorette-1.2.2" 71152 71430 sources."form-data-2.5.1" 71153 71431 sources."lightning-3.4.0" 71154 71432 sources."nofilter-2.0.3" 71155 71433 ]; 71156 71434 }) 71157 - (sources."ln-telegram-3.2.9" // { 71158 - dependencies = [ 71159 - sources."@grpc/grpc-js-1.3.5" 71160 - sources."@grpc/proto-loader-0.6.4" 71161 - sources."@types/express-4.17.13" 71162 - sources."@types/node-16.3.2" 71163 - sources."@types/request-2.48.6" 71164 - sources."@types/ws-7.4.6" 71165 - sources."bn.js-5.2.0" 71166 - sources."cbor-7.0.6" 71167 - sources."form-data-2.5.1" 71168 - sources."lightning-3.3.16" 71169 - sources."ln-service-51.9.0" 71170 - (sources."ln-sync-0.4.6" // { 71171 - dependencies = [ 71172 - sources."@grpc/grpc-js-1.3.4" 71173 - sources."@grpc/proto-loader-0.6.3" 71174 - sources."@types/express-4.17.12" 71175 - sources."@types/node-15.12.5" 71176 - sources."@types/request-2.48.5" 71177 - sources."@types/ws-7.4.5" 71178 - sources."cbor-7.0.5" 71179 - sources."lightning-3.3.12" 71180 - ]; 71181 - }) 71182 - sources."nofilter-2.0.3" 71183 - sources."ws-7.5.3" 71184 - ]; 71185 - }) 71435 + sources."ln-telegram-3.2.10" 71186 71436 sources."lodash-4.17.21" 71187 71437 sources."lodash.camelcase-4.3.0" 71188 71438 sources."lodash.clonedeep-4.5.0" ··· 71203 71453 sources."long-4.0.0" 71204 71454 sources."lowercase-keys-1.0.1" 71205 71455 sources."lru-cache-6.0.0" 71206 - sources."luxon-2.0.1" 71456 + sources."luxon-2.0.2" 71207 71457 (sources."macaroon-3.0.4" // { 71208 71458 dependencies = [ 71209 71459 sources."tweetnacl-1.0.3" ··· 71280 71530 sources."@grpc/proto-loader-0.6.3" 71281 71531 sources."@types/node-15.12.5" 71282 71532 sources."@types/ws-7.4.5" 71533 + sources."async-3.2.0" 71283 71534 sources."bn.js-5.2.0" 71284 71535 sources."cbor-7.0.5" 71285 71536 sources."lightning-3.3.12" ··· 71297 71548 sources."prettyjson-1.2.1" 71298 71549 (sources."probing-1.3.6" // { 71299 71550 dependencies = [ 71551 + sources."async-3.2.0" 71300 71552 sources."bech32-2.0.0" 71301 71553 sources."bn.js-5.2.0" 71302 71554 sources."invoices-1.2.1" ··· 72564 72816 sources."set-blocking-2.0.0" 72565 72817 sources."setprototypeof-1.1.1" 72566 72818 sources."sha.js-2.4.11" 72567 - sources."simple-git-2.43.0" 72819 + sources."simple-git-2.44.0" 72568 72820 sources."spdx-correct-3.1.1" 72569 72821 sources."spdx-exceptions-2.3.0" 72570 72822 sources."spdx-expression-parse-3.0.1" ··· 73062 73314 sha512 = "0xRmM6/5EwTbzpqinQujvrVZKJhTkLfD8hXEuSASNAv/5uKLRa5pfdOD53ALq7n0eVeOqZaGNtwKhGRcPuNDxw=="; 73063 73315 }; 73064 73316 dependencies = [ 73065 - sources."@jsii/spec-1.32.0" 73317 + sources."@jsii/check-node-1.33.0" 73318 + sources."@jsii/spec-1.33.0" 73066 73319 sources."@types/node-10.17.60" 73067 73320 sources."ansi-regex-5.0.0" 73068 73321 sources."ansi-styles-4.3.0" ··· 73073 73326 sources."case-1.6.3" 73074 73327 sources."cdk8s-1.0.0-beta.27" 73075 73328 sources."cdk8s-plus-17-1.0.0-beta.42" 73329 + sources."chalk-4.1.2" 73076 73330 sources."cliui-7.0.4" 73077 73331 sources."clone-2.1.2" 73078 - (sources."codemaker-1.32.0" // { 73332 + (sources."codemaker-1.33.0" // { 73079 73333 dependencies = [ 73080 73334 sources."fs-extra-9.1.0" 73081 73335 ]; ··· 73083 73337 sources."color-convert-2.0.1" 73084 73338 sources."color-name-1.1.4" 73085 73339 sources."colors-1.4.0" 73086 - sources."commonmark-0.29.3" 73087 - sources."constructs-3.3.121" 73340 + sources."commonmark-0.30.0" 73341 + sources."constructs-3.3.125" 73088 73342 sources."date-format-3.0.0" 73089 73343 sources."debug-4.3.2" 73090 73344 sources."decamelize-5.0.0" ··· 73115 73369 sources."graceful-fs-4.2.8" 73116 73370 sources."has-1.0.3" 73117 73371 sources."has-bigints-1.0.1" 73372 + sources."has-flag-4.0.0" 73118 73373 sources."has-symbols-1.0.2" 73119 73374 sources."has-tostringtag-1.0.0" 73120 73375 sources."internal-slot-1.0.3" ··· 73135 73390 sources."is-weakmap-2.0.1" 73136 73391 sources."is-weakset-2.0.1" 73137 73392 sources."isarray-2.0.5" 73138 - (sources."jsii-1.32.0" // { 73393 + (sources."jsii-1.33.0" // { 73139 73394 dependencies = [ 73140 73395 sources."fs-extra-9.1.0" 73141 73396 sources."yargs-16.2.0" 73142 73397 ]; 73143 73398 }) 73144 - (sources."jsii-pacmak-1.32.0" // { 73399 + (sources."jsii-pacmak-1.33.0" // { 73145 73400 dependencies = [ 73146 73401 sources."fs-extra-9.1.0" 73147 73402 sources."yargs-16.2.0" 73148 73403 ]; 73149 73404 }) 73150 - (sources."jsii-reflect-1.32.0" // { 73405 + (sources."jsii-reflect-1.33.0" // { 73151 73406 dependencies = [ 73152 73407 sources."fs-extra-9.1.0" 73153 73408 sources."yargs-16.2.0" 73154 73409 ]; 73155 73410 }) 73156 - (sources."jsii-rosetta-1.32.0" // { 73411 + (sources."jsii-rosetta-1.33.0" // { 73157 73412 dependencies = [ 73158 73413 sources."fs-extra-9.1.0" 73159 73414 sources."yargs-16.2.0" 73160 73415 ]; 73161 73416 }) 73162 - (sources."jsii-srcmak-0.1.323" // { 73417 + (sources."jsii-srcmak-0.1.327" // { 73163 73418 dependencies = [ 73164 73419 sources."fs-extra-9.1.0" 73165 73420 ]; 73166 73421 }) 73167 73422 sources."json-schema-0.3.0" 73168 - sources."json2jsii-0.1.293" 73423 + sources."json2jsii-0.1.298" 73169 73424 sources."jsonfile-6.1.0" 73170 73425 sources."jsonschema-1.4.0" 73171 73426 sources."locate-path-5.0.0" ··· 73181 73436 sources."object-is-1.1.5" 73182 73437 sources."object-keys-1.1.1" 73183 73438 sources."object.assign-4.1.2" 73184 - sources."oo-ascii-tree-1.32.0" 73439 + sources."oo-ascii-tree-1.33.0" 73185 73440 sources."p-limit-2.3.0" 73186 73441 sources."p-locate-4.1.0" 73187 73442 sources."p-try-2.2.0" ··· 73201 73456 sources."snake-case-3.0.4" 73202 73457 sources."sort-json-2.0.0" 73203 73458 sources."spdx-license-list-6.4.0" 73204 - sources."sscaff-1.2.44" 73459 + sources."sscaff-1.2.48" 73205 73460 (sources."streamroller-2.2.4" // { 73206 73461 dependencies = [ 73207 73462 sources."date-format-2.1.0" ··· 73212 73467 sources."string.prototype.trimend-1.0.4" 73213 73468 sources."string.prototype.trimstart-1.0.4" 73214 73469 sources."strip-ansi-6.0.0" 73470 + sources."supports-color-7.2.0" 73215 73471 sources."tslib-2.3.1" 73216 73472 sources."typescript-3.9.10" 73217 73473 sources."unbox-primitive-1.0.1" ··· 73222 73478 sources."which-typed-array-1.1.6" 73223 73479 sources."wrap-ansi-7.0.0" 73224 73480 sources."xmlbuilder-15.1.1" 73225 - sources."xmldom-0.6.0" 73481 + sources."xmldom-git://github.com/xmldom/xmldom#0.7.0" 73226 73482 sources."y18n-5.0.8" 73227 73483 sources."yallist-4.0.0" 73228 73484 sources."yaml-1.10.2" ··· 73256 73512 sha512 = "53HldFlYJdptaQ9yZyx8xuN0pxmBwI7yaVImmPwGmauoOYWsO89YrAjyPIiAaR+GWI8avbQeg3jz5Z1Q+MoIGA=="; 73257 73513 }; 73258 73514 dependencies = [ 73259 - sources."@apollo/client-3.4.7" 73515 + sources."@apollo/client-3.4.8" 73260 73516 (sources."@apollo/protobufjs-1.2.2" // { 73261 73517 dependencies = [ 73262 73518 sources."@types/node-10.17.60" ··· 73302 73558 sources."@graphql-tools/utils-8.0.2" 73303 73559 ]; 73304 73560 }) 73305 - (sources."@graphql-tools/mock-8.2.0" // { 73561 + (sources."@graphql-tools/mock-8.2.1" // { 73306 73562 dependencies = [ 73307 - sources."@graphql-tools/utils-8.1.0" 73563 + sources."@graphql-tools/utils-8.1.1" 73308 73564 ]; 73309 73565 }) 73310 - (sources."@graphql-tools/schema-8.1.0" // { 73566 + (sources."@graphql-tools/schema-8.1.1" // { 73311 73567 dependencies = [ 73312 - sources."@graphql-tools/merge-8.0.0" 73313 - sources."@graphql-tools/utils-8.1.0" 73568 + sources."@graphql-tools/merge-8.0.1" 73569 + sources."@graphql-tools/utils-8.1.1" 73314 73570 ]; 73315 73571 }) 73316 73572 (sources."@graphql-tools/utils-7.10.0" // { ··· 73320 73576 }) 73321 73577 sources."@graphql-typed-document-node/core-3.1.0" 73322 73578 sources."@josephg/resolvable-1.0.1" 73323 - sources."@jsii/spec-1.32.0" 73579 + sources."@jsii/check-node-1.33.0" 73580 + sources."@jsii/spec-1.33.0" 73324 73581 sources."@nodelib/fs.scandir-2.1.5" 73325 73582 sources."@nodelib/fs.stat-2.0.5" 73326 73583 sources."@nodelib/fs.walk-1.2.8" ··· 73375 73632 sources."apollo-server-caching-3.0.1" 73376 73633 (sources."apollo-server-core-3.1.2" // { 73377 73634 dependencies = [ 73378 - sources."@graphql-tools/utils-8.1.0" 73635 + sources."@graphql-tools/utils-8.1.1" 73379 73636 ]; 73380 73637 }) 73381 73638 sources."apollo-server-env-4.0.3" ··· 73395 73652 sources."array-union-2.1.0" 73396 73653 sources."astral-regex-2.0.0" 73397 73654 sources."async-3.2.1" 73398 - sources."async-retry-1.3.1" 73655 + sources."async-retry-1.3.3" 73399 73656 sources."asynckit-0.4.0" 73400 73657 sources."at-least-node-1.0.0" 73401 73658 sources."auto-bind-4.0.0" ··· 73456 73713 sources."colors-1.4.0" 73457 73714 sources."combined-stream-1.0.8" 73458 73715 sources."commander-2.20.3" 73459 - sources."commonmark-0.29.3" 73716 + sources."commonmark-0.30.0" 73460 73717 (sources."compress-commons-4.1.1" // { 73461 73718 dependencies = [ 73462 73719 sources."normalize-path-3.0.0" 73463 73720 ]; 73464 73721 }) 73465 73722 sources."concat-map-0.0.1" 73466 - sources."constructs-3.3.121" 73723 + sources."constructs-3.3.125" 73467 73724 (sources."content-disposition-0.5.3" // { 73468 73725 dependencies = [ 73469 73726 sources."safe-buffer-5.1.2" ··· 73473 73730 sources."convert-to-spaces-1.0.2" 73474 73731 sources."cookie-0.4.0" 73475 73732 sources."cookie-signature-1.0.6" 73476 - sources."core-js-pure-3.16.1" 73733 + sources."core-js-pure-3.16.2" 73477 73734 sources."core-util-is-1.0.2" 73478 73735 sources."cors-2.8.5" 73479 73736 sources."crc-32-1.2.0" ··· 73635 73892 sources."iterall-1.3.0" 73636 73893 sources."js-tokens-4.0.0" 73637 73894 sources."jsesc-2.5.2" 73638 - (sources."jsii-1.32.0" // { 73895 + (sources."jsii-1.33.0" // { 73639 73896 dependencies = [ 73640 73897 sources."fs-extra-9.1.0" 73641 73898 sources."yargs-16.2.0" 73642 73899 ]; 73643 73900 }) 73644 - (sources."jsii-pacmak-1.32.0" // { 73901 + (sources."jsii-pacmak-1.33.0" // { 73645 73902 dependencies = [ 73646 73903 sources."clone-2.1.2" 73647 - sources."codemaker-1.32.0" 73904 + sources."codemaker-1.33.0" 73648 73905 sources."decamelize-5.0.0" 73649 73906 sources."escape-string-regexp-4.0.0" 73650 73907 sources."fs-extra-9.1.0" 73651 73908 sources."yargs-16.2.0" 73652 73909 ]; 73653 73910 }) 73654 - (sources."jsii-reflect-1.32.0" // { 73911 + (sources."jsii-reflect-1.33.0" // { 73655 73912 dependencies = [ 73656 73913 sources."fs-extra-9.1.0" 73657 73914 sources."yargs-16.2.0" 73658 73915 ]; 73659 73916 }) 73660 - (sources."jsii-rosetta-1.32.0" // { 73917 + (sources."jsii-rosetta-1.33.0" // { 73661 73918 dependencies = [ 73662 73919 sources."fs-extra-9.1.0" 73663 73920 sources."yargs-16.2.0" 73664 73921 ]; 73665 73922 }) 73666 - (sources."jsii-srcmak-0.1.323" // { 73923 + (sources."jsii-srcmak-0.1.327" // { 73667 73924 dependencies = [ 73668 73925 sources."fs-extra-9.1.0" 73669 73926 ]; ··· 73728 73985 sources."on-finished-2.3.0" 73729 73986 sources."once-1.4.0" 73730 73987 sources."onetime-5.1.2" 73731 - sources."oo-ascii-tree-1.32.0" 73988 + sources."oo-ascii-tree-1.33.0" 73732 73989 sources."open-7.4.2" 73733 73990 sources."optimism-0.16.1" 73734 73991 sources."ora-5.4.1" ··· 73764 74021 sources."range-parser-1.2.1" 73765 74022 sources."raw-body-2.4.0" 73766 74023 sources."react-16.14.0" 73767 - sources."react-devtools-core-4.15.0" 74024 + sources."react-devtools-core-4.16.0" 73768 74025 sources."react-is-16.13.1" 73769 74026 sources."react-reconciler-0.24.0" 73770 74027 sources."readable-stream-3.6.0" ··· 73777 74034 sources."reserved-words-0.1.2" 73778 74035 sources."resolve-from-5.0.0" 73779 74036 sources."restore-cursor-3.1.0" 73780 - sources."retry-0.12.0" 74037 + sources."retry-0.13.1" 73781 74038 sources."reusify-1.0.4" 73782 74039 sources."rfdc-1.3.0" 73783 74040 sources."run-async-2.4.1" ··· 73821 74078 sources."sort-json-2.0.0" 73822 74079 sources."source-map-0.5.7" 73823 74080 sources."spdx-license-list-6.4.0" 73824 - sources."sscaff-1.2.44" 74081 + sources."sscaff-1.2.48" 73825 74082 (sources."stack-utils-2.0.3" // { 73826 74083 dependencies = [ 73827 74084 sources."escape-string-regexp-2.0.0" ··· 73893 74150 sources."wrappy-1.0.2" 73894 74151 sources."ws-7.5.3" 73895 74152 sources."xmlbuilder-15.1.1" 73896 - sources."xmldom-0.6.0" 74153 + sources."xmldom-git://github.com/xmldom/xmldom#0.7.0" 73897 74154 sources."xss-1.0.9" 73898 74155 sources."y18n-5.0.8" 73899 74156 sources."yallist-4.0.0" ··· 74258 74515 coc-explorer = nodeEnv.buildNodePackage { 74259 74516 name = "coc-explorer"; 74260 74517 packageName = "coc-explorer"; 74261 - version = "0.18.14"; 74518 + version = "0.18.15"; 74262 74519 src = fetchurl { 74263 - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.14.tgz"; 74264 - sha512 = "nfJl0hw1/fMhXbaSNEVBHUQTUIGfiBRVQ5KLmYO4gJ7pNvhIcEUas+DKKONDr3WtmV3ZlEWmR0SbvVnaRzKB5w=="; 74520 + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.15.tgz"; 74521 + sha512 = "YXwbqzvEKo2fT2srqhESG3KOzz1mZ8V4SY/T8fLo2yxY1C14m7Bol2rqP+7VI+tXwaKXWbnMoQRDgOTjgL2oxQ=="; 74265 74522 }; 74266 74523 dependencies = [ 74267 74524 sources."@sindresorhus/df-3.1.1" ··· 74494 74751 sources."ms-2.0.0" 74495 74752 sources."request-light-0.4.0" 74496 74753 sources."vscode-json-languageserver-1.3.4" 74497 - (sources."vscode-json-languageservice-4.1.6" // { 74754 + (sources."vscode-json-languageservice-4.1.7" // { 74498 74755 dependencies = [ 74499 74756 sources."vscode-nls-5.0.0" 74500 74757 ]; ··· 74561 74818 sha512 = "EiD4lpcGW2WyzxEDpRMYPrjxAa0FhG69SzDoc1KbDht2Do/vgnRzvrtIsufPT14dALAesieN3kVVMCCfA9S6jA=="; 74562 74819 }; 74563 74820 dependencies = [ 74564 - sources."@chemzqm/neovim-5.3.4" 74821 + sources."@chemzqm/neovim-5.3.5" 74565 74822 sources."@tootallnate/once-1.1.2" 74566 74823 sources."agent-base-6.0.2" 74567 74824 sources."arch-2.2.0" ··· 74912 75169 ]; 74913 75170 }) 74914 75171 sources."copy-descriptor-0.1.1" 74915 - sources."core-js-3.16.1" 75172 + sources."core-js-3.16.2" 74916 75173 sources."cosmiconfig-3.1.0" 74917 75174 sources."create-error-class-3.0.2" 74918 75175 sources."cross-spawn-7.0.3" ··· 74948 75205 sources."domutils-1.7.0" 74949 75206 sources."dot-prop-5.3.0" 74950 75207 sources."duplexer3-0.1.4" 74951 - sources."electron-to-chromium-1.3.805" 75208 + sources."electron-to-chromium-1.3.808" 74952 75209 sources."emoji-regex-8.0.0" 74953 75210 sources."end-of-stream-1.4.4" 74954 75211 sources."enquirer-2.3.6" ··· 75747 76004 coc-pyright = nodeEnv.buildNodePackage { 75748 76005 name = "coc-pyright"; 75749 76006 packageName = "coc-pyright"; 75750 - version = "1.1.161"; 76007 + version = "1.1.162"; 75751 76008 src = fetchurl { 75752 - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.161.tgz"; 75753 - sha512 = "CFWLqQ3t0o73tioZHqJip0avZ7K9p9sBCMz81voAkBDoaSvUvrqT/SGpbhwXjzsvwBF6H1WY9aEK8FDMVAh+XA=="; 76009 + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.162.tgz"; 76010 + sha512 = "FD/aHp65QH2dDH3+0vdEPfJi7BVndL6DFa1OF+87OHQZ+wCuMPfFWcd1/izj8y907cpwv1/nCg9y/lvxJfrrRg=="; 75754 76011 }; 75755 76012 dependencies = [ 75756 - sources."pyright-1.1.161" 76013 + sources."pyright-1.1.162" 75757 76014 ]; 75758 76015 buildInputs = globalBuildInputs; 75759 76016 meta = { ··· 75863 76120 coc-snippets = nodeEnv.buildNodePackage { 75864 76121 name = "coc-snippets"; 75865 76122 packageName = "coc-snippets"; 75866 - version = "2.4.3"; 76123 + version = "2.4.4"; 75867 76124 src = fetchurl { 75868 - url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.4.3.tgz"; 75869 - sha512 = "1vIMSDI8zKbr7J/jD4Ey9EFfYnipRaYzbaY9WZHnStEb0H2M/obIjwl5k9gRFGfJV00vB7zDpHp19FXLXVqzhQ=="; 76125 + url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.4.4.tgz"; 76126 + sha512 = "vlb40ZzIob1sjxzMZL484QT+hlsxKto2oZ6w+dnr45CyWJE/OL+fIlBMiy+xELYuxLXxkfLy1dz8d3N4PDy57A=="; 75870 76127 }; 75871 76128 buildInputs = globalBuildInputs; 75872 76129 meta = { ··· 75997 76254 sources."domelementtype-1.3.1" 75998 76255 sources."domhandler-2.4.2" 75999 76256 sources."domutils-1.7.0" 76000 - sources."electron-to-chromium-1.3.805" 76257 + sources."electron-to-chromium-1.3.808" 76001 76258 sources."emoji-regex-8.0.0" 76002 76259 sources."entities-1.1.2" 76003 76260 sources."error-ex-1.3.2" ··· 76371 76628 coc-tsserver = nodeEnv.buildNodePackage { 76372 76629 name = "coc-tsserver"; 76373 76630 packageName = "coc-tsserver"; 76374 - version = "1.8.3"; 76631 + version = "1.8.5"; 76375 76632 src = fetchurl { 76376 - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.8.3.tgz"; 76377 - sha512 = "dOvu5TY1zuZ/d7l/v3pGhbgYrhBVQSsmTiLNUL1dYzXCuVUuzNNm5CzZcr8yLTr3diCPU2eavLKs8iBwBvs/8g=="; 76633 + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.8.5.tgz"; 76634 + sha512 = "wFjtKm9KeXOpI/po5unbnju1H6/pm1wT3fHHfNo3LYF5PVKgz39Suvv09XCEAUSBC5PPu8wXNZLoBeVRMI4yuQ=="; 76378 76635 }; 76379 76636 dependencies = [ 76380 76637 sources."typescript-4.3.5" ··· 76859 77116 sources."@npmcli/move-file-1.1.2" 76860 77117 sources."@npmcli/node-gyp-1.0.2" 76861 77118 sources."@npmcli/promise-spawn-1.3.2" 76862 - sources."@npmcli/run-script-1.8.5" 77119 + sources."@npmcli/run-script-1.8.6" 76863 77120 sources."@sindresorhus/is-0.14.0" 76864 77121 sources."@szmarczak/http-timer-1.1.2" 76865 77122 sources."@tootallnate/once-1.1.2" ··· 78950 79207 sources."@types/fs-extra-8.1.2" 78951 79208 sources."@types/geojson-7946.0.8" 78952 79209 sources."@types/mapbox-gl-0.54.5" 78953 - sources."@types/mime-types-2.1.0" 79210 + sources."@types/mime-types-2.1.1" 78954 79211 sources."@types/node-14.17.9" 78955 79212 sources."@types/node-fetch-2.5.12" 78956 79213 sources."@types/prop-types-15.7.4" 78957 - sources."@types/rc-1.1.0" 79214 + sources."@types/rc-1.2.0" 78958 79215 sources."@types/react-16.14.13" 78959 79216 sources."@types/react-dom-16.9.14" 78960 79217 sources."@types/react-virtualized-9.21.13" ··· 79051 79308 ]; 79052 79309 }) 79053 79310 sources."copy-descriptor-0.1.1" 79054 - sources."core-js-3.16.1" 79055 - (sources."core-js-compat-3.16.1" // { 79311 + sources."core-js-3.16.2" 79312 + (sources."core-js-compat-3.16.2" // { 79056 79313 dependencies = [ 79057 79314 sources."semver-7.0.0" 79058 79315 ]; ··· 79077 79334 sources."dom4-2.1.6" 79078 79335 sources."duplexer3-0.1.4" 79079 79336 sources."earcut-2.2.3" 79080 - sources."electron-13.1.9" 79081 - sources."electron-to-chromium-1.3.805" 79337 + sources."electron-13.2.0" 79338 + sources."electron-to-chromium-1.3.808" 79082 79339 sources."emoji-js-clean-4.0.0" 79083 79340 sources."emoji-mart-3.0.1" 79084 79341 sources."emoji-regex-9.2.2" ··· 79357 79614 sources."rw-0.1.4" 79358 79615 sources."safe-buffer-5.2.1" 79359 79616 sources."safe-regex-1.1.0" 79360 - (sources."sass-1.37.5" // { 79617 + (sources."sass-1.38.0" // { 79361 79618 dependencies = [ 79362 79619 sources."anymatch-3.1.2" 79363 79620 sources."binary-extensions-2.2.0" ··· 79532 79789 diagnostic-languageserver = nodeEnv.buildNodePackage { 79533 79790 name = "diagnostic-languageserver"; 79534 79791 packageName = "diagnostic-languageserver"; 79535 - version = "1.12.0"; 79792 + version = "1.12.1"; 79536 79793 src = fetchurl { 79537 - url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.12.0.tgz"; 79538 - sha512 = "oXWAYO2ACrjFRYPTqUOQz3gCE7U1R5HVkuiqXXTFCcujiAprJjzvV5VAjrJolgA7guyRrXE5HliuDGoWJfWHOw=="; 79794 + url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.12.1.tgz"; 79795 + sha512 = "guR2r4tNIJBXmR0sx1JpBQ+/T5h5vsAdjcixFNcSOoSG7TD3MYnS3iC0OJ6HMFsyM+gR2siTBQXVaK3s04PrOw=="; 79539 79796 }; 79540 79797 dependencies = [ 79541 79798 sources."@nodelib/fs.scandir-2.1.5" ··· 79942 80199 sources."concat-map-0.0.1" 79943 80200 sources."config-chain-1.1.13" 79944 80201 sources."console-control-strings-1.1.0" 79945 - sources."core-js-3.16.1" 80202 + sources."core-js-3.16.2" 79946 80203 sources."core-util-is-1.0.2" 79947 80204 sources."cross-spawn-7.0.3" 79948 80205 (sources."cross-spawn-windows-exe-1.2.0" // { ··· 80590 80847 }) 80591 80848 sources."defer-to-connect-2.0.1" 80592 80849 sources."dot-prop-5.3.0" 80593 - sources."electron-to-chromium-1.3.805" 80850 + sources."electron-to-chromium-1.3.808" 80594 80851 sources."emoji-regex-8.0.0" 80595 80852 sources."emojilib-2.4.0" 80596 80853 sources."end-of-stream-1.4.4" ··· 80724 80981 sources."punycode-2.1.1" 80725 80982 sources."quick-lru-5.1.1" 80726 80983 sources."react-16.14.0" 80727 - sources."react-devtools-core-4.15.0" 80984 + sources."react-devtools-core-4.16.0" 80728 80985 sources."react-is-16.13.1" 80729 80986 sources."react-reconciler-0.24.0" 80730 80987 (sources."read-pkg-5.2.0" // { ··· 82112 82369 sources."safe-buffer-5.1.2" 82113 82370 sources."safe-regex-1.1.0" 82114 82371 sources."safer-buffer-2.1.2" 82115 - (sources."sass-1.37.5" // { 82372 + (sources."sass-1.38.0" // { 82116 82373 dependencies = [ 82117 82374 sources."anymatch-3.1.2" 82118 82375 sources."binary-extensions-2.2.0" ··· 83090 83347 }) 83091 83348 sources."@npmcli/node-gyp-1.0.2" 83092 83349 sources."@npmcli/promise-spawn-1.3.2" 83093 - sources."@npmcli/run-script-1.8.5" 83350 + sources."@npmcli/run-script-1.8.6" 83094 83351 sources."@react-native-community/cli-debugger-ui-5.0.1" 83095 83352 (sources."@react-native-community/cli-server-api-5.0.1" // { 83096 83353 dependencies = [ ··· 83476 83733 sources."semver-6.3.0" 83477 83734 ]; 83478 83735 }) 83479 - (sources."core-js-compat-3.16.1" // { 83736 + (sources."core-js-compat-3.16.2" // { 83480 83737 dependencies = [ 83481 83738 sources."browserslist-4.16.7" 83482 83739 sources."semver-7.0.0" ··· 83609 83866 sources."duplexify-3.7.1" 83610 83867 sources."ecc-jsbn-0.1.2" 83611 83868 sources."ee-first-1.1.1" 83612 - sources."electron-to-chromium-1.3.805" 83869 + sources."electron-to-chromium-1.3.808" 83613 83870 (sources."elliptic-6.5.4" // { 83614 83871 dependencies = [ 83615 83872 sources."bn.js-4.12.0" ··· 85325 85582 }) 85326 85583 sources."delay-5.0.0" 85327 85584 sources."devtools-protocol-0.0.869402" 85328 - sources."electron-to-chromium-1.3.805" 85585 + sources."electron-to-chromium-1.3.808" 85329 85586 sources."emoji-regex-8.0.0" 85330 85587 sources."end-of-stream-1.4.4" 85331 85588 sources."error-ex-1.3.2" ··· 85419 85676 sources."puppeteer-9.1.1" 85420 85677 sources."quick-lru-4.0.1" 85421 85678 sources."react-16.14.0" 85422 - sources."react-devtools-core-4.15.0" 85679 + sources."react-devtools-core-4.16.0" 85423 85680 sources."react-is-16.13.1" 85424 85681 sources."react-reconciler-0.24.0" 85425 85682 (sources."read-pkg-5.2.0" // { ··· 85540 85797 sources."tslib-2.3.1" 85541 85798 ]; 85542 85799 }) 85543 - (sources."@oclif/core-0.5.29" // { 85800 + (sources."@oclif/core-0.5.30" // { 85544 85801 dependencies = [ 85545 85802 sources."chalk-4.1.2" 85546 85803 (sources."cli-ux-5.6.3" // { ··· 86186 86443 firebase-tools = nodeEnv.buildNodePackage { 86187 86444 name = "firebase-tools"; 86188 86445 packageName = "firebase-tools"; 86189 - version = "9.16.4"; 86446 + version = "9.16.5"; 86190 86447 src = fetchurl { 86191 - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.16.4.tgz"; 86192 - sha512 = "cWcjwPUIgO1bKzzJADd+roAlM0IyWbaUUuOuUQlW8YU9VFP/f/mF7bOu4ys+faIyZCqPwiX9BXOb+PEYWJm0nA=="; 86448 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.16.5.tgz"; 86449 + sha512 = "dp/cvt+39wv5CO+MzX36snmRnvn5j7Nn73QfKiIvHXAT5Ek/fRJn2pWnaxP+bhd19SuEY1Buf8PcdlMl42hzlw=="; 86193 86450 }; 86194 86451 dependencies = [ 86195 86452 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 86202 86459 sources."@google-cloud/precise-date-2.0.3" 86203 86460 sources."@google-cloud/projectify-2.1.0" 86204 86461 sources."@google-cloud/promisify-2.0.3" 86205 - (sources."@google-cloud/pubsub-2.16.3" // { 86462 + (sources."@google-cloud/pubsub-2.16.4" // { 86206 86463 dependencies = [ 86207 86464 sources."google-auth-library-7.6.1" 86208 86465 ]; ··· 86585 86842 sources."glob-slasher-1.0.1" 86586 86843 sources."global-dirs-2.1.0" 86587 86844 sources."google-auth-library-6.1.6" 86588 - (sources."google-gax-2.24.0" // { 86845 + (sources."google-gax-2.24.1" // { 86589 86846 dependencies = [ 86590 86847 sources."google-auth-library-7.6.1" 86591 86848 ]; ··· 87515 87772 sources."utf8-3.0.0" 87516 87773 sources."uuid-3.4.0" 87517 87774 sources."verror-1.10.0" 87518 - sources."web3-utils-1.5.1" 87775 + sources."web3-utils-1.5.2" 87519 87776 sources."which-module-2.0.0" 87520 87777 sources."wrap-ansi-6.2.0" 87521 87778 sources."wrappy-1.0.2" ··· 88242 88499 ]; 88243 88500 }) 88244 88501 sources."content-type-1.0.4" 88245 - sources."contentful-management-7.31.0" 88502 + sources."contentful-management-7.32.0" 88246 88503 sources."contentful-sdk-core-6.8.0" 88247 88504 sources."convert-hrtime-3.0.0" 88248 88505 (sources."convert-source-map-1.8.0" // { ··· 88288 88545 sources."dotenv-8.6.0" 88289 88546 sources."duplexer3-0.1.4" 88290 88547 sources."ee-first-1.1.1" 88291 - sources."electron-to-chromium-1.3.805" 88548 + sources."electron-to-chromium-1.3.808" 88292 88549 sources."emoji-regex-7.0.3" 88293 88550 sources."encodeurl-1.0.2" 88294 88551 sources."end-of-stream-1.4.4" ··· 88810 89067 sources."@octokit/openapi-types-9.7.0" 88811 89068 sources."@octokit/plugin-paginate-rest-2.15.1" 88812 89069 sources."@octokit/plugin-request-log-1.0.4" 88813 - sources."@octokit/plugin-rest-endpoint-methods-5.7.0" 89070 + sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 88814 89071 sources."@octokit/request-5.6.1" 88815 89072 sources."@octokit/request-error-2.1.0" 88816 - sources."@octokit/rest-18.9.0" 89073 + sources."@octokit/rest-18.9.1" 88817 89074 sources."@octokit/types-6.25.0" 88818 89075 sources."@types/normalize-package-data-2.4.1" 88819 89076 sources."agent-base-4.3.0" ··· 89259 89516 sources."@types/normalize-package-data-2.4.1" 89260 89517 sources."agent-base-6.0.2" 89261 89518 sources."ajv-8.6.2" 89262 - sources."ajv-formats-2.1.0" 89519 + sources."ajv-formats-2.1.1" 89263 89520 (sources."ansi-align-3.0.0" // { 89264 89521 dependencies = [ 89265 89522 sources."ansi-regex-4.1.0" ··· 89698 89955 sources."tslib-2.3.1" 89699 89956 ]; 89700 89957 }) 89701 - (sources."@graphql-tools/schema-8.1.0" // { 89958 + (sources."@graphql-tools/schema-8.1.1" // { 89702 89959 dependencies = [ 89703 - sources."@graphql-tools/merge-8.0.0" 89704 - sources."@graphql-tools/utils-8.1.0" 89960 + sources."@graphql-tools/merge-8.0.1" 89961 + sources."@graphql-tools/utils-8.1.1" 89705 89962 sources."tslib-2.3.1" 89706 89963 ]; 89707 89964 }) ··· 90024 90281 sources."oas-linter-3.2.2" 90025 90282 (sources."oas-resolver-2.5.6" // { 90026 90283 dependencies = [ 90027 - sources."yargs-17.1.0" 90284 + sources."yargs-17.1.1" 90028 90285 ]; 90029 90286 }) 90030 90287 sources."oas-schema-walker-1.1.5" ··· 90137 90394 sources."supports-color-7.2.0" 90138 90395 (sources."swagger2openapi-7.0.8" // { 90139 90396 dependencies = [ 90140 - sources."yargs-17.1.0" 90397 + sources."yargs-17.1.1" 90141 90398 ]; 90142 90399 }) 90143 90400 sources."symbol-observable-1.2.0" ··· 92596 92853 sources."color-name-1.1.4" 92597 92854 sources."has-flag-4.0.0" 92598 92855 sources."supports-color-7.2.0" 92599 - sources."yargs-17.1.0" 92856 + sources."yargs-17.1.1" 92600 92857 ]; 92601 92858 }) 92602 92859 sources."wawoff2-2.0.0" ··· 92747 93004 joplin = nodeEnv.buildNodePackage { 92748 93005 name = "joplin"; 92749 93006 packageName = "joplin"; 92750 - version = "2.2.2"; 93007 + version = "2.3.2"; 92751 93008 src = fetchurl { 92752 - url = "https://registry.npmjs.org/joplin/-/joplin-2.2.2.tgz"; 92753 - sha512 = "IM+wgl9psrsn7l13VDnDCNH90QiGqkE4gXFcsn6eMSsKnKR/op57WXbS/JwJuokXDIB+obZqVWLaJeSdIx9Lcw=="; 93009 + url = "https://registry.npmjs.org/joplin/-/joplin-2.3.2.tgz"; 93010 + sha512 = "Gg0s1NP2mRJqzv68aT8cdt2+71iSYLDTWusAmlX7c8g13ZniSzCEHXywFvpILYm76lzCWxMazPleZhEEuBjqxQ=="; 92754 93011 }; 92755 93012 dependencies = [ 92756 93013 sources."@babel/code-frame-7.14.5" ··· 92821 93078 sources."@babel/types-7.15.0" 92822 93079 sources."@braintree/sanitize-url-3.1.0" 92823 93080 sources."@cronvel/get-pixels-3.4.0" 92824 - sources."@joplin/fork-htmlparser2-4.1.32" 92825 - sources."@joplin/fork-sax-1.2.36" 92826 - sources."@joplin/lib-2.2.4" 92827 - (sources."@joplin/renderer-2.2.4" // { 93081 + sources."@joplin/fork-htmlparser2-4.1.33" 93082 + sources."@joplin/fork-sax-1.2.37" 93083 + sources."@joplin/lib-2.3.1" 93084 + (sources."@joplin/renderer-2.3.1" // { 92828 93085 dependencies = [ 92829 93086 sources."fs-extra-8.1.0" 92830 93087 sources."jsonfile-4.0.0" 92831 93088 sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support" 92832 93089 ]; 92833 93090 }) 92834 - (sources."@joplin/turndown-4.0.54" // { 93091 + (sources."@joplin/turndown-4.0.55" // { 92835 93092 dependencies = [ 92836 93093 sources."css-2.2.4" 92837 93094 ]; 92838 93095 }) 92839 - sources."@joplin/turndown-plugin-gfm-1.0.36" 93096 + sources."@joplin/turndown-plugin-gfm-1.0.37" 92840 93097 sources."@nodelib/fs.scandir-2.1.5" 92841 93098 sources."@nodelib/fs.stat-2.0.5" 92842 93099 sources."@nodelib/fs.walk-1.2.8" ··· 92853 93110 sources."tslib-2.3.1" 92854 93111 ]; 92855 93112 }) 92856 - (sources."@oclif/core-0.5.29" // { 93113 + (sources."@oclif/core-0.5.30" // { 92857 93114 dependencies = [ 92858 93115 sources."ansi-regex-5.0.0" 92859 93116 sources."debug-4.3.2" ··· 92947 93204 sources."asynckit-0.4.0" 92948 93205 sources."at-least-node-1.0.0" 92949 93206 sources."atob-2.1.2" 92950 - (sources."aws-sdk-2.968.0" // { 93207 + (sources."aws-sdk-2.969.0" // { 92951 93208 dependencies = [ 92952 93209 sources."buffer-4.9.2" 92953 93210 sources."ieee754-1.1.13" ··· 93172 93429 ]; 93173 93430 }) 93174 93431 sources."ecc-jsbn-0.1.2" 93175 - sources."electron-to-chromium-1.3.805" 93432 + sources."electron-to-chromium-1.3.808" 93176 93433 sources."emoji-regex-8.0.0" 93177 93434 (sources."emphasize-1.5.0" // { 93178 93435 dependencies = [ ··· 93320 93577 ]; 93321 93578 }) 93322 93579 sources."he-1.2.0" 93323 - sources."highlight.js-10.7.3" 93580 + sources."highlight.js-11.2.0" 93324 93581 sources."html-encoding-sniffer-1.0.2" 93325 93582 sources."html-entities-1.4.0" 93326 93583 sources."html-minifier-3.5.21" ··· 93521 93778 sources."md5-file-4.0.0" 93522 93779 sources."mdurl-1.0.1" 93523 93780 sources."merge2-1.4.1" 93524 - sources."mermaid-8.11.4" 93781 + sources."mermaid-8.11.5" 93525 93782 sources."micromatch-4.0.4" 93526 93783 sources."mime-db-1.49.0" 93527 93784 sources."mime-types-2.1.32" ··· 95148 95405 sources."tslib-2.3.1" 95149 95406 ]; 95150 95407 }) 95151 - (sources."@oclif/core-0.5.29" // { 95408 + (sources."@oclif/core-0.5.30" // { 95152 95409 dependencies = [ 95153 95410 sources."fs-extra-9.1.0" 95154 95411 sources."jsonfile-6.1.0" ··· 96554 96811 sources."@npmcli/move-file-1.1.2" 96555 96812 sources."@npmcli/node-gyp-1.0.2" 96556 96813 sources."@npmcli/promise-spawn-1.3.2" 96557 - sources."@npmcli/run-script-1.8.5" 96814 + sources."@npmcli/run-script-1.8.6" 96558 96815 sources."@octokit/auth-token-2.4.5" 96559 96816 sources."@octokit/core-3.5.1" 96560 96817 (sources."@octokit/endpoint-6.0.12" // { ··· 96567 96824 sources."@octokit/plugin-enterprise-rest-6.0.1" 96568 96825 sources."@octokit/plugin-paginate-rest-2.15.1" 96569 96826 sources."@octokit/plugin-request-log-1.0.4" 96570 - sources."@octokit/plugin-rest-endpoint-methods-5.7.0" 96827 + sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 96571 96828 (sources."@octokit/request-5.6.1" // { 96572 96829 dependencies = [ 96573 96830 sources."is-plain-object-5.0.0" 96574 96831 ]; 96575 96832 }) 96576 96833 sources."@octokit/request-error-2.1.0" 96577 - sources."@octokit/rest-18.9.0" 96834 + sources."@octokit/rest-18.9.1" 96578 96835 sources."@octokit/types-6.25.0" 96579 96836 sources."@tootallnate/once-1.1.2" 96580 96837 sources."@types/minimatch-3.0.5" ··· 98310 98567 sources."assign-symbols-1.0.0" 98311 98568 sources."async-3.2.1" 98312 98569 sources."async-each-1.0.3" 98313 - sources."async-retry-1.3.1" 98570 + sources."async-retry-1.3.3" 98314 98571 sources."asynckit-0.4.0" 98315 98572 sources."atob-2.1.2" 98316 98573 sources."aws-sign2-0.7.0" ··· 98496 98753 }) 98497 98754 sources."copy-descriptor-0.1.1" 98498 98755 sources."core-js-2.6.12" 98499 - (sources."core-js-compat-3.16.1" // { 98756 + (sources."core-js-compat-3.16.2" // { 98500 98757 dependencies = [ 98501 98758 sources."semver-7.0.0" 98502 98759 ]; ··· 98548 98805 sources."duplexer2-0.1.4" 98549 98806 sources."duplexify-3.7.1" 98550 98807 sources."ecc-jsbn-0.1.2" 98551 - sources."electron-to-chromium-1.3.805" 98808 + sources."electron-to-chromium-1.3.808" 98552 98809 (sources."elliptic-6.5.4" // { 98553 98810 dependencies = [ 98554 98811 sources."bn.js-4.12.0" ··· 98976 99233 sources."resolve-from-5.0.0" 98977 99234 sources."resolve-url-0.2.1" 98978 99235 sources."ret-0.1.15" 98979 - sources."retry-0.12.0" 99236 + sources."retry-0.13.1" 98980 99237 sources."rimraf-2.7.1" 98981 99238 sources."ripemd160-2.0.2" 98982 99239 sources."rollup-1.32.1" ··· 99863 100120 sources."tslib-2.3.1" 99864 100121 ]; 99865 100122 }) 99866 - (sources."@oclif/core-0.5.29" // { 100123 + (sources."@oclif/core-0.5.30" // { 99867 100124 dependencies = [ 99868 100125 sources."fs-extra-9.1.0" 99869 100126 sources."jsonfile-6.1.0" ··· 100036 100293 sources."devtools-protocol-0.0.901419" 100037 100294 sources."dir-glob-3.0.1" 100038 100295 sources."dompurify-2.3.0" 100039 - sources."electron-to-chromium-1.3.805" 100296 + sources."electron-to-chromium-1.3.808" 100040 100297 sources."emoji-regex-8.0.0" 100041 100298 sources."end-of-stream-1.4.4" 100042 100299 sources."error-ex-1.3.2" ··· 100207 100464 sources."map-cache-0.2.2" 100208 100465 sources."map-visit-1.0.0" 100209 100466 sources."merge2-1.4.1" 100210 - sources."mermaid-8.11.4" 100467 + sources."mermaid-8.11.5" 100211 100468 sources."micromatch-4.0.4" 100212 100469 sources."mimic-fn-2.1.0" 100213 100470 sources."minimatch-3.0.4" ··· 101083 101340 netlify-cli = nodeEnv.buildNodePackage { 101084 101341 name = "netlify-cli"; 101085 101342 packageName = "netlify-cli"; 101086 - version = "6.3.5"; 101343 + version = "6.5.4"; 101087 101344 src = fetchurl { 101088 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.3.5.tgz"; 101089 - sha512 = "ve09paxF4/aoPDScVMt+N/oRoiWLad4xF2HHWHGAq0PJFah13W6Q/9rQADafxgVBk1OHFN6zW1WOJGZCdH3+pQ=="; 101345 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.5.4.tgz"; 101346 + sha512 = "beDMd9oXPkfq9vGT58ftWa6qOaR4G9lTzCI2I0y2VKd304ijYzWbW6NkxUHRoPJjRdyxYPWklZtdQ9iw5vMMlQ=="; 101090 101347 }; 101091 101348 dependencies = [ 101092 101349 sources."@babel/code-frame-7.14.5" ··· 101219 101476 sources."@bugsnag/node-7.11.0" 101220 101477 sources."@bugsnag/safe-json-stringify-6.0.0" 101221 101478 sources."@dabh/diagnostics-2.0.2" 101222 - sources."@jest/types-24.9.0" 101479 + sources."@jest/types-26.6.2" 101223 101480 sources."@mrmlnc/readdir-enhanced-2.2.1" 101224 - (sources."@netlify/build-18.2.7" // { 101481 + (sources."@netlify/build-18.2.11" // { 101225 101482 dependencies = [ 101226 - sources."ansi-styles-4.3.0" 101227 - (sources."boxen-4.2.0" // { 101228 - dependencies = [ 101229 - sources."chalk-3.0.0" 101230 - ]; 101231 - }) 101232 - sources."is-plain-obj-2.1.0" 101233 - sources."locate-path-5.0.0" 101234 101483 sources."resolve-2.0.0-next.3" 101235 - sources."type-fest-0.8.1" 101236 - (sources."update-notifier-4.1.3" // { 101237 - dependencies = [ 101238 - sources."chalk-3.0.0" 101239 - ]; 101240 - }) 101241 101484 ]; 101242 101485 }) 101243 - (sources."@netlify/cache-utils-2.0.1" // { 101486 + (sources."@netlify/cache-utils-2.0.2" // { 101244 101487 dependencies = [ 101245 101488 sources."del-5.1.0" 101246 - sources."locate-path-5.0.0" 101247 101489 sources."p-map-3.0.0" 101248 101490 sources."slash-3.0.0" 101249 101491 ]; 101250 101492 }) 101251 - (sources."@netlify/config-15.3.0" // { 101493 + (sources."@netlify/config-15.3.4" // { 101252 101494 dependencies = [ 101253 101495 sources."dot-prop-5.3.0" 101254 - sources."is-plain-obj-2.1.0" 101255 101496 ]; 101256 101497 }) 101257 101498 sources."@netlify/esbuild-0.13.6" 101258 - (sources."@netlify/framework-info-5.8.0" // { 101259 - dependencies = [ 101260 - sources."p-limit-3.1.0" 101261 - sources."p-locate-5.0.0" 101262 - ]; 101263 - }) 101499 + sources."@netlify/framework-info-5.9.0" 101264 101500 sources."@netlify/functions-utils-2.0.2" 101265 101501 (sources."@netlify/git-utils-2.0.1" // { 101266 101502 dependencies = [ ··· 101298 101534 sources."ansi-styles-4.3.0" 101299 101535 sources."cliui-7.0.4" 101300 101536 sources."cp-file-9.1.0" 101301 - sources."pkg-dir-5.0.0" 101302 101537 sources."resolve-2.0.0-next.3" 101303 101538 sources."wrap-ansi-7.0.0" 101304 101539 sources."y18n-5.0.8" ··· 101315 101550 sources."@nodelib/fs.walk-1.2.8" 101316 101551 (sources."@oclif/color-0.1.2" // { 101317 101552 dependencies = [ 101553 + sources."ansi-regex-4.1.0" 101318 101554 sources."ansi-styles-3.2.1" 101319 101555 (sources."chalk-3.0.0" // { 101320 101556 dependencies = [ ··· 101354 101590 sources."tslib-2.3.1" 101355 101591 ]; 101356 101592 }) 101357 - (sources."@oclif/core-0.5.29" // { 101593 + (sources."@oclif/core-0.5.30" // { 101358 101594 dependencies = [ 101359 101595 sources."@nodelib/fs.stat-2.0.5" 101360 101596 sources."ansi-styles-4.3.0" ··· 101398 101634 (sources."@oclif/plugin-not-found-1.2.4" // { 101399 101635 dependencies = [ 101400 101636 sources."ansi-escapes-3.2.0" 101637 + sources."ansi-regex-4.1.0" 101401 101638 sources."ansi-styles-3.2.1" 101402 101639 sources."chalk-2.4.2" 101403 101640 sources."clean-stack-2.2.0" ··· 101434 101671 sources."@octokit/openapi-types-9.7.0" 101435 101672 sources."@octokit/plugin-paginate-rest-2.15.1" 101436 101673 sources."@octokit/plugin-request-log-1.0.4" 101437 - sources."@octokit/plugin-rest-endpoint-methods-5.7.0" 101674 + sources."@octokit/plugin-rest-endpoint-methods-5.8.0" 101438 101675 (sources."@octokit/request-5.6.1" // { 101439 101676 dependencies = [ 101440 101677 sources."is-plain-object-5.0.0" 101441 101678 ]; 101442 101679 }) 101443 101680 sources."@octokit/request-error-2.1.0" 101444 - sources."@octokit/rest-18.9.0" 101681 + sources."@octokit/rest-18.9.1" 101445 101682 sources."@octokit/types-6.25.0" 101446 101683 sources."@rollup/plugin-babel-5.3.0" 101447 101684 (sources."@rollup/plugin-commonjs-18.1.0" // { ··· 101472 101709 sources."@types/http-proxy-1.17.7" 101473 101710 sources."@types/istanbul-lib-coverage-2.0.3" 101474 101711 sources."@types/istanbul-lib-report-3.0.0" 101475 - sources."@types/istanbul-reports-1.1.2" 101712 + sources."@types/istanbul-reports-3.0.1" 101476 101713 sources."@types/keyv-3.1.2" 101477 101714 sources."@types/minimatch-3.0.5" 101478 101715 sources."@types/node-16.6.1" ··· 101481 101718 sources."@types/resolve-1.17.1" 101482 101719 sources."@types/responselike-1.0.0" 101483 101720 sources."@types/semver-7.3.8" 101484 - sources."@types/yargs-13.0.12" 101721 + sources."@types/yargs-15.0.14" 101485 101722 sources."@types/yargs-parser-20.2.1" 101486 - sources."@typescript-eslint/types-4.29.1" 101487 - (sources."@typescript-eslint/typescript-estree-4.29.1" // { 101723 + sources."@typescript-eslint/types-4.29.2" 101724 + (sources."@typescript-eslint/typescript-estree-4.29.2" // { 101488 101725 dependencies = [ 101489 101726 sources."@nodelib/fs.stat-2.0.5" 101490 101727 sources."array-union-2.1.0" ··· 101501 101738 sources."to-regex-range-5.0.1" 101502 101739 ]; 101503 101740 }) 101504 - sources."@typescript-eslint/visitor-keys-4.29.1" 101741 + sources."@typescript-eslint/visitor-keys-4.29.2" 101505 101742 sources."@ungap/from-entries-0.2.1" 101506 101743 sources."accepts-1.3.7" 101507 101744 sources."acorn-8.4.1" ··· 101515 101752 (sources."all-node-versions-8.0.0" // { 101516 101753 dependencies = [ 101517 101754 sources."@jest/types-25.5.0" 101518 - sources."@types/yargs-15.0.14" 101519 - sources."ansi-regex-5.0.0" 101755 + sources."@types/istanbul-reports-1.1.2" 101520 101756 sources."ansi-styles-4.3.0" 101757 + sources."camelcase-5.3.1" 101521 101758 sources."chalk-3.0.0" 101522 101759 sources."get-stream-5.2.0" 101760 + sources."has-flag-4.0.0" 101523 101761 sources."jest-get-type-25.2.6" 101524 101762 sources."jest-validate-25.5.0" 101525 101763 sources."pretty-format-25.5.0" 101764 + sources."react-is-16.13.1" 101765 + sources."supports-color-7.2.0" 101526 101766 ]; 101527 101767 }) 101528 101768 (sources."ansi-align-3.0.0" // { 101529 101769 dependencies = [ 101770 + sources."ansi-regex-4.1.0" 101530 101771 sources."emoji-regex-7.0.3" 101531 101772 sources."is-fullwidth-code-point-2.0.0" 101532 101773 sources."string-width-3.1.0" ··· 101534 101775 ]; 101535 101776 }) 101536 101777 sources."ansi-escapes-4.3.2" 101537 - sources."ansi-regex-4.1.0" 101778 + sources."ansi-regex-5.0.0" 101538 101779 sources."ansi-styles-5.2.0" 101539 101780 sources."ansicolors-0.3.2" 101540 101781 sources."any-observable-0.3.0" ··· 101548 101789 (sources."archiver-utils-2.1.0" // { 101549 101790 dependencies = [ 101550 101791 sources."readable-stream-2.3.7" 101551 - sources."safe-buffer-5.1.2" 101552 101792 ]; 101553 101793 }) 101554 101794 sources."argparse-2.0.1" ··· 101598 101838 (sources."boxen-5.0.1" // { 101599 101839 dependencies = [ 101600 101840 sources."ansi-styles-4.3.0" 101601 - sources."camelcase-6.2.0" 101602 101841 sources."type-fest-0.20.2" 101603 101842 sources."wrap-ansi-7.0.0" 101604 101843 ]; ··· 101638 101877 sources."call-bind-1.0.2" 101639 101878 sources."call-me-maybe-1.0.1" 101640 101879 sources."callsite-1.0.0" 101641 - sources."camelcase-5.3.1" 101880 + sources."camelcase-6.2.0" 101642 101881 sources."caniuse-lite-1.0.30001251" 101643 101882 sources."cardinal-2.1.1" 101644 101883 (sources."chalk-4.1.2" // { 101645 101884 dependencies = [ 101646 101885 sources."ansi-styles-4.3.0" 101886 + sources."has-flag-4.0.0" 101887 + sources."supports-color-7.2.0" 101647 101888 ]; 101648 101889 }) 101649 101890 sources."chardet-0.7.0" ··· 101695 101936 sources."extract-stack-2.0.0" 101696 101937 sources."has-flag-4.0.0" 101697 101938 sources."js-yaml-3.14.1" 101698 - sources."supports-color-8.1.1" 101699 101939 (sources."supports-hyperlinks-2.2.0" // { 101700 101940 dependencies = [ 101701 101941 sources."supports-color-7.2.0" ··· 101735 101975 sources."dot-prop-5.3.0" 101736 101976 ]; 101737 101977 }) 101738 - (sources."content-disposition-0.5.3" // { 101739 - dependencies = [ 101740 - sources."safe-buffer-5.1.2" 101741 - ]; 101742 - }) 101978 + sources."content-disposition-0.5.3" 101743 101979 sources."content-type-1.0.4" 101744 - (sources."convert-source-map-1.8.0" // { 101745 - dependencies = [ 101746 - sources."safe-buffer-5.1.2" 101747 - ]; 101748 - }) 101980 + sources."convert-source-map-1.8.0" 101749 101981 sources."cookie-0.4.1" 101750 101982 sources."cookie-signature-1.0.6" 101751 101983 sources."copy-descriptor-0.1.1" ··· 101754 101986 sources."pump-1.0.3" 101755 101987 sources."readable-stream-2.3.7" 101756 101988 sources."readdirp-2.2.1" 101757 - sources."safe-buffer-5.1.2" 101758 101989 ]; 101759 101990 }) 101760 - (sources."core-js-compat-3.16.1" // { 101991 + (sources."core-js-compat-3.16.2" // { 101761 101992 dependencies = [ 101762 101993 sources."semver-7.0.0" 101763 101994 ]; ··· 101806 102037 sources."bl-1.2.3" 101807 102038 sources."file-type-5.2.0" 101808 102039 sources."readable-stream-2.3.7" 101809 - sources."safe-buffer-5.1.2" 101810 102040 sources."tar-stream-1.6.2" 101811 102041 ]; 101812 102042 }) ··· 101905 102135 }) 101906 102136 sources."duplexer3-0.1.4" 101907 102137 sources."ee-first-1.1.1" 101908 - sources."electron-to-chromium-1.3.805" 102138 + sources."electron-to-chromium-1.3.808" 101909 102139 sources."elegant-spinner-1.0.1" 101910 102140 sources."elf-cam-0.1.1" 101911 102141 sources."emoji-regex-8.0.0" ··· 101966 102196 dependencies = [ 101967 102197 sources."cookie-0.4.0" 101968 102198 sources."debug-2.6.9" 101969 - sources."safe-buffer-5.1.2" 101970 102199 ]; 101971 102200 }) 101972 102201 sources."express-logging-1.1.1" ··· 101995 102224 sources."fast-glob-2.2.7" 101996 102225 sources."fast-levenshtein-2.0.6" 101997 102226 sources."fast-safe-stringify-2.0.8" 101998 - sources."fast-stringify-1.1.2" 101999 102227 sources."fastq-1.11.1" 102000 102228 sources."fd-slicer-1.1.0" 102001 102229 sources."fecha-4.2.1" ··· 102008 102236 }) 102009 102237 sources."@sindresorhus/is-2.1.1" 102010 102238 sources."@szmarczak/http-timer-4.0.6" 102011 - sources."@types/yargs-15.0.14" 102012 - sources."ansi-regex-5.0.0" 102239 + sources."@types/istanbul-reports-1.1.2" 102013 102240 sources."ansi-styles-4.3.0" 102014 102241 sources."cacheable-request-7.0.2" 102242 + sources."camelcase-5.3.1" 102015 102243 sources."decompress-response-5.0.0" 102016 102244 sources."defer-to-connect-2.0.1" 102017 102245 sources."get-stream-5.2.0" 102018 102246 sources."got-10.7.0" 102247 + sources."has-flag-4.0.0" 102019 102248 sources."jest-get-type-25.2.6" 102020 102249 (sources."jest-validate-25.5.0" // { 102021 102250 dependencies = [ ··· 102029 102258 sources."normalize-url-6.1.0" 102030 102259 sources."p-cancelable-2.1.1" 102031 102260 sources."pretty-format-25.5.0" 102261 + sources."react-is-16.13.1" 102032 102262 sources."responselike-2.0.0" 102263 + sources."supports-color-7.2.0" 102033 102264 sources."type-fest-0.10.0" 102034 102265 ]; 102035 102266 }) ··· 102067 102298 (sources."from2-2.3.0" // { 102068 102299 dependencies = [ 102069 102300 sources."readable-stream-2.3.7" 102070 - sources."safe-buffer-5.1.2" 102071 102301 ]; 102072 102302 }) 102073 102303 sources."from2-array-0.0.4" ··· 102096 102326 }) 102097 102327 sources."glob-to-regexp-0.3.0" 102098 102328 sources."global-cache-dir-2.0.0" 102099 - sources."global-dirs-2.1.0" 102329 + (sources."global-dirs-3.0.0" // { 102330 + dependencies = [ 102331 + sources."ini-2.0.0" 102332 + ]; 102333 + }) 102100 102334 sources."globals-11.12.0" 102101 102335 (sources."globby-10.0.2" // { 102102 102336 dependencies = [ ··· 102190 102424 sources."indexes-of-1.0.1" 102191 102425 sources."inflight-1.0.6" 102192 102426 sources."inherits-2.0.4" 102193 - sources."ini-1.3.7" 102427 + sources."ini-1.3.8" 102194 102428 (sources."inquirer-6.5.2" // { 102195 102429 dependencies = [ 102196 102430 sources."ansi-escapes-3.2.0" ··· 102235 102469 sources."is-extglob-2.1.1" 102236 102470 sources."is-fullwidth-code-point-3.0.0" 102237 102471 sources."is-glob-4.0.1" 102238 - sources."is-installed-globally-0.3.2" 102472 + sources."is-installed-globally-0.4.0" 102239 102473 sources."is-interactive-1.0.0" 102240 102474 sources."is-module-1.0.0" 102241 102475 sources."is-natural-number-4.0.1" 102242 - sources."is-npm-4.0.0" 102476 + sources."is-npm-5.0.0" 102243 102477 (sources."is-number-3.0.0" // { 102244 102478 dependencies = [ 102245 102479 sources."kind-of-3.2.2" ··· 102267 102501 sources."isexe-2.0.0" 102268 102502 sources."isobject-3.0.1" 102269 102503 sources."isurl-1.0.0" 102270 - sources."jest-get-type-24.9.0" 102271 - (sources."jest-validate-24.9.0" // { 102504 + sources."jest-get-type-26.3.0" 102505 + sources."jest-validate-26.6.2" 102506 + (sources."jest-worker-26.6.2" // { 102272 102507 dependencies = [ 102273 - sources."ansi-styles-3.2.1" 102274 - sources."chalk-2.4.2" 102275 - sources."color-convert-1.9.3" 102276 - sources."color-name-1.1.3" 102277 - sources."escape-string-regexp-1.0.5" 102278 - sources."supports-color-5.5.0" 102508 + sources."has-flag-4.0.0" 102509 + sources."supports-color-7.2.0" 102279 102510 ]; 102280 102511 }) 102281 - sources."jest-worker-26.6.2" 102282 102512 sources."js-string-escape-1.0.1" 102283 102513 sources."js-tokens-4.0.0" 102284 102514 sources."js-yaml-4.1.0" ··· 102304 102534 (sources."lazystream-1.0.0" // { 102305 102535 dependencies = [ 102306 102536 sources."readable-stream-2.3.7" 102307 - sources."safe-buffer-5.1.2" 102308 102537 ]; 102309 102538 }) 102310 102539 sources."leven-3.1.0" ··· 102346 102575 sources."type-fest-0.3.1" 102347 102576 ]; 102348 102577 }) 102349 - (sources."locate-path-6.0.0" // { 102350 - dependencies = [ 102351 - sources."p-limit-3.1.0" 102352 - sources."p-locate-5.0.0" 102353 - ]; 102354 - }) 102578 + sources."locate-path-6.0.0" 102355 102579 sources."lodash-4.17.21" 102356 102580 sources."lodash._reinterpolate-3.0.0" 102357 102581 sources."lodash.camelcase-4.3.0" ··· 102366 102590 sources."lodash.templatesettings-4.2.0" 102367 102591 sources."lodash.transform-4.6.0" 102368 102592 sources."lodash.union-4.6.0" 102369 - (sources."log-process-errors-5.1.2" // { 102370 - dependencies = [ 102371 - sources."ansi-styles-4.3.0" 102372 - sources."chalk-3.0.0" 102373 - sources."fast-equals-1.6.3" 102374 - sources."micro-memoize-2.1.2" 102375 - sources."moize-5.4.7" 102376 - ]; 102377 - }) 102593 + sources."log-process-errors-6.3.0" 102378 102594 sources."log-symbols-4.1.0" 102379 102595 (sources."log-update-2.3.0" // { 102380 102596 dependencies = [ ··· 102439 102655 sources."mkdirp-0.5.5" 102440 102656 sources."module-definition-3.3.1" 102441 102657 sources."moize-6.0.3" 102442 - (sources."move-file-1.2.0" // { 102443 - dependencies = [ 102444 - (sources."cp-file-6.2.0" // { 102445 - dependencies = [ 102446 - sources."make-dir-2.1.0" 102447 - ]; 102448 - }) 102449 - sources."path-exists-3.0.0" 102450 - sources."semver-5.7.1" 102451 - ]; 102452 - }) 102658 + sources."move-file-2.1.0" 102453 102659 sources."ms-2.0.0" 102454 102660 (sources."multiparty-4.2.2" // { 102455 102661 dependencies = [ 102456 102662 sources."http-errors-1.8.0" 102663 + sources."safe-buffer-5.2.1" 102457 102664 sources."setprototypeof-1.2.0" 102458 102665 ]; 102459 102666 }) ··· 102468 102675 sources."qs-6.10.1" 102469 102676 ]; 102470 102677 }) 102471 - sources."netlify-headers-parser-2.1.1" 102472 - (sources."netlify-redirect-parser-10.1.0" // { 102473 - dependencies = [ 102474 - sources."is-plain-obj-2.1.0" 102475 - ]; 102476 - }) 102678 + sources."netlify-headers-parser-3.0.1" 102679 + sources."netlify-redirect-parser-11.0.2" 102477 102680 sources."netlify-redirector-0.2.1" 102478 102681 sources."nice-try-1.0.5" 102479 102682 sources."node-fetch-2.6.1" ··· 102482 102685 (sources."node-version-alias-1.0.1" // { 102483 102686 dependencies = [ 102484 102687 sources."@jest/types-25.5.0" 102485 - sources."@types/yargs-15.0.14" 102486 - sources."ansi-regex-5.0.0" 102688 + sources."@types/istanbul-reports-1.1.2" 102487 102689 sources."ansi-styles-4.3.0" 102690 + sources."camelcase-5.3.1" 102488 102691 sources."chalk-3.0.0" 102692 + sources."has-flag-4.0.0" 102489 102693 sources."jest-get-type-25.2.6" 102490 102694 sources."jest-validate-25.5.0" 102491 102695 sources."pretty-format-25.5.0" 102696 + sources."react-is-16.13.1" 102697 + sources."supports-color-7.2.0" 102492 102698 ]; 102493 102699 }) 102494 102700 sources."noop2-2.0.0" 102495 102701 (sources."normalize-node-version-10.0.0" // { 102496 102702 dependencies = [ 102497 102703 sources."@jest/types-25.5.0" 102498 - sources."@types/yargs-15.0.14" 102499 - sources."ansi-regex-5.0.0" 102704 + sources."@types/istanbul-reports-1.1.2" 102500 102705 sources."ansi-styles-4.3.0" 102706 + sources."camelcase-5.3.1" 102501 102707 sources."chalk-3.0.0" 102708 + sources."has-flag-4.0.0" 102502 102709 sources."jest-get-type-25.2.6" 102503 102710 sources."jest-validate-25.5.0" 102504 102711 sources."pretty-format-25.5.0" 102712 + sources."react-is-16.13.1" 102713 + sources."supports-color-7.2.0" 102505 102714 ]; 102506 102715 }) 102507 102716 (sources."normalize-package-data-2.5.0" // { ··· 102591 102800 }) 102592 102801 sources."p-finally-1.0.0" 102593 102802 sources."p-is-promise-1.1.0" 102594 - sources."p-limit-2.3.0" 102595 - sources."p-locate-4.1.0" 102803 + sources."p-limit-3.1.0" 102804 + sources."p-locate-5.0.0" 102596 102805 sources."p-map-4.0.0" 102597 102806 sources."p-reduce-2.1.0" 102598 102807 sources."p-timeout-2.0.1" ··· 102610 102819 (sources."parallel-transform-1.2.0" // { 102611 102820 dependencies = [ 102612 102821 sources."readable-stream-2.3.7" 102613 - sources."safe-buffer-5.1.2" 102614 102822 ]; 102615 102823 }) 102616 102824 sources."parse-github-url-1.0.2" ··· 102636 102844 sources."pify-4.0.1" 102637 102845 sources."pinkie-2.0.4" 102638 102846 sources."pinkie-promise-2.0.1" 102639 - (sources."pkg-dir-4.2.0" // { 102640 - dependencies = [ 102641 - sources."find-up-4.1.0" 102642 - sources."locate-path-5.0.0" 102643 - ]; 102644 - }) 102847 + sources."pkg-dir-5.0.0" 102645 102848 sources."posix-character-classes-0.1.1" 102646 102849 sources."postcss-8.3.6" 102647 102850 sources."postcss-values-parser-2.0.1" ··· 102649 102852 sources."precond-0.2.3" 102650 102853 sources."prelude-ls-1.1.2" 102651 102854 sources."prepend-http-2.0.0" 102652 - (sources."pretty-format-24.9.0" // { 102855 + (sources."pretty-format-26.6.2" // { 102653 102856 dependencies = [ 102654 - sources."ansi-styles-3.2.1" 102655 - sources."color-convert-1.9.3" 102656 - sources."color-name-1.1.3" 102857 + sources."ansi-styles-4.3.0" 102657 102858 ]; 102658 102859 }) 102659 - sources."pretty-ms-5.1.0" 102860 + sources."pretty-ms-7.0.1" 102660 102861 sources."prettyjson-1.2.1" 102661 102862 sources."printj-1.1.2" 102662 102863 sources."process-es6-0.11.6" ··· 102678 102879 ]; 102679 102880 }) 102680 102881 sources."rc-1.2.8" 102681 - sources."react-is-16.13.1" 102882 + sources."react-is-17.0.2" 102682 102883 sources."read-package-json-fast-2.0.3" 102683 102884 (sources."read-pkg-5.2.0" // { 102684 102885 dependencies = [ ··· 102689 102890 dependencies = [ 102690 102891 sources."find-up-4.1.0" 102691 102892 sources."locate-path-5.0.0" 102893 + sources."p-limit-2.3.0" 102894 + sources."p-locate-4.1.0" 102692 102895 sources."type-fest-0.8.1" 102693 102896 ]; 102694 102897 }) ··· 102747 102950 sources."run-async-2.4.1" 102748 102951 sources."run-parallel-1.2.0" 102749 102952 sources."rxjs-6.6.7" 102750 - sources."safe-buffer-5.2.1" 102953 + sources."safe-buffer-5.1.2" 102751 102954 sources."safe-json-stringify-1.2.0" 102752 102955 sources."safe-regex-1.1.0" 102753 102956 sources."safer-buffer-2.1.2" ··· 102875 103078 sources."statuses-1.5.0" 102876 103079 sources."strict-uri-encode-1.1.0" 102877 103080 sources."string-width-4.2.2" 102878 - (sources."string_decoder-1.1.1" // { 102879 - dependencies = [ 102880 - sources."safe-buffer-5.1.2" 102881 - ]; 102882 - }) 102883 - (sources."strip-ansi-6.0.0" // { 102884 - dependencies = [ 102885 - sources."ansi-regex-5.0.0" 102886 - ]; 102887 - }) 103081 + sources."string_decoder-1.1.1" 103082 + sources."strip-ansi-6.0.0" 102888 103083 sources."strip-ansi-control-characters-2.0.0" 102889 103084 sources."strip-bom-3.0.0" 102890 103085 sources."strip-dirs-2.1.0" ··· 102896 103091 sources."escape-string-regexp-1.0.5" 102897 103092 ]; 102898 103093 }) 102899 - (sources."supports-color-7.2.0" // { 103094 + (sources."supports-color-8.1.1" // { 102900 103095 dependencies = [ 102901 103096 sources."has-flag-4.0.0" 102902 103097 ]; ··· 102920 103115 sources."type-fest-0.16.0" 102921 103116 ]; 102922 103117 }) 102923 - sources."term-size-2.2.1" 102924 103118 (sources."terser-5.7.1" // { 102925 103119 dependencies = [ 102926 103120 sources."source-map-0.7.3" ··· 102931 103125 (sources."through2-2.0.5" // { 102932 103126 dependencies = [ 102933 103127 sources."readable-stream-2.3.7" 102934 - sources."safe-buffer-5.1.2" 102935 103128 ]; 102936 103129 }) 102937 103130 sources."through2-filter-3.0.0" ··· 102995 103188 sources."has-values-0.1.4" 102996 103189 ]; 102997 103190 }) 102998 - (sources."update-notifier-5.1.0" // { 102999 - dependencies = [ 103000 - sources."global-dirs-3.0.0" 103001 - sources."ini-2.0.0" 103002 - sources."is-installed-globally-0.4.0" 103003 - sources."is-npm-5.0.0" 103004 - ]; 103005 - }) 103191 + sources."update-notifier-5.1.0" 103006 103192 sources."uri-js-4.4.1" 103007 103193 sources."urix-0.1.0" 103008 103194 sources."url-parse-lax-3.0.0" ··· 103044 103230 (sources."winston-transport-4.4.0" // { 103045 103231 dependencies = [ 103046 103232 sources."readable-stream-2.3.7" 103047 - sources."safe-buffer-5.1.2" 103048 103233 ]; 103049 103234 }) 103050 103235 sources."word-wrap-1.2.3" ··· 103063 103248 dependencies = [ 103064 103249 sources."find-up-4.1.0" 103065 103250 sources."locate-path-5.0.0" 103251 + sources."p-limit-2.3.0" 103252 + sources."p-locate-4.1.0" 103066 103253 ]; 103067 103254 }) 103068 - sources."yargs-parser-18.1.3" 103255 + (sources."yargs-parser-18.1.3" // { 103256 + dependencies = [ 103257 + sources."camelcase-5.3.1" 103258 + ]; 103259 + }) 103069 103260 sources."yarn-1.22.11" 103070 103261 sources."yauzl-2.10.0" 103071 103262 sources."yocto-queue-0.1.0" ··· 104948 105139 sources."@npmcli/move-file-1.1.2" 104949 105140 sources."@npmcli/node-gyp-1.0.2" 104950 105141 sources."@npmcli/promise-spawn-1.3.2" 104951 - sources."@npmcli/run-script-1.8.5" 105142 + sources."@npmcli/run-script-1.8.6" 104952 105143 sources."@sindresorhus/is-0.14.0" 104953 105144 sources."@szmarczak/http-timer-1.1.2" 104954 105145 sources."@tootallnate/once-1.1.2" ··· 105804 105995 sources."convert-source-map-1.8.0" 105805 105996 sources."copy-descriptor-0.1.1" 105806 105997 sources."core-js-2.6.12" 105807 - (sources."core-js-compat-3.16.1" // { 105998 + (sources."core-js-compat-3.16.2" // { 105808 105999 dependencies = [ 105809 106000 sources."semver-7.0.0" 105810 106001 ]; ··· 105915 106106 sources."duplexer2-0.1.4" 105916 106107 sources."ecc-jsbn-0.1.2" 105917 106108 sources."ee-first-1.1.1" 105918 - sources."electron-to-chromium-1.3.805" 106109 + sources."electron-to-chromium-1.3.808" 105919 106110 (sources."elliptic-6.5.4" // { 105920 106111 dependencies = [ 105921 106112 sources."bn.js-4.12.0" ··· 108673 108864 pyright = nodeEnv.buildNodePackage { 108674 108865 name = "pyright"; 108675 108866 packageName = "pyright"; 108676 - version = "1.1.161"; 108867 + version = "1.1.162"; 108677 108868 src = fetchurl { 108678 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.161.tgz"; 108679 - sha512 = "ahZ8KyDAMdyFTt9j0P/WL6SAeZWKI9qxoFRmTxw71JwyCVPSqXaeo2rK3304YjfKZKAtuHNMgtuZiAVT8U/Pbw=="; 108869 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.162.tgz"; 108870 + sha512 = "3YEM8rf/39CtuHMzZmVjsV/2cJJB6N3RfCuNR5QgUeib0VRQ303zhb4jh5RRRF9P6JpZku/waX+i16TrfSqDEQ=="; 108680 108871 }; 108681 108872 buildInputs = globalBuildInputs; 108682 108873 meta = { ··· 109434 109625 sources."copy-concurrently-1.0.5" 109435 109626 sources."copy-descriptor-0.1.1" 109436 109627 sources."core-js-2.6.12" 109437 - (sources."core-js-compat-3.16.1" // { 109628 + (sources."core-js-compat-3.16.2" // { 109438 109629 dependencies = [ 109439 109630 sources."semver-7.0.0" 109440 109631 ]; ··· 109578 109769 sources."duplexify-3.7.1" 109579 109770 sources."ee-first-1.1.1" 109580 109771 sources."ejs-2.7.4" 109581 - sources."electron-to-chromium-1.3.805" 109772 + sources."electron-to-chromium-1.3.808" 109582 109773 (sources."elliptic-6.5.4" // { 109583 109774 dependencies = [ 109584 109775 sources."bn.js-4.12.0" ··· 110921 111112 sources."xml-name-validator-3.0.0" 110922 111113 sources."xmlchars-2.2.0" 110923 111114 sources."y18n-5.0.8" 110924 - sources."yargs-17.1.0" 111115 + sources."yargs-17.1.1" 110925 111116 sources."yargs-parser-20.2.9" 110926 111117 ]; 110927 111118 buildInputs = globalBuildInputs; ··· 111246 111437 sources."y18n-5.0.8" 111247 111438 sources."yaml-1.10.2" 111248 111439 sources."yaml-ast-parser-0.0.43" 111249 - sources."yargs-17.1.0" 111440 + sources."yargs-17.1.1" 111250 111441 sources."yargs-parser-20.2.9" 111251 111442 ]; 111252 111443 buildInputs = globalBuildInputs; ··· 111472 111663 "rust-analyzer-build-deps-../../misc/vscode-extensions/rust-analyzer/build-deps" = nodeEnv.buildNodePackage { 111473 111664 name = "rust-analyzer"; 111474 111665 packageName = "rust-analyzer"; 111475 - version = "0.2.702"; 111666 + version = "0.2.710"; 111476 111667 src = ../../misc/vscode-extensions/rust-analyzer/build-deps; 111477 111668 dependencies = [ 111478 111669 sources."@babel/code-frame-7.12.11" ··· 111488 111679 sources."ignore-4.0.6" 111489 111680 ]; 111490 111681 }) 111682 + sources."@hpcc-js/wasm-1.4.1" 111491 111683 sources."@humanwhocodes/config-array-0.5.0" 111492 111684 sources."@humanwhocodes/object-schema-1.2.0" 111493 111685 sources."@nodelib/fs.scandir-2.1.5" 111494 111686 sources."@nodelib/fs.stat-2.0.5" 111495 111687 sources."@nodelib/fs.walk-1.2.8" 111496 - sources."@rollup/plugin-commonjs-17.1.0" 111497 - sources."@rollup/plugin-node-resolve-13.0.4" 111498 - (sources."@rollup/pluginutils-3.1.0" // { 111499 - dependencies = [ 111500 - sources."estree-walker-1.0.1" 111501 - ]; 111502 - }) 111503 111688 sources."@tootallnate/once-1.1.2" 111504 - sources."@types/estree-0.0.39" 111505 111689 sources."@types/glob-7.1.4" 111506 111690 sources."@types/json-schema-7.0.9" 111507 111691 sources."@types/minimatch-3.0.5" 111508 111692 sources."@types/mocha-8.2.3" 111509 111693 sources."@types/node-14.17.9" 111510 111694 sources."@types/node-fetch-2.5.12" 111511 - sources."@types/resolve-1.17.1" 111512 111695 sources."@types/vscode-1.59.0" 111513 - sources."@typescript-eslint/eslint-plugin-4.29.1" 111514 - sources."@typescript-eslint/experimental-utils-4.29.1" 111515 - sources."@typescript-eslint/parser-4.29.1" 111516 - sources."@typescript-eslint/scope-manager-4.29.1" 111517 - sources."@typescript-eslint/types-4.29.1" 111518 - sources."@typescript-eslint/typescript-estree-4.29.1" 111519 - sources."@typescript-eslint/visitor-keys-4.29.1" 111696 + sources."@typescript-eslint/eslint-plugin-4.29.2" 111697 + sources."@typescript-eslint/experimental-utils-4.29.2" 111698 + sources."@typescript-eslint/parser-4.29.2" 111699 + sources."@typescript-eslint/scope-manager-4.29.2" 111700 + sources."@typescript-eslint/types-4.29.2" 111701 + sources."@typescript-eslint/typescript-estree-4.29.2" 111702 + sources."@typescript-eslint/visitor-keys-4.29.2" 111520 111703 sources."@ungap/promise-all-settled-1.1.2" 111521 111704 sources."acorn-7.4.1" 111522 111705 sources."acorn-jsx-5.3.2" ··· 111543 111726 sources."buffer-crc32-0.2.13" 111544 111727 sources."buffer-indexof-polyfill-1.0.2" 111545 111728 sources."buffers-0.1.1" 111546 - sources."builtin-modules-3.2.0" 111547 111729 sources."call-bind-1.0.2" 111548 111730 sources."callsites-3.1.0" 111549 111731 sources."camelcase-6.2.0" ··· 111564 111746 sources."color-convert-1.9.3" 111565 111747 sources."color-name-1.1.3" 111566 111748 sources."combined-stream-1.0.8" 111567 - sources."commander-2.20.3" 111749 + sources."commander-7.2.0" 111568 111750 sources."commandpost-1.4.0" 111569 - sources."commondir-1.0.1" 111570 111751 sources."concat-map-0.0.1" 111571 111752 sources."core-util-is-1.0.2" 111572 111753 sources."cross-spawn-7.0.3" 111573 111754 sources."css-select-4.1.3" 111574 111755 sources."css-what-5.0.1" 111756 + sources."d3-7.0.1" 111757 + sources."d3-array-3.0.2" 111758 + sources."d3-axis-3.0.0" 111759 + sources."d3-brush-3.0.0" 111760 + sources."d3-chord-3.0.1" 111761 + sources."d3-color-3.0.1" 111762 + sources."d3-contour-3.0.1" 111763 + sources."d3-delaunay-6.0.2" 111764 + sources."d3-dispatch-3.0.1" 111765 + sources."d3-drag-3.0.0" 111766 + sources."d3-dsv-3.0.1" 111767 + sources."d3-ease-3.0.1" 111768 + sources."d3-fetch-3.0.1" 111769 + sources."d3-force-3.0.0" 111770 + sources."d3-format-3.0.1" 111771 + sources."d3-geo-3.0.1" 111772 + (sources."d3-graphviz-4.0.0" // { 111773 + dependencies = [ 111774 + sources."d3-color-2.0.0" 111775 + sources."d3-dispatch-2.0.0" 111776 + sources."d3-drag-2.0.0" 111777 + sources."d3-ease-2.0.0" 111778 + sources."d3-format-2.0.0" 111779 + sources."d3-interpolate-2.0.1" 111780 + sources."d3-path-2.0.0" 111781 + sources."d3-selection-2.0.0" 111782 + sources."d3-timer-2.0.0" 111783 + sources."d3-transition-2.0.0" 111784 + sources."d3-zoom-2.0.0" 111785 + ]; 111786 + }) 111787 + sources."d3-hierarchy-3.0.1" 111788 + sources."d3-interpolate-3.0.1" 111789 + sources."d3-path-3.0.1" 111790 + sources."d3-polygon-3.0.1" 111791 + sources."d3-quadtree-3.0.1" 111792 + sources."d3-random-3.0.1" 111793 + sources."d3-scale-4.0.0" 111794 + sources."d3-scale-chromatic-3.0.0" 111795 + sources."d3-selection-3.0.0" 111796 + sources."d3-shape-3.0.1" 111797 + sources."d3-time-3.0.0" 111798 + sources."d3-time-format-4.0.0" 111799 + sources."d3-timer-3.0.1" 111800 + sources."d3-transition-3.0.1" 111801 + sources."d3-zoom-3.0.0" 111575 111802 sources."debug-4.3.2" 111576 111803 sources."decamelize-4.0.0" 111577 111804 sources."deep-is-0.1.3" 111578 - sources."deepmerge-4.2.2" 111805 + sources."delaunator-5.0.0" 111579 111806 sources."delayed-stream-1.0.0" 111580 111807 sources."denodeify-1.2.1" 111581 111808 sources."diff-5.0.0" ··· 111588 111815 sources."duplexer2-0.1.4" 111589 111816 (sources."editorconfig-0.15.3" // { 111590 111817 dependencies = [ 111818 + sources."commander-2.20.3" 111591 111819 sources."lru-cache-4.1.5" 111592 111820 sources."semver-5.7.1" 111593 111821 sources."yallist-2.1.2" ··· 111628 111856 ]; 111629 111857 }) 111630 111858 sources."estraverse-4.3.0" 111631 - sources."estree-walker-2.0.2" 111632 111859 sources."esutils-2.0.3" 111633 111860 sources."fast-deep-equal-3.1.3" 111634 111861 sources."fast-glob-3.2.7" ··· 111667 111894 sources."htmlparser2-6.1.0" 111668 111895 sources."http-proxy-agent-4.0.1" 111669 111896 sources."https-proxy-agent-5.0.0" 111897 + sources."iconv-lite-0.6.3" 111670 111898 sources."ignore-5.1.8" 111671 111899 sources."import-fresh-3.3.0" 111672 111900 sources."imurmurhash-0.1.4" 111673 111901 sources."inflight-1.0.6" 111674 111902 sources."inherits-2.0.4" 111903 + sources."internmap-2.0.1" 111675 111904 sources."is-binary-path-2.1.0" 111676 - sources."is-core-module-2.5.0" 111677 111905 sources."is-extglob-2.1.1" 111678 111906 sources."is-fullwidth-code-point-3.0.0" 111679 111907 sources."is-glob-4.0.1" 111680 - sources."is-module-1.0.0" 111681 111908 sources."is-number-7.0.0" 111682 111909 sources."is-plain-obj-2.1.0" 111683 - sources."is-reference-1.2.1" 111684 111910 sources."is-unicode-supported-0.1.0" 111685 111911 sources."isarray-1.0.0" 111686 111912 sources."isexe-2.0.0" ··· 111699 111925 sources."lodash.truncate-4.4.2" 111700 111926 sources."log-symbols-4.1.0" 111701 111927 sources."lru-cache-6.0.0" 111702 - sources."magic-string-0.25.7" 111703 111928 (sources."markdown-it-10.0.0" // { 111704 111929 dependencies = [ 111705 111930 sources."entities-2.0.3" ··· 111754 111979 sources."path-exists-4.0.0" 111755 111980 sources."path-is-absolute-1.0.1" 111756 111981 sources."path-key-3.1.1" 111757 - sources."path-parse-1.0.7" 111758 111982 sources."path-type-4.0.0" 111759 111983 sources."pend-1.2.0" 111760 111984 sources."picomatch-2.3.0" ··· 111776 112000 sources."regexpp-3.2.0" 111777 112001 sources."require-directory-2.1.1" 111778 112002 sources."require-from-string-2.0.2" 111779 - sources."resolve-1.20.0" 111780 112003 sources."resolve-from-4.0.0" 111781 112004 sources."reusify-1.0.4" 111782 112005 sources."rimraf-3.0.2" 111783 - sources."rollup-2.51.1" 112006 + sources."robust-predicates-3.0.1" 111784 112007 sources."run-parallel-1.2.0" 112008 + sources."rw-1.3.3" 111785 112009 sources."safe-buffer-5.2.1" 112010 + sources."safer-buffer-2.1.2" 111786 112011 sources."semver-7.3.5" 111787 112012 sources."serialize-javascript-6.0.0" 111788 112013 sources."setimmediate-1.0.5" ··· 111798 112023 sources."color-name-1.1.4" 111799 112024 ]; 111800 112025 }) 111801 - sources."sourcemap-codec-1.4.8" 111802 112026 sources."sprintf-js-1.0.3" 111803 112027 sources."string-width-4.2.2" 111804 112028 (sources."string_decoder-1.1.1" // { ··· 111985 112209 sass = nodeEnv.buildNodePackage { 111986 112210 name = "sass"; 111987 112211 packageName = "sass"; 111988 - version = "1.37.5"; 112212 + version = "1.38.0"; 111989 112213 src = fetchurl { 111990 - url = "https://registry.npmjs.org/sass/-/sass-1.37.5.tgz"; 111991 - sha512 = "Cx3ewxz9QB/ErnVIiWg2cH0kiYZ0FPvheDTVC6BsiEGBTZKKZJ1Gq5Kq6jy3PKtL6+EJ8NIoaBW/RSd2R6cZOA=="; 112214 + url = "https://registry.npmjs.org/sass/-/sass-1.38.0.tgz"; 112215 + sha512 = "WBccZeMigAGKoI+NgD7Adh0ab1HUq+6BmyBUEaGxtErbUtWUevEbdgo5EZiJQofLUGcKtlNaO2IdN73AHEua5g=="; 111992 112216 }; 111993 112217 dependencies = [ 111994 112218 sources."anymatch-3.1.2" ··· 112236 112460 ]; 112237 112461 }) 112238 112462 sources."@serverless/template-1.1.4" 112239 - (sources."@serverless/utils-5.6.0" // { 112463 + (sources."@serverless/utils-5.7.0" // { 112240 112464 dependencies = [ 112241 112465 sources."get-stream-6.0.1" 112242 112466 sources."write-file-atomic-3.0.3" ··· 112314 112538 sources."async-2.6.3" 112315 112539 sources."asynckit-0.4.0" 112316 112540 sources."at-least-node-1.0.0" 112317 - (sources."aws-sdk-2.968.0" // { 112541 + (sources."aws-sdk-2.969.0" // { 112318 112542 dependencies = [ 112319 112543 sources."buffer-4.9.2" 112320 112544 sources."ieee754-1.1.13" ··· 112859 113083 sources."signal-exit-3.0.3" 112860 113084 sources."simple-concat-1.0.1" 112861 113085 sources."simple-get-2.8.1" 112862 - (sources."simple-git-2.43.0" // { 113086 + (sources."simple-git-2.44.0" // { 112863 113087 dependencies = [ 112864 113088 sources."debug-4.3.2" 112865 113089 sources."ms-2.1.2" ··· 113669 113893 snyk = nodeEnv.buildNodePackage { 113670 113894 name = "snyk"; 113671 113895 packageName = "snyk"; 113672 - version = "1.681.0"; 113896 + version = "1.683.0"; 113673 113897 src = fetchurl { 113674 - url = "https://registry.npmjs.org/snyk/-/snyk-1.681.0.tgz"; 113675 - sha512 = "SzzCytuUzKfTLd54cQw1FN8j/iRmucJ+IsVpVJlHwCUgXxKi1M80d5vaVXsfCWk42L0Gvh4I/YkllJC8QQXqig=="; 113898 + url = "https://registry.npmjs.org/snyk/-/snyk-1.683.0.tgz"; 113899 + sha512 = "cvdSuSuHyb7ijF68afG/Nbxm4wxnPQQCMjB0SYqTln+W7tMY8wLUr86QaQZIBN2Umb7zgY40gBRDq2R2nYVZGQ=="; 113676 113900 }; 113677 113901 dependencies = [ 113678 113902 sources."@arcanis/slice-ansi-1.0.2" 113679 113903 sources."@deepcode/dcignore-1.0.2" 113904 + sources."@iarna/toml-2.2.5" 113680 113905 sources."@nodelib/fs.scandir-2.1.5" 113681 113906 sources."@nodelib/fs.stat-2.0.5" 113682 113907 sources."@nodelib/fs.walk-1.2.8" ··· 113685 113910 sources."@sindresorhus/is-4.0.1" 113686 113911 sources."@snyk/child-process-0.3.1" 113687 113912 sources."@snyk/cli-interface-2.11.0" 113688 - sources."@snyk/cloud-config-parser-1.10.1" 113913 + sources."@snyk/cloud-config-parser-1.10.2" 113689 113914 sources."@snyk/cocoapods-lockfile-parser-3.6.2" 113690 113915 (sources."@snyk/code-client-4.0.0" // { 113691 113916 dependencies = [ ··· 113870 114095 sources."color-name-1.1.4" 113871 114096 sources."concat-map-0.0.1" 113872 114097 sources."configstore-5.0.1" 113873 - sources."core-js-3.16.1" 114098 + sources."core-js-3.16.2" 113874 114099 sources."core-util-is-1.0.2" 113875 114100 (sources."cross-spawn-6.0.5" // { 113876 114101 dependencies = [ ··· 114200 114425 sources."p-map-2.1.0" 114201 114426 ]; 114202 114427 }) 114203 - (sources."snyk-nuget-plugin-1.22.0" // { 114428 + (sources."snyk-nuget-plugin-1.22.1" // { 114204 114429 dependencies = [ 114205 114430 sources."jszip-3.7.0" 114206 114431 sources."pako-1.0.11" ··· 114215 114440 sources."tslib-1.11.1" 114216 114441 ]; 114217 114442 }) 114218 - (sources."snyk-poetry-lockfile-parser-1.1.6" // { 114443 + (sources."snyk-poetry-lockfile-parser-1.1.7" // { 114219 114444 dependencies = [ 114220 114445 sources."tslib-2.3.1" 114221 114446 ]; ··· 114224 114449 dependencies = [ 114225 114450 sources."lru-cache-5.1.1" 114226 114451 sources."semver-7.3.5" 114227 - sources."snyk-try-require-2.0.1" 114452 + sources."snyk-try-require-2.0.2" 114228 114453 sources."yallist-3.1.1" 114229 114454 ]; 114230 114455 }) 114231 - (sources."snyk-python-plugin-1.19.11" // { 114456 + (sources."snyk-python-plugin-1.20.1" // { 114232 114457 dependencies = [ 114233 114458 sources."rimraf-3.0.2" 114234 114459 sources."tmp-0.2.1" ··· 115566 115791 sources."async-1.5.2" 115567 115792 sources."async-limiter-1.0.1" 115568 115793 sources."asynckit-0.4.0" 115569 - (sources."aws-sdk-2.968.0" // { 115794 + (sources."aws-sdk-2.969.0" // { 115570 115795 dependencies = [ 115571 115796 sources."uuid-3.3.2" 115572 115797 ]; ··· 116443 116668 sources."domelementtype-1.3.1" 116444 116669 sources."domhandler-2.4.2" 116445 116670 sources."domutils-1.7.0" 116446 - sources."electron-to-chromium-1.3.805" 116671 + sources."electron-to-chromium-1.3.808" 116447 116672 sources."emoji-regex-8.0.0" 116448 116673 sources."entities-1.1.2" 116449 116674 sources."error-ex-1.3.2" ··· 118994 119219 sources."content-type-1.0.4" 118995 119220 sources."cookie-0.4.0" 118996 119221 sources."cookie-signature-1.0.6" 118997 - sources."core-js-3.16.1" 119222 + sources."core-js-3.16.2" 118998 119223 sources."core-util-is-1.0.2" 118999 119224 sources."css-select-1.2.0" 119000 119225 sources."css-what-2.1.3" ··· 119802 120027 typescript-language-server = nodeEnv.buildNodePackage { 119803 120028 name = "typescript-language-server"; 119804 120029 packageName = "typescript-language-server"; 119805 - version = "0.6.0"; 120030 + version = "0.6.1"; 119806 120031 src = fetchurl { 119807 - url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.0.tgz"; 119808 - sha512 = "gBvRnenOM413yVfZy8dKMs+b+/Zknl2o1M79+XAGbdptOds+VAkbZXrfj0MC1IGdB+hQ6XxuWa4jWfrvBkoFiQ=="; 120032 + url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.1.tgz"; 120033 + sha512 = "ZqqD4XK1EgITEoW1SaOnNe473K5EMr7vSYwFeqK4Fe37TjNyEwB+2vXuqW01kPujiw7tRpv3teDAl7WtP9AmIw=="; 119809 120034 }; 119810 120035 dependencies = [ 119811 120036 sources."@nodelib/fs.scandir-2.1.5" ··· 121007 121232 sources."jsonc-parser-3.0.0" 121008 121233 sources."ms-2.0.0" 121009 121234 sources."request-light-0.4.0" 121010 - (sources."vscode-json-languageservice-4.1.6" // { 121235 + (sources."vscode-json-languageservice-4.1.7" // { 121011 121236 dependencies = [ 121012 121237 sources."vscode-nls-5.0.0" 121013 121238 ]; ··· 121105 121330 sources."typescript-4.3.5" 121106 121331 sources."vscode-css-languageservice-5.1.4" 121107 121332 sources."vscode-html-languageservice-4.0.7" 121108 - sources."vscode-json-languageservice-4.1.6" 121333 + sources."vscode-json-languageservice-4.1.7" 121109 121334 sources."vscode-jsonrpc-6.0.0" 121110 121335 sources."vscode-languageserver-7.0.0" 121111 121336 sources."vscode-languageserver-protocol-3.16.0" ··· 121157 121382 sources."@webassemblyjs/wast-printer-1.11.1" 121158 121383 sources."@webpack-cli/configtest-1.0.4" 121159 121384 sources."@webpack-cli/info-1.3.0" 121160 - sources."@webpack-cli/serve-1.5.1" 121385 + sources."@webpack-cli/serve-1.5.2" 121161 121386 sources."@xtuc/ieee754-1.2.0" 121162 121387 sources."@xtuc/long-4.2.2" 121163 121388 sources."acorn-8.4.1" ··· 121222 121447 sources."domelementtype-2.2.0" 121223 121448 sources."domhandler-4.2.0" 121224 121449 sources."domutils-2.7.0" 121225 - sources."electron-to-chromium-1.3.805" 121450 + sources."electron-to-chromium-1.3.808" 121226 121451 sources."emoji-regex-8.0.0" 121227 121452 sources."emojis-list-3.0.0" 121228 121453 sources."enhanced-resolve-5.8.2" ··· 121432 121657 sources."vscode-debugprotocol-1.48.0" 121433 121658 sources."watchpack-2.2.0" 121434 121659 sources."webpack-5.50.0" 121435 - (sources."webpack-cli-4.7.2" // { 121660 + (sources."webpack-cli-4.8.0" // { 121436 121661 dependencies = [ 121437 121662 sources."commander-7.2.0" 121438 121663 ]; ··· 122740 122965 sources."is-fullwidth-code-point-3.0.0" 122741 122966 sources."string-width-4.2.2" 122742 122967 sources."strip-ansi-6.0.0" 122743 - sources."yargs-17.1.0" 122968 + sources."yargs-17.1.1" 122744 122969 ]; 122745 122970 }) 122746 122971 sources."brace-expansion-1.1.11" ··· 122763 122988 sources."combined-stream-1.0.8" 122764 122989 sources."concat-map-0.0.1" 122765 122990 sources."console-control-strings-1.1.0" 122766 - sources."core-js-pure-3.16.1" 122991 + sources."core-js-pure-3.16.2" 122767 122992 sources."core-util-is-1.0.2" 122768 122993 sources."cssom-0.4.4" 122769 122994 (sources."cssstyle-2.3.0" // { ··· 122927 123152 web-ext = nodeEnv.buildNodePackage { 122928 123153 name = "web-ext"; 122929 123154 packageName = "web-ext"; 122930 - version = "6.2.0"; 123155 + version = "6.3.0"; 122931 123156 src = fetchurl { 122932 - url = "https://registry.npmjs.org/web-ext/-/web-ext-6.2.0.tgz"; 122933 - sha512 = "vibPf31/5NajygV85b6PSki2gZwOK0lQYfC2q30VdEHeS1d4hJU39mnDXM0D2nM6t7REYR8xRNgmTiDcsHCS8A=="; 123157 + url = "https://registry.npmjs.org/web-ext/-/web-ext-6.3.0.tgz"; 123158 + sha512 = "yMpSFUN6396oMs09zN+gqYM8gozfz932gduLdRCtspt16qt33c8p+7crGkHkAQmLRloMn2c4I/1RKgMq02Vnhg=="; 122934 123159 }; 122935 123160 dependencies = [ 122936 123161 sources."@babel/code-frame-7.12.11" ··· 122953 123178 (sources."@eslint/eslintrc-0.4.3" // { 122954 123179 dependencies = [ 122955 123180 sources."debug-4.3.2" 123181 + sources."eslint-visitor-keys-1.3.0" 123182 + sources."espree-7.3.1" 122956 123183 sources."ms-2.1.2" 122957 123184 ]; 122958 123185 }) 122959 - sources."@mdn/browser-compat-data-3.3.7" 123186 + (sources."@humanwhocodes/config-array-0.5.0" // { 123187 + dependencies = [ 123188 + sources."debug-4.3.2" 123189 + sources."ms-2.1.2" 123190 + ]; 123191 + }) 123192 + sources."@humanwhocodes/object-schema-1.2.0" 123193 + sources."@mdn/browser-compat-data-3.3.14" 122960 123194 sources."@sindresorhus/is-0.14.0" 122961 123195 sources."@szmarczak/http-timer-1.1.2" 122962 123196 sources."@types/minimatch-3.0.5" ··· 122964 123198 sources."@types/yauzl-2.9.1" 122965 123199 sources."acorn-7.4.1" 122966 123200 sources."acorn-jsx-5.3.2" 122967 - (sources."addons-linter-3.8.0" // { 123201 + (sources."addons-linter-3.12.0" // { 122968 123202 dependencies = [ 122969 - sources."yargs-17.0.1" 123203 + sources."yargs-17.1.0" 122970 123204 ]; 122971 123205 }) 122972 - sources."addons-scanner-utils-4.8.0" 123206 + sources."addons-scanner-utils-4.9.0" 122973 123207 sources."adm-zip-0.5.5" 122974 123208 sources."ajv-6.12.6" 122975 123209 sources."ajv-merge-patch-4.1.0" ··· 123021 123255 sources."callsites-3.1.0" 123022 123256 sources."camelcase-6.2.0" 123023 123257 sources."caseless-0.12.0" 123024 - sources."chalk-4.1.1" 123258 + sources."chalk-4.1.2" 123025 123259 sources."cheerio-1.0.0-rc.10" 123026 123260 sources."cheerio-select-1.5.0" 123027 123261 sources."chrome-launcher-0.14.0" ··· 123045 123279 sources."concat-map-0.0.1" 123046 123280 sources."concat-stream-1.6.2" 123047 123281 sources."configstore-5.0.1" 123048 - sources."core-js-3.12.0" 123282 + sources."core-js-3.16.0" 123049 123283 sources."core-util-is-1.0.2" 123050 123284 sources."cross-spawn-7.0.3" 123051 123285 sources."crypto-random-string-2.0.0" ··· 123068 123302 (sources."dispensary-0.62.0" // { 123069 123303 dependencies = [ 123070 123304 sources."async-3.2.1" 123305 + sources."pino-6.11.3" 123071 123306 ]; 123072 123307 }) 123073 123308 sources."doctrine-3.0.0" ··· 123086 123321 sources."entities-2.2.0" 123087 123322 sources."error-ex-1.3.2" 123088 123323 sources."es6-error-4.1.1" 123089 - sources."es6-promisify-6.1.1" 123324 + sources."es6-promisify-7.0.0" 123090 123325 sources."escalade-3.1.1" 123091 123326 sources."escape-goat-2.1.1" 123092 123327 sources."escape-string-regexp-4.0.0" 123093 - (sources."eslint-7.28.0" // { 123328 + (sources."eslint-7.32.0" // { 123094 123329 dependencies = [ 123095 123330 sources."ansi-regex-5.0.0" 123096 123331 sources."debug-4.3.2" 123332 + sources."eslint-visitor-keys-2.1.0" 123333 + (sources."espree-7.3.1" // { 123334 + dependencies = [ 123335 + sources."eslint-visitor-keys-1.3.0" 123336 + ]; 123337 + }) 123097 123338 sources."ms-2.1.2" 123098 123339 sources."strip-ansi-6.0.0" 123099 123340 ]; ··· 123105 123346 sources."eslint-visitor-keys-1.3.0" 123106 123347 ]; 123107 123348 }) 123108 - sources."eslint-visitor-keys-2.1.0" 123109 - (sources."espree-7.3.1" // { 123349 + sources."eslint-visitor-keys-3.0.0" 123350 + (sources."espree-8.0.0" // { 123110 123351 dependencies = [ 123111 - sources."eslint-visitor-keys-1.3.0" 123352 + sources."acorn-8.4.1" 123112 123353 ]; 123113 123354 }) 123114 123355 sources."esprima-4.0.1" ··· 123343 123584 sources."path-key-3.1.1" 123344 123585 sources."pend-1.2.0" 123345 123586 sources."performance-now-2.1.0" 123346 - sources."pino-6.11.3" 123587 + sources."pino-6.13.0" 123347 123588 sources."pino-std-serializers-3.2.0" 123348 - sources."postcss-8.3.4" 123589 + sources."postcss-8.3.6" 123349 123590 sources."prelude-ls-1.2.1" 123350 123591 sources."prepend-http-2.0.0" 123351 123592 sources."process-nextick-args-2.0.1" ··· 123406 123647 sources."shebang-regex-3.0.0" 123407 123648 sources."shell-quote-1.6.1" 123408 123649 sources."shellwords-0.1.1" 123409 - sources."sign-addon-3.5.0" 123650 + sources."sign-addon-3.7.0" 123410 123651 sources."signal-exit-3.0.3" 123411 123652 sources."slice-ansi-4.0.0" 123412 123653 sources."sonic-boom-1.4.1" ··· 123552 123793 sources."chrome-trace-event-1.0.3" 123553 123794 sources."colorette-1.3.0" 123554 123795 sources."commander-2.20.3" 123555 - sources."electron-to-chromium-1.3.805" 123796 + sources."electron-to-chromium-1.3.808" 123556 123797 sources."enhanced-resolve-5.8.2" 123557 123798 sources."es-module-lexer-0.7.1" 123558 123799 sources."escalade-3.1.1" ··· 123612 123853 webpack-cli = nodeEnv.buildNodePackage { 123613 123854 name = "webpack-cli"; 123614 123855 packageName = "webpack-cli"; 123615 - version = "4.7.2"; 123856 + version = "4.8.0"; 123616 123857 src = fetchurl { 123617 - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.7.2.tgz"; 123618 - sha512 = "mEoLmnmOIZQNiRl0ebnjzQ74Hk0iKS5SiEEnpq3dRezoyR3yPaeQZCMCe+db4524pj1Pd5ghZXjT41KLzIhSLw=="; 123858 + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.8.0.tgz"; 123859 + sha512 = "+iBSWsX16uVna5aAYN6/wjhJy1q/GKk4KjKvfg90/6hykCTSgozbfz5iRgDTSJt/LgSbYxdBX3KBHeobIs+ZEw=="; 123619 123860 }; 123620 123861 dependencies = [ 123621 123862 sources."@discoveryjs/json-ext-0.5.3" 123622 123863 sources."@webpack-cli/configtest-1.0.4" 123623 123864 sources."@webpack-cli/info-1.3.0" 123624 - sources."@webpack-cli/serve-1.5.1" 123865 + sources."@webpack-cli/serve-1.5.2" 123625 123866 sources."clone-deep-4.0.1" 123626 123867 sources."colorette-1.3.0" 123627 123868 sources."commander-7.2.0" ··· 124635 124876 sources."utp-native-2.5.3" 124636 124877 sources."videostream-3.2.2" 124637 124878 sources."vlc-command-1.2.0" 124638 - (sources."webtorrent-1.3.9" // { 124879 + (sources."webtorrent-1.3.10" // { 124639 124880 dependencies = [ 124640 124881 sources."debug-4.3.2" 124641 124882 sources."decompress-response-6.0.0" ··· 124652 124893 sources."xmlbuilder-11.0.1" 124653 124894 sources."xmldom-0.1.31" 124654 124895 sources."y18n-5.0.8" 124655 - sources."yargs-17.1.0" 124896 + sources."yargs-17.1.1" 124656 124897 sources."yargs-parser-20.2.9" 124657 124898 ]; 124658 124899 buildInputs = globalBuildInputs; ··· 124730 124971 sources."jsonc-parser-3.0.0" 124731 124972 sources."ms-2.0.0" 124732 124973 sources."request-light-0.2.5" 124733 - (sources."vscode-json-languageservice-4.1.6" // { 124974 + (sources."vscode-json-languageservice-4.1.7" // { 124734 124975 dependencies = [ 124735 124976 sources."vscode-nls-5.0.0" 124736 124977 sources."vscode-uri-3.0.2" ··· 124814 125055 sources."@npmcli/node-gyp-1.0.2" 124815 125056 sources."@npmcli/package-json-1.0.1" 124816 125057 sources."@npmcli/promise-spawn-1.3.2" 124817 - sources."@npmcli/run-script-1.8.5" 125058 + sources."@npmcli/run-script-1.8.6" 124818 125059 sources."@sindresorhus/is-0.7.0" 124819 125060 sources."@tootallnate/once-1.1.2" 124820 125061 sources."@types/expect-1.20.4" ··· 124935 125176 sources."config-chain-1.1.13" 124936 125177 sources."configstore-3.1.5" 124937 125178 sources."console-control-strings-1.1.0" 124938 - sources."core-js-3.16.1" 125179 + sources."core-js-3.16.2" 124939 125180 sources."core-util-is-1.0.2" 124940 125181 sources."create-error-class-3.0.2" 124941 125182 sources."cross-spawn-6.0.5" ··· 125700 125941 zx = nodeEnv.buildNodePackage { 125701 125942 name = "zx"; 125702 125943 packageName = "zx"; 125703 - version = "2.1.0"; 125944 + version = "3.0.0"; 125704 125945 src = fetchurl { 125705 - url = "https://registry.npmjs.org/zx/-/zx-2.1.0.tgz"; 125706 - sha512 = "7mCJ92ev894l94w5aXkdQoZ9iE6qXERLMPp/uMhTumGKtyhvN8tWprqFFHiXGS/31HxEy1NtNd9NHmYjGHd85A=="; 125946 + url = "https://registry.npmjs.org/zx/-/zx-3.0.0.tgz"; 125947 + sha512 = "GPaKTImhbKfc3TmJ43g8vRT6PMhiifcUZ0ndhHqhqtJMbteTQYNzTZT+vBtdZsDMkoqxE54Vjm3bDsplE2qWFg=="; 125707 125948 }; 125708 125949 dependencies = [ 125709 125950 sources."@nodelib/fs.scandir-2.1.5" ··· 125729 125970 sources."form-data-3.0.1" 125730 125971 sources."fs-extra-10.0.0" 125731 125972 sources."glob-parent-5.1.2" 125732 - sources."globby-12.0.0" 125973 + sources."globby-12.0.1" 125733 125974 sources."graceful-fs-4.2.8" 125734 125975 sources."has-flag-4.0.0" 125735 125976 sources."ignore-5.1.8"
+13
pkgs/development/perl-modules/mod_perl2-PL_hash_seed.patch
··· 1 + From https://github.com/Perl/perl5/issues/18617#issuecomment-822056978 by Leont 2 + 3 + --- a/src/modules/perl/modperl_perl.c 4 + +++ a/src/modules/perl/modperl_perl.c 5 + @@ -268,7 +268,7 @@ 6 + #ifdef MP_NEED_HASH_SEED_FIXUP 7 + if (MP_init_hash_seed_set) { 8 + #if MP_PERL_VERSION_AT_LEAST(5, 17, 6) 9 + - memcpy(&PL_hash_seed, &MP_init_hash_seed, 10 + + memcpy(PL_hash_seed, &MP_init_hash_seed, 11 + sizeof(PL_hash_seed) > sizeof(MP_init_hash_seed) ? 12 + sizeof(MP_init_hash_seed) : sizeof(PL_hash_seed)); 13 + PL_hash_seed_set = MP_init_hash_seed_set;
+2 -2
pkgs/development/python-modules/aiomusiccast/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "aiomusiccast"; 11 - version = "0.8.2"; 11 + version = "0.9.1"; 12 12 13 13 format = "pyproject"; 14 14 ··· 18 18 owner = "vigonotion"; 19 19 repo = "aiomusiccast"; 20 20 rev = version; 21 - sha256 = "sha256-XmDE704c9KJst8hrvdyQdS52Sd6RnprQZjBCIWAaiho="; 21 + sha256 = "sha256-+BmymfRKwNPlksYcAUb/5cZYeOD5h85YhobmsNFJVE8="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/aiotractive/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "aiotractive"; 11 - version = "0.5.1"; 11 + version = "0.5.2"; 12 12 disabled = pythonOlder "3.7"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "zhulik"; 16 16 repo = pname; 17 - rev = "v${version}"; 18 - sha256 = "09zbca84dn1sprwqpfanmxxnmaknbzjz98xa87agpgy8xb3wpw7j"; 17 + rev = "v.${version}"; 18 + sha256 = "04qdjyxq35063jpn218vw94a4r19fknk1q2kkxr8gnaabkpkjrnf"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/apprise/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "apprise"; 8 - version = "0.9.3"; 8 + version = "0.9.4"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "sha256-yKzpyJHUIkVYVwrL6oCPMd+QSVML2czWmQHCemXWAMQ="; 12 + sha256 = "sha256-Q7iZD9GG8vPxITpn87l3yGtU+L8jwvs2Qi329LHlKrI="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ Babel installShellFiles ];
+2 -2
pkgs/development/python-modules/azure-servicebus/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-servicebus"; 14 - version = "7.3.1"; 14 + version = "7.3.2"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 18 extension = "zip"; 19 - sha256 = "dc162fc572087cdf53065a2ea9517b002a6702cf382f998d69903d68c16c731e"; 19 + sha256 = "6c9bef0bfb4ac2bb8158fdfb3938884cd42542be3162ac288fa8df4e254d3810"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/bids-validator/default.nix
··· 4 4 }: 5 5 6 6 buildPythonPackage rec { 7 - version = "1.7.2"; 7 + version = "1.8.0"; 8 8 pname = "bids-validator"; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "12398831a3a3a2ed7c67e693cf596610c23dd23e0889bfeae0830bbd1d41e5b9"; 12 + sha256 = "6d4ecc384121899e0cd5af773419c5ba722585cb176544560ec9a48f17dfd777"; 13 13 }; 14 14 15 15 # needs packages which are not available in nixpkgs
+2 -2
pkgs/development/python-modules/crytic-compile/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "crytic-compile"; 5 - version = "0.2.0"; 5 + version = "0.2.1"; 6 6 7 7 disabled = pythonOlder "3.6"; 8 8 ··· 10 10 owner = "crytic"; 11 11 repo = "crytic-compile"; 12 12 rev = version; 13 - sha256 = "sha256-Kuc7g5+4TIcQTWYjG4uPN0Rxfom/A/xpek5K5ErlbdU="; 13 + sha256 = "sha256-RDb4Dc+igt2JKskBFIFvYt4xTAMujp8uXnkWsgnwdJE="; 14 14 }; 15 15 16 16 propagatedBuildInputs = [ pysha3 setuptools ];
+7 -5
pkgs/development/python-modules/desktop-notifier/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 3 + , fetchFromGitHub 4 4 , pythonOlder 5 5 , stdenv 6 6 , packaging ··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "desktop-notifier"; 13 - version = "3.3.0"; 13 + version = "3.3.1"; 14 14 disabled = pythonOlder "3.6"; 15 15 16 - src = fetchPypi { 17 - inherit pname version; 18 - sha256 = "sha256-ROSZorkA2wAp2Ubh3B3KWIUxM/4r7cv/1aSJqeKnPqg="; 16 + src = fetchFromGitHub { 17 + owner = "SamSchott"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + sha256 = "sha256-GbsbwCKRTgLk0xK6MGKb1Tp6cd8q3h6OUdJ2f+VPyzk="; 19 21 }; 20 22 21 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/doc8/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "doc8"; 15 - version = "0.8.1"; 15 + version = "0.9.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "4d1df12598807cf08ffa9a1d5ef42d229ee0de42519da01b768ff27211082c12"; 19 + sha256 = "380b660474be40ce88b5f04fa93470449124dbc850a0318f2ef186162bc1360b"; 20 20 }; 21 21 22 22 buildInputs = [ pbr ];
+2 -2
pkgs/development/python-modules/fastecdsa/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "fastecdsa"; 10 - version = "2.1.5"; 10 + version = "2.2.1"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "d0772f7fe243e8a82d33e95c542ea6cc0ef7f3cfcced7440d6defa71a35addfa"; 14 + sha256 = "48d59fcd18d0892a6b76463d4c98caa217975414f6d853af7cfcbbb0284cb52d"; 15 15 }; 16 16 17 17 buildInputs = [ gmp ];
+2 -2
pkgs/development/python-modules/flowlogs_reader/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "flowlogs_reader"; 14 - version = "2.4.0"; 14 + version = "3.1.0"; 15 15 disabled = isPy27; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "e47637b40a068a0c814ba2087fb691b43aa12e6174ab06b6cdb7109bb94624e4"; 19 + sha256 = "d99636423abc83bb4042d63edd56852ede9e2949cadcc3339eda8f3367826dd4"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ botocore boto3 docutils ];
+33
pkgs/development/python-modules/furo/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchPypi 5 + , sphinx 6 + , beautifulsoup4 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "furo"; 11 + version = "2021.8.11b42"; 12 + format = "flit"; 13 + disable = pythonOlder "3.6"; 14 + 15 + src = fetchPypi { 16 + inherit pname version; 17 + sha256 = "sha256-rhi2T57EfidQV1IHBkplCbzLlBCC5gVGmbkCf40s0qU="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + sphinx 22 + beautifulsoup4 23 + ]; 24 + 25 + pythonImportsCheck = [ "furo" ]; 26 + 27 + meta = with lib; { 28 + description = "A clean customizable documentation theme for Sphinx"; 29 + homepage = "https://github.com/pradyunsg/furo"; 30 + license = licenses.mit; 31 + maintainers = with maintainers; [ Luflosi ]; 32 + }; 33 + }
+2 -2
pkgs/development/python-modules/gipc/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "gipc"; 9 - version = "1.2.0"; 9 + version = "1.3.0"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "6045b22dfbd8aec5542fe15d71684e46df0a4de852ccae6a02c9db3a24076e01"; 13 + sha256 = "a25ccfd2f8c94b24d2113fa50a0de5c7a44499ca9f2ab7c91c3bec0ed96ddeb1"; 14 14 }; 15 15 16 16 propagatedBuildInputs = [ gevent ];
+2 -2
pkgs/development/python-modules/google-api-python-client/default.nix
··· 4 4 5 5 buildPythonPackage rec { 6 6 pname = "google-api-python-client"; 7 - version = "2.9.0"; 7 + version = "2.15.0"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "2b5274f06799d80222fd3f20fd4ebcd19f57c009703bd4cf7b00492e7e05e15a"; 11 + sha256 = "sha256-g3VIkjKCP0TGARlqlgUF4D7FjJXdtkFcax0ddrRo+Lo="; 12 12 }; 13 13 14 14 # No tests included in archive
+2 -2
pkgs/development/python-modules/google-auth-oauthlib/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-auth-oauthlib"; 14 - version = "0.4.4"; 14 + version = "0.4.5"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "sha256-CYMsbnUDL5OBjt8a/+R0YSHWQMYlpb75tclq9nbpju4="; 18 + sha256 = "sha256-SrWObD3GzPES+SH8ztQOVCb7omZ2iYbqUCIoSIJ26ro="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-auth/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "google-auth"; 23 - version = "1.31.0"; 23 + version = "1.34.0"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - sha256 = "154f7889c5d679a6f626f36adb12afbd4dbb0a9a04ec575d989d6ba79c4fd65e"; 27 + sha256 = "sha256-8QlAiLrgRvsG89Gj198UcX6NlZ6RBbecV3Jb1OF1l6I="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+4 -4
pkgs/development/python-modules/google-cloud-appengine-logging/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , google-api-core 5 - , grpc_google_iam_v1 5 + , grpc-google-iam-v1 6 6 , mock 7 7 , proto-plus 8 8 , pytest-asyncio ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-appengine-logging"; 15 - version = "0.1.0"; 15 + version = "0.1.4"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "0rkayy2qzsc70b0rdvzd2bxwp5f07rfqb95cyj57dkphq71mrrhw"; 19 + sha256 = "sha256-1E+3fXcGsIbTh7nXnBOcVT1UtY3cjulnu/MqU+e77lY="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 23 google-api-core 24 - grpc_google_iam_v1 24 + grpc-google-iam-v1 25 25 proto-plus 26 26 ]; 27 27
+4 -4
pkgs/development/python-modules/google-cloud-asset/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , grpc_google_iam_v1 4 + , grpc-google-iam-v1 5 5 , google-api-core 6 6 , google-cloud-access-context-manager 7 7 , google-cloud-org-policy ··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "google-cloud-asset"; 20 - version = "2.2.0"; 20 + version = "3.3.0"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - sha256 = "05q0yaw6b553qmzylr45zin17h8mvi8yyyxhbv3cxa7f0ahviw8w"; 24 + sha256 = "sha256-/iTpO1Y+v//ZzaXUpOfBOXDRfftpmUV4hxsFmMj3tM0="; 25 25 }; 26 26 27 27 postPatch = '' ··· 30 30 ''; 31 31 32 32 propagatedBuildInputs = [ 33 - grpc_google_iam_v1 33 + grpc-google-iam-v1 34 34 google-api-core 35 35 google-cloud-access-context-manager 36 36 google-cloud-org-policy
+2 -2
pkgs/development/python-modules/google-cloud-automl/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-automl"; 17 - version = "2.3.0"; 17 + version = "2.4.2"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "523633496b4fe1ca74a7b22cdaa206581804863813bf461e2f437d0fb7ad21b6"; 21 + sha256 = "sha256-c3zlpCejXB/RO8RnyFUpDknefpoMZWXWgaS7ACpqdAw="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-bigquery-datatransfer"; 14 - version = "3.1.1"; 14 + version = "3.3.1"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "9ac8cd06a60bfdc504f39fbcd086e5180c8684cffefe7745a9ff6a639c575629"; 18 + sha256 = "sha256-oCktt8wAYKewz6Ga4mIGVy0IWonXTqQvaO5MT4MkHMY="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+4 -4
pkgs/development/python-modules/google-cloud-bigquery-logging/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , google-api-core 5 - , grpc_google_iam_v1 5 + , grpc-google-iam-v1 6 6 , mock 7 7 , proto-plus 8 8 , pytest-asyncio ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-bigquery-logging"; 15 - version = "0.1.0"; 15 + version = "0.2.1"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "0s8vlw157z10yzzkrfyzfl31iad96wfl3ywk9g3gmmh0jfgy0gfj"; 19 + sha256 = "sha256-5ixj9MnJVVcU9NR4ZBe0TAp8ogJLAKrPlyGm5d/iQwA="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 23 google-api-core 24 - grpc_google_iam_v1 24 + grpc-google-iam-v1 25 25 proto-plus 26 26 ]; 27 27
+10 -2
pkgs/development/python-modules/google-cloud-bigquery/default.nix
··· 4 4 , pytestCheckHook 5 5 , freezegun 6 6 , google-cloud-core 7 + , google-cloud-datacatalog 7 8 , google-cloud-storage 8 9 , google-cloud-testutils 9 10 , google-resumable-media ··· 17 18 18 19 buildPythonPackage rec { 19 20 pname = "google-cloud-bigquery"; 20 - version = "2.20.0"; 21 + version = "2.23.3"; 21 22 22 23 src = fetchPypi { 23 24 inherit pname version; 24 - sha256 = "ff728f9a4a64d6b4ec5beb7fd2f6ed550b49bfe2b8bb3755c00821716e0d1f91"; 25 + sha256 = "sha256-FQXtRM7YaU+S+Jqkn9dTQqJR3A1hL/XQjgPTXmANO0I="; 25 26 }; 26 27 27 28 propagatedBuildInputs = [ ··· 38 39 mock 39 40 pandas 40 41 psutil 42 + google-cloud-datacatalog 41 43 google-cloud-storage 42 44 pytestCheckHook 43 45 ]; ··· 53 55 "TestBigQuery" 54 56 # Mocking of _ensure_bqstorage_client fails 55 57 "test_to_arrow_ensure_bqstorage_client_wo_bqstorage" 58 + # requires network 59 + "test_dbapi_create_view" 60 + "test_list_rows_nullable_scalars_dtypes" 61 + "test_parameterized_types_round_trip" 62 + "test_structs" 63 + "test_table_snapshots" 56 64 ]; 57 65 58 66 pythonImportsCheck = [
+4 -4
pkgs/development/python-modules/google-cloud-bigtable/default.nix
··· 3 3 , fetchPypi 4 4 , google-api-core 5 5 , google-cloud-core 6 - , grpc_google_iam_v1 6 + , grpc-google-iam-v1 7 7 , libcst 8 8 , mock 9 9 , proto-plus ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-bigtable"; 15 - version = "2.2.0"; 15 + version = "2.3.3"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-89fXmr3jHTtp8QOMFeueJwslHJ7Q6srQ/Kxsp0mLlKU="; 19 + sha256 = "sha256-4rMnGnDQtuu55mzrYkeJjrU0ykQXd+pOYAw2yVcqJAQ="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 23 google-api-core 24 24 google-cloud-core 25 - grpc_google_iam_v1 25 + grpc-google-iam-v1 26 26 libcst 27 27 proto-plus 28 28 ];
+4 -4
pkgs/development/python-modules/google-cloud-container/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , google-api-core 5 - , grpc_google_iam_v1 5 + , grpc-google-iam-v1 6 6 , libcst 7 7 , mock 8 8 , proto-plus ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-container"; 15 - version = "2.4.1"; 15 + version = "2.7.1"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "e7d93ca399dd6fb5fd0f99190248531c9c583d1a85e7cd2c9ee485495459ee78"; 19 + sha256 = "sha256-nMUMGFU383TC7cXkj6EHaEe4HHS5NzcLBIxp1xgWUzg="; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google-api-core grpc_google_iam_v1 libcst proto-plus ]; 22 + propagatedBuildInputs = [ google-api-core grpc-google-iam-v1 libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google-cloud-core/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-core"; 14 - version = "1.7.0"; 14 + version = "1.7.2"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "2ab0cf260c11d0cc334573301970419abb6a1f3909c6cd136e4be996616372fe"; 18 + sha256 = "sha256-sQMKrcuyrrTuUUdUJjUa+DwQckVrkY+4/bgGZsS7Y7U="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ google-api-core ];
+24
pkgs/development/python-modules/google-cloud-datacatalog/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, libcst, google-api-core, grpc-google-iam-v1, proto-plus, pytest-asyncio, pytestCheckHook, mock }: 2 + 3 + buildPythonPackage rec { 4 + pname = "google-cloud-datacatalog"; 5 + version = "3.4.0"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "2faca51e974c46203c09fd4cb2c03fd6e82cd572cc06a2bbc3b401aa419cb09f"; 10 + }; 11 + 12 + propagatedBuildInputs = [ libcst google-api-core grpc-google-iam-v1 proto-plus ]; 13 + 14 + checkInputs = [ pytest-asyncio pytestCheckHook mock ]; 15 + 16 + pythonImportsCheck = [ "google.cloud.datacatalog" ]; 17 + 18 + meta = with lib; { 19 + description = "Google Cloud Data Catalog API API client library"; 20 + homepage = "https://github.com/googleapis/python-datacatalog"; 21 + license = licenses.asl20; 22 + maintainers = with maintainers; [ SuperSandro2000 ]; 23 + }; 24 + }
+2 -2
pkgs/development/python-modules/google-cloud-dataproc/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-dataproc"; 14 - version = "2.4.0"; 14 + version = "2.5.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "6e5373febe420e2b2375d2252b272129f11a37ff1b88a7587322931063be8d38"; 18 + sha256 = "sha256-wRGIuut2mJ6RJh8fRUAT0JDmnUreQYXhgVgsfRxvyxo="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-datastore/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-datastore"; 16 - version = "2.1.3"; 16 + version = "2.1.6"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "e7a510759b9d55ff63c983e3c42cbf5c35f9b7310f4d611ebe3697da6576bcb4"; 20 + sha256 = "sha256-31PBHWnU0KbX8ymFh7+dP0uVbM6BWexdaumMVQbBO6o="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-dlp/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-dlp"; 15 - version = "3.1.1"; 15 + version = "3.2.2"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "0863e90f9a9cae70af7962dd17d99cb6dde44bf3a029ce5990cb8226557a9e95"; 19 + sha256 = "sha256-ZxGWTsqCIvpTSN+aThVgjPuMJE7hHMVn4zsidpXk7xk="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-dns/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "google-cloud-dns"; 12 - version = "0.32.3"; 12 + version = "0.33.0"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "bbb1c855524bd3f0f2a3b3db883af0d3f618befb976aa694d7e507dd68fc7a71"; 16 + sha256 = "sha256-iPAJMzxefRjLA0tGUfjAs15ZJvcyBUJB1QCMfMBo96I="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ google-api-core google-cloud-core ];
+2 -2
pkgs/development/python-modules/google-cloud-error-reporting/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-error-reporting"; 15 - version = "1.1.2"; 15 + version = "1.2.2"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-NT/+2mtIaEMyXnmM1fWX4kEV9pb1+aNas2lNobUPR14="; 19 + sha256 = "sha256-LKESEpQLvjmyo8VcZ1fxMcPCbUE+mxvmnexoZEKramc="; 20 20 }; 21 21 22 22 postPatch = ''
+2 -2
pkgs/development/python-modules/google-cloud-firestore/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-firestore"; 16 - version = "2.1.3"; 16 + version = "2.2.0"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "143a88ef2b90c98f16d2b0bc192631ca3e2b7c66a236d93ba9961de64e50870e"; 20 + sha256 = "sha256-QMwvMPebC2a09XmKQKYFPwVIbZlnUEaXxTh8hlnS9Js="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+4 -4
pkgs/development/python-modules/google-cloud-iam-logging/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , google-api-core 5 - , grpc_google_iam_v1 5 + , grpc-google-iam-v1 6 6 , mock 7 7 , proto-plus 8 8 , pytest-asyncio ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-iam-logging"; 15 - version = "0.1.0"; 15 + version = "0.1.2"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "19a8s634w2m1b16zq8f185cpaw7k6d0c7c61g1vzm19jl213rhiw"; 19 + sha256 = "sha256-yX58Pq2+YB3ylN92RUIGlQKnvKYD7sabCKtZsDNV5sc="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 23 google-api-core 24 - grpc_google_iam_v1 24 + grpc-google-iam-v1 25 25 proto-plus 26 26 ]; 27 27
+4 -4
pkgs/development/python-modules/google-cloud-iot/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , grpc_google_iam_v1 4 + , grpc-google-iam-v1 5 5 , google-api-core 6 6 , libcst 7 7 , proto-plus ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-iot"; 15 - version = "2.1.0"; 15 + version = "2.2.1"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "f4d7c55636e8cb57a4dde41d933cd8663b1369ab3542b287957959ee59828559"; 19 + sha256 = "sha256-vMzq4ffA7877zRtdZ+VpFdEHU0BZhDdhgxuk5154hMU="; 20 20 }; 21 21 22 - propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ]; 22 + propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+4 -4
pkgs/development/python-modules/google-cloud-kms/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 - , grpc_google_iam_v1 5 + , grpc-google-iam-v1 6 6 , google-api-core 7 7 , libcst 8 8 , mock ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-kms"; 15 - version = "2.3.0"; 15 + version = "2.5.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "39c6aa1633e45dc0364397b24c83718bd63f833db41d8c93b76019c16208d0f1"; 19 + sha256 = "sha256-OuvpnIJeG+O+2Teopq8FYJOHIyi1V3RdlmJEq/fFSxM="; 20 20 }; 21 21 22 - propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ]; 22 + propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google-cloud-language/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-language"; 14 - version = "2.1.0"; 14 + version = "2.2.2"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "63ca2d772e16e4440858848e8c3298859b931b1652f663683fb5d7413b7c9a1b"; 18 + sha256 = "sha256-X8lh+90HyyktxgJiRaiJF9ExKHmgiVcQiYDotg3AqaQ="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-logging/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "google-cloud-logging"; 18 - version = "2.5.0"; 18 + version = "2.6.0"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "ab9d6ee1156cabe8c2483ca5a67bdf3a8582c596dd4e498a59781b6670b085f0"; 22 + sha256 = "sha256-SZ7tXxPKuAXIeAsNFKDZMan/HWXvzN2eaHctQOfa1MU="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-monitoring/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-monitoring"; 16 - version = "2.3.0"; 16 + version = "2.4.2"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "fcbf644622709277d47b0dd8884efd1d62703bffda3c1030e06404709690c06c"; 20 + sha256 = "sha256-PQjTAqSzjCBPH58nZHAc6Oa12NSDVvt2E0ZHewTFZfY="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-os-config/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-cloud-os-config"; 5 - version = "1.2.0"; 5 + version = "1.3.2"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "2b828513c1cea481d03d0218516e5c5d8b53756db3637f02cd69ae3c171832dc"; 9 + sha256 = "sha256-sC80RGY4lDVebpoz2hDGH5WfyrAjaOKTSDp/BhGmZS0="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+4 -4
pkgs/development/python-modules/google-cloud-pubsub/default.nix
··· 4 4 , pytestCheckHook 5 5 , google-api-core 6 6 , google-cloud-testutils 7 - , grpc_google_iam_v1 7 + , grpc-google-iam-v1 8 8 , libcst 9 9 , mock 10 10 , proto-plus ··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-pubsub"; 16 - version = "2.5.0"; 16 + version = "2.7.0"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "8706557b71532c76aec48409dcac189caac47cf2decb8850ae75694bf70326b2"; 20 + sha256 = "sha256-F4itJadl6oNJnY9EENTIugJll8uC20bS9yF/HCUlrWU="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ 24 - grpc_google_iam_v1 24 + grpc-google-iam-v1 25 25 google-api-core 26 26 libcst 27 27 proto-plus
+2 -2
pkgs/development/python-modules/google-cloud-redis/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-redis"; 14 - version = "2.1.1"; 14 + version = "2.2.2"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "d97fde9361026ab67f53557a8fe9f3db26121959ab586fe453f42a401d40fb4c"; 18 + sha256 = "sha256-lxjxkBK/7up+t2dF2hZz3QXeXLwo9L0Z78mH6aC4Icc="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+9 -4
pkgs/development/python-modules/google-cloud-resource-manager/default.nix
··· 4 4 , pytestCheckHook 5 5 , google-cloud-core 6 6 , google-api-core 7 + , grpc-google-iam-v1 8 + , proto-plus 7 9 , mock 8 10 }: 9 11 10 12 buildPythonPackage rec { 11 13 pname = "google-cloud-resource-manager"; 12 - version = "0.30.3"; 14 + version = "1.0.2"; 13 15 14 16 src = fetchPypi { 15 17 inherit pname version; 16 - sha256 = "1la643vkf6fm2gapz57cm92xzvmhzgpzv3bb6112yz1cizrvnxrm"; 18 + sha256 = "sha256-5njC5yO7NTU81i9vmJoe1RBYPS1fU/3K5tgH7twyT+I="; 17 19 }; 18 20 19 - propagatedBuildInputs = [ google-api-core google-cloud-core ]; 21 + propagatedBuildInputs = [ google-api-core google-cloud-core grpc-google-iam-v1 proto-plus ]; 20 22 21 23 checkInputs = [ mock pytestCheckHook ]; 22 24 ··· 25 27 rm -r google 26 28 ''; 27 29 28 - pythonImportsCheck = [ "google.cloud.resource_manager" ]; 30 + pythonImportsCheck = [ 31 + "google.cloud.resourcemanager" 32 + "google.cloud.resourcemanager_v3" 33 + ]; 29 34 30 35 meta = with lib; { 31 36 description = "Google Cloud Resource Manager API client library";
+2 -2
pkgs/development/python-modules/google-cloud-runtimeconfig/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "google-cloud-runtimeconfig"; 12 - version = "0.32.2"; 12 + version = "0.32.3"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "5285aef98fdb9a691e7c54789e7c493c51674b6e77fe6c967172ae8eadbba026"; 16 + sha256 = "sha256-un5WZ2rxVXPKj9CPfhrojlA9ml6wfPIu0JD6p8WCY/A="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ google-api-core google-cloud-core ];
+4 -4
pkgs/development/python-modules/google-cloud-secret-manager/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , google-api-core 5 - , grpc_google_iam_v1 5 + , grpc-google-iam-v1 6 6 , libcst 7 7 , mock 8 8 , proto-plus ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-secret-manager"; 15 - version = "2.5.0"; 15 + version = "2.7.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "e99eb9f77373b97bfc1becb7d23fae5574a33fd9e44b44a3e700abcbfbc9f94d"; 19 + sha256 = "sha256-gfNoCfh2ssHgYcQ1kfQedcfhpqsu3x50hdYrm11SKGo="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ 23 23 google-api-core 24 - grpc_google_iam_v1 24 + grpc-google-iam-v1 25 25 libcst 26 26 proto-plus 27 27 ];
+4 -4
pkgs/development/python-modules/google-cloud-securitycenter/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , grpc_google_iam_v1 4 + , grpc-google-iam-v1 5 5 , google-api-core 6 6 , libcst 7 7 , mock ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-securitycenter"; 15 - version = "1.3.1"; 15 + version = "1.5.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "872507adad97f452e0998730cd1993c0433c05a0757c268f5c02fbfabe7720d4"; 19 + sha256 = "sha256-DrdzC7Oe/8cq41OLcN51Qm208L0zPa9cxscHqmYji04="; 20 20 }; 21 21 22 - propagatedBuildInputs = [ grpc_google_iam_v1 google-api-core libcst proto-plus ]; 22 + propagatedBuildInputs = [ grpc-google-iam-v1 google-api-core libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+4 -4
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , grpc_google_iam_v1 4 + , grpc-google-iam-v1 5 5 , google-cloud-core 6 6 , google-cloud-testutils 7 7 , libcst ··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-spanner"; 17 - version = "3.5.0"; 17 + version = "3.7.0"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "19656140f180aef84e023c3a8fd534ac964247a52199317ea33abc701d5a8c5a"; 21 + sha256 = "sha256-4LGSB7KU+RGvjSQ/w1vXxa5fkfFT4C5omhk/LnGSUng="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [ 25 25 google-cloud-core 26 - grpc_google_iam_v1 26 + grpc-google-iam-v1 27 27 libcst 28 28 proto-plus 29 29 sqlparse
+2 -2
pkgs/development/python-modules/google-cloud-speech/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-speech"; 14 - version = "2.4.0"; 14 + version = "2.6.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "991ee0601bc956110e873aee1a74441d66227b10cd581195575435884384f38b"; 18 + sha256 = "sha256-NkUgRYoli/ngoyJmuF9/va7Ao5ouw3cxsbwCrSIaOQc="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+11 -5
pkgs/development/python-modules/google-cloud-storage/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-cloud-storage"; 16 - version = "1.38.0"; 16 + version = "1.41.1"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "162011d66f64b8dc5d7936609a5daf0066cc521231546aea02c126a5559446c4"; 20 + sha256 = "sha256-qB7MDzgrjkQ3zH8VL3TXfvkXyCgKXRBA9dz70FAseQY="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ ··· 42 42 "post" 43 43 "test_build_api_url" 44 44 "test_ctor_mtls" 45 + "test_hmac_key_crud" 46 + "test_list_buckets" 45 47 "test_open" 48 + "test_anonymous_client_access_to_public_bucket" 46 49 ]; 47 50 48 - pytestFlagsArray = [ 49 - "--ignore=tests/unit/test_bucket.py" 50 - "--ignore=tests/system/test_system.py" 51 + disabledTestPaths = [ 52 + "tests/unit/test_bucket.py" 53 + "tests/system/test_blob.py" 54 + "tests/system/test_bucket.py" 55 + "tests/system/test_fileio.py" 56 + "tests/system/test_kms_integration.py" 51 57 ]; 52 58 53 59 # prevent google directory from shadowing google imports
+4 -4
pkgs/development/python-modules/google-cloud-tasks/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , google-api-core 5 - , grpc_google_iam_v1 5 + , grpc-google-iam-v1 6 6 , libcst 7 7 , mock 8 8 , proto-plus ··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-tasks"; 15 - version = "2.3.0"; 15 + version = "2.5.1"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "7cc24d389073c40af41e2fc091417dec6e58af07db9b1295853fc3d545c80cfe"; 19 + sha256 = "sha256-4QOKG7Forf3x5l1XQbbX4A8upIxe+eCiwhPily26du4="; 20 20 }; 21 21 22 - propagatedBuildInputs = [ google-api-core grpc_google_iam_v1 libcst proto-plus ]; 22 + propagatedBuildInputs = [ google-api-core grpc-google-iam-v1 libcst proto-plus ]; 23 23 24 24 checkInputs = [ mock pytestCheckHook pytest-asyncio ]; 25 25
+2 -2
pkgs/development/python-modules/google-cloud-testutils/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "google-cloud-testutils"; 5 - version = "0.2.0"; 5 + version = "1.0.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "a23be7cc23bccb1ae6debb74a47dc5b51858b6322fcf034ca92fe7a4acb896f3"; 9 + sha256 = "sha256-2RaRhRvgnmr/trjAE+RBlVO5AZ54YEFcoRwcPCKCTKs="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ click google-auth six ];
+2 -2
pkgs/development/python-modules/google-cloud-texttospeech/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-texttospeech"; 14 - version = "2.4.0"; 14 + version = "2.5.2"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "c50cc21b5df88b696680d8aac3ab6c86820c0e4d071d6a5dcd9b634a456cf59f"; 18 + sha256 = "sha256-LcX7qSGMBMU72ZTNBLKaDd+M/2En+mc7/IZsZg2dF9I="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ libcst google-api-core proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-trace/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-trace"; 15 - version = "1.2.0"; 15 + version = "1.3.2"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "3683477a5d747451332a38d6c8cea652b5991db1f6e4c39907fa3679708ac218"; 19 + sha256 = "sha256-N2Y/DZXyxMSw+S/s58iJvrK/p2FM/B5O467Pctr+tdQ="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ google-api-core google-cloud-core proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-translate/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-translate"; 17 - version = "3.2.0"; 17 + version = "3.3.2"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "8cd957f4b29a8c7a983e0a427c2712533c41bb7007b76a8cc88d6c65075c679a"; 21 + sha256 = "sha256-XkHNIu7KWPUpgBceIBqzWgYPCay+Ud1/nM0KbeRnHk0="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-videointelligence/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-videointelligence"; 14 - version = "2.2.0"; 14 + version = "2.3.2"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "08106ddeec90a27f4bc706f7267ec1c52f2bff745bafd4710bc6898460c8e9a6"; 18 + sha256 = "sha256-+2HwsRZM/h2eVmX6uVEb1s9etDggoGuQg3qj7hXj/AQ="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ google-api-core proto-plus ];
+2 -2
pkgs/development/python-modules/google-cloud-vision/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-vision"; 14 - version = "2.3.2"; 14 + version = "2.4.2"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "65ed06725377670fc1b21d474237922f29674d0f99a472b0c84683aa02af70a4"; 18 + sha256 = "sha256-BZiBSH2nZ2tnHi6K1+Ii5i/ZrGJyyH1+6hurmqVfYcM="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ libcst google-api-core proto-plus];
+2 -2
pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "google-cloud-websecurityscanner"; 14 - version = "1.3.0"; 14 + version = "1.4.1"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "632ac3c50eee704ed2a6e87d5a09379589841cf53459813c76f8bea01e77c49d"; 18 + sha256 = "sha256-oq7AMZ1so8IR7nn8fIhUr4oOJEJp1FQPxiJIh+1bMLA="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+2 -2
pkgs/development/python-modules/google-resumable-media/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-resumable-media"; 15 - version = "1.3.1"; 15 + version = "1.3.3"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "1a1eb743d13f782d1405437c266b2c815ef13c2b141ba40835c74a3317539d01"; 19 + sha256 = "sha256-zjhVXSUL1wsMJZi/YemQA8uMVpsBduwOPzi4b5//9YE="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ google-auth google-crc32c requests ];
+2 -2
pkgs/development/python-modules/googlemaps/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "googlemaps"; 13 - version = "4.4.5"; 13 + version = "4.5.3"; 14 14 disabled = pythonOlder "3.5"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "googlemaps"; 18 18 repo = "google-maps-services-python"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-Rdfp98UqTMbqcOpkzh0Dz8fNSSbuvCnCztCkxiBgaAA="; 20 + sha256 = "1yfsfspvjngrb1lwaq04ahm94j9y2dwzdf4dsg3yl1c8w0vgf9yw"; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ requests ];
+2 -2
pkgs/development/python-modules/growattserver/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "growattserver"; 10 - version = "1.0.1"; 10 + version = "1.0.2"; 11 11 disabled = pythonOlder "3.6"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "indykoning"; 15 15 repo = "PyPi_GrowattServer"; 16 16 rev = version; 17 - sha256 = "1vgb92axlz1kkszmamjbsqgi74afnbr2mc1np3pmbn3bx5rmk1d9"; 17 + sha256 = "sha256-0i7pMJ4gAVOkvj2uYZJygr3rehgIAfyxq9cWbozwRIQ="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+7 -5
pkgs/development/python-modules/grpc_google_iam_v1/default.nix pkgs/development/python-modules/grpc-google-iam-v1/default.nix
··· 3 3 , fetchPypi 4 4 , grpcio 5 5 , googleapis-common-protos 6 - , pytest 7 6 }: 8 7 9 8 buildPythonPackage rec { ··· 17 16 18 17 propagatedBuildInputs = [ grpcio googleapis-common-protos ]; 19 18 20 - # non-standard test format, and python3 will load local google folder first 21 - # but tests cannot be ran if google folder is removed or moved 19 + # no tests run 22 20 doCheck = false; 23 - checkInputs = [ pytest ]; 21 + 22 + pythonImportsCheck = [ 23 + "google.iam" 24 + "google.iam.v1" 25 + ]; 24 26 25 27 meta = with lib; { 26 28 description = "GRPC library for the google-iam-v1 service"; 27 29 homepage = "https://github.com/googleapis/googleapis"; 28 30 license = licenses.asl20; 29 - maintainers = [ maintainers.costrouc ]; 31 + maintainers = with maintainers; [ SuperSandro2000 ]; 30 32 }; 31 33 }
+5 -3
pkgs/development/python-modules/locationsharinglib/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "locationsharinglib"; 17 - version = "4.1.6"; 18 - disabled = pythonOlder "3.6"; 17 + version = "4.1.8"; 18 + disabled = pythonOlder "3.7"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "092j8z01nwjqh5zr7aj8mxl1zjd3j2irhrs39dhn47bd6db2a6ij"; 22 + sha256 = "sha256-69NzKSWpuU0Riwlj6cFC4h/shc/83e1mpq++zxDqftY="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ ··· 39 39 # Tests requirements want to pull in multiple modules which we don't need 40 40 substituteInPlace setup.py \ 41 41 --replace "tests_require=test_requirements" "tests_require=[]" 42 + substituteInPlace requirements.txt \ 43 + --replace "coloredlogs>=15.0.1" "coloredlogs" 42 44 ''; 43 45 44 46 checkPhase = ''
+2 -2
pkgs/development/python-modules/pre-commit/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "pre-commit"; 20 - version = "2.13.0"; 20 + version = "2.14.0"; 21 21 disabled = pythonOlder "3.6"; 22 22 23 23 src = fetchPypi { 24 24 inherit version; 25 25 pname = "pre_commit"; 26 - sha256 = "sha256-dklyxgaT3GaLqOhuspZU7DFEUBMQ9xmHQqdnvsOFo3g="; 26 + sha256 = "sha256-I4butM9mM3EsfMnt6DaE1TyMr8prWfecc4CYtRxtIGw="; 27 27 }; 28 28 29 29 patches = [
+2 -2
pkgs/development/python-modules/proto-plus/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "proto-plus"; 13 - version = "1.18.1"; 13 + version = "1.19.0"; 14 14 disabled = !isPy3k; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "cfc45474c7eda0fe3c4b9eca2542124f2a0ff5543242bec61e8d08bce0f5bd48"; 18 + sha256 = "sha256-zmaVzoBDg61vOSxLsYdMMjiWKQofZWVg3jZBa6gy2R4="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ protobuf ];
+3
pkgs/development/python-modules/pybids/default.nix
··· 42 42 homepage = "https://github.com/bids-standard/pybids"; 43 43 license = licenses.mit; 44 44 maintainers = with maintainers; [ jonringer ]; 45 + # Doesn't support sqlalchemy >=1.4 46 + # See https://github.com/bids-standard/pybids/issues/680 47 + broken = true; 45 48 }; 46 49 }
+2 -2
pkgs/development/python-modules/pyezviz/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pyezviz"; 14 - version = "0.1.8.9"; 14 + version = "0.1.9.1"; 15 15 disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "baqs"; 19 19 repo = "pyEzviz"; 20 20 rev = version; 21 - sha256 = "sha256-ZjHDha7hSRXy86wm61bMMF8zMi5Lux6RbD0yFD/78J4="; 21 + sha256 = "sha256-KsdJC09KugvAgkRZ5H5zrIJ5hC5Vt4QwGWML8kNnR7Y="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pymeteireann/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pymeteireann"; 12 - version = "0.3"; 12 + version = "2021.8.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "DylanGore"; 16 16 repo = "PyMetEireann"; 17 17 rev = version; 18 - sha256 = "sha256-Y0qB5RZykuBk/PNtxikxjsv672NhS6yJWJeSdAe/MoU="; 18 + sha256 = "1xcfb3f2a2q99i8anpdzq8s743jgkk2a3rpar48b2dhs7l15rbsd"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pymyq/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pymyq"; 12 - version = "3.1.0"; 12 + version = "3.1.2"; 13 13 disabled = pythonOlder "3.8"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "arraylabs"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "0nrsivgd3andlq9c0p72x06mz1s4ihhibbphccrm5v1fmbzj09zp"; 19 + sha256 = "sha256-DvwnbZa1/Y08rrxdXgffkjaGAVdRkPmYCD+Xkv0h7OE="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -18
pkgs/development/python-modules/pyppeteer/default.nix
··· 2 2 , appdirs 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 , poetry-core 7 6 , pyee 8 7 , pytest-xdist ··· 16 15 17 16 buildPythonPackage rec { 18 17 pname = "pyppeteer"; 19 - version = "0.2.5"; 18 + version = "0.2.6"; 20 19 disabled = pythonOlder "3.6"; 21 20 format = "pyproject"; 22 21 ··· 24 23 owner = pname; 25 24 repo = pname; 26 25 rev = version; 27 - sha256 = "1hl4rw8j5yiak0d34vx1l1blr8125bscjd8m46a5m8xzm98csjc7"; 26 + sha256 = "sha256-mMFQp8GMjKUc3yyB4c8Tgxut7LkMFa2cySO3iSA/aI4="; 28 27 }; 29 28 30 29 nativeBuildInputs = [ ··· 44 43 pytest-xdist 45 44 pytestCheckHook 46 45 ]; 47 - 48 - patches = [ 49 - # Switch to poetry-core, https://github.com/pyppeteer/pyppeteer/pull/262 50 - (fetchpatch { 51 - name = "switch-poetry-core.patch"; 52 - url = "https://github.com/pyppeteer/pyppeteer/commit/e248baebefcf262fd96f261d940e74ed49ba2df9.patch"; 53 - sha256 = "03g8n35kn2alqki37s0hf2231fk2zkr4nr1x1g2rfrhps9d6fyvw"; 54 - }) 55 - ]; 56 - 57 - postPatch = '' 58 - # https://github.com/pyppeteer/pyppeteer/pull/252 59 - substituteInPlace pyproject.toml \ 60 - --replace 'websockets = "^8.1"' 'websockets = "*"' 61 - ''; 62 46 63 47 disabledTestPaths = [ 64 48 # Requires network access
+2 -2
pkgs/development/python-modules/pyvicare/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pyvicare"; 13 - version = "2.6"; 13 + version = "2.7"; 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "somm15"; 18 18 repo = "PyViCare"; 19 19 rev = version; 20 - sha256 = "sha256-qvP51HVIOcLDJKq8/hcJyXKsI2iUFwoPQQZvTKE28KU="; 20 + sha256 = "0hsmn3irixrgmd04pm0f89gn44fdn2nkcp92x7gc2kncwkval6hc"; 21 21 }; 22 22 23 23 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/rokuecp/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "rokuecp"; 14 - version = "0.8.1"; 14 + version = "0.8.2"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "ctalkington"; 18 18 repo = "python-rokuecp"; 19 19 rev = version; 20 - sha256 = "02mbmwljcvqj3ksj2irdm8849lcxzwa6fycgjqb0i75cgidxpans"; 20 + sha256 = "sha256-2FAnshIxaA52EwwwABBQ0sedAsz561YYxXDQo2Vcp1c="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/simplisafe-python/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "simplisafe-python"; 19 - version = "11.0.3"; 19 + version = "11.0.4"; 20 20 format = "pyproject"; 21 21 disabled = pythonOlder "3.7"; 22 22 ··· 24 24 owner = "bachya"; 25 25 repo = pname; 26 26 rev = version; 27 - sha256 = "17zld62q4qw2z2q7i5kkpnyc3immgc4xs009hp53jq4qc38w0jm5"; 27 + sha256 = "0ad0f3xghp77kg0vdns5m1lj796ysk9jrgl5k5h80imnnh9mz9b8"; 28 28 }; 29 29 30 30 nativeBuildInputs = [ poetry-core ];
+2 -2
pkgs/development/python-modules/slither-analyzer/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "slither-analyzer"; 17 - version = "0.8.0"; 17 + version = "0.8.1"; 18 18 disabled = pythonOlder "3.6"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - sha256 = "0b8a2e2145daefd9443ffa43639608203532e78a858af99c4c52c2b128ca681f"; 22 + sha256 = "sha256-5JgF53ip72bne8AlGf126FIIvXi+u7rovJmMSCcZjEQ="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/smart-meter-texas/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "smart-meter-texas"; 12 - version = "0.4.3"; 12 + version = "0.4.4"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 ··· 17 17 owner = "grahamwetzler"; 18 18 repo = "smart-meter-texas"; 19 19 rev = "v${version}"; 20 - sha256 = "09n03wbyjh1b1gsiibf17fg86x7k1i1r1kpp94p7w1lcdbmn8v5c"; 20 + sha256 = "sha256-jewibcsqWnl0OQ2oEEOSOcyyDCIGZiG4EZQfuFUbxK4="; 21 21 }; 22 22 23 23 postPatch = ''
+2 -2
pkgs/development/python-modules/spotipy/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "spotipy"; 9 - version = "2.18.0"; 9 + version = "2.19.0"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "sha256-9yk7gIaWgH6azsa9z/Y/fcw8wbFIwMS0KZ70PJZvcXc="; 13 + sha256 = "sha256-kE9ugT26g3dY6VEMG+5R18ohfxaSRmJaE+aTcz3DNUM="; 14 14 }; 15 15 16 16 propagatedBuildInputs = [ requests six ];
+37
pkgs/development/python-modules/subprocess-tee/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , setuptools-scm 5 + , pytestCheckHook 6 + , enrich 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "subprocess-tee"; 11 + version = "0.3.2"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + sha256 = "01b0z8mcm568v9carhi0py1hs34wrbnlzyvdmhqzipql407kdpk2"; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + setuptools-scm 20 + ]; 21 + 22 + checkInputs = [ 23 + pytestCheckHook 24 + enrich 25 + ]; 26 + 27 + pythonImportsCheck = [ 28 + "subprocess_tee" 29 + ]; 30 + 31 + meta = with lib; { 32 + homepage = "https://github.com/pycontribs/subprocess-tee"; 33 + description = "A subprocess.run drop-in replacement that supports a tee mode"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ putchar ]; 36 + }; 37 + }
+3
pkgs/development/python-modules/typer/default.nix
··· 44 44 homepage = "https://typer.tiangolo.com/"; 45 45 description = "Typer, build great CLIs. Easy to code. Based on Python type hints."; 46 46 license = licenses.mit; 47 + # is incompatible with click8 48 + # https://github.com/tiangolo/typer/issues/280 49 + broken = true; 47 50 maintainers = [ maintainers.winpat ]; 48 51 }; 49 52 }
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "zeroconf"; 13 - version = "0.35.0"; 13 + version = "0.36.0"; 14 14 format = "setuptools"; 15 15 disabled = pythonOlder "3.6"; 16 16 ··· 19 19 owner = "jstasiak"; 20 20 repo = "python-zeroconf"; 21 21 rev = version; 22 - sha256 = "sha256-6/y9O7YYs1J+qFa/6pcHKiktkWa4bdEqUItK8IZGXJo="; 22 + sha256 = "sha256-HeqsyAmqCUZ1htTv0tHywqYl3ZZBklTU37qaPV++vhU="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+18 -6
pkgs/development/tools/build-managers/arpa2cm/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake }: 1 + { lib, stdenv, fetchFromGitLab, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "arpa2cm"; 5 - version = "0.5"; 5 + version = "0.9.0"; 6 6 7 - src = fetchFromGitHub { 8 - sha256 = "093h7njj8d8iiwnw5byfxkkzlbny60fwv1w57j8f1lsd4yn6rih4"; 9 - rev = "version-${version}"; 7 + src = fetchFromGitLab { 8 + sha256 = "sha256-1z0fH8vZJiPkY/C654us9s2BULM1tlvvYcszNqk34yI="; 9 + rev = "v${version}"; 10 10 repo = pname; 11 11 owner = "arpa2"; 12 12 }; ··· 15 15 16 16 meta = with lib; { 17 17 description = "CMake Module library for the ARPA2 project"; 18 + longDescription = '' 19 + The CMake module library for the ARPA2 project, including the LillyDAP, 20 + TLSPool and IdentityHub software stacks. Like the KDE Extra CMake Modules (ECM) 21 + which is a large-ish collection of curated CMake modules of particular 22 + interest to Qt-based and KDE Frameworks-based applications, the ARPA2 23 + CMake Modules (ARPA2CM) is a collection of modules for the software 24 + stack from the ARPA2 project. This is largely oriented towards 25 + TLS, SSL, X509, DER and LDAP technologies. The ARPA2 CMake Modules 26 + also include modules used for product release and deployment of 27 + the ARPA2 software stack. 28 + ''; 29 + homepage = "https://gitlab.com/arpa2/arpa2cm"; 18 30 license = licenses.bsd2; 19 - maintainers = with maintainers; [ leenaars ]; 31 + maintainers = with maintainers; [ leenaars fufexan ]; 20 32 }; 21 33 }
pkgs/development/tools/ecpdap/default.nix pkgs/development/embedded/fpga/ecpdap/default.nix
pkgs/development/tools/icestorm/default.nix pkgs/development/embedded/fpga/icestorm/default.nix
pkgs/development/tools/lattice-diamond/default.nix pkgs/development/embedded/fpga/lattice-diamond/default.nix
pkgs/development/tools/misc/apio/default.nix pkgs/development/embedded/fpga/apio/default.nix
pkgs/development/tools/misc/avrdude/default.nix pkgs/development/embedded/avrdude/default.nix
pkgs/development/tools/misc/blackmagic/default.nix pkgs/development/embedded/blackmagic/default.nix
pkgs/development/tools/misc/blackmagic/helper.sh pkgs/development/embedded/blackmagic/helper.sh
pkgs/development/tools/misc/bossa/bin2c.c pkgs/development/embedded/bossa/bin2c.c
pkgs/development/tools/misc/bossa/bossa-no-applet-build.patch pkgs/development/embedded/bossa/bossa-no-applet-build.patch
pkgs/development/tools/misc/bossa/default.nix pkgs/development/embedded/bossa/default.nix
pkgs/development/tools/misc/cc-tool/default.nix pkgs/development/embedded/cc-tool/default.nix
pkgs/development/tools/misc/easypdkprog/default.nix pkgs/development/embedded/easypdkprog/default.nix
pkgs/development/tools/misc/fujprog/default.nix pkgs/development/embedded/fpga/fujprog/default.nix
pkgs/development/tools/misc/gputils/default.nix pkgs/development/embedded/gputils/default.nix
pkgs/development/tools/misc/openfpgaloader/default.nix pkgs/development/embedded/fpga/openfpgaloader/default.nix
pkgs/development/tools/misc/openocd/default.nix pkgs/development/embedded/openocd/default.nix
+27
pkgs/development/tools/misc/saleae-logic-2/default.nix
··· 1 + { lib, fetchurl, appimageTools }: 2 + let 3 + name = "saleae-logic-2"; 4 + version = "2.3.33"; 5 + src = fetchurl { 6 + url = "https://downloads.saleae.com/logic2/Logic-${version}-master.AppImage"; 7 + sha256 = "09vypl03gj58byk963flskzkhl4qrd9qw1kh0sywbqnzbzvj5cgm"; 8 + }; 9 + in 10 + appimageTools.wrapType2 { 11 + inherit name src; 12 + 13 + extraInstallCommands = 14 + let appimageContents = appimageTools.extractType2 { inherit name src; }; in 15 + '' 16 + mkdir -p $out/etc/udev/rules.d 17 + cp ${appimageContents}/resources/linux/99-SaleaeLogic.rules $out/etc/udev/rules.d/ 18 + ''; 19 + 20 + meta = with lib; { 21 + homepage = "https://www.saleae.com/"; 22 + description = "Software for Saleae logic analyzers"; 23 + license = licenses.unfree; 24 + platforms = [ "x86_64-linux" ]; 25 + maintainers = [ maintainers.j-hui ]; 26 + }; 27 + }
pkgs/development/tools/misc/stm32cubemx/default.nix pkgs/development/embedded/stm32/stm32cubemx/default.nix
pkgs/development/tools/misc/stm32flash/default.nix pkgs/development/embedded/stm32/stm32flash/default.nix
pkgs/development/tools/misc/teensy-loader-cli/default.nix pkgs/development/embedded/teensy-loader-cli/default.nix
pkgs/development/tools/misc/tinyprog/default.nix pkgs/development/embedded/fpga/tinyprog/default.nix
pkgs/development/tools/misc/uisp/default.nix pkgs/development/embedded/uisp/default.nix
pkgs/development/tools/misc/xc3sprog/default.nix pkgs/development/embedded/xc3sprog/default.nix
+2 -2
pkgs/development/tools/mustache-go/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "mustache-go"; 5 - version = "1.2.0"; 5 + version = "1.2.2"; 6 6 7 7 goPackagePath = "github.com/cbroglie/mustache"; 8 8 ··· 10 10 owner = "cbroglie"; 11 11 repo = "mustache"; 12 12 rev = "v${version}"; 13 - sha256 = "0mnh5zbpfwymddm1dppg9i9d1r8jqyg03z2gl6c5a8fgbrnxpjvc"; 13 + sha256 = "sha256-ziWfkRUHYYyo1FqVVXFFDlTsBbsn59Ur9YQi2ZnTSRg="; 14 14 }; 15 15 16 16 meta = with lib; {
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-comment.json
··· 1 1 { 2 2 "url": "https://github.com/stsewd/tree-sitter-comment", 3 - "rev": "894b61d68a31d93c33ed48dcc7f427174b440abe", 4 - "date": "2021-04-27T15:25:48-05:00", 5 - "path": "/nix/store/w0yz9imzi33glwk6ilm0jqipcyzl8hgm-tree-sitter-comment", 6 - "sha256": "1vfayzzcv6lj63pgcxr8f7rcd81jkgnfdlmhs39i7w3m0s6dv1qg", 3 + "rev": "8d480c0a86e3b95812252d29292b2686eb92418d", 4 + "date": "2021-08-13T15:03:50-05:00", 5 + "path": "/nix/store/4aqsac34f0pzpa889067dqci743axrmx-tree-sitter-comment", 6 + "sha256": "0fqhgvpd391nxrpyhxcp674h8qph280ax6rm6dz1pj3lqs3grdka", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-cpp.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-cpp", 3 - "rev": "c61212414a3e95b5f7507f98e83de1d638044adc", 4 - "date": "2021-03-27T10:08:51-07:00", 5 - "path": "/nix/store/a8cd3sv1j900sd8l7cdjw91iw7pp3jhv-tree-sitter-cpp", 6 - "sha256": "04nv9j03q20idk9pnm2lgw7rbwzy5jf9v0y6l102by68z4lv79fi", 3 + "rev": "53afc568b70e4b71ee799501f34c876ad511f56e", 4 + "date": "2021-08-13T10:48:59-05:00", 5 + "path": "/nix/store/6gj41lh1fnnmcrz4c1bk3ncw0kpm97nm-tree-sitter-cpp", 6 + "sha256": "02avniqmb5hgpkzwmkgxhrxk296dbkra9miyi5pax461ab4j7a9r", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-fish.json
··· 1 1 { 2 2 "url": "https://github.com/ram02z/tree-sitter-fish", 3 - "rev": "db7139393e50765520618fa469f41dfbb0b3822b", 4 - "date": "2021-07-06T21:05:19+02:00", 5 - "path": "/nix/store/k67b4bn67zd3dj9yg0q7jywy3vnkv8gw-tree-sitter-fish", 6 - "sha256": "09l5myivlq3z53nqlx8x8c45sww2k7vmjp8z0rvwzv08rnym0fah", 3 + "rev": "04e54ab6585dfd4fee6ddfe5849af56f101b6d4f", 4 + "date": "2021-08-02T21:46:56+01:00", 5 + "path": "/nix/store/0n3jfh7gk16bmikix34y5m534ac12xgc-tree-sitter-fish", 6 + "sha256": "1810z8ah1b09qpxcr4bh63bxsnxx24r6d2h46v2cpqv1lg0g4z14", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-haskell.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-haskell", 3 - "rev": "a0c1adb59e390f7d839a146c57fdb33d36ed97e6", 4 - "date": "2021-06-18T23:36:08+02:00", 5 - "path": "/nix/store/7rl3najf8rn8ndh31vcxjz5px3r1scky-tree-sitter-haskell", 6 - "sha256": "0a97w0qnj0fwy0yyg7hb9i1fyiwbyiz5mwx77aaw6md4jcsf4di8", 3 + "rev": "30eea3c1339e573cda5dcffd8f9b06003ec31789", 4 + "date": "2021-08-07T14:37:05+02:00", 5 + "path": "/nix/store/b99w2q2y5gjj5h1bxipncaf40dyx5sd2-tree-sitter-haskell", 6 + "sha256": "0cch7bcr4d9ll92vhcp79bjzs9dw0glvdrdj2q2h2mg5mmkzcya8", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-html.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-html", 3 - "rev": "d93af487cc75120c89257195e6be46c999c6ba18", 4 - "date": "2021-03-04T14:11:18-08:00", 5 - "path": "/nix/store/26yjfh6v17n4ajs9ln7x25sf1m3ijcjg-tree-sitter-html", 6 - "sha256": "1hg7vbcy7bir6b8x11v0a4x0glvqnsqc3i2ixiarbxmycbgl3axy", 3 + "rev": "af9339f3deb131ab99acfac906713b81dbcc41c9", 4 + "date": "2021-07-11T11:04:28-07:00", 5 + "path": "/nix/store/jg23pmi6jfy4kykah645gl44a145929c-tree-sitter-html", 6 + "sha256": "1qb4rfbra3nc0fwmla8q1hb4r48k8cv3nl60zc24xhrw3q1d9zh1", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-javascript.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-javascript", 3 - "rev": "6de6d604c243b68f90dce14130d536c694d90dcc", 4 - "date": "2021-06-29T15:54:12-07:00", 5 - "path": "/nix/store/mmz8s440zplg88c0mb0w3dlg94dzgxmf-tree-sitter-javascript", 6 - "sha256": "1bz8xhs7q4lp49q1id6dvz93l7vf0gxgngsbjk3x1nvw8rg171j6", 3 + "rev": "bc2eb3994fd7cc605d27a32f9fcbee80bbb57f6d", 4 + "date": "2021-08-13T14:29:43-07:00", 5 + "path": "/nix/store/jkq26hbij9si8ri8k5agkdadr3p1nmbi-tree-sitter-javascript", 6 + "sha256": "0f6bny38za17mmwqw0q0nmdb4f9i0xs7kbzixxgi44yyd43r5pzp", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-latex.json
··· 1 1 { 2 2 "url": "https://github.com/latex-lsp/tree-sitter-latex", 3 - "rev": "7f720661de5316c0f8fee956526d4002fa1086d8", 4 - "date": "2021-05-11T16:35:53+02:00", 5 - "path": "/nix/store/ssqxahrza89qmb97bxas6dvhbqd7w0dr-tree-sitter-latex", 6 - "sha256": "14jfmbv3czs643bggcsi3pyxhf81jirpvg8hxcbcdx1f3fzhs16m", 3 + "rev": "2c0d03a36ee979bc697f6a9dd119174cf0ef15e0", 4 + "date": "2021-07-19T17:50:34+02:00", 5 + "path": "/nix/store/vrpfbjfps3bd9vrx8760l0vx7m7ijhja-tree-sitter-latex", 6 + "sha256": "0dfpdv5sibvajf2grlc0mqhyggjf6ip9j01jikk58n1yc9va88ib", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-lua.json
··· 1 1 { 2 2 "url": "https://github.com/nvim-treesitter/tree-sitter-lua", 3 - "rev": "b6d4e9e10ccb7b3afb45018fbc391b4439306b23", 4 - "date": "2021-03-05T14:55:53+01:00", 5 - "path": "/nix/store/mlvnfmm5q67810qdim11qs4ivq54jrmr-tree-sitter-lua", 6 - "sha256": "17kf1m2qpflqv7xng6ls4v1qxfgdlpgxs4qjwb6rcc8nbcdsj4ms", 3 + "rev": "6f5d40190ec8a0aa8c8410699353d820f4f7d7a6", 4 + "date": "2021-08-02T15:13:28+02:00", 5 + "path": "/nix/store/h1bhl291jac001w2c8fxi9w7dsqxq5q0-tree-sitter-lua", 6 + "sha256": "05ash0l46s66q9yamzzh6ghk8yv0vas13c7dmz0c9xljbjk5ab1d", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-nix.json
··· 1 1 { 2 2 "url": "https://github.com/cstrahan/tree-sitter-nix", 3 - "rev": "50f38ceab667f9d482640edfee803d74f4edeba5", 4 - "date": "2021-04-27T17:21:51-05:00", 5 - "path": "/nix/store/fhf3mvxg17g0xli59cgmmwqy4g21fbzj-tree-sitter-nix", 6 - "sha256": "11gifb9b7x9v223hsrcb6wlkqpxbc4p5v4ny9aixzi9k8g0jhb3d", 3 + "rev": "83ee5993560bf15854c69b77d92e34456f8fb655", 4 + "date": "2021-07-21T20:36:40-05:00", 5 + "path": "/nix/store/n5pq9gba570874akpwpvs052d7vyalhh-tree-sitter-nix", 6 + "sha256": "03jhvyrsxq49smk9p2apjj839wmzjmrzy045wcxawz1g7xssp9pr", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-php.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-php", 3 - "rev": "5e89808d490d893799ebcf229130afe4cf2b0324", 4 - "date": "2021-06-22T09:23:44+02:00", 5 - "path": "/nix/store/5c1pn1p183czqb43a0va7whd4sz81jf1-tree-sitter-php", 6 - "sha256": "1mp5kv305a4rrgh7kklifqfg3680krfsd0h76sxn4i0wxyqfgczi", 3 + "rev": "63cebc37ebed42887f14cdd0baec961d5a1e16c1", 4 + "date": "2021-08-10T20:56:40+02:00", 5 + "path": "/nix/store/bh4yl563l5fgh7r8f95zzybsavci8hyh-tree-sitter-php", 6 + "sha256": "1psiamww22imw05z0h34yks7vh7y4x4bdn62dwic1gpwfbjdrfmr", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-scala.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-scala", 3 - "rev": "bfa2a81388019d47f6a0a6a6e9c96910dec830b4", 4 - "date": "2021-06-23T15:37:27-07:00", 5 - "path": "/nix/store/nc5cndwzc5pzq3x64wa51bff0rl36hc8-tree-sitter-scala", 6 - "sha256": "0x0lq78gjfsqi225mfvrpkl2jc6fbb378jgj04syxkm941lxc4bk", 3 + "rev": "ec38674996753f9631615fa558d4f1fa3bf90633", 4 + "date": "2021-08-08T14:43:30-07:00", 5 + "path": "/nix/store/2b0z1j06gvpcn1rvq8hv5vdqlh3qlzmv-tree-sitter-scala", 6 + "sha256": "1xv544wnyd075g5pc8lxi0ix6wrwiv82sdjhzf3wd1np42vxq3d4", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+4 -4
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-typescript.json
··· 1 1 { 2 2 "url": "https://github.com/tree-sitter/tree-sitter-typescript", 3 - "rev": "28e757a2f498486931b3cb13a100a1bcc9261456", 4 - "date": "2021-05-04T14:04:30-07:00", 5 - "path": "/nix/store/d90hgv5g374a6mrwhq9vcxk6d6lp2ags-tree-sitter-typescript", 6 - "sha256": "0dxy5h68hhypzq0z15q8iawjgw3kx7dlpw76zv6xkxh25idqgxqh", 3 + "rev": "d598c96714a2dc9e346589c63369aff6719a51e6", 4 + "date": "2021-08-02T14:05:14-07:00", 5 + "path": "/nix/store/hf714sspmakhzra9bqazhbb0iljva1hi-tree-sitter-typescript", 6 + "sha256": "0yra8fhgv7wqkik85icqyckf980v9ch411mqcjcf50n5dc1siaik", 7 7 "fetchSubmodules": false, 8 8 "deepClone": false, 9 9 "leaveDotGit": false
+1 -2
pkgs/development/tools/rnix-lsp/default.nix
··· 1 - { callPackage, lib, fetchFromGitHub, rustPlatform }: 1 + { lib, fetchFromGitHub, rustPlatform }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rnix-lsp"; ··· 8 8 owner = "nix-community"; 9 9 repo = "rnix-lsp"; 10 10 rev = "v${version}"; 11 - 12 11 sha256 = "0fy620c34kxl27sd62x9mj0555bcdmnmbsxavmyiwb497z1m9wnn"; 13 12 }; 14 13
pkgs/development/tools/rshell/default.nix pkgs/development/embedded/rshell/default.nix
+3 -3
pkgs/development/tools/rust/rust-analyzer/default.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "rust-analyzer-unwrapped"; 10 - version = "2021-08-09"; 11 - cargoSha256 = "sha256-r01riAztIlwxRjvqQXofmqv5875nqQ0Qb9KALvKy4u8="; 10 + version = "2021-08-16"; 11 + cargoSha256 = "sha256-nTO6NmY0pqVud7kpOltHBOkaLlwfIdCrchV0o93FeVk="; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "rust-analyzer"; 15 15 repo = "rust-analyzer"; 16 16 rev = version; 17 - sha256 = "sha256-l9F/cznYHxBdnb3NerIXzOMrzRnxdka0vExzUtKkBfw="; 17 + sha256 = "sha256-FD1AwRiSTbj10+ielHBRkDTC7wyBBSatAlzyEow5CNE="; 18 18 }; 19 19 20 20 buildAndTestSubdir = "crates/rust-analyzer";
+2 -4
pkgs/development/tools/rust/rust-analyzer/update.sh
··· 53 53 54 54 build_deps="../../../../misc/vscode-extensions/rust-analyzer/build-deps" 55 55 # We need devDependencies to build vsix. 56 - jq '{ name, version: $ver, dependencies: (.dependencies + .devDependencies) }' "$node_src/package.json" \ 56 + # `esbuild` is a binary package an is already in nixpkgs so we omit it here. 57 + jq '{ name, version: $ver, dependencies: (.dependencies + .devDependencies | del(.esbuild)) }' "$node_src/package.json" \ 57 58 --arg ver "$extension_ver" \ 58 59 >"$build_deps/package.json.new" 59 - 60 - # FIXME: rollup@2.55.0 breaks the build: https://github.com/rollup/rollup/issues/4195 61 - sed 's/"rollup": ".*"/"rollup": "=2.51.1"/' --in-place "$build_deps/package.json.new" 62 60 63 61 old_deps="$(jq '.dependencies' "$build_deps"/package.json)" 64 62 new_deps="$(jq '.dependencies' "$build_deps"/package.json.new)"
pkgs/development/tools/trellis/default.nix pkgs/development/embedded/fpga/trellis/default.nix
+2 -2
pkgs/development/tools/uftrace/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "uftrace"; 5 - version = "0.9.4"; 5 + version = "0.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "namhyung"; 9 9 repo = "uftrace"; 10 10 rev = "v${version}"; 11 - sha256 = "09zj4lgsbx0yp4i8ij9nh7wzylfcj421jzf1kkc2zpnn5hgynsb5"; 11 + sha256 = "sha256-T3HFhFKHsUcOOCXaA1NG3aDE0k5frnhqjCI8aV18EjQ="; 12 12 }; 13 13 14 14 postUnpack = ''
+33 -3
pkgs/games/ballerburg/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake, SDL }: 1 + { lib, stdenv, fetchurl, cmake, SDL, makeDesktopItem, copyDesktopItems 2 + , imagemagick }: 3 + 4 + let 2 5 3 - stdenv.mkDerivation rec { 6 + icon = fetchurl { 7 + url = "https://baller.tuxfamily.org/king.png"; 8 + sha256 = "1xq2h87s648wjpjl72ds3xnnk2jp8ghbkhjzh2g4hpkq2zdz90hy"; 9 + }; 10 + 11 + in stdenv.mkDerivation rec { 4 12 pname = "ballerburg"; 5 13 version = "1.2.0"; 6 14 ··· 9 17 sha256 = "sha256-BiX0shPBGA8sshee8rxs41x+mdsrJzBqhpDDic6sYwA="; 10 18 }; 11 19 12 - nativeBuildInputs = [ cmake ]; 20 + nativeBuildInputs = [ cmake copyDesktopItems imagemagick ]; 13 21 14 22 buildInputs = [ SDL ]; 23 + 24 + desktopItems = [ 25 + (makeDesktopItem { 26 + name = "Ballerburg"; 27 + desktopName = "Ballerburg SDL"; 28 + type = "Application"; 29 + exec = "_NET_WM_ICON=ballerburg ballerburg"; 30 + comment = meta.description; 31 + icon = "ballerburg"; 32 + categories = "Game;"; 33 + }) 34 + ]; 35 + 36 + postInstall = '' 37 + # Generate and install icon files 38 + for size in 16 32 48 64 72 96 128 192 512 1024; do 39 + mkdir -p $out/share/icons/hicolor/"$size"x"$size"/apps 40 + convert ${icon} -sample "$size"x"$size" \ 41 + -background white -gravity south -extent "$size"x"$size" \ 42 + $out/share/icons/hicolor/"$size"x"$size"/apps/ballerburg.png 43 + done 44 + ''; 15 45 16 46 meta = with lib; { 17 47 description = "Classic cannon combat game";
+16 -16
pkgs/games/factorio/versions.json
··· 10 10 "version": "1.1.37" 11 11 }, 12 12 "stable": { 13 - "name": "factorio_alpha_x64-1.1.36.tar.xz", 13 + "name": "factorio_alpha_x64-1.1.37.tar.xz", 14 14 "needsAuth": true, 15 - "sha256": "1x9a2lv6zbqawqlxg8bcbx04hjy0pq40macfa4sqi8w6h14wgww8", 15 + "sha256": "0aj8w38lx8bx3d894qxr416x515ijadrlcynvvqjaj1zx3acldzh", 16 16 "tarDirectory": "x64", 17 - "url": "https://factorio.com/get-download/1.1.36/alpha/linux64", 18 - "version": "1.1.36" 17 + "url": "https://factorio.com/get-download/1.1.37/alpha/linux64", 18 + "version": "1.1.37" 19 19 } 20 20 }, 21 21 "demo": { 22 22 "experimental": { 23 - "name": "factorio_demo_x64-1.1.35.tar.xz", 23 + "name": "factorio_demo_x64-1.1.37.tar.xz", 24 24 "needsAuth": false, 25 - "sha256": "0yqb4gf2avpxr4vwafws9pv74xyd9g84zggfikfc801ldc7sp29f", 25 + "sha256": "06qwx9wd3990d3256y9y5qsxa0936076jgwhinmrlvjp9lxwl4ly", 26 26 "tarDirectory": "x64", 27 - "url": "https://factorio.com/get-download/1.1.35/demo/linux64", 28 - "version": "1.1.35" 27 + "url": "https://factorio.com/get-download/1.1.37/demo/linux64", 28 + "version": "1.1.37" 29 29 }, 30 30 "stable": { 31 - "name": "factorio_demo_x64-1.1.36.tar.xz", 31 + "name": "factorio_demo_x64-1.1.37.tar.xz", 32 32 "needsAuth": false, 33 - "sha256": "15fl4pza7n107rrmmdm26kkc12fnrmpn6rjb4ampgzqzn1fq854s", 33 + "sha256": "06qwx9wd3990d3256y9y5qsxa0936076jgwhinmrlvjp9lxwl4ly", 34 34 "tarDirectory": "x64", 35 - "url": "https://factorio.com/get-download/1.1.36/demo/linux64", 36 - "version": "1.1.36" 35 + "url": "https://factorio.com/get-download/1.1.37/demo/linux64", 36 + "version": "1.1.37" 37 37 } 38 38 }, 39 39 "headless": { ··· 46 46 "version": "1.1.37" 47 47 }, 48 48 "stable": { 49 - "name": "factorio_headless_x64-1.1.36.tar.xz", 49 + "name": "factorio_headless_x64-1.1.37.tar.xz", 50 50 "needsAuth": false, 51 - "sha256": "1s8g030xp5nrlmnn21frrd8n4nd7jjmb5hbpj1vhxjrk6vpijh24", 51 + "sha256": "0hawwjdaxgbrkb80vn9jk6dn0286mq35zkgg5vvv5zhi339pqwwg", 52 52 "tarDirectory": "x64", 53 - "url": "https://factorio.com/get-download/1.1.36/headless/linux64", 54 - "version": "1.1.36" 53 + "url": "https://factorio.com/get-download/1.1.37/headless/linux64", 54 + "version": "1.1.37" 55 55 } 56 56 } 57 57 }
+3 -2
pkgs/misc/cups/drivers/brgenml1cupswrapper/default.nix
··· 52 52 */ 53 53 54 54 stdenv.mkDerivation rec { 55 + pname = "brgenml1cupswrapper"; 56 + version = "3.1.0-1"; 55 57 56 - name = "brgenml1cupswrapper-3.1.0-1"; 57 58 src = fetchurl { 58 - url = "https://download.brother.com/welcome/dlf101125/${name}.i386.deb"; 59 + url = "https://download.brother.com/welcome/dlf101125/brgenml1cupswrapper-${version}.i386.deb"; 59 60 sha256 = "0kd2a2waqr10kfv1s8is3nd5dlphw4d1343srdsbrlbbndja3s6r"; 60 61 }; 61 62
+3 -2
pkgs/misc/cups/drivers/brgenml1lpr/default.nix
··· 35 35 ''; 36 36 in 37 37 stdenv.mkDerivation rec { 38 + pname = "brgenml1lpr"; 39 + version = "3.1.0-1"; 38 40 39 - name = "brgenml1lpr-3.1.0-1"; 40 41 src = fetchurl { 41 - url = "https://download.brother.com/welcome/dlf101123/${name}.i386.deb"; 42 + url = "https://download.brother.com/welcome/dlf101123/brgenml1lpr-${version}.i386.deb"; 42 43 sha256 = "0zdvjnrjrz9sba0k525linxp55lr4cyivfhqbkq1c11br2nvy09f"; 43 44 }; 44 45
+22 -9
pkgs/misc/cups/drivers/canon/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip, autoreconfHook, libtool, makeWrapper, cups 2 - , ghostscript, pkgsi686Linux, zlib }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , unzip 5 + , autoconf 6 + , automake 7 + , libtool 8 + , makeWrapper 9 + , cups 10 + , ghostscript 11 + , pkgsi686Linux 12 + , zlib 13 + }: 3 14 4 15 let 5 16 6 - i686_NIX_GCC = pkgsi686Linux.callPackage ({gcc}: gcc) {}; 7 - i686_libxml2 = pkgsi686Linux.callPackage ({libxml2}: libxml2) {}; 17 + i686_NIX_GCC = pkgsi686Linux.callPackage ({ gcc }: gcc) { }; 18 + i686_libxml2 = pkgsi686Linux.callPackage ({ libxml2 }: libxml2) { }; 8 19 9 20 commonVer = "4.10"; 10 21 version = "3.70"; 11 22 dl = "8/0100007658/08"; 12 23 13 - versionNoDots = builtins.replaceStrings ["."] [""] version; 24 + versionNoDots = builtins.replaceStrings [ "." ] [ "" ] version; 14 25 src_canon = fetchurl { 15 26 url = "http://gdlp01.c-wss.com/gds/${dl}/linux-UFRII-drv-v${versionNoDots}-uken-05.tar.gz"; 16 27 sha256 = "0424lvyrsvsb94qga4p4ldis7f714c5yw5ydv3f84mdl2a7papg0"; ··· 24 35 inherit version; 25 36 src = src_canon; 26 37 27 - phases = [ "unpackPhase" "installPhase" ]; 28 - 29 38 postUnpack = '' 30 39 (cd $sourceRoot; tar -xzf Sources/cndrvcups-common-${commonVer}-1.tar.gz) 31 40 (cd $sourceRoot; tar -xzf Sources/cndrvcups-lb-${version}-1.tar.gz) 32 41 ''; 33 42 34 - nativeBuildInputs = [ makeWrapper unzip autoreconfHook libtool ]; 43 + nativeBuildInputs = [ makeWrapper unzip autoconf automake libtool ]; 35 44 36 45 buildInputs = [ cups zlib ]; 37 46 38 47 installPhase = '' 48 + runHook preInstall 49 + 39 50 ## 40 51 ## cndrvcups-common buildPhase 41 52 ## ··· 213 224 makeWrapper "${ghostscript}/bin/gs" "$out/bin/gs" \ 214 225 --prefix LD_LIBRARY_PATH ":" "$out/lib" \ 215 226 --prefix PATH ":" "$out/bin" 216 - ''; 227 + 228 + runHook postInstall 229 + ''; 217 230 218 231 meta = with lib; { 219 232 description = "CUPS Linux drivers for Canon printers";
+3 -2
pkgs/misc/cups/drivers/cups-bjnp/default.nix
··· 1 1 {lib, stdenv, fetchurl, cups}: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "cups-bjnp-1.2.2"; 4 + pname = "cups-bjnp"; 5 + version = "1.2.2"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/cups-bjnp/${name}.tar.gz"; 8 + url = "mirror://sourceforge/cups-bjnp/cups-bjnp-${version}.tar.gz"; 8 9 sha256 = "0sb0vm1sf8ismzd9ba33qswxmsirj2z1b7lnyrc9v5ixm7q0bnrm"; 9 10 }; 10 11
+5 -4
pkgs/misc/cups/drivers/splix/default.nix
··· 3 3 let 4 4 5 5 color-profiles = stdenv.mkDerivation { 6 - name = "splix-color-profiles-20070625"; 6 + pname = "splix-color-profiles"; 7 + version = "unstable-2007-06-25"; 7 8 8 9 src = fetchurl { 9 10 url = "http://splix.ap2c.org/samsung_cms.tar.bz2"; ··· 17 18 }; 18 19 19 20 in stdenv.mkDerivation rec { 20 - name = "splix-svn-${rev}"; 21 - rev = "315"; 21 + pname = "splix-svn"; 22 + version = "315"; 22 23 23 24 src = fetchsvn { 24 25 # We build this from svn, because splix hasn't been in released in several years 25 26 # although the community has been adding some new printer models. 26 27 url = "svn://svn.code.sf.net/p/splix/code/splix"; 27 - inherit rev; 28 + rev = version; 28 29 sha256 = "16wbm4xnz35ca3mw2iggf5f4jaxpyna718ia190ka6y4ah932jxl"; 29 30 }; 30 31
+6 -6
pkgs/misc/drivers/epson-workforce-635-nx625-series/default.nix
··· 9 9 driver = "epson-inkjet-printer-workforce-635-nx625-series-1.0.1"; 10 10 }; 11 11 in stdenv.mkDerivation rec { 12 - name = "epson-inkjet-printer-workforce-635-nx625-series"; 12 + pname = "epson-inkjet-printer-workforce-635-nx625-series"; 13 13 version = "1.0.1"; 14 14 15 15 src = fetchurl { 16 16 # NOTE: Don't forget to update the webarchive link too! 17 17 urls = [ 18 - "https://download.ebz.epson.net/dsc/op/stable/SRPMS/${name}-${version}-1lsb3.2.src.rpm" 19 - "https://web.archive.org/web/https://download.ebz.epson.net/dsc/op/stable/SRPMS/${name}-${version}-1lsb3.2.src.rpm" 18 + "https://download.ebz.epson.net/dsc/op/stable/SRPMS/${pname}-${version}-1lsb3.2.src.rpm" 19 + "https://web.archive.org/web/https://download.ebz.epson.net/dsc/op/stable/SRPMS/${pname}-${version}-1lsb3.2.src.rpm" 20 20 ]; 21 21 sha256 = "19nb2h0y9rvv6rg7j262f8sqap9kjvz8kmisxnjg1w0v19zb9zf2"; 22 22 }; ··· 40 40 let 41 41 filterdir = "$out/cups/lib/filter"; 42 42 docdir = "$out/share/doc"; 43 - ppddir = "$out/share/cups/model/${name}"; 43 + ppddir = "$out/share/cups/model/${pname}"; 44 44 libdir = 45 45 if stdenv.system == "x86_64-linux" then "lib64" 46 46 else if stdenv.system == "i686_linux" then "lib" ··· 51 51 52 52 cd ../${srcdirs.driver} 53 53 for ppd in ppds/*; do 54 - substituteInPlace "$ppd" --replace '/opt/${name}' "$out" 54 + substituteInPlace "$ppd" --replace '/opt/${pname}' "$out" 55 55 gzip -c "$ppd" > "${ppddir}/''${ppd#*/}" 56 56 done 57 57 cp COPYING.EPSON README "${docdir}" ··· 91 91 To use the driver adjust your configuration.nix file: 92 92 services.printing = { 93 93 enable = true; 94 - drivers = [ pkgs.${name} ]; 94 + drivers = [ pkgs.${pname} ]; 95 95 }; 96 96 ''; 97 97 downloadPage = "https://download.ebz.epson.net/dsc/du/02/DriverDownloadInfo.do?LG2=EN&CN2=&DSCMI=16857&DSCCHK=4334d3487503d7f916ccf5d58071b05b7687294f";
+3 -2
pkgs/misc/drivers/foomatic-filters/default.nix
··· 1 1 { lib, stdenv, fetchpatch, fetchurl, pkg-config, perl, cups, dbus, enscript }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "foomatic-filters-4.0.17"; 4 + pname = "foomatic-filters"; 5 + version = "4.0.17"; 5 6 6 7 src = fetchurl { 7 - url = "https://www.openprinting.org/download/foomatic/${name}.tar.gz"; 8 + url = "https://www.openprinting.org/download/foomatic/foomatic-filters-${version}.tar.gz"; 8 9 sha256 = "1qrkgbm5jay2r7sh9qbyf0aiyrsl1mdc844hxf7fhw95a0zfbqm2"; 9 10 }; 10 11
+3 -2
pkgs/misc/drivers/gutenprint/default.nix
··· 6 6 }: 7 7 8 8 stdenv.mkDerivation rec { 9 - name = "gutenprint-5.3.4"; 9 + pname = "gutenprint"; 10 + version = "5.3.4"; 10 11 11 12 src = fetchurl { 12 - url = "mirror://sourceforge/gimp-print/${name}.tar.bz2"; 13 + url = "mirror://sourceforge/gimp-print/gutenprint-${version}.tar.bz2"; 13 14 sha256 = "0s0b14hjwvbxksq7af5v8z9g2rfqv9jdmxd9d81m57f5mh6rad0p"; 14 15 }; 15 16
+2 -1
pkgs/misc/drivers/m33-linux/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "M33-Linux-2016-06-23"; 4 + pname = "M33-Linux"; 5 + version = "unstable-2016-06-23"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "donovan6000";
+4 -2
pkgs/misc/drivers/xwiimote/default.nix
··· 1 1 { lib, stdenv, udev, ncurses, pkg-config, fetchurl, bluez }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "xwiimote-2"; 4 + pname = "xwiimote"; 5 + version = "2"; 6 + 5 7 src = fetchurl { 6 - url = "https://github.com/dvdhrm/xwiimote/releases/download/${name}/${name}.tar.xz"; 8 + url = "https://github.com/dvdhrm/xwiimote/releases/download/xwiimote-${version}/xwiimote-${version}.tar.xz"; 7 9 sha256 = "1g9cbhblll47l300zr999xr51x2g98y49l222f77fhswd12kjzhd"; 8 10 }; 9 11
+4 -3
pkgs/misc/emulators/bsod/default.nix
··· 1 1 {lib, stdenv, fetchurl, ncurses}: 2 2 3 - stdenv.mkDerivation { 4 - name = "bsod-0.1"; 3 + stdenv.mkDerivation rec { 4 + pname = "bsod"; 5 + version = "0.1"; 5 6 6 7 src = fetchurl { 7 - url = "https://www.vanheusden.com/bsod/bsod-0.1.tgz"; 8 + url = "https://www.vanheusden.com/bsod/bsod-${version}.tgz"; 8 9 sha256 = "0hqwacazyq5rhc04j8w8w0j0dgb6ca8k66c9lxf6bsyi6wvbhvmd"; 9 10 }; 10 11
+3 -2
pkgs/misc/emulators/dosbox/default.nix
··· 1 1 { stdenv, lib, fetchurl, makeDesktopItem, SDL, SDL_net, SDL_sound, libGLU, libGL, libpng, graphicsmagick }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "dosbox-0.74-3"; 4 + pname = "dosbox"; 5 + version = "0.74-3"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/dosbox/${name}.tar.gz"; 8 + url = "mirror://sourceforge/dosbox/dosbox-${version}.tar.gz"; 8 9 sha256 = "02i648i50dwicv1vaql15rccv4g8h5blf5g6inv67lrfxpbkvlf0"; 9 10 }; 10 11
+5 -3
pkgs/misc/emulators/fakenes/default.nix
··· 1 1 {lib, stdenv, fetchurl, allegro, openal, libGLU, libGL, zlib, hawknl, freeglut, libX11, 2 2 libXxf86vm, libXcursor, libXpm }: 3 3 4 - stdenv.mkDerivation { 5 - name = "fakenes-0.5.9b3"; 4 + stdenv.mkDerivation rec { 5 + pname = "fakenes"; 6 + version = "0.5.9-beta3"; 7 + 6 8 src = fetchurl { 7 - url = "mirror://sourceforge/fakenes/fakenes-0.5.9-beta3.tar.gz"; 9 + url = "mirror://sourceforge/fakenes/fakenes-${version}.tar.gz"; 8 10 sha256 = "026h67s4pzc1vma59pmzk02iy379255qbai2q74wln9bxqcpniy4"; 9 11 }; 10 12
+4 -3
pkgs/misc/emulators/gens-gs/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, gtk2, SDL, nasm, zlib, libpng, libGLU, libGL }: 2 2 3 - stdenv.mkDerivation { 4 - name = "gens-gs-7"; 3 + stdenv.mkDerivation rec { 4 + pname = "gens-gs"; 5 + version = "7"; 5 6 6 7 src = fetchurl { 7 - url = "http://retrocdn.net/images/6/6d/Gens-gs-r7.tar.gz"; 8 + url = "http://retrocdn.net/images/6/6d/Gens-gs-r${version}.tar.gz"; 8 9 sha256 = "1ha5s6d3y7s9aq9f4zmn9p88109c3mrj36z2w68jhiw5xrxws833"; 9 10 }; 10 11
+3 -2
pkgs/misc/emulators/uae/default.nix
··· 1 1 {lib, stdenv, fetchurl, pkg-config, gtk2, alsa-lib, SDL}: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "uae-0.8.29"; 4 + pname = "uae"; 5 + version = "0.8.29"; 5 6 6 7 src = fetchurl { 7 - url = "http://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/${name}.tar.bz2"; 8 + url = "http://web.archive.org/web/20130905032631/http://www.amigaemulator.org/files/sources/develop/uae-${version}.tar.bz2"; 8 9 sha256 = "05s3cd1rd5a970s938qf4c2xm3l7f54g5iaqw56v8smk355m4qr4"; 9 10 }; 10 11
+3 -2
pkgs/misc/emulators/vice/default.nix
··· 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "vice-3.1"; 6 + pname = "vice"; 7 + version = "3.1"; 7 8 8 9 src = fetchurl { 9 - url = "mirror://sourceforge/vice-emu/vice-3.1.tar.gz"; 10 + url = "mirror://sourceforge/vice-emu/vice-${version}.tar.gz"; 10 11 sha256 = "0h0jbml02s2a36hr78dxv1zshmfhxp1wadpcdl09aq416fb1bf1y"; 11 12 }; 12 13
+5 -3
pkgs/misc/emulators/wxmupen64plus/default.nix
··· 1 1 { lib, stdenv, fetchurl, python, wxGTK29, mupen64plus, SDL, libX11, libGLU, libGL 2 2 , wafHook }: 3 3 4 - stdenv.mkDerivation { 5 - name = "wxmupen64plus-0.3"; 4 + stdenv.mkDerivation rec { 5 + pname = "wxmupen64plus"; 6 + version = "0.3"; 7 + 6 8 src = fetchurl { 7 - url = "https://bitbucket.org/auria/wxmupen64plus/get/0.3.tar.bz2"; 9 + url = "https://bitbucket.org/auria/wxmupen64plus/get/${version}.tar.bz2"; 8 10 sha256 = "1mnxi4k011dd300k35li2p6x4wccwi6im21qz8dkznnz397ps67c"; 9 11 }; 10 12
+2 -1
pkgs/misc/emulators/zsnes/default.nix
··· 13 13 }; 14 14 15 15 in stdenv.mkDerivation { 16 - name = "zsnes-1.51"; 16 + pname = "zsnes"; 17 + version = "1.51"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "emillon";
+3 -2
pkgs/misc/screensavers/slock/default.nix
··· 6 6 7 7 with lib; 8 8 stdenv.mkDerivation rec { 9 - name = "slock-1.4"; 9 + pname = "slock"; 10 + version = "1.4"; 10 11 11 12 src = fetchurl { 12 - url = "https://dl.suckless.org/tools/${name}.tar.gz"; 13 + url = "https://dl.suckless.org/tools/slock-${version}.tar.gz"; 13 14 sha256 = "0sif752303dg33f14k6pgwq2jp1hjyhqv6x4sy3sj281qvdljf5m"; 14 15 }; 15 16
+6 -5
pkgs/misc/screensavers/vlock/default.nix
··· 1 1 { lib, stdenv, fetchurl, pam }: 2 2 3 - stdenv.mkDerivation { 4 - name = "vlock-2.2.2"; 5 - src = fetchurl 6 - { 7 - url = "mirror://debian/pool/main/v/vlock/vlock_2.2.2.orig.tar.gz"; 3 + stdenv.mkDerivation rec { 4 + pname = "vlock"; 5 + version = "2.2.2"; 6 + 7 + src = fetchurl { 8 + url = "mirror://debian/pool/main/v/vlock/vlock_${version}.orig.tar.gz"; 8 9 sha256 = "1b9gv7hmlb8swda5bn40lp1yki8b8wv29vdnhcjqfl6ir98551za"; 9 10 }; 10 11
+3 -2
pkgs/misc/screensavers/xlockmore/default.nix
··· 2 2 , libXdmcp, libXt, autoreconfHook }: 3 3 4 4 stdenv.mkDerivation rec { 5 - name = "xlockmore-5.66"; 5 + pname = "xlockmore"; 6 + version = "5.66"; 6 7 7 8 src = fetchurl { 8 - url = "http://sillycycle.com/xlock/${name}.tar.xz"; 9 + url = "http://sillycycle.com/xlock/xlockmore-${version}.tar.xz"; 9 10 sha256 = "sha256-WXalw2YoKNFFIskOBvKN3PyOV3iP3gjri3pw6e87q3E="; 10 11 curlOpts = "--user-agent 'Mozilla/5.0'"; 11 12 };
+2 -1
pkgs/misc/screensavers/xss-lock/default.nix
··· 2 2 , libXau, libXdmcp, xcbutil }: 3 3 4 4 stdenv.mkDerivation { 5 - name = "xss-lock-git-2018-05-31"; 5 + pname = "xss-lock"; 6 + version = "unstable-2018-05-31"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "xdbob";
+2 -1
pkgs/misc/screensavers/xtrlock-pam/default.nix
··· 1 1 { lib, stdenv, fetchgit, python, pkg-config, xlibsWrapper, pam }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "xtrlock-pam-3.4-post-20150909"; 4 + pname = "xtrlock-pam"; 5 + version = "3.4-post-20150909"; 5 6 6 7 src = fetchgit { 7 8 url = "https://github.com/aanatoly/xtrlock-pam";
+3 -2
pkgs/misc/solfege/default.nix
··· 5 5 }: 6 6 7 7 buildPythonApplication rec { 8 - name = "solfege-3.23.4"; 8 + pname = "solfege"; 9 + version = "3.23.4"; 9 10 10 11 src = fetchurl { 11 - url = "mirror://sourceforge/solfege/${name}.tar.gz"; 12 + url = "mirror://sourceforge/solfege/solfege-${version}.tar.gz"; 12 13 sha256 = "0sc17vf4xz6gy0s0z9ghi68yskikdmyb4gdaxx6imrm40734k8mp"; 13 14 }; 14 15
+219 -75
pkgs/misc/vim-plugins/generated.nix
··· 233 233 234 234 auto-session = buildVimPluginFrom2Nix { 235 235 pname = "auto-session"; 236 - version = "2021-07-15"; 236 + version = "2021-08-16"; 237 237 src = fetchFromGitHub { 238 238 owner = "rmagatti"; 239 239 repo = "auto-session"; 240 - rev = "f5e5dda7587db72b074edbc3b573d52df639f9a5"; 241 - sha256 = "1ddr28v44llmfsdf2l3ybgwijhv49dddghdk396nk0sw883a3hs8"; 240 + rev = "acd1a7031e71ed053348c2cd4ef3408f4fdfbb19"; 241 + sha256 = "0vxk17p37a2fs9gm68wdlfqfyw8jzw3hp1yjg0n3b4yppl9j50r5"; 242 242 }; 243 243 meta.homepage = "https://github.com/rmagatti/auto-session/"; 244 244 }; ··· 257 257 258 258 awesome-vim-colorschemes = buildVimPluginFrom2Nix { 259 259 pname = "awesome-vim-colorschemes"; 260 - version = "2021-07-09"; 260 + version = "2021-08-15"; 261 261 src = fetchFromGitHub { 262 262 owner = "rafi"; 263 263 repo = "awesome-vim-colorschemes"; 264 - rev = "dbb29a451bb5441e860e70a35b925e43ab307e3f"; 265 - sha256 = "1qd9rfbq0b9jj38arv2mwyrlg7vfpia293lbyhxgn3ilsl85m63h"; 264 + rev = "facbd7269201b1766369be9abc8bfc183938a9ae"; 265 + sha256 = "11bdzds9qyr56sqwl2c7cy7gll32dd3fzy8bx1b0rg7ylwlyqllf"; 266 266 }; 267 267 meta.homepage = "https://github.com/rafi/awesome-vim-colorschemes/"; 268 268 }; ··· 281 281 282 282 barbar-nvim = buildVimPluginFrom2Nix { 283 283 pname = "barbar-nvim"; 284 - version = "2021-08-14"; 284 + version = "2021-08-16"; 285 285 src = fetchFromGitHub { 286 286 owner = "romgrk"; 287 287 repo = "barbar.nvim"; 288 - rev = "0c4c37eb3188230b11493adac68aac491c5e6a07"; 289 - sha256 = "0pc5rrzhcrp7p5wwid4ggdakp5y05ki0hkm04bflq0y4ib4haa4c"; 288 + rev = "7a19aac3d401c997a6fb7067a7756a4a77184c2e"; 289 + sha256 = "1jbbnd7s2kql44zv7xkv9hmyj0482yjnm57l8nl0kdf8b61zzi3s"; 290 290 }; 291 291 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 292 292 }; ··· 437 437 438 438 chadtree = buildVimPluginFrom2Nix { 439 439 pname = "chadtree"; 440 - version = "2021-08-15"; 440 + version = "2021-08-16"; 441 441 src = fetchFromGitHub { 442 442 owner = "ms-jpq"; 443 443 repo = "chadtree"; 444 - rev = "64c2f6151d9794b83af47a26717973625587d8ef"; 445 - sha256 = "1hysjkxd9g7lrwvsqw0c4ynnmshxijcbql4zl9mjww89fsz96i09"; 444 + rev = "80f2d03b1d7d8a5032689a17c9a234d464a67405"; 445 + sha256 = "0k5v490p22j3ghfb6c436z0i3fq18sj0y4x01axrl4iy1jpwn3v2"; 446 446 }; 447 447 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 448 448 }; ··· 519 519 meta.homepage = "https://github.com/bbchung/clighter8/"; 520 520 }; 521 521 522 + cmp-buffer = buildVimPluginFrom2Nix { 523 + pname = "cmp-buffer"; 524 + version = "2021-08-11"; 525 + src = fetchFromGitHub { 526 + owner = "hrsh7th"; 527 + repo = "cmp-buffer"; 528 + rev = "5742a1b18ebb4ffc21cd07a312bf8bacba4c81ae"; 529 + sha256 = "0nh53gqzbm500rvwc59hbl1sg12qzpk8za3z6rvsg04s6rqv479f"; 530 + }; 531 + meta.homepage = "https://github.com/hrsh7th/cmp-buffer/"; 532 + }; 533 + 534 + cmp-calc = buildVimPluginFrom2Nix { 535 + pname = "cmp-calc"; 536 + version = "2021-08-08"; 537 + src = fetchFromGitHub { 538 + owner = "hrsh7th"; 539 + repo = "cmp-calc"; 540 + rev = "bac4f988d14665a6a681df3646ff1baa2affc2da"; 541 + sha256 = "09g5pglbfzgnzl0lbn1fa27fh88a5pv2s2agmbw0gh4idnrvi66x"; 542 + }; 543 + meta.homepage = "https://github.com/hrsh7th/cmp-calc/"; 544 + }; 545 + 546 + cmp-emoji = buildVimPluginFrom2Nix { 547 + pname = "cmp-emoji"; 548 + version = "2021-08-09"; 549 + src = fetchFromGitHub { 550 + owner = "hrsh7th"; 551 + repo = "cmp-emoji"; 552 + rev = "a80d20b3461b802b3ff6f4cd60f7b99399fd7757"; 553 + sha256 = "0q70zbd4fw6x62zar7ph1dp6zwri6dqnyprl58p6w3k5n4xgpdrf"; 554 + }; 555 + meta.homepage = "https://github.com/hrsh7th/cmp-emoji/"; 556 + }; 557 + 558 + cmp-nvim-lsp = buildVimPluginFrom2Nix { 559 + pname = "cmp-nvim-lsp"; 560 + version = "2021-08-16"; 561 + src = fetchFromGitHub { 562 + owner = "hrsh7th"; 563 + repo = "cmp-nvim-lsp"; 564 + rev = "09e4ab0fb66ad07d64b311d1bd7916905bf3364b"; 565 + sha256 = "0573ywym8favv12g78qln4zx15j1ic26y8j2rbdlh8n22zll0v1x"; 566 + }; 567 + meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp/"; 568 + }; 569 + 570 + cmp-path = buildVimPluginFrom2Nix { 571 + pname = "cmp-path"; 572 + version = "2021-08-09"; 573 + src = fetchFromGitHub { 574 + owner = "hrsh7th"; 575 + repo = "cmp-path"; 576 + rev = "175a3854242f7dd43d706e2e0acc4f08ab1ed9ee"; 577 + sha256 = "1pimzhp5hh9gg7f37x4mklxxg44a7fnzli7mv46p73b3w97vkbl4"; 578 + }; 579 + meta.homepage = "https://github.com/hrsh7th/cmp-path/"; 580 + }; 581 + 582 + cmp-vsnip = buildVimPluginFrom2Nix { 583 + pname = "cmp-vsnip"; 584 + version = "2021-08-13"; 585 + src = fetchFromGitHub { 586 + owner = "hrsh7th"; 587 + repo = "cmp-vsnip"; 588 + rev = "1f7c99719adbb2258c697dc43c31729ab73a8d99"; 589 + sha256 = "1a252mzi5nzcml2g52g5nwlih40dh19yshns6dlk5gmfwa0mf3z6"; 590 + }; 591 + meta.homepage = "https://github.com/hrsh7th/cmp-vsnip/"; 592 + }; 593 + 594 + cmp_luasnip = buildVimPluginFrom2Nix { 595 + pname = "cmp_luasnip"; 596 + version = "2021-08-16"; 597 + src = fetchFromGitHub { 598 + owner = "saadparwaiz1"; 599 + repo = "cmp_luasnip"; 600 + rev = "1852a9e9e3a0e0ba0363e3be6c87f46982fba549"; 601 + sha256 = "1ji3ys0k0sw23yh4yk3pgb2ab895jfsjnsjrpy0idvmxclk20l0m"; 602 + }; 603 + meta.homepage = "https://github.com/saadparwaiz1/cmp_luasnip/"; 604 + }; 605 + 522 606 coc-clap = buildVimPluginFrom2Nix { 523 607 pname = "coc-clap"; 524 608 version = "2021-05-10"; ··· 593 677 594 678 coc-nvim = buildVimPluginFrom2Nix { 595 679 pname = "coc-nvim"; 596 - version = "2021-08-15"; 680 + version = "2021-08-16"; 597 681 src = fetchFromGitHub { 598 682 owner = "neoclide"; 599 683 repo = "coc.nvim"; 600 - rev = "9b224047e4596636cbc1e112d38d7b6bb48a2c15"; 601 - sha256 = "105dsskbxir7w5665dfs5m2dwn4l85jwvmwflkqfvgf75538hgsw"; 684 + rev = "1296df441756a5249319369640f208089a10efe4"; 685 + sha256 = "1p6gikl6fw6fvbb7f76mb88ckcw6vp4llzz601k0f6rrna4xhjab"; 602 686 }; 603 687 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 604 688 }; ··· 1919 2003 1920 2004 gitsigns-nvim = buildVimPluginFrom2Nix { 1921 2005 pname = "gitsigns-nvim"; 1922 - version = "2021-08-09"; 2006 + version = "2021-08-16"; 1923 2007 src = fetchFromGitHub { 1924 2008 owner = "lewis6991"; 1925 2009 repo = "gitsigns.nvim"; 1926 - rev = "083dc2f485571546144e287c38a96368ea2e79a1"; 1927 - sha256 = "0vrb900p2rc323axb93hc7jwcxg8455zwqsvxm9vkd2mcsdpn33w"; 2010 + rev = "7875d8c4d94f98f7a1a65b898499fa288e7969b3"; 2011 + sha256 = "13hzghpzglw6cr4hwsp7qvp6a7dkh2fk2sg4nzzazgmfych485cm"; 1928 2012 }; 1929 2013 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 1930 2014 }; ··· 2532 2616 2533 2617 LeaderF = buildVimPluginFrom2Nix { 2534 2618 pname = "LeaderF"; 2535 - version = "2021-08-13"; 2619 + version = "2021-08-16"; 2536 2620 src = fetchFromGitHub { 2537 2621 owner = "Yggdroot"; 2538 2622 repo = "LeaderF"; 2539 - rev = "e7d0b761fd9d4f2c326a4e421592b4c5ea51ae44"; 2540 - sha256 = "1zhq8wjpy4yx1mcyahscflfjm52hb7pfpxv51vmwlh2rp044b6j1"; 2623 + rev = "303f4a17f06b41c99210afaa6b21a7a16da533db"; 2624 + sha256 = "0rp1nc4hghn0i7ipbd6n0ja3zb5zv44pm9snfwlai2p5c8awi39z"; 2541 2625 }; 2542 2626 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 2543 2627 }; ··· 2676 2760 2677 2761 lightspeed-nvim = buildVimPluginFrom2Nix { 2678 2762 pname = "lightspeed-nvim"; 2679 - version = "2021-08-15"; 2763 + version = "2021-08-16"; 2680 2764 src = fetchFromGitHub { 2681 2765 owner = "ggandor"; 2682 2766 repo = "lightspeed.nvim"; 2683 - rev = "a4a53a40eae92d9974efc5aaa73a628ff767cf06"; 2684 - sha256 = "1080wrf19vvjjfjkcag27rncic38lzl19vp6jxgr8vi5jppmnfd6"; 2767 + rev = "d1084c0ac413d6ad1ed3ec290604e7e2fbe0aae1"; 2768 + sha256 = "1qjs3wj4svjvbangivpvg7j4swm50d7s0ll1qsg61s59jchp1gjq"; 2685 2769 }; 2686 2770 meta.homepage = "https://github.com/ggandor/lightspeed.nvim/"; 2687 2771 }; ··· 2696 2780 sha256 = "1qab2pd1pyfrw0llxd5j11imzqxa3lnnfhr1w2fjn3yanbsxvlvd"; 2697 2781 }; 2698 2782 meta.homepage = "https://github.com/junegunn/limelight.vim/"; 2783 + }; 2784 + 2785 + lir-nvim = buildVimPluginFrom2Nix { 2786 + pname = "lir-nvim"; 2787 + version = "2021-08-15"; 2788 + src = fetchFromGitHub { 2789 + owner = "tamago324"; 2790 + repo = "lir.nvim"; 2791 + rev = "2704b9374c541db9a1cb0da1f095d800cf1c5af3"; 2792 + sha256 = "1ixqq5jigm5fdbcgp611sjybvr8fyvfnm7z55g5nk9zk5gql4xma"; 2793 + }; 2794 + meta.homepage = "https://github.com/tamago324/lir.nvim/"; 2699 2795 }; 2700 2796 2701 2797 lispdocs-nvim = buildVimPluginFrom2Nix { ··· 2772 2868 2773 2869 lspkind-nvim = buildVimPluginFrom2Nix { 2774 2870 pname = "lspkind-nvim"; 2775 - version = "2021-08-03"; 2871 + version = "2021-08-15"; 2776 2872 src = fetchFromGitHub { 2777 2873 owner = "onsails"; 2778 2874 repo = "lspkind-nvim"; 2779 - rev = "7ffcfe88334d0887833c9d8ca6f1231a11612cb5"; 2780 - sha256 = "0i40z1a5h8rk4blwadcxpid10i264gbl7lhl16hjllyl77bbvvgs"; 2875 + rev = "6298b12a8cd833144997854d37eb6052aedc4bf4"; 2876 + sha256 = "169vksccl0qzc98pfn4wx2cihw0l8zl19qvfbs6rjxh9lcnbmijf"; 2781 2877 }; 2782 2878 meta.homepage = "https://github.com/onsails/lspkind-nvim/"; 2783 2879 }; ··· 2820 2916 2821 2917 luasnip = buildVimPluginFrom2Nix { 2822 2918 pname = "luasnip"; 2823 - version = "2021-08-14"; 2919 + version = "2021-08-15"; 2824 2920 src = fetchFromGitHub { 2825 2921 owner = "l3mon4d3"; 2826 2922 repo = "luasnip"; 2827 - rev = "453244a4d2f86033bbc93e88cd1bd22b2ff2c48b"; 2828 - sha256 = "0hz1vhg5ls0vpaa2hgcgkjb4qbc6diyzf9a64bfmx87llgyjn1s4"; 2923 + rev = "8cb1b905331463efd55b03de34a1ab519dcb5f04"; 2924 + sha256 = "1jn7p1lf0zxhbbnzsriznvlw20f97z0s51afhlj4cqihr1sv81z7"; 2829 2925 }; 2830 2926 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 2831 2927 }; ··· 3240 3336 3241 3337 neogit = buildVimPluginFrom2Nix { 3242 3338 pname = "neogit"; 3243 - version = "2021-08-03"; 3339 + version = "2021-08-16"; 3244 3340 src = fetchFromGitHub { 3245 3341 owner = "TimUntersberger"; 3246 3342 repo = "neogit"; 3247 - rev = "3226b98318518bef47f55218041adfdf99c36e9a"; 3248 - sha256 = "09r6k5afd940cf44gdb62ffnh0ns32qr20vxxqgsw3rdi5558wfc"; 3343 + rev = "16de1b46e993e0b1e749c2345584c79ba14d11c1"; 3344 + sha256 = "0171v70ywnzpgzaadrw344511l3z7q60wvm6y5892z9m8mnwlw58"; 3249 3345 }; 3250 3346 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 3251 3347 }; ··· 3516 3612 3517 3613 nord-nvim = buildVimPluginFrom2Nix { 3518 3614 pname = "nord-nvim"; 3519 - version = "2021-08-14"; 3615 + version = "2021-08-16"; 3520 3616 src = fetchFromGitHub { 3521 3617 owner = "shaunsingh"; 3522 3618 repo = "nord.nvim"; 3523 - rev = "296167d2625e478d90f711bc8c0f2be96533b311"; 3524 - sha256 = "0m4qza9rzl2n2zcnb1wkj6idm3v6hdm427cd7yjy2rdbxk2cszb6"; 3619 + rev = "4d1bef41e01fbdcb31a47d722e107b29a1f9f428"; 3620 + sha256 = "1v9d7dsmchmkzqqf92rzhscv4n0n75jm0hqkq49m11d62dc5aic9"; 3525 3621 }; 3526 3622 meta.homepage = "https://github.com/shaunsingh/nord.nvim/"; 3527 3623 }; ··· 3552 3648 3553 3649 null-ls-nvim = buildVimPluginFrom2Nix { 3554 3650 pname = "null-ls-nvim"; 3555 - version = "2021-08-15"; 3651 + version = "2021-08-16"; 3556 3652 src = fetchFromGitHub { 3557 3653 owner = "jose-elias-alvarez"; 3558 3654 repo = "null-ls.nvim"; 3559 - rev = "fcd3964ff7e28b7b441942ecf4f0c9d22d5b7bc9"; 3560 - sha256 = "0zkb5sfchqc91w6gacb3c43cm2n4wxjp1npzslrl4n1x4bsddz5l"; 3655 + rev = "4db2c4e2b59d16143bd8903c9bc73776b535be50"; 3656 + sha256 = "18dg3gdfwxhhz8snvw697r4nmc9aag3ylrzm7g84k67hpfir82r6"; 3561 3657 }; 3562 3658 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 3563 3659 }; ··· 3670 3766 meta.homepage = "https://github.com/roxma/nvim-cm-racer/"; 3671 3767 }; 3672 3768 3769 + nvim-cmp = buildVimPluginFrom2Nix { 3770 + pname = "nvim-cmp"; 3771 + version = "2021-08-16"; 3772 + src = fetchFromGitHub { 3773 + owner = "hrsh7th"; 3774 + repo = "nvim-cmp"; 3775 + rev = "29ad715924eb8fafa8cd042b1a9eb66b03db0d0d"; 3776 + sha256 = "0c8wy66743dwf04p3l3fphndr58g9crlg96x90xkx2kr2s64a9dd"; 3777 + }; 3778 + meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; 3779 + }; 3780 + 3673 3781 nvim-colorizer-lua = buildVimPluginFrom2Nix { 3674 3782 pname = "nvim-colorizer-lua"; 3675 3783 version = "2020-06-11"; ··· 3720 3828 3721 3829 nvim-dap-ui = buildVimPluginFrom2Nix { 3722 3830 pname = "nvim-dap-ui"; 3723 - version = "2021-08-03"; 3831 + version = "2021-08-15"; 3724 3832 src = fetchFromGitHub { 3725 3833 owner = "rcarriga"; 3726 3834 repo = "nvim-dap-ui"; 3727 - rev = "90a4025a4da7ac7a261026c50439bbd1bdfc8563"; 3728 - sha256 = "0apl84djyxy8ldcxv2xs0irgy7rjxcisqnl3wxcfi3fhvfsb0fz3"; 3835 + rev = "c9fc568ca157429cd76986ca2bfaa60488a7d2fb"; 3836 + sha256 = "09jk0v2ki0hsy1m2hg3dwi66yaqn670vnjbbrbdxrq55n260gds3"; 3729 3837 }; 3730 3838 meta.homepage = "https://github.com/rcarriga/nvim-dap-ui/"; 3731 3839 }; ··· 3828 3936 3829 3937 nvim-lspconfig = buildVimPluginFrom2Nix { 3830 3938 pname = "nvim-lspconfig"; 3831 - version = "2021-08-14"; 3939 + version = "2021-08-16"; 3832 3940 src = fetchFromGitHub { 3833 3941 owner = "neovim"; 3834 3942 repo = "nvim-lspconfig"; 3835 - rev = "cf0c25e372a6ee26f8a4254d6adb34021fec1a4c"; 3836 - sha256 = "1g678y71dmzmd7mfa26mj5blszq41shkbjdc87p1ydj1aq918s17"; 3943 + rev = "acb420880b83563c0ce83a3cea278cadfc7023e4"; 3944 + sha256 = "16bfn1qkbnicpkpisf5i4snra8glfg4rawvi52fpjqghxj9g1xz2"; 3837 3945 }; 3838 3946 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 3839 3947 }; ··· 3912 4020 3913 4021 nvim-toggleterm-lua = buildVimPluginFrom2Nix { 3914 4022 pname = "nvim-toggleterm-lua"; 3915 - version = "2021-08-06"; 4023 + version = "2021-08-15"; 3916 4024 src = fetchFromGitHub { 3917 4025 owner = "akinsho"; 3918 4026 repo = "nvim-toggleterm.lua"; 3919 - rev = "cdeb723ffe955ff0d3fdcbbe3776632da2b41513"; 3920 - sha256 = "1r67avqfqv7rzjg1whwacy0938nql0j0vxb6rwsc4ay19zv1nng9"; 4027 + rev = "775012662eb2070e44b294d43938fa2625a9c836"; 4028 + sha256 = "0q39ddq6yb1iscgp1mdgdyhz0cmb794ycbfd5ph3xp8ffly4z7hk"; 3921 4029 }; 3922 4030 meta.homepage = "https://github.com/akinsho/nvim-toggleterm.lua/"; 3923 4031 }; ··· 4333 4441 4334 4442 presence-nvim = buildVimPluginFrom2Nix { 4335 4443 pname = "presence-nvim"; 4336 - version = "2021-08-11"; 4444 + version = "2021-08-15"; 4337 4445 src = fetchFromGitHub { 4338 4446 owner = "andweeb"; 4339 4447 repo = "presence.nvim"; 4340 - rev = "e632306af10f28a662d53bafed85a8cf8b4f63b7"; 4341 - sha256 = "1sa8lc3xyb8sbmh0iwrh2r3j3rqnp5pjmi99h3i0ksm7yqcmkkk4"; 4448 + rev = "e7aac8fb011d76ba5d432eebee990e3631bbc71b"; 4449 + sha256 = "09450ms1jzb37i8d0p133zr3ffpngcyn88x69d873hxnd1kxm5hm"; 4342 4450 }; 4343 4451 meta.homepage = "https://github.com/andweeb/presence.nvim/"; 4344 4452 }; ··· 4523 4631 meta.homepage = "https://github.com/chrisbra/Recover.vim/"; 4524 4632 }; 4525 4633 4634 + refactoring-nvim = buildVimPluginFrom2Nix { 4635 + pname = "refactoring-nvim"; 4636 + version = "2021-08-16"; 4637 + src = fetchFromGitHub { 4638 + owner = "theprimeagen"; 4639 + repo = "refactoring.nvim"; 4640 + rev = "aabd4776d3fd756b76f9e264496e1ea81cab77c4"; 4641 + sha256 = "168hpn3nxjsy3a5h3lvzk6gbhcfnh7k7p0xhpjxi67x1f99dnx0s"; 4642 + }; 4643 + meta.homepage = "https://github.com/theprimeagen/refactoring.nvim/"; 4644 + }; 4645 + 4526 4646 registers-nvim = buildVimPluginFrom2Nix { 4527 4647 pname = "registers-nvim"; 4528 4648 version = "2021-08-11"; ··· 4621 4741 4622 4742 rust-tools-nvim = buildVimPluginFrom2Nix { 4623 4743 pname = "rust-tools-nvim"; 4624 - version = "2021-08-01"; 4744 + version = "2021-08-15"; 4625 4745 src = fetchFromGitHub { 4626 4746 owner = "simrat39"; 4627 4747 repo = "rust-tools.nvim"; 4628 - rev = "8ead43e5fb5cf94976f1a40319d8f5e74d204e68"; 4629 - sha256 = "02hvy6ffzyc0gf7bngp6pngyf5an18f63mzdpxc3ldnxrd5dimjj"; 4748 + rev = "c5f8e2d8e05eff2e3142f6808c675f5df087785f"; 4749 + sha256 = "1qx2rz5a37dw5q3dn6p02cjsdhkfaip9mwfzi2prrk7hjcf9ix5m"; 4630 4750 }; 4631 4751 meta.homepage = "https://github.com/simrat39/rust-tools.nvim/"; 4632 4752 }; ··· 4971 5091 4972 5092 sql-nvim = buildVimPluginFrom2Nix { 4973 5093 pname = "sql-nvim"; 4974 - version = "2021-08-12"; 5094 + version = "2021-08-16"; 4975 5095 src = fetchFromGitHub { 4976 5096 owner = "tami5"; 4977 5097 repo = "sql.nvim"; 4978 - rev = "957bae51700c7ec0da03ffd03f8f25b966c49ffe"; 4979 - sha256 = "1v120mr4s012gx95fr99kplv0ggypkjy5br3mzx86k4nmz1djwiv"; 5098 + rev = "cc7b7cc76427eb321955278587b84e84c0af246e"; 5099 + sha256 = "0i2j3s6n9zmpn8jc5waxl3biqca23f5cbiapgr9gwgqj22f1xzd2"; 4980 5100 }; 4981 5101 meta.homepage = "https://github.com/tami5/sql.nvim/"; 4982 5102 }; ··· 6186 6306 6187 6307 vim-clap = buildVimPluginFrom2Nix { 6188 6308 pname = "vim-clap"; 6189 - version = "2021-08-15"; 6309 + version = "2021-08-16"; 6190 6310 src = fetchFromGitHub { 6191 6311 owner = "liuchengxu"; 6192 6312 repo = "vim-clap"; 6193 - rev = "7307a7bdae675d131d1e4ada2ea3dd84d2ffc303"; 6194 - sha256 = "0nqv1mqzizwx27jr8jmqqbb2a0dpyvlgpgbmv2fqk6gfqi44hkj8"; 6313 + rev = "4a7e9bad08ccfebcf294ea0091d74ee64d98d236"; 6314 + sha256 = "0b5ldixvf2f3bk7ivzb3s7zb8s4ir7gayli1i6bdq753flkjq0bx"; 6195 6315 }; 6196 6316 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 6197 6317 }; ··· 7905 8025 7906 8026 vim-matchup = buildVimPluginFrom2Nix { 7907 8027 pname = "vim-matchup"; 7908 - version = "2021-08-10"; 8028 + version = "2021-08-15"; 7909 8029 src = fetchFromGitHub { 7910 8030 owner = "andymass"; 7911 8031 repo = "vim-matchup"; 7912 - rev = "816751e279f1186d10520bad752206d5f91ce173"; 7913 - sha256 = "1z7gf14ifcza08yp0skdp1zad918fxpmws2p6b4zavmv4c6945ky"; 8032 + rev = "96738bdb81c493a4313b4bc5586ad540bd4ba6ce"; 8033 + sha256 = "0nan8crcsixwxmjj1xdbiizr50882102idd1ylynv7ihbf7hgmv8"; 7914 8034 }; 7915 8035 meta.homepage = "https://github.com/andymass/vim-matchup/"; 7916 8036 }; ··· 8253 8373 8254 8374 vim-oscyank = buildVimPluginFrom2Nix { 8255 8375 pname = "vim-oscyank"; 8256 - version = "2021-08-09"; 8376 + version = "2021-08-16"; 8257 8377 src = fetchFromGitHub { 8258 8378 owner = "ojroques"; 8259 8379 repo = "vim-oscyank"; 8260 - rev = "1189ef91c95f522159f9fd267a6bd1ea4b070195"; 8261 - sha256 = "12smb5p5lw3gakz6qbbdi11wcbyh8hap70csi8j0crr31fgjmsyf"; 8380 + rev = "bc49a0c2b5ded3f13445e47aa3cf8d3a0f972926"; 8381 + sha256 = "0l5gaf94p91xck6wn3a55dybd1d820dpq31v3sy3i2bxwfw0g8zd"; 8262 8382 }; 8263 8383 meta.homepage = "https://github.com/ojroques/vim-oscyank/"; 8264 8384 }; ··· 8683 8803 meta.homepage = "https://github.com/tpope/vim-repeat/"; 8684 8804 }; 8685 8805 8806 + vim-ReplaceWithRegister = buildVimPluginFrom2Nix { 8807 + pname = "vim-ReplaceWithRegister"; 8808 + version = "2021-07-05"; 8809 + src = fetchFromGitHub { 8810 + owner = "inkarkat"; 8811 + repo = "vim-ReplaceWithRegister"; 8812 + rev = "aad1e8fa31cb4722f20fe40679caa56e25120032"; 8813 + sha256 = "1cfgixq5smwbp55x2baaj1kw736w2mykysppphair44vb4w9rlgm"; 8814 + }; 8815 + meta.homepage = "https://github.com/inkarkat/vim-ReplaceWithRegister/"; 8816 + }; 8817 + 8818 + vim-ReplaceWithSameIndentRegister = buildVimPluginFrom2Nix { 8819 + pname = "vim-ReplaceWithSameIndentRegister"; 8820 + version = "2020-06-17"; 8821 + src = fetchFromGitHub { 8822 + owner = "inkarkat"; 8823 + repo = "vim-ReplaceWithSameIndentRegister"; 8824 + rev = "0b7f542560bd21822a004e8accdf472eb477c9cf"; 8825 + sha256 = "04zvhqh9rjfiwfk8r0zci608pw09svqb42nvp8pvqb11xp2ydg2y"; 8826 + }; 8827 + meta.homepage = "https://github.com/inkarkat/vim-ReplaceWithSameIndentRegister/"; 8828 + }; 8829 + 8686 8830 vim-rhubarb = buildVimPluginFrom2Nix { 8687 8831 pname = "vim-rhubarb"; 8688 8832 version = "2021-07-16"; ··· 9490 9634 9491 9635 vim-unimpaired = buildVimPluginFrom2Nix { 9492 9636 pname = "vim-unimpaired"; 9493 - version = "2021-08-01"; 9637 + version = "2021-08-15"; 9494 9638 src = fetchFromGitHub { 9495 9639 owner = "tpope"; 9496 9640 repo = "vim-unimpaired"; 9497 - rev = "ee21252c035004efd6fea40335cd311e71cf7a33"; 9498 - sha256 = "1grl78f5nhdryg1w0xh9j6fs1xd3j6dcv92vcvl9rp87ixgnmbag"; 9641 + rev = "aee3455e19686ce84225752de678a9725866248b"; 9642 + sha256 = "0j6xz4m8p351dmvhssi0f699609wpm5nz5q9xysy15vpwxds3nl9"; 9499 9643 }; 9500 9644 meta.homepage = "https://github.com/tpope/vim-unimpaired/"; 9501 9645 }; ··· 9899 10043 9900 10044 vimtex = buildVimPluginFrom2Nix { 9901 10045 pname = "vimtex"; 9902 - version = "2021-08-15"; 10046 + version = "2021-08-16"; 9903 10047 src = fetchFromGitHub { 9904 10048 owner = "lervag"; 9905 10049 repo = "vimtex"; 9906 - rev = "539742fdd56d13ada0aa3e9b0ab8690ca49b853f"; 9907 - sha256 = "03q6c2mb7gkhfzw6bjl77jsxffr3kb0vcj9ky80c6wmpi3vzmb1k"; 10050 + rev = "cb71390373e793875efd3609e0ad800d816ff4af"; 10051 + sha256 = "0l9yklk0pd7kgy39b09rirwpqbryy148ch9vffq3isyhdk6b3v10"; 9908 10052 }; 9909 10053 meta.homepage = "https://github.com/lervag/vimtex/"; 9910 10054 }; ··· 10019 10163 10020 10164 wilder-nvim = buildVimPluginFrom2Nix { 10021 10165 pname = "wilder-nvim"; 10022 - version = "2021-08-14"; 10166 + version = "2021-08-16"; 10023 10167 src = fetchFromGitHub { 10024 10168 owner = "gelguy"; 10025 10169 repo = "wilder.nvim"; 10026 - rev = "fda3866f6b61961fbcd723ed83a61af29e272a3c"; 10027 - sha256 = "0cfv0x6sg2rap82p22kpkn8q8jdv6ixnk2dizgk3nqpdhq235h48"; 10170 + rev = "f70f292f9e680b3645c8e24ebee524264a9e75e2"; 10171 + sha256 = "1a45s282b85hjffdzd2375wv6c70dlli7l0wpcsq56ab4pyxamqz"; 10028 10172 }; 10029 10173 meta.homepage = "https://github.com/gelguy/wilder.nvim/"; 10030 10174 };
+9 -1
pkgs/misc/vim-plugins/overrides.nix
··· 379 379 dependencies = with self; [ vim-floaterm ]; 380 380 }); 381 381 382 + lir-nvim = super.lir-nvim.overrideAttrs (old: { 383 + dependencies = with self; [ plenary-nvim ]; 384 + }); 385 + 382 386 meson = buildVimPluginFrom2Nix { 383 387 inherit (meson) pname version src; 384 388 preInstall = "cd data/syntax-highlighting/vim"; ··· 455 459 456 460 onehalf = super.onehalf.overrideAttrs (old: { 457 461 configurePhase = "cd vim"; 462 + }); 463 + 464 + refactoring-nvim = super.refactoring-nvim.overrideAttrs (old: { 465 + dependencies = with self; [ nvim-treesitter plenary-nvim ]; 458 466 }); 459 467 460 468 skim = buildVimPluginFrom2Nix { ··· 663 671 libiconv 664 672 ]; 665 673 666 - cargoSha256 = "sha256-wYxUo9zfflU7RTsTb7W9wc/WBsXhz3OLjC8CwUkRRiE="; 674 + cargoSha256 = "16lcsi5mxmj79ky5lbpivravn8rjl4z3j3fsxrglb22ab4i7js3n"; 667 675 }; 668 676 in 669 677 ''
+12
pkgs/misc/vim-plugins/vim-plugin-names
··· 213 213 honza/vim-snippets 214 214 hoob3rt/lualine.nvim 215 215 hotwatermorning/auto-git-diff 216 + hrsh7th/cmp-buffer@main 217 + hrsh7th/cmp-calc@main 218 + hrsh7th/cmp-emoji@main 219 + hrsh7th/cmp-nvim-lsp@main 220 + hrsh7th/cmp-path@main 221 + hrsh7th/cmp-vsnip@main 222 + hrsh7th/nvim-cmp@main 216 223 hrsh7th/nvim-compe 217 224 hrsh7th/vim-vsnip 218 225 hrsh7th/vim-vsnip-integ ··· 224 231 idanarye/vim-merginal 225 232 idris-hackers/idris-vim 226 233 Inazuma110/deoplete-greek 234 + inkarkat/vim-ReplaceWithRegister 235 + inkarkat/vim-ReplaceWithSameIndentRegister 227 236 inkarkat/vim-SyntaxRange 228 237 int3/vim-extradite 229 238 Iron-E/nvim-highlite ··· 605 614 rust-lang/rust.vim 606 615 ryanoasis/vim-devicons 607 616 ryvnf/readline.vim 617 + saadparwaiz1/cmp_luasnip 608 618 sainnhe/edge 609 619 sainnhe/gruvbox-material 610 620 sainnhe/sonokai ··· 669 679 TaDaa/vimade 670 680 takac/vim-hardtime 671 681 tamago324/compe-zsh 682 + tamago324/lir.nvim 672 683 tami5/compe-conjure 673 684 tami5/lispdocs.nvim 674 685 tami5/sql.nvim ··· 681 692 Th3Whit3Wolf/one-nvim@main 682 693 theHamsta/nvim-dap-virtual-text 683 694 ThePrimeagen/git-worktree.nvim 695 + theprimeagen/refactoring.nvim 684 696 ThePrimeagen/vim-apm 685 697 thinca/vim-ft-diff_fold 686 698 thinca/vim-prettyprint
+3 -4
pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
··· 1 1 { 2 2 "name": "rust-analyzer", 3 - "version": "0.2.702", 3 + "version": "0.2.710", 4 4 "dependencies": { 5 5 "https-proxy-agent": "^5.0.0", 6 6 "node-fetch": "^2.6.1", 7 7 "vscode-languageclient": "^7.1.0-next.5", 8 - "@rollup/plugin-commonjs": "^17.0.0", 9 - "@rollup/plugin-node-resolve": "^13.0.0", 8 + "d3": "^7.0.0", 9 + "d3-graphviz": "^4.0.0", 10 10 "@types/glob": "^7.1.4", 11 11 "@types/mocha": "^8.2.3", 12 12 "@types/node": "~14.17.5", ··· 17 17 "eslint": "^7.30.0", 18 18 "glob": "^7.1.6", 19 19 "mocha": "^9.0.2", 20 - "rollup": "=2.51.1", 21 20 "tslib": "^2.3.0", 22 21 "typescript": "^4.3.5", 23 22 "typescript-formatter": "^7.2.2",
+3 -2
pkgs/misc/vscode-extensions/rust-analyzer/default.nix
··· 4 4 , jq 5 5 , rust-analyzer 6 6 , nodePackages 7 + , moreutils 8 + , esbuild 7 9 , setDefaultServerPath ? true 8 - , moreutils 9 10 }: 10 11 11 12 let ··· 21 22 22 23 releaseTag = rust-analyzer.version; 23 24 24 - nativeBuildInputs = [ jq moreutils ]; 25 + nativeBuildInputs = [ jq moreutils esbuild ]; 25 26 26 27 # Follows https://github.com/rust-analyzer/rust-analyzer/blob/41949748a6123fd6061eb984a47f4fe780525e63/xtask/src/dist.rs#L39-L65 27 28 postInstall = ''
+2 -2
pkgs/os-specific/darwin/binutils/default.nix
··· 56 56 # and using clang directly here is a better option than relying on cctools. 57 57 # On x86_64-darwin the Clang version is too old to support this mode. 58 58 + lib.optionalString stdenv.isAarch64 '' 59 - rm $out/bin/as 60 - makeWrapper "${clang-unwrapped}/bin/clang" "$out/bin/as" \ 59 + rm $out/bin/${targetPrefix}as 60 + makeWrapper "${clang-unwrapped}/bin/clang" "$out/bin/${targetPrefix}as" \ 61 61 --add-flags "-x assembler -integrated-as -c" 62 62 ''; 63 63
+15 -8
pkgs/os-specific/linux/firmware/intel2200BGFirmware/default.nix
··· 1 - { lib, fetchzip }: 1 + { stdenv 2 + , lib 3 + , fetchurl }: 2 4 3 - let version = "3.1"; in 5 + stdenv.mkDerivation rec { 6 + pname = "intel2200BGFirmware"; 7 + version = "3.1"; 8 + 9 + src = fetchurl { 10 + url = "https://src.fedoraproject.org/repo/pkgs/ipw2200-firmware/ipw2200-fw-${version}.tgz/eaba788643c7cc7483dd67ace70f6e99/ipw2200-fw-${version}.tgz"; 11 + hash = "sha256-xoGMEcGMwDDVX/g/ZLK62P7vSF53QvhPlKYdgRpiWL0="; 12 + }; 4 13 5 - fetchzip { 6 - name = "intel2200BGFirmware-${version}"; 7 - url = "https://src.fedoraproject.org/repo/pkgs/ipw2200-firmware/ipw2200-fw-${version}.tgz/eaba788643c7cc7483dd67ace70f6e99/ipw2200-fw-${version}.tgz"; 8 - sha256 = "0zjyjndyc401pn5x5lgypxdal21n82ymi3vbb2ja1b89yszj432b"; 14 + installPhase = '' 15 + runHook preInstall 9 16 10 - postFetch = '' 11 - tar -xzvf $downloadedFile --strip-components=1 12 17 install -D -m644 ipw2200-bss.fw $out/lib/firmware/ipw2200-bss.fw 13 18 install -D -m644 ipw2200-ibss.fw $out/lib/firmware/ipw2200-ibss.fw 14 19 install -D -m644 ipw2200-sniffer.fw $out/lib/firmware/ipw2200-sniffer.fw 15 20 install -D -m644 LICENSE.ipw2200-fw $out/share/doc/intel2200BGFirmware/LICENSE 21 + 22 + runHook postInstall 16 23 ''; 17 24 18 25 meta = with lib; {
+1 -1
pkgs/os-specific/linux/kernel/hardened/config.nix
··· 88 88 INET_MPTCP_DIAG = option no; 89 89 90 90 # Use -fstack-protector-strong (gcc 4.9+) for best stack canary coverage. 91 - CC_STACKPROTECTOR_REGULAR = whenOlder "4.18" no; 91 + CC_STACKPROTECTOR_REGULAR = lib.mkForce (whenOlder "4.18" no); 92 92 CC_STACKPROTECTOR_STRONG = whenOlder "4.18" yes; 93 93 94 94 # Detect out-of-bound reads/writes and use-after-free
-6
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 17 17 "sha256": "0zqv77k0i4q5w4qhgiknvrh4fav1jc4a2i9cdracwqlrk8fgmiih", 18 18 "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.57-hardened1/linux-hardened-5.10.57-hardened1.patch" 19 19 }, 20 - "5.12": { 21 - "extra": "-hardened1", 22 - "name": "linux-hardened-5.12.19-hardened1.patch", 23 - "sha256": "1nr3922gd6il69k5cpp9g3knpy6yjb6jsmpi9k4v02bkvypg86dc", 24 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.12.19-hardened1/linux-hardened-5.12.19-hardened1.patch" 25 - }, 26 20 "5.4": { 27 21 "extra": "-hardened1", 28 22 "name": "linux-hardened-5.4.139-hardened1.patch",
-20
pkgs/os-specific/linux/kernel/linux-5.12.nix
··· 1 - { lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args: 2 - 3 - with lib; 4 - 5 - buildLinux (args // rec { 6 - version = "5.12.19"; 7 - 8 - # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 - modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; 10 - 11 - # branchVersion needs to be x.y 12 - extraMeta.branch = versions.majorMinor version; 13 - 14 - src = fetchurl { 15 - url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0wscz736n13m833cd12lskn47r0b8ki4fhgpjnwga0jsab9iqf79"; 17 - }; 18 - 19 - kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_12 ]; 20 - } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-xanmod.nix
··· 1 1 { lib, stdenv, buildLinux, fetchFromGitHub, ... } @ args: 2 2 3 3 let 4 - version = "5.13.10"; 4 + version = "5.13.11"; 5 5 release = "1"; 6 6 suffix = "xanmod${release}-cacule"; 7 7 in ··· 13 13 owner = "xanmod"; 14 14 repo = "linux"; 15 15 rev = modDirVersion; 16 - sha256 = "sha256-f7Re9Nt6f9wqdfUgtHAvnGtSEBv6ULRAXYgQXa8RvDM="; 16 + sha256 = "sha256-55BRj0JNQKwmSvlquNHr6ZaI7x/sBYzfZPHIblxK4lY="; 17 17 }; 18 18 19 19 structuredExtraConfig = with lib.kernel; {
+9 -3
pkgs/os-specific/linux/v4l2loopback/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "v4l2loopback"; 5 - version = "unstable-2020-04-22-${kernel.version}"; 5 + version = "unstable-2021-07-13-${kernel.version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "umlaeute"; 9 9 repo = "v4l2loopback"; 10 - rev = "d26e624b4ead762d34152f9f825b3a51fb92fb9c"; 11 - sha256 = "sha256-OA45vmuVieoL7J83D3TD5qi3SBsiqi0kiQn4i1K6dVE="; 10 + rev = "baf9de279afc7a7c7513e9c40a0c9ff88f456af4"; 11 + sha256 = "sha256-uglYTeqz81fgkKYYU9Cw8x9+S088jGxDEGkb3rmkhrw=="; 12 12 }; 13 13 14 14 hardeningDisable = [ "format" "pic" ]; ··· 22 22 nativeBuildInputs = kernel.moduleBuildDependencies; 23 23 24 24 buildInputs = [ kmod ]; 25 + 26 + postInstall = '' 27 + make install-utils PREFIX=$bin 28 + ''; 29 + 30 + outputs = [ "out" "bin" ]; 25 31 26 32 makeFlags = [ 27 33 "KERNELRELEASE=${kernel.modDirVersion}"
+2 -2
pkgs/servers/dns/nsd/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "nsd"; 19 - version = "4.3.5"; 19 + version = "4.3.7"; 20 20 21 21 src = fetchurl { 22 22 url = "https://www.nlnetlabs.nl/downloads/${pname}/${pname}-${version}.tar.gz"; 23 - sha256 = "sha256-faK0PjCz1/MHcixgj3Gb+xafDZhcdko0+gZp3DNIRHI="; 23 + sha256 = "sha256-/TuexTu9Fo1Wegv83xQMlmUR/a94vVOdCRwaE8E76K0="; 24 24 }; 25 25 26 26 prePatch = ''
+3 -3
pkgs/servers/headscale/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "headscale"; 5 - version = "0.6.0"; 5 + version = "0.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "juanfont"; 9 9 repo = "headscale"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-RZwuoA9z+UnjQlqDqHMSaSKIuKu/qGBh5VBNrzeuac0="; 11 + sha256 = "sha256-pzsbCxJ3N30XpjF//02SV6URhA6f6Wz8a6HvGxsK7M4="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-EnTp4KgFyNGCLK5p1mE0yJLdFrhsLsmsSGJnDyWUVKo="; 14 + vendorSha256 = "sha256-ususDOF/LznhK4EInHE7J/ItMjziGfP9Gn8/Q5wd78g="; 15 15 16 16 # Ldflags are same as build target in the project's Makefile 17 17 # https://github.com/juanfont/headscale/blob/main/Makefile
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2021.8.6"; 5 + version = "2021.8.7"; 6 6 components = { 7 7 "abode" = ps: with ps; [ abodepy ]; 8 8 "accuweather" = ps: with ps; [ accuweather ];
+15 -2
pkgs/servers/home-assistant/default.nix
··· 88 88 }); 89 89 }) 90 90 91 + # Pinned due to changes in total-connect-client>0.58 which made the tests fails at the moment 92 + (self: super: { 93 + total-connect-client = super.total-connect-client.overridePythonAttrs (oldAttrs: rec { 94 + version = "0.58"; 95 + src = fetchFromGitHub { 96 + owner = "craigjmidwinter"; 97 + repo = "total-connect-client"; 98 + rev = version; 99 + sha256 = "1dqmgvgvwjh235wghygan2jnfvmn9vz789in2as3asig9cifix9z"; 100 + }; 101 + }); 102 + }) 103 + 91 104 # home-assistant-frontend does not exist in python3.pkgs 92 105 (self: super: { 93 106 home-assistant-frontend = self.callPackage ./frontend.nix { }; ··· 121 134 extraBuildInputs = extraPackages py.pkgs; 122 135 123 136 # Don't forget to run parse-requirements.py after updating 124 - hassVersion = "2021.8.6"; 137 + hassVersion = "2021.8.7"; 125 138 126 139 in with py.pkgs; buildPythonApplication rec { 127 140 pname = "homeassistant"; ··· 138 151 owner = "home-assistant"; 139 152 repo = "core"; 140 153 rev = version; 141 - sha256 = "1hahxvvlk32dbmv2lhn67w1ii5g24znvjqgsq318qv8c2qh5z5ws"; 154 + sha256 = "0f69jcpxyr0kzziwl6bfj2jbn23hrj1796ml6jsk9mnpfkdsd9vi"; 142 155 }; 143 156 144 157 # leave this in, so users don't have to constantly update their downstream patch handling
+2 -2
pkgs/servers/hqplayerd/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "hqplayerd"; 20 - version = "4.25.0-64"; 20 + version = "4.25.1-65"; 21 21 22 22 src = fetchurl { 23 23 url = "https://www.signalyst.eu/bins/${pname}/fc34/${pname}-${version}.fc34.x86_64.rpm"; 24 - sha256 = "sha256-KLP7g1SQzVKu9Hnptb6s0FwmLSjhlAINJoJskja+bDM="; 24 + sha256 = "sha256-1Gfnha0DRAH2q0HJQVZegFKjpnVVK+MxPUmYJsA8Xgc="; 25 25 }; 26 26 27 27 unpackPhase = ''
+8 -1
pkgs/servers/http/apache-modules/mod_perl/default.nix
··· 1 - { stdenv, fetchurl, apacheHttpd, perl }: 1 + { stdenv, fetchurl, apacheHttpd, perl, nixosTests }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "mod_perl"; ··· 9 9 sha256 = "0x3gq4nz96y202cymgrf56n8spm7bffkd1p74dh9q3zrrlc9wana"; 10 10 }; 11 11 12 + patches = [ 13 + # Fix build on perl-5.34.0, https://github.com/Perl/perl5/issues/18617 14 + ../../../../development/perl-modules/mod_perl2-PL_hash_seed.patch 15 + ]; 16 + 12 17 buildInputs = [ apacheHttpd perl ]; 13 18 buildPhase = '' 14 19 perl Makefile.PL \ ··· 23 28 mv $out${perl}/* $out 24 29 rm $out/nix -rf 25 30 ''; 31 + 32 + passthru.tests = nixosTests.mod_perl; 26 33 }
+33
pkgs/servers/matrix-synapse/0001-setup-add-homeserver-as-console-script.patch
··· 1 + From 36ffbb7ad2c535180cae473b470a43f9db4fbdcd Mon Sep 17 00:00:00 2001 2 + From: Maximilian Bosch <maximilian@mbosch.me> 3 + Date: Mon, 16 Aug 2021 13:27:28 +0200 4 + Subject: [PATCH] setup: add homeserver as console script 5 + 6 + With this change, it will be added to `$out/bin` in `nixpkgs` directly. 7 + This became necessary since our old workaround, calling it as script, 8 + doesn't work anymore since the shebangs were removed[1]. 9 + 10 + [1] https://github.com/matrix-org/synapse/pull/10415 11 + --- 12 + setup.py | 5 +++++ 13 + 1 file changed, 5 insertions(+) 14 + 15 + diff --git a/setup.py b/setup.py 16 + index c47856351..27f1d842c 100755 17 + --- a/setup.py 18 + +++ b/setup.py 19 + @@ -133,6 +133,11 @@ setup( 20 + long_description=long_description, 21 + long_description_content_type="text/x-rst", 22 + python_requires="~=3.6", 23 + + entry_points={ 24 + + 'console_scripts': [ 25 + + 'homeserver = synapse.app.homeserver:main' 26 + + ] 27 + + }, 28 + classifiers=[ 29 + "Development Status :: 5 - Production/Stable", 30 + "Topic :: Communications :: Chat", 31 + -- 32 + 2.31.1 33 +
+3 -4
pkgs/servers/matrix-synapse/default.nix
··· 12 12 in 13 13 buildPythonApplication rec { 14 14 pname = "matrix-synapse"; 15 - version = "1.39.0"; 15 + version = "1.40.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "sha256-dErfNHDUo0yGLbrRQdwbNkMVfnMfbrO3f7bsRwgRQMM="; 19 + sha256 = "sha256-5RCeKTAtuFERQSoz4WinGz36tMuKtijnupPR/X02hCU="; 20 20 }; 21 21 22 22 patches = [ 23 - # adds an entry point for the service 24 - ./homeserver-script.patch 23 + ./0001-setup-add-homeserver-as-console-script.patch 25 24 ]; 26 25 27 26 buildInputs = [ openssl ];
-23
pkgs/servers/matrix-synapse/homeserver-script.patch
··· 1 - diff --git a/homeserver b/homeserver 2 - new file mode 120000 3 - index 000000000..2f1d41351 4 - --- /dev/null 5 - +++ b/homeserver 6 - @@ -0,0 +1 @@ 7 - +synapse/app/homeserver.py 8 - \ No newline at end of file 9 - diff --git a/setup.py b/setup.py 10 - index 5ce06c898..f1ccd95bc 100755 11 - --- a/setup.py 12 - +++ b/setup.py 13 - @@ -115,6 +115,6 @@ setup( 14 - "Programming Language :: Python :: 3.6", 15 - "Programming Language :: Python :: 3.7", 16 - ], 17 - - scripts=["synctl"] + glob.glob("scripts/*"), 18 - + scripts=["synctl", "homeserver"] + glob.glob("scripts/*"), 19 - cmdclass={"test": TestCommand}, 20 - ) 21 - -- 22 - 2.22.0 23 -
+2 -2
pkgs/servers/pounce/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pounce"; 5 - version = "2.3"; 5 + version = "2.4"; 6 6 7 7 src = fetchzip { 8 8 url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz"; 9 - sha256 = "0pk3kwr6k6dz2vdx1kyv7mhj756j4bwsmdlmjzhh8ghczjqp2s2x"; 9 + sha256 = "sha256-bEObiqgkSarYILwZE70OjRyEUy3QZg+FLocWljFRGNc="; 10 10 }; 11 11 12 12 buildInputs = [ libressl ];
+3
pkgs/servers/samba/4.x.nix
··· 139 139 ++ optional (!enablePam) "--without-pam" 140 140 ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ 141 141 "--bundled-libraries=!asn1_compile,!compile_et" 142 + ] ++ optional stdenv.isAarch32 [ 143 + # https://bugs.gentoo.org/683148 144 + "--jobs 1" 142 145 ]; 143 146 144 147 # python-config from build Python gives incorrect values when cross-compiling.
+8 -6
pkgs/tools/X11/xdotool/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libX11, perl, libXtst, xorgproto, libXi, libXinerama, libxkbcommon }: 1 + { lib, stdenv, fetchFromGitHub, pkg-config, libX11, perl, libXtst, xorgproto, libXi, libXinerama, libxkbcommon, libXext }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xdotool"; 5 - version = "3.20160805.1"; 5 + version = "3.20210804.2"; 6 6 7 - src = fetchurl { 8 - url = "https://github.com/jordansissel/xdotool/releases/download/v${version}/xdotool-${version}.tar.gz"; 9 - sha256 = "1a6c1zr86zb53352yxv104l76l8x21gfl2bgw6h21iphxpv5zgim"; 7 + src = fetchFromGitHub { 8 + owner = "jordansissel"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-7N5f/BFtq/m5MsXe7ZCTUTc1yp+JDJNRF1P9qB2l554="; 10 12 }; 11 13 12 14 nativeBuildInputs = [ pkg-config perl ]; 13 - buildInputs = [ libX11 libXtst xorgproto libXi libXinerama libxkbcommon ]; 15 + buildInputs = [ libX11 libXtst xorgproto libXi libXinerama libxkbcommon libXext ]; 14 16 15 17 preBuild = '' 16 18 mkdir -p $out/lib
+5 -4
pkgs/tools/admin/daemontools/default.nix
··· 1 1 { fetchurl, bash, glibc, lib, stdenv }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "daemontools-0.76"; 4 + pname = "daemontools"; 5 + version = "0.76"; 5 6 6 7 src = fetchurl { 7 - url = "https://cr.yp.to/daemontools/${name}.tar.gz"; 8 + url = "https://cr.yp.to/daemontools/daemontools-${version}.tar.gz"; 8 9 sha256 = "07scvw88faxkscxi91031pjkpccql6wspk4yrlnsbrrb5c0kamd5"; 9 10 }; 10 11 11 12 patches = [ ./fix-nix-usernamespace-build.patch ]; 12 13 13 14 configurePhase = '' 14 - cd ${name} 15 + cd daemontools-${version} 15 16 16 17 sed -ie '1 s_$_ -include ${glibc.dev}/include/errno.h_' src/conf-cc 17 18 18 19 substituteInPlace src/Makefile \ 19 20 --replace '/bin/sh' '${bash}/bin/bash -oxtrace' 20 21 21 - sed -ie "s_^PATH=.*_PATH=$src/${name}/compile:''${PATH}_" src/rts.tests 22 + sed -ie "s_^PATH=.*_PATH=$src/daemontools-${version}/compile:''${PATH}_" src/rts.tests 22 23 23 24 cat ${glibc.dev}/include/errno.h 24 25 '';
+41 -41
pkgs/tools/admin/pulumi/data.nix
··· 1 1 # DO NOT EDIT! This file is generated automatically by update.sh 2 2 { }: 3 3 { 4 - version = "3.9.0"; 4 + version = "3.10.0"; 5 5 pulumiPkgs = { 6 6 x86_64-linux = [ 7 7 { 8 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.9.0-linux-x64.tar.gz"; 9 - sha256 = "0gxi3zi6scfl9d3b26q7i1f6z39q9npqgik0cgb178an0ygpk3w5"; 8 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.10.0-linux-x64.tar.gz"; 9 + sha256 = "0rhsdxiz5lz4hlw6a1pkjfblsh42vnk9bw8xg7wbjl9wpld3rys1"; 10 10 } 11 11 { 12 12 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-linux-amd64.tar.gz"; 13 13 sha256 = "0d88xfi7zzmpyrnvakwxsyavdx6d5hmfrcf4jhmd53mni0m0551l"; 14 14 } 15 15 { 16 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.14.0-linux-amd64.tar.gz"; 17 - sha256 = "0sk2qmyw7cchlyqrzq2ny516iq9qxh2ywiql8111c5ph2kx8m7az"; 16 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.15.0-linux-amd64.tar.gz"; 17 + sha256 = "1s8w5kh9nfdv1vcdrpa2m76r2470k0j4frc3j3ijmqq1i0vv5yhk"; 18 18 } 19 19 { 20 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.3.0-linux-amd64.tar.gz"; 21 - sha256 = "1w626m38qr0qa9ccpb3f6wdggk3dridqh3jnx9z1zf6bdg2vspa1"; 20 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.4.0-linux-amd64.tar.gz"; 21 + sha256 = "0scisiswjs3jx0wm6q8i7pgpr2js3kiilq7wc29afyjck6xa14rh"; 22 22 } 23 23 { 24 24 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.2.0-linux-amd64.tar.gz"; ··· 29 29 sha256 = "1ppwha1zk73w39msp6jym9in7jsrxzc530qgj4lj0961mb9rdkra"; 30 30 } 31 31 { 32 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.5.0-linux-amd64.tar.gz"; 33 - sha256 = "0pdizb132a7r9n07hqmhrz57hhpmggvgbnmcc87xlpbzc5b72sin"; 32 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.0-linux-amd64.tar.gz"; 33 + sha256 = "1a62af80czj9sahb52fiz25p59nbzjlr1h7ycdxpjl9m1bxhvlfr"; 34 34 } 35 35 { 36 36 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.0.0-linux-amd64.tar.gz"; ··· 41 41 sha256 = "0yhdcjscdkvvai95z2v6xabvvsfvaqi38ngpqrb73ahlwqhz3nys"; 42 42 } 43 43 { 44 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.13.0-linux-amd64.tar.gz"; 45 - sha256 = "1xdldrsgh52lffbkxwc865qllr5sd9hsqksl55v0gm55acqh8jhd"; 44 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.15.0-linux-amd64.tar.gz"; 45 + sha256 = "11m1f80i33m4dh13z96yh655pfiwvk46sjspwql7s80kapl93pq9"; 46 46 } 47 47 { 48 48 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.2.0-linux-amd64.tar.gz"; ··· 53 53 sha256 = "13rchk54wpjwci26kfa519gqagwfrp31w6a9nk1xfdxj45ha9d3x"; 54 54 } 55 55 { 56 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.1.1-linux-amd64.tar.gz"; 57 - sha256 = "03475c9qhd5wb174xnzi84dj74zf1fy2i43d5b7911w09mdqrzb6"; 56 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.2.0-linux-amd64.tar.gz"; 57 + sha256 = "0inx40vasjlxfvzr0pxbzm6rki50h5x5qkzx2wc51vv3gjln104q"; 58 58 } 59 59 { 60 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.5.1-linux-amd64.tar.gz"; 61 - sha256 = "09jf18fmdvgnhx8nx5zbpyc8xgh0zr8w50z463vy4h62r3xyafs5"; 60 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.6.0-linux-amd64.tar.gz"; 61 + sha256 = "19zvqxf13lr98sp3p1ry3q1fvzx0rpxwz5wbk331n5jn0ljzr783"; 62 62 } 63 63 { 64 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.2.0-linux-amd64.tar.gz"; 65 - sha256 = "1lvb3vs2yp0ybz2xn2za5f0nfipiisrpzwzfn0wgl9arh17v0phc"; 64 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.3.0-linux-amd64.tar.gz"; 65 + sha256 = "0vyqzphk75h1mk9p6wblgsw2cypycv32glzrnk4fildj48dakm5y"; 66 66 } 67 67 { 68 68 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-linux-amd64.tar.gz"; ··· 73 73 sha256 = "04gaimdzh04v7f11xw1b7p95rbb142kbnix1zqas68wd6vpw9kyp"; 74 74 } 75 75 { 76 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.2.0-linux-amd64.tar.gz"; 77 - sha256 = "1np74bfvp4hr70izb8sarxvga3nnvyi9j7y6f0lqqgrfk2ixn48r"; 76 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-linux-amd64.tar.gz"; 77 + sha256 = "0rpf48snjm5n1xn7s6lnda6ny1gjgmfsqmbibw6w7h7la0ff78jp"; 78 78 } 79 79 { 80 80 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-linux-amd64.tar.gz"; ··· 89 89 sha256 = "02g59jaifyjfcx185ir79d8lqic38dgaa9cb8dpi3xhvv32z0b0q"; 90 90 } 91 91 { 92 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.2.0-linux-amd64.tar.gz"; 93 - sha256 = "1jvq530gz7bjcljlb3y6yvgfj1fgksgcxs48vl2j6xzyl6y56f6g"; 92 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.3.0-linux-amd64.tar.gz"; 93 + sha256 = "0rmk55qivand0wa82mxgvyzgg16nz1r3q99k0n9zdlvh9dbffnc8"; 94 94 } 95 95 { 96 96 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.0.1-linux-amd64.tar.gz"; ··· 99 99 ]; 100 100 x86_64-darwin = [ 101 101 { 102 - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.9.0-darwin-x64.tar.gz"; 103 - sha256 = "11smw4vy4pzy56smw2mkdaxs2ymkgq9zkhrlq512nx4xh3z46aiv"; 102 + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.10.0-darwin-x64.tar.gz"; 103 + sha256 = "18q1v1n3a497wbbzzjngpl90wpjnffn9wnpdp171r47k6xvbcsyq"; 104 104 } 105 105 { 106 106 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-darwin-amd64.tar.gz"; 107 107 sha256 = "12mkr0xczdnp21k0k7qn4r3swkaq3pr6v2z853p1db7ksz5kds23"; 108 108 } 109 109 { 110 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.14.0-darwin-amd64.tar.gz"; 111 - sha256 = "1fdqp3lhqsm06crbwvyq5qbxy97n432mcnyqcrsd5202yyk6dzbs"; 110 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.15.0-darwin-amd64.tar.gz"; 111 + sha256 = "1jnwlhfyyxz7196igi3gas3459k4nq1f4m1i4vdnxhkskp5838l0"; 112 112 } 113 113 { 114 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.3.0-darwin-amd64.tar.gz"; 115 - sha256 = "1h5rvwy4mdb8566nj4hkxnfva77xrj33y7sxssk7y9gi6k0yx7qa"; 114 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.4.0-darwin-amd64.tar.gz"; 115 + sha256 = "0wy4ayrfqizf8izz5dgwv8xi5hvjh03jrg5lvglfph6549d4lpwc"; 116 116 } 117 117 { 118 118 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.2.0-darwin-amd64.tar.gz"; ··· 123 123 sha256 = "1wwldhy6r6985rwx9vv73jb1nsna387sk6mba81lyc55ar67nsp9"; 124 124 } 125 125 { 126 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.5.0-darwin-amd64.tar.gz"; 127 - sha256 = "0ww91jbi9z8qf0n820h6bx60x2jp4hvwy0aazw37392aczz1kz6d"; 126 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.0-darwin-amd64.tar.gz"; 127 + sha256 = "062xzx7408xqlppw1nixs205i83436n0cbjngzc65wm03bzzj7mh"; 128 128 } 129 129 { 130 130 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.0.0-darwin-amd64.tar.gz"; ··· 135 135 sha256 = "1dpsbq3b0fz86355jy7rz4kcsa1lnw4azn25vzlis89ay1ncbblc"; 136 136 } 137 137 { 138 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.13.0-darwin-amd64.tar.gz"; 139 - sha256 = "036msa4h2s5glyfh58kgnimzkiyq4m2k8vhq20wj5mgzpza4gp8v"; 138 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.15.0-darwin-amd64.tar.gz"; 139 + sha256 = "01vrivbdhsl50kiv092j2a5jvikhrw1kzpa5ags701l721zslycq"; 140 140 } 141 141 { 142 142 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.2.0-darwin-amd64.tar.gz"; ··· 147 147 sha256 = "0qbw4b5zm6dmwdilaz4bjdg55gc5lilwagrxwrab37vq4a8and4c"; 148 148 } 149 149 { 150 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.1.1-darwin-amd64.tar.gz"; 151 - sha256 = "02pfb2j5wsvz0mc99sqpv7fkg00drdmi8bwzvwkg3gr1kqlgvjbv"; 150 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.2.0-darwin-amd64.tar.gz"; 151 + sha256 = "0bj7ir7dpkfsb75bjl45irwi692zxnys0125kmwdn8gnamlij5fx"; 152 152 } 153 153 { 154 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.5.1-darwin-amd64.tar.gz"; 155 - sha256 = "1ddz2lh8sz4zy5dzwxnzq32ln9y24dx1b8pvkx8h66z3n0dwa368"; 154 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.6.0-darwin-amd64.tar.gz"; 155 + sha256 = "0i06q1hrxi84r8ss3ck7jgk3g4lblkjvgm3wx35v551l0ynmmqqw"; 156 156 } 157 157 { 158 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.2.0-darwin-amd64.tar.gz"; 159 - sha256 = "008jqnrl08g3gd38vg2yjwxdn288z75sbp3ghl2cbncfah2lwwja"; 158 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.3.0-darwin-amd64.tar.gz"; 159 + sha256 = "0fwbh02n7cjmv6d9jbqpjnmvvdp1cnsyhy7gxd2863j4w5f17q48"; 160 160 } 161 161 { 162 162 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-darwin-amd64.tar.gz"; ··· 167 167 sha256 = "18vrp0zzi92x4l5nkjszvd0zr7pk6nl6s3h5a3hvsz5qrj2830q3"; 168 168 } 169 169 { 170 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.2.0-darwin-amd64.tar.gz"; 171 - sha256 = "08rmknpwrbc9h57a3ddg05s0idxbbrcf46i2gkqknjzs7dr6wzas"; 170 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-darwin-amd64.tar.gz"; 171 + sha256 = "0jlvdnvcmml009a84lfa6745qwjsifa9zmdrv4gqy9p76iydfs1n"; 172 172 } 173 173 { 174 174 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-darwin-amd64.tar.gz"; ··· 183 183 sha256 = "0gd3xnl31892qp8ilz9lc1zdps77nf07jgvh0k37mink8f0ppy2z"; 184 184 } 185 185 { 186 - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.2.0-darwin-amd64.tar.gz"; 187 - sha256 = "0cg806zpax6q69nr9gdnj00i5lqfh5ljs62181m8jrpczdaryxcn"; 186 + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.3.0-darwin-amd64.tar.gz"; 187 + sha256 = "0ay8d84fc1hr1n4fpy1a4nj7bmhxzp86p0x68gz4rr9iwrd7xfgl"; 188 188 } 189 189 { 190 190 url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.0.1-darwin-amd64.tar.gz";
+10 -10
pkgs/tools/admin/pulumi/update.sh
··· 3 3 4 4 # Version of Pulumi from 5 5 # https://www.pulumi.com/docs/get-started/install/versions/ 6 - VERSION="3.9.0" 6 + VERSION="3.10.0" 7 7 8 8 # Grab latest release ${VERSION} from 9 9 # https://github.com/pulumi/pulumi-${NAME}/releases 10 10 plugins=( 11 11 "auth0=2.2.0" 12 - "aws=4.14.0" 13 - "cloudflare=3.3.0" 12 + "aws=4.15.0" 13 + "cloudflare=3.4.0" 14 14 "consul=3.2.0" 15 15 "datadog=3.3.0" 16 - "digitalocean=4.5.0" 16 + "digitalocean=4.6.0" 17 17 "docker=3.0.0" 18 18 "equinix-metal=2.0.0" 19 - "gcp=5.13.0" 19 + "gcp=5.15.0" 20 20 "github=4.2.0" 21 21 "gitlab=4.1.0" 22 - "hcloud=1.1.1" 23 - "kubernetes=3.5.1" 24 - "linode=3.2.0" 22 + "hcloud=1.2.0" 23 + "kubernetes=3.6.0" 24 + "linode=3.3.0" 25 25 "mailgun=3.1.0" 26 26 "mysql=3.0.0" 27 - "openstack=3.2.0" 27 + "openstack=3.3.0" 28 28 "packet=3.2.2" 29 29 "postgresql=3.1.0" 30 30 "random=4.2.0" 31 - "vault=4.2.0" 31 + "vault=4.3.0" 32 32 "vsphere=4.0.1" 33 33 ) 34 34
+4 -3
pkgs/tools/admin/tightvnc/default.nix
··· 1 1 { lib, stdenv, fetchurl, xlibsWrapper, zlib, libjpeg, imake, gccmakedep, libXmu 2 2 , libXaw, libXpm, libXp , perl, xauth, fontDirectories, openssh }: 3 3 4 - stdenv.mkDerivation { 5 - name = "tightvnc-1.3.10"; 4 + stdenv.mkDerivation rec { 5 + pname = "tightvnc"; 6 + version = "1.3.10"; 6 7 7 8 src = fetchurl { 8 - url = "mirror://sourceforge/vnc-tight/tightvnc-1.3.10_unixsrc.tar.bz2"; 9 + url = "mirror://sourceforge/vnc-tight/tightvnc-${version}_unixsrc.tar.bz2"; 9 10 sha256 = "f48c70fea08d03744ae18df6b1499976362f16934eda3275cead87baad585c0d"; 10 11 }; 11 12
+5 -3
pkgs/tools/archivers/atool/default.nix
··· 1 1 {lib, stdenv, fetchurl, perl, bash}: 2 2 3 - stdenv.mkDerivation { 4 - name = "atool-0.39.0"; 3 + stdenv.mkDerivation rec { 4 + pname = "atool"; 5 + version = "0.39.0"; 6 + 5 7 src = fetchurl { 6 - url = "mirror://savannah/atool/atool-0.39.0.tar.gz"; 8 + url = "mirror://savannah/atool/atool-${version}.tar.gz"; 7 9 sha256 = "aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b"; 8 10 }; 9 11
+3 -2
pkgs/tools/archivers/cabextract/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "cabextract-1.9.1"; 4 + pname = "cabextract"; 5 + version = "1.9.1"; 5 6 6 7 src = fetchurl { 7 - url = "https://www.cabextract.org.uk/${name}.tar.gz"; 8 + url = "https://www.cabextract.org.uk/cabextract-${version}.tar.gz"; 8 9 sha256 = "19qwhl2r8ip95q4vxzxg2kp4p125hjmc9762sns1dwwf7ikm7hmg"; 9 10 }; 10 11
+3 -2
pkgs/tools/archivers/cromfs/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, fuse, perl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "cromfs-1.5.10.2"; 4 + pname = "cromfs"; 5 + version = "1.5.10.2"; 5 6 6 7 src = fetchurl { 7 - url = "https://bisqwit.iki.fi/src/arch/${name}.tar.bz2"; 8 + url = "https://bisqwit.iki.fi/src/arch/cromfs-${version}.tar.bz2"; 8 9 sha256 = "0xy2x1ws1qqfp7hfj6yzm80zhrxzmhn0w2yns77im1lmd2h18817"; 9 10 }; 10 11
+3 -2
pkgs/tools/archivers/innoextract/default.nix
··· 3 3 , withGog ? false, unar ? null }: 4 4 5 5 stdenv.mkDerivation rec { 6 - name = "innoextract-1.9"; 6 + pname = "innoextract"; 7 + version = "1.9"; 7 8 8 9 src = fetchurl { 9 - url = "https://constexpr.org/innoextract/files/${name}.tar.gz"; 10 + url = "https://constexpr.org/innoextract/files/innoextract-${version}.tar.gz"; 10 11 sha256 = "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33"; 11 12 }; 12 13
+4 -3
pkgs/tools/archivers/pxattr/default.nix
··· 1 1 { lib, stdenv, fetchurl, gcc }: 2 2 3 - stdenv.mkDerivation { 4 - name = "pxattr-2.1.0"; 3 + stdenv.mkDerivation rec { 4 + pname = "pxattr"; 5 + version = "2.1.0"; 5 6 6 7 src = fetchurl { 7 - url = "https://www.lesbonscomptes.com/pxattr/pxattr-2.1.0.tar.gz"; 8 + url = "https://www.lesbonscomptes.com/pxattr/pxattr-${version}.tar.gz"; 8 9 sha256 = "1dwcqc5z7gzma1zhis2md49bj2nq7m6jimh4zlx9szw6svisz56z"; 9 10 }; 10 11
+3 -1
pkgs/tools/audio/gvolicon/default.nix
··· 1 1 { lib, stdenv, makeWrapper, alsa-lib, pkg-config, fetchgit, gtk3, gnome, gdk-pixbuf, librsvg, wrapGAppsHook }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "gvolicon-2014-04-28"; 4 + pname = "gvolicon"; 5 + version = "unstable-2014-04-28"; 6 + 5 7 src = fetchgit { 6 8 url = "https://github.com/Unia/gvolicon"; 7 9 rev = "0d65a396ba11f519d5785c37fec3e9a816217a07";
+3 -2
pkgs/tools/audio/midicsv/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "midicsv-1.1"; 4 + pname = "midicsv"; 5 + version = "1.1"; 5 6 6 7 src = fetchurl { 7 - url = "http://www.fourmilab.ch/webtools/midicsv/${name}.tar.gz"; 8 + url = "http://www.fourmilab.ch/webtools/midicsv/midicsv-${version}.tar.gz"; 8 9 sha256 = "1vvhk2nf9ilfw0wchmxy8l13hbw9cnpz079nsx5srsy4nnd78nkw"; 9 10 }; 10 11
+2 -1
pkgs/tools/audio/mpdsync/default.nix
··· 1 1 { stdenv, python2, fetchFromGitHub }: 2 2 with python2.pkgs; 3 3 stdenv.mkDerivation { 4 - name = "mpdsync-2017-06-15"; 4 + pname = "mpdsync"; 5 + version = "unstable-2017-06-15"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "alphapapa";
+2 -1
pkgs/tools/audio/pa-applet/default.nix
··· 1 1 { lib, stdenv, fetchgit, libpulseaudio, pkg-config, gtk3, glibc, autoconf, automake, libnotify, libX11, xf86inputevdev }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "pa-applet-2012-04-11"; 4 + pname = "pa-applet"; 5 + version = "unstable-2012-04-11"; 5 6 6 7 src = fetchgit { 7 8 url = "git://github.com/fernandotcl/pa-applet.git";
+3 -1
pkgs/tools/audio/picotts/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, popt }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "picotts-unstable-2018-10-19"; 4 + pname = "picotts"; 5 + version = "unstable-2018-10-19"; 6 + 5 7 src = fetchFromGitHub { 6 8 repo = "picotts"; 7 9 owner = "naggety";
+4 -2
pkgs/tools/backup/dirvish/default.nix
··· 1 1 { fetchurl, lib, stdenv, makeWrapper, perl, perlPackages }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "dirvish-1.2.1"; 4 + pname = "dirvish"; 5 + version = "1.2.1"; 6 + 5 7 src = fetchurl { 6 - url = "http://dirvish.org/${name}.tgz"; 8 + url = "http://dirvish.org/dirvish${version}.tgz"; 7 9 sha256 = "6b7f29c3541448db3d317607bda3eb9bac9fb3c51f970611ffe27e9d63507dcd"; 8 10 }; 9 11
+3 -2
pkgs/tools/backup/mt-st/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "mt-st-1.3"; 4 + pname = "mt-st"; 5 + version = "1.3"; 5 6 6 7 src = fetchurl { 7 - url = "https://github.com/iustin/mt-st/releases/download/${name}/${name}.tar.gz"; 8 + url = "https://github.com/iustin/mt-st/releases/download/mt-st-${version}/mt-st-${version}.tar.gz"; 8 9 sha256 = "b552775326a327cdcc076c431c5cbc4f4e235ac7c41aa931ad83f94cccb9f6de"; 9 10 }; 10 11
+3 -2
pkgs/tools/backup/mtx/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "mtx-1.3.12"; 4 + pname = "mtx"; 5 + version = "1.3.12"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://gentoo/distfiles/${name}.tar.gz"; 8 + url = "mirror://gentoo/distfiles/mtx-${version}.tar.gz"; 8 9 sha256 = "0261c5e90b98b6138cd23dadecbc7bc6e2830235145ed2740290e1f35672d843"; 9 10 }; 10 11
+5 -3
pkgs/tools/backup/partimage/default.nix
··· 9 9 , slang 10 10 , autoreconfHook 11 11 }: 12 - stdenv.mkDerivation { 13 - name = "partimage-0.6.9"; 12 + stdenv.mkDerivation rec { 13 + pname = "partimage"; 14 + version = "0.6.9"; 15 + 14 16 enableParallelBuilding = true; 15 17 16 18 src = fetchurl { 17 - url = "mirror://sourceforge/partimage/partimage-0.6.9.tar.bz2"; 19 + url = "mirror://sourceforge/partimage/partimage-${version}.tar.bz2"; 18 20 sha256 = "0db6xiphk6xnlpbxraiy31c5xzj0ql6k4rfkmqzh665yyj0nqfkm"; 19 21 }; 20 22
+3 -2
pkgs/tools/backup/rsnapshot/default.nix
··· 1 1 { fetchurl, lib, stdenv, perl, openssh, rsync, logger }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "rsnapshot-1.4.3"; 4 + pname = "rsnapshot"; 5 + version = "1.4.3"; 5 6 6 7 src = fetchurl { 7 - url = "https://rsnapshot.org/downloads/${name}.tar.gz"; 8 + url = "https://rsnapshot.org/downloads/rsnapshot-${version}.tar.gz"; 8 9 sha256 = "1lavqmmsf53pim0nvming7fkng6p0nk2a51k2c2jdq0l7snpl31b"; 9 10 }; 10 11
+3 -2
pkgs/tools/bluetooth/obex-data-server/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, libusb-compat-0_1, glib, dbus-glib, bluez, openobex, dbus }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "obex-data-server-0.4.6"; 4 + pname = "obex-data-server"; 5 + version = "0.4.6"; 5 6 6 7 src = fetchurl { 7 - url = "http://tadas.dailyda.com/software/${name}.tar.gz"; 8 + url = "http://tadas.dailyda.com/software/obex-data-server-${version}.tar.gz"; 8 9 sha256 = "0kq940wqs9j8qjnl58d6l3zhx0jaszci356xprx23l6nvdfld6dk"; 9 10 }; 10 11
+3 -2
pkgs/tools/bluetooth/obexd/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, glib, dbus, openobex, bluez, libical }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "obexd-0.48"; 4 + pname = "obexd"; 5 + version = "0.48"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://kernel/linux/bluetooth/${name}.tar.bz2"; 8 + url = "mirror://kernel/linux/bluetooth/obexd-${version}.tar.bz2"; 8 9 sha256 = "1i20dnibvnq9lnkkhajr5xx3kxlwf9q5c4jm19kyb0q1klzgzlb8"; 9 10 }; 10 11
+3 -2
pkgs/tools/bluetooth/obexfs/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, bluez, fuse, obexftp }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "obexfs-0.12"; 4 + pname = "obexfs"; 5 + version = "0.12"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/openobex/${name}.tar.gz"; 8 + url = "mirror://sourceforge/openobex/obexfs-${version}.tar.gz"; 8 9 sha256 = "1g3krpygk6swa47vbmp9j9s8ahqqcl9ra8r25ybgzv2d9pmjm9kj"; 9 10 }; 10 11
+3 -2
pkgs/tools/bluetooth/obexftp/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, openobex, bluez, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "obexftp-0.24.2"; 4 + pname = "obexftp"; 5 + version = "0.24.2"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/openobex/${name}-Source.tar.gz"; 8 + url = "mirror://sourceforge/openobex/obexftp-${version}-Source.tar.gz"; 8 9 sha256 = "18w9r78z78ri5qc8fjym4nk1jfbrkyr789sq7rxrkshf1a7b83yl"; 9 10 }; 10 11
+3 -2
pkgs/tools/bluetooth/openobex/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, bluez, libusb-compat-0_1, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "openobex-1.7.2"; 4 + pname = "openobex"; 5 + version = "1.7.2"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/openobex/${name}-Source.tar.gz"; 8 + url = "mirror://sourceforge/openobex/openobex-${version}-Source.tar.gz"; 8 9 sha256 = "1z6l7pbwgs5pjx3861cyd3r6vq5av984bdp4r3hgrw2jxam6120m"; 9 10 }; 10 11
+3 -2
pkgs/tools/cd-dvd/ccd2iso/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "ccd2iso-0.3"; 4 + pname = "ccd2iso"; 5 + version = "0.3"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/ccd2iso/${name}.tar.gz"; 8 + url = "mirror://sourceforge/ccd2iso/ccd2iso-${version}.tar.gz"; 8 9 sha256 = "1z000zi7hpr2h9cabj6hzf3n6a6gd6glmm8nn36v4b8i4vzbhx7q"; 9 10 }; 10 11
+4 -3
pkgs/tools/cd-dvd/cdrdao/default.nix
··· 1 1 {lib, stdenv, fetchurl, libvorbis, libmad, pkg-config, libao}: 2 2 3 - stdenv.mkDerivation { 4 - name = "cdrdao-1.2.3"; 3 + stdenv.mkDerivation rec { 4 + pname = "cdrdao"; 5 + version = "1.2.3"; 5 6 6 7 src = fetchurl { 7 - url = "mirror://sourceforge/cdrdao/cdrdao-1.2.3.tar.bz2"; 8 + url = "mirror://sourceforge/cdrdao/cdrdao-${version}.tar.bz2"; 8 9 sha256 = "0pmpgx91j984snrsxbq1dgf3ximks2dfh1sqqmic72lrls7wp4w1"; 9 10 }; 10 11
+3 -2
pkgs/tools/cd-dvd/cdrkit/default.nix
··· 1 1 {lib, stdenv, fetchurl, cmake, libcap, zlib, bzip2, perl}: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "cdrkit-1.1.11"; 4 + pname = "cdrkit"; 5 + version = "1.1.11"; 5 6 6 7 src = fetchurl { 7 - url = "http://cdrkit.org/releases/${name}.tar.gz"; 8 + url = "http://cdrkit.org/releases/cdrkit-${version}.tar.gz"; 8 9 sha256 = "1nj7iv3xrq600i37na9a5idd718piiiqbs4zxvpjs66cdrsk1h6i"; 9 10 }; 10 11
+3 -3
pkgs/tools/cd-dvd/uif2iso/default.nix
··· 1 1 { lib, stdenv, fetchurl, unzip, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - nameNoVer = "uif2iso"; 5 - name = "${nameNoVer}-0.1.7"; 4 + pname = "uif2iso"; 5 + version = "0.1.7"; 6 6 7 7 src = fetchurl { 8 - url = "http://aluigi.altervista.org/mytoolz/${nameNoVer}.zip"; 8 + url = "http://aluigi.altervista.org/mytoolz/uif2iso.zip"; 9 9 sha256 = "1v18fmlzhkkhv8xdc9dyvl8vamwg3ka4dsrg7vvmk1f2iczdx3dp"; 10 10 }; 11 11
+3 -2
pkgs/tools/cd-dvd/vobcopy/default.nix
··· 1 1 { lib, stdenv, fetchurl, libdvdread, libdvdcss }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "vobcopy-1.2.0"; 4 + pname = "vobcopy"; 5 + version = "1.2.0"; 5 6 6 7 src = fetchurl { 7 - url = "http://www.vobcopy.org/download/${name}.tar.bz2"; 8 + url = "http://www.vobcopy.org/download/vobcopy-${version}.tar.bz2"; 8 9 sha256 = "01l1yihbd73srzghzzx5dgfg3yfb5kml5dix52mq0snhjp8h89c9"; 9 10 }; 10 11
+4 -5
pkgs/tools/cd-dvd/vobsub2srt/default.nix
··· 1 1 { lib, stdenv, fetchgit, cmake, libtiff, pkg-config, tesseract }: 2 2 3 - let rev = "a6abbd61127a6392d420bbbebdf7612608c943c2"; 4 - shortRev = builtins.substring 0 7 rev; 5 - in 6 - stdenv.mkDerivation { 7 - name = "vobsub2srt-git-20140817-${shortRev}"; 3 + stdenv.mkDerivation rec { 4 + pname = "vobsub2srt-git"; 5 + version = "20140817-${builtins.substring 0 7 rev}"; 6 + rev = "a6abbd61127a6392d420bbbebdf7612608c943c2"; 8 7 9 8 src = fetchgit { 10 9 inherit rev;
+4 -3
pkgs/tools/compression/lzham/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake } : 2 2 3 - stdenv.mkDerivation { 4 - name = "lzham-1.0"; 3 + stdenv.mkDerivation rec { 4 + pname = "lzham"; 5 + version = "1.0"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "richgel999"; 8 9 repo = "lzham_codec"; 9 - rev = "v1_0_release"; 10 + rev = "v${lib.replaceStrings ["."] ["_"] version}_release"; 10 11 sha256 = "14c1zvzmp1ylp4pgayfdfk1kqjb23xj4f7ll1ra7b18wjxc9ja1v"; 11 12 }; 12 13
+2 -2
pkgs/tools/games/joystickwake/default.nix
··· 1 1 { lib, python3, fetchFromGitHub }: 2 2 python3.pkgs.buildPythonApplication rec { 3 3 pname = "joystickwake"; 4 - version = "0.2.4"; 4 + version = "0.2.5"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "foresto"; 8 8 repo = pname; 9 9 rev = "v${version}"; 10 - sha256 = "0j8xwfmzzmc9s88zvzc3lv67821r6x28vy6vli3srvx859wprppd"; 10 + sha256 = "1yhzv4gbz0c0ircxk91m1d4ygf14mla137z4nfxggmbvjs0aa4y0"; 11 11 }; 12 12 13 13 propagatedBuildInputs = with python3.pkgs; [ pyudev xlib ];
+4 -3
pkgs/tools/graphics/pikchr/default.nix
··· 5 5 6 6 stdenv.mkDerivation { 7 7 pname = "pikchr"; 8 - version = "unstable-2021-04-07"; 8 + # To update, use the last check-in in https://pikchr.org/home/timeline?r=trunk 9 + version = "unstable-2021-07-22"; 9 10 10 11 src = fetchurl { 11 - url = "https://pikchr.org/home/tarball/90b6d5b4a3834ff0/pikchr.tar.gz"; 12 - sha256 = "1cqpnljy12gl82rcbb7mwhgv9szcliwkbwwh67hzdv020h1scxym"; 12 + url = "https://pikchr.org/home/tarball/d9e1502ed74c6aab/pikchr.tar.gz"; 13 + sha256 = "sha256-YSy95GiSodOS1YJgl9arBniqEJzYPrZ9CHNSCee9Yfg="; 13 14 }; 14 15 15 16 # can't open generated html files
+2 -1
pkgs/tools/misc/coreutils/default.nix
··· 112 112 # and {Open,Free}BSD. 113 113 # With non-standard storeDir: https://github.com/NixOS/nix/issues/512 114 114 doCheck = stdenv.hostPlatform == stdenv.buildPlatform 115 - && (stdenv.hostPlatform.libc == "glibc" || stdenv.hostPlatform.isMusl); 115 + && (stdenv.hostPlatform.libc == "glibc" || stdenv.hostPlatform.isMusl) 116 + && !stdenv.isAarch32; 116 117 117 118 # Prevents attempts of running 'help2man' on cross-built binaries. 118 119 PERL = if stdenv.hostPlatform == stdenv.buildPlatform then null else "missing";
+2 -2
pkgs/tools/misc/disfetch/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "disfetch"; 7 - version = "2.10"; 7 + version = "2.12"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "q60"; 11 11 repo = "disfetch"; 12 12 rev = version; 13 - sha256 = "sha256-mjjFy6VItTg4VVXvGNjOJYHKHTy8o26iYsVC9Fq0YVg="; 13 + sha256 = "sha256-+6U5BdLmdTaFzgZmjSH7rIL9JTwIX7bFkQqm0rNuTRY="; 14 14 }; 15 15 16 16 dontBuild = true;
+3 -4
pkgs/tools/misc/opentelemetry-collector/default.nix
··· 1 1 { buildGoModule 2 2 , fetchFromGitHub 3 - , stdenv 4 3 , lib 5 4 }: 6 5 7 6 buildGoModule rec { 8 7 pname = "opentelemetry-collector"; 9 - version = "0.26.0"; 8 + version = "0.31.0"; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "open-telemetry"; 13 12 repo = "opentelemetry-collector-contrib"; 14 13 rev = "v${version}"; 15 - sha256 = "03713b4bkhcz61maz0r5mkd36kv3rq8rji3qcpi9zf5bkkjs1yzb"; 14 + sha256 = "sha256-iJL3EFoBtp4UOLm4/b4JBwzK6iZSTE0cb6EzmlziOLk="; 16 15 }; 17 16 18 - vendorSha256 = "sha256-sNI2OoDsSNtcQP8rNO4OCboFqSC7v6g4xEPNRKjv3sQ="; 17 + vendorSha256 = "sha256-LNlglYys4F7+W7PUmBT9cBnYs7y6AlB9wdaDibaxqC0="; 19 18 proxyVendor = true; 20 19 21 20 subPackages = [ "cmd/otelcontribcol" ];
+3 -3
pkgs/tools/networking/croc/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "croc"; 5 - version = "9.2.1"; 5 + version = "9.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "schollz"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-pEW20IbPVywNq2udfdQ/U71aDEku73+JGiy2iRADJ8Y="; 11 + sha256 = "sha256-chSVAQXGtcAFs4GzqywjAUM9qng9j6j7KOrlQalxdOw="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-z5G56PiBisceNc4tfZJVKh9tZmUkyamQBYG2mQ6kuXg="; 14 + vendorSha256 = "sha256-z8xU1IH+xemx/kxE4crj90roF73QW5D9jFLpykH7meo="; 15 15 16 16 doCheck = false; 17 17
+3 -3
pkgs/tools/networking/oapi-codegen/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "oapi-codegen"; 5 - version = "1.6.0"; 5 + version = "1.8.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "deepmap"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-doJ1ceuJ/gL9vlGgV/hKIJeAErAseH0dtHKJX2z7pV0="; 11 + sha256 = "sha256-8hyRuGKspWqv+uBeSz4i12Grl83EQVPWB1weEVf9yhA="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-Y4WM+o+5jiwj8/99UyNHLpBNbtJkKteIGW2P1Jd9L6M="; 14 + vendorSha256 = "sha256-YCZzIsu1mMAAjLGHISrDkfY4Lx0az2SZV8bnZOMalx8="; 15 15 16 16 # Tests use network 17 17 doCheck = false;
+2 -2
pkgs/tools/nix/nixos-generators/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nixos-generators"; 5 - version = "1.3.0"; 5 + version = "1.4.0"; 6 6 src = fetchFromGitHub { 7 7 owner = "nix-community"; 8 8 repo = "nixos-generators"; 9 9 rev = version; 10 - sha256 = "1gbj2jw7zv3mnq1lyj4q53jpfj642jy7lvg0kp060znvhws3370y"; 10 + sha256 = "1kn2anp8abpi0n3p7j0yczbpy7mdhk8rv84ywyghqdvf2wjmnlnp"; 11 11 }; 12 12 nativeBuildInputs = [ makeWrapper ]; 13 13 installFlags = [ "PREFIX=$(out)" ];
+9
pkgs/tools/package-management/cargo-kcov/default.nix
··· 1 1 { lib 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 + , makeWrapper 5 + , kcov 4 6 }: 5 7 6 8 rustPlatform.buildRustPackage rec { ··· 16 18 17 19 cargoSha256 = "0m5gfyjzzwd8wkbb388vmd785dy334x0migq3ssi7dlah9zx62bj"; 18 20 doCheck = false; 21 + 22 + nativeBuildInputs = [ makeWrapper ]; 23 + 24 + postInstall = '' 25 + wrapProgram $out/bin/cargo-kcov \ 26 + --prefix PATH : ${lib.makeBinPath [ kcov ]} 27 + ''; 19 28 20 29 meta = with lib; { 21 30 description = "Cargo subcommand to run kcov to get coverage report on Linux";
+45
pkgs/tools/text/crowdin-cli/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , gawk 5 + , git 6 + , gnugrep 7 + , installShellFiles 8 + , jre 9 + , makeWrapper 10 + , unzip 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "crowdin-cli"; 15 + version = "3.6.4"; 16 + 17 + src = fetchurl { 18 + url = "https://github.com/crowdin/${pname}/releases/download/${version}/${pname}.zip"; 19 + sha256 = "123mv0s1jppidmwsvr8a6f8429xmpskxmnv4p8jpnfa9zrw86aaw"; 20 + }; 21 + 22 + nativeBuildInputs = [ installShellFiles makeWrapper unzip ]; 23 + 24 + installPhase = '' 25 + runHook preInstall 26 + 27 + install -D crowdin-cli.jar $out/lib/crowdin-cli.jar 28 + 29 + installShellCompletion --cmd crowdin --bash ./crowdin_completion 30 + 31 + makeWrapper ${jre}/bin/java $out/bin/crowdin \ 32 + --argv0 crowdin \ 33 + --add-flags "-jar $out/lib/crowdin-cli.jar" \ 34 + --prefix PATH : ${lib.makeBinPath [ gawk gnugrep git ]} 35 + 36 + runHook postInstall 37 + ''; 38 + 39 + meta = with lib; { 40 + homepage = "https://github.com/crowdin/crowdin-cli/"; 41 + description = "A command-line client for the Crowdin API"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ DamienCassou ]; 44 + }; 45 + }
+2 -1
pkgs/tools/typesetting/lowdown/shared.patch
··· 11 11 12 12 www: $(HTMLS) $(PDFS) $(THUMBS) lowdown.tar.gz lowdown.tar.gz.sha512 13 13 14 - @@ -101,6 +101,9 @@ lowdown-diff: lowdown 14 + @@ -101,6 +101,10 @@ lowdown-diff: lowdown 15 15 liblowdown.a: $(OBJS) $(COMPAT_OBJS) 16 16 $(AR) rs $@ $(OBJS) $(COMPAT_OBJS) 17 17 18 + +%.o: CFLAGS += -fPIC 18 19 +liblowdown.so: $(OBJS) $(COMPAT_OBJS) 19 20 + $(CC) -shared -o $@ $(OBJS) $(COMPAT_OBJS) $(LDFLAGS) 20 21 +
+14
pkgs/top-level/aliases.nix
··· 480 480 linuxPackages_xen_dom0_hardened = linuxPackages_hardened; 481 481 linuxPackages_latest_xen_dom0_hardened = linuxPackages_latest_hardened; 482 482 483 + # added 2021-08-16 484 + linuxPackages_latest_hardened = throw '' 485 + The attribute `linuxPackages_hardened_latest' was dropped because the hardened patches 486 + frequently lag behind the upstream kernel. In some cases this meant that this attribute 487 + had to refer to an older kernel[1] because the latest hardened kernel was EOL and 488 + the latest supported kernel didn't have patches. 489 + 490 + If you want to use a hardened kernel, please check which kernel minors are supported 491 + and use a versioned attribute, e.g. `linuxPackages_5_10_hardened'. 492 + 493 + [1] for more context: https://github.com/NixOS/nixpkgs/pull/133587 494 + ''; 495 + linux_latest_hardened = linuxPackages_latest_hardened; 496 + 483 497 linux-steam-integration = throw "linux-steam-integration has been removed, as the upstream project has been abandoned"; # added 2020-05-22 484 498 loadcaffe = throw "loadcaffe has been removed, as the upstream project has been abandoned"; # added 2020-03-28 485 499 lobster-two = google-fonts; # added 2021-07-22
+48 -36
pkgs/top-level/all-packages.nix
··· 1146 1146 1147 1147 arduino = arduino-core.override { withGui = true; }; 1148 1148 1149 - arduino-ci = callPackage ../development/arduino/arduino-ci { }; 1149 + arduino-ci = callPackage ../development/embedded/arduino/arduino-ci { }; 1150 1150 1151 - arduino-cli = callPackage ../development/arduino/arduino-cli { }; 1151 + arduino-cli = callPackage ../development/embedded/arduino/arduino-cli { }; 1152 1152 1153 - arduino-core = callPackage ../development/arduino/arduino-core { }; 1153 + arduino-core = callPackage ../development/embedded/arduino/arduino-core { }; 1154 1154 1155 - arduino-mk = callPackage ../development/arduino/arduino-mk {}; 1155 + arduino-mk = callPackage ../development/embedded/arduino/arduino-mk {}; 1156 1156 1157 - apio = python3Packages.callPackage ../development/tools/misc/apio { }; 1157 + apio = python3Packages.callPackage ../development/embedded/fpga/apio { }; 1158 1158 1159 1159 apitrace = libsForQt514.callPackage ../applications/graphics/apitrace {}; 1160 1160 ··· 7641 7641 7642 7642 opencorsairlink = callPackage ../tools/misc/opencorsairlink { }; 7643 7643 7644 - openfpgaloader = callPackage ../development/tools/misc/openfpgaloader { }; 7644 + openfpgaloader = callPackage ../development/embedded/fpga/openfpgaloader { }; 7645 7645 7646 7646 openfortivpn = callPackage ../tools/networking/openfortivpn { }; 7647 7647 ··· 8100 8100 8101 8101 plan9port = callPackage ../tools/system/plan9port { }; 8102 8102 8103 - platformioPackages = dontRecurseIntoAttrs (callPackage ../development/arduino/platformio { }); 8103 + platformioPackages = dontRecurseIntoAttrs (callPackage ../development/embedded/platformio { }); 8104 8104 platformio = platformioPackages.platformio-chrootenv; 8105 8105 8106 8106 platinum-searcher = callPackage ../tools/text/platinum-searcher { }; ··· 9445 9445 9446 9446 tinyobjloader = callPackage ../development/libraries/tinyobjloader { }; 9447 9447 9448 - tinyprog = callPackage ../development/tools/misc/tinyprog { }; 9448 + tinyprog = callPackage ../development/embedded/fpga/tinyprog { }; 9449 9449 9450 9450 tinyproxy = callPackage ../tools/networking/tinyproxy { }; 9451 9451 ··· 13003 13003 13004 13004 avr8burnomat = callPackage ../development/misc/avr8-burn-omat { }; 13005 13005 13006 - betaflight = callPackage ../development/misc/stm32/betaflight { 13006 + betaflight = callPackage ../development/embedded/stm32/betaflight { 13007 13007 gcc-arm-embedded = pkgsCross.arm-embedded.buildPackages.gcc; 13008 13008 binutils-arm-embedded = pkgsCross.arm-embedded.buildPackages.binutils; 13009 13009 }; ··· 13061 13061 guile = guile_2_0; 13062 13062 }; 13063 13063 13064 - inav = callPackage ../development/misc/stm32/inav { 13064 + inav = callPackage ../development/embedded/stm32/inav { 13065 13065 gcc-arm-embedded = pkgsCross.arm-embedded.buildPackages.gcc; 13066 13066 binutils-arm-embedded = pkgsCross.arm-embedded.buildPackages.binutils; 13067 13067 }; ··· 13215 13215 13216 13216 automoc4 = callPackage ../development/tools/misc/automoc4 { }; 13217 13217 13218 - avrdude = callPackage ../development/tools/misc/avrdude { }; 13218 + avrdude = callPackage ../development/embedded/avrdude { }; 13219 13219 13220 13220 b4 = callPackage ../development/tools/b4 { }; 13221 13221 ··· 13369 13369 13370 13370 black-macchiato = with python3Packages; toPythonApplication black-macchiato; 13371 13371 13372 - blackmagic = callPackage ../development/tools/misc/blackmagic { }; 13372 + blackmagic = callPackage ../development/embedded/blackmagic { }; 13373 13373 13374 13374 bloaty = callPackage ../development/tools/bloaty { }; 13375 13375 13376 13376 bloop = callPackage ../development/tools/build-managers/bloop { }; 13377 13377 13378 - bossa = callPackage ../development/tools/misc/bossa { 13378 + bossa = callPackage ../development/embedded/bossa { 13379 13379 wxGTK = wxGTK30; 13380 13380 }; 13381 13381 ··· 13403 13403 13404 13404 cbrowser = callPackage ../development/tools/misc/cbrowser { }; 13405 13405 13406 - cc-tool = callPackage ../development/tools/misc/cc-tool { }; 13406 + cc-tool = callPackage ../development/embedded/cc-tool { }; 13407 13407 13408 13408 ccache = callPackage ../development/tools/misc/ccache { 13409 13409 asciidoc = asciidoc-full; ··· 13628 13628 13629 13629 ddd = callPackage ../development/tools/misc/ddd { }; 13630 13630 13631 - lattice-diamond = callPackage ../development/tools/lattice-diamond { }; 13631 + lattice-diamond = callPackage ../development/embedded/fpga/lattice-diamond { }; 13632 13632 13633 13633 direvent = callPackage ../development/tools/misc/direvent { }; 13634 13634 ··· 13689 13689 13690 13690 drush = callPackage ../development/tools/misc/drush { }; 13691 13691 13692 - easypdkprog = callPackage ../development/tools/misc/easypdkprog { }; 13692 + easypdkprog = callPackage ../development/embedded/easypdkprog { }; 13693 13693 13694 13694 editorconfig-checker = callPackage ../development/tools/misc/editorconfig-checker { }; 13695 13695 ··· 13762 13762 13763 13763 fsearch = callPackage ../tools/misc/fsearch { }; 13764 13764 13765 - fujprog = callPackage ../development/tools/misc/fujprog { 13765 + fujprog = callPackage ../development/embedded/fpga/fujprog { 13766 13766 inherit (darwin.apple_sdk.frameworks) IOKit; 13767 13767 }; 13768 13768 ··· 13855 13855 13856 13856 gprbuild = callPackage ../development/tools/build-managers/gprbuild { }; 13857 13857 13858 - gputils = callPackage ../development/tools/misc/gputils { }; 13858 + gputils = callPackage ../development/embedded/gputils { }; 13859 13859 13860 13860 gpuvis = callPackage ../development/tools/misc/gpuvis { }; 13861 13861 ··· 13883 13883 13884 13884 gtkdialog = callPackage ../development/tools/misc/gtkdialog { }; 13885 13885 13886 + crowdin-cli = callPackage ../tools/text/crowdin-cli { }; 13887 + 13886 13888 gtranslator = callPackage ../tools/text/gtranslator { }; 13887 13889 13888 13890 guff = callPackage ../tools/graphics/guff { }; ··· 13915 13917 iaca_3_0 = callPackage ../development/tools/iaca/3.0.nix { }; 13916 13918 iaca = iaca_3_0; 13917 13919 13918 - icestorm = callPackage ../development/tools/icestorm { }; 13920 + icestorm = callPackage ../development/embedded/fpga/icestorm { }; 13919 13921 13920 13922 icmake = callPackage ../development/tools/build-managers/icmake { }; 13921 13923 ··· 13931 13933 13932 13934 indent = callPackage ../development/tools/misc/indent { }; 13933 13935 13934 - ino = callPackage ../development/arduino/ino { }; 13936 + ino = callPackage ../development/embedded/arduino/ino { }; 13935 13937 13936 13938 inotify-tools = callPackage ../development/tools/misc/inotify-tools { }; 13937 13939 ··· 14180 14182 14181 14183 opengrok = callPackage ../development/tools/misc/opengrok { }; 14182 14184 14183 - openocd = callPackage ../development/tools/misc/openocd { }; 14185 + openocd = callPackage ../development/embedded/openocd { }; 14184 14186 14185 14187 oprofile = callPackage ../development/tools/profiling/oprofile { 14186 14188 libiberty_static = libiberty.override { staticBuild = true; }; ··· 14353 14355 14354 14356 saleae-logic = callPackage ../development/tools/misc/saleae-logic { }; 14355 14357 14358 + saleae-logic-2 = callPackage ../development/tools/misc/saleae-logic-2 { }; 14359 + 14356 14360 sauce-connect = callPackage ../development/tools/sauce-connect { }; 14357 14361 14358 14362 sd-local = callPackage ../development/tools/sd-local { }; ··· 14471 14475 14472 14476 sselp = callPackage ../tools/X11/sselp{ }; 14473 14477 14474 - stm32cubemx = callPackage ../development/tools/misc/stm32cubemx { }; 14478 + stm32cubemx = callPackage ../development/embedded/stm32/stm32cubemx { }; 14475 14479 14476 - stm32flash = callPackage ../development/tools/misc/stm32flash { }; 14480 + stm32flash = callPackage ../development/embedded/stm32/stm32flash { }; 14477 14481 14478 14482 strace = callPackage ../development/tools/misc/strace { }; 14479 14483 ··· 14528 14532 14529 14533 teensyduino = arduino-core.override { withGui = true; withTeensyduino = true; }; 14530 14534 14531 - teensy-loader-cli = callPackage ../development/tools/misc/teensy-loader-cli { }; 14535 + teensy-loader-cli = callPackage ../development/embedded/teensy-loader-cli { }; 14532 14536 14533 14537 terracognita = callPackage ../development/tools/misc/terracognita { }; 14534 14538 ··· 14573 14577 inherit (darwin.apple_sdk.frameworks) Security; 14574 14578 }; 14575 14579 14576 - trellis = callPackage ../development/tools/trellis { }; 14580 + trellis = callPackage ../development/embedded/fpga/trellis { }; 14577 14581 14578 14582 ttyd = callPackage ../servers/ttyd { }; 14579 14583 ··· 14596 14600 boost = boost17x; 14597 14601 }; 14598 14602 14599 - uisp = callPackage ../development/tools/misc/uisp { }; 14603 + uisp = callPackage ../development/embedded/uisp { }; 14600 14604 14601 14605 uncrustify = callPackage ../development/tools/misc/uncrustify { }; 14602 14606 ··· 14650 14654 14651 14655 webdis = callPackage ../development/tools/database/webdis { }; 14652 14656 14653 - xc3sprog = callPackage ../development/tools/misc/xc3sprog { }; 14657 + xc3sprog = callPackage ../development/embedded/xc3sprog { }; 14654 14658 14655 14659 xcb-imdkit = callPackage ../development/libraries/xcb-imdkit { }; 14656 14660 ··· 14902 14906 boost160 14903 14907 boost165 14904 14908 boost166 14905 - boost167 14906 14909 boost168 14907 14910 boost169 14908 14911 boost170 ··· 18459 18462 18460 18463 ronn = callPackage ../development/tools/ronn { }; 18461 18464 18462 - rshell = python3.pkgs.callPackage ../development/tools/rshell { }; 18465 + rshell = python3.pkgs.callPackage ../development/embedded/rshell { }; 18463 18466 18464 18467 rttr = callPackage ../development/libraries/rttr { }; 18465 18468 ··· 21134 21137 # hardened kernels 21135 21138 linuxPackages_hardened = linuxKernel.packages.linux_hardened; 21136 21139 linux_hardened = linuxPackages_hardened.kernel; 21137 - linuxPackages_latest_hardened = linuxKernel.packages.linux_latest_hardened; 21138 - linux_latest_hardened = linuxPackages_latest_hardened.kernel; 21140 + linuxPackages_4_14_hardened = linuxKernel.packages.linux_4_14_hardened; 21141 + linux_4_14_hardened = linuxPackages_4_14_hardened.kernel; 21142 + linuxPackages_4_19_hardened = linuxKernel.packages.linux_4_19_hardened; 21143 + linux_4_19_hardened = linuxPackages_4_19_hardened.kernel; 21144 + linuxPackages_5_4_hardened = linuxKernel.linux_5_4_hardened.linux_latest_hardened; 21145 + linux_5_4_hardened = linuxPackages_5_4_hardened.kernel; 21146 + linuxPackages_5_10_hardened = linuxKernel.packages.linux_5_10_hardened; 21147 + linux_5_10_hardened = linuxPackages_5_10_hardened.kernel; 21139 21148 21140 21149 # Hardkernel (Odroid) kernels. 21141 21150 linuxPackages_hardkernel_latest = linuxKernel.packageAliases.linux_hardkernel_latest; ··· 23309 23318 comical = callPackage ../applications/graphics/comical { }; 23310 23319 23311 23320 containerd = callPackage ../applications/virtualization/containerd { }; 23321 + containerd_1_4 = callPackage ../applications/virtualization/containerd/1.4.nix { }; 23312 23322 23313 23323 convchain = callPackage ../tools/graphics/convchain {}; 23314 23324 ··· 23479 23489 23480 23490 drawio = callPackage ../applications/graphics/drawio {}; 23481 23491 23482 - drawpile = libsForQt514.callPackage ../applications/graphics/drawpile { }; 23483 - drawpile-server-headless = libsForQt514.callPackage ../applications/graphics/drawpile { 23492 + drawpile = libsForQt5.callPackage ../applications/graphics/drawpile { }; 23493 + drawpile-server-headless = libsForQt5.callPackage ../applications/graphics/drawpile { 23484 23494 buildClient = false; 23485 23495 buildServerGui = false; 23486 23496 }; ··· 23545 23555 jdk = jdk11; 23546 23556 }); 23547 23557 23548 - ecpdap = callPackage ../development/tools/ecpdap { 23558 + ecpdap = callPackage ../development/embedded/fpga/ecpdap { 23549 23559 inherit (darwin.apple_sdk.frameworks) AppKit; 23550 23560 }; 23551 23561 ··· 25526 25536 25527 25537 xmrig = callPackage ../applications/misc/xmrig { }; 25528 25538 25539 + xmrig-mo = callPackage ../applications/misc/xmrig/moneroocean.nix { }; 25540 + 25529 25541 xmrig-proxy = callPackage ../applications/misc/xmrig/proxy.nix { }; 25530 25542 25531 25543 molot-lite = callPackage ../applications/audio/molot-lite { }; ··· 27227 27239 27228 27240 thunderbolt = callPackage ../os-specific/linux/thunderbolt {}; 27229 27241 27230 - thunderbird-bin = thunderbird-bin-78; 27231 - thunderbird-bin-78 = callPackage ../applications/networking/mailreaders/thunderbird-bin { }; 27242 + thunderbird-bin = thunderbird-bin-91; 27243 + thunderbird-bin-91 = callPackage ../applications/networking/mailreaders/thunderbird-bin { }; 27232 27244 27233 27245 ticpp = callPackage ../development/libraries/ticpp { }; 27234 27246
+5 -11
pkgs/top-level/linux-kernels.nix
··· 137 137 ]; 138 138 }; 139 139 140 - linux_5_12 = callPackage ../os-specific/linux/kernel/linux-5.12.nix { 141 - kernelPatches = [ 142 - kernelPatches.bridge_stp_helper 143 - kernelPatches.request_key_helper 144 - ]; 145 - }; 146 - 147 140 linux_5_13 = callPackage ../os-specific/linux/kernel/linux-5.13.nix { 148 141 kernelPatches = [ 149 142 kernelPatches.bridge_stp_helper ··· 446 439 linux_4_19 = recurseIntoAttrs (packagesFor kernels.linux_4_19); 447 440 linux_5_4 = recurseIntoAttrs (packagesFor kernels.linux_5_4); 448 441 linux_5_10 = recurseIntoAttrs (packagesFor kernels.linux_5_10); 449 - linux_5_12 = recurseIntoAttrs (packagesFor kernels.linux_5_12); 450 442 linux_5_13 = recurseIntoAttrs (packagesFor kernels.linux_5_13); 451 443 }; 452 444 ··· 472 464 linux_testing_bcachefs = recurseIntoAttrs (packagesFor kernels.linux_testing_bcachefs); 473 465 474 466 linux_hardened = recurseIntoAttrs (hardenedPackagesFor packageAliases.linux_default.kernel { }); 475 - # Note: We use an explicit version instead of linux_latest since the hardened patches 476 - # can lag behind and we don't want to delay updates. 477 - linux_latest_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_12 { }); 467 + 468 + linux_4_14_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_4_14 { }); 469 + linux_4_19_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_4_19 { }); 470 + linux_5_4_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_4 { }); 471 + linux_5_10_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_10 { }); 478 472 479 473 linux_zen = recurseIntoAttrs (packagesFor kernels.linux_zen); 480 474 linux_lqx = recurseIntoAttrs (packagesFor kernels.linux_lqx);
+9
pkgs/top-level/perl-packages.nix
··· 9 9 , stdenv, lib, buildPackages, pkgs 10 10 , fetchurl, fetchgit, fetchpatch, fetchFromGitHub 11 11 , perl, overrides, buildPerl, shortenPerlShebang 12 + , nixosTests 12 13 }: 13 14 14 15 # cpan2nix assumes that perl-packages.nix will be used only with perl 5.30.3 or above ··· 13721 13722 url = "mirror://cpan/authors/id/S/SH/SHAY/mod_perl-2.0.11.tar.gz"; 13722 13723 sha256 = "0x3gq4nz96y202cymgrf56n8spm7bffkd1p74dh9q3zrrlc9wana"; 13723 13724 }; 13725 + 13726 + patches = [ 13727 + # Fix build on perl-5.34.0, https://github.com/Perl/perl5/issues/18617 13728 + ../development/perl-modules/mod_perl2-PL_hash_seed.patch 13729 + ]; 13730 + 13724 13731 makeMakerFlags = "MP_AP_DESTDIR=$out"; 13725 13732 buildInputs = [ pkgs.apacheHttpd ]; 13726 13733 doCheck = false; # would try to start Apache HTTP server ··· 13728 13735 description = "Embed a Perl interpreter in the Apache HTTP server"; 13729 13736 license = lib.licenses.asl20; 13730 13737 }; 13738 + 13739 + passthru.tests = nixosTests.mod_perl; 13731 13740 }; 13732 13741 13733 13742 Mojolicious = buildPerlPackage {
+1
pkgs/top-level/python-aliases.nix
··· 49 49 glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28 50 50 google_api_python_client = google-api-python-client; # added 2021-03-19 51 51 googleapis_common_protos = googleapis-common-protos; # added 2021-03-19 52 + grpc_google_iam_v1 = grpc-google-iam-v1; # added 2021-08-21 52 53 HAP-python = hap-python; # added 2021-06-01 53 54 lammps-cython = throw "no longer builds and is unmaintained"; 54 55 MechanicalSoup = mechanicalsoup; # added 2021-06-01
+7 -1
pkgs/top-level/python-packages.nix
··· 2784 2784 2785 2785 furl = callPackage ../development/python-modules/furl { }; 2786 2786 2787 + furo = callPackage ../development/python-modules/furo { }; 2788 + 2787 2789 fuse = callPackage ../development/python-modules/fuse-python { 2788 2790 inherit (pkgs) fuse; 2789 2791 }; ··· 2997 2999 2998 3000 google-cloud-core = callPackage ../development/python-modules/google-cloud-core { }; 2999 3001 3002 + google-cloud-datacatalog = callPackage ../development/python-modules/google-cloud-datacatalog { }; 3003 + 3000 3004 google-cloud-dataproc = callPackage ../development/python-modules/google-cloud-dataproc { }; 3001 3005 3002 3006 google-cloud-datastore = callPackage ../development/python-modules/google-cloud-datastore { }; ··· 3164 3168 3165 3169 grip = callPackage ../development/python-modules/grip { }; 3166 3170 3167 - grpc_google_iam_v1 = callPackage ../development/python-modules/grpc_google_iam_v1 { }; 3171 + grpc-google-iam-v1 = callPackage ../development/python-modules/grpc-google-iam-v1 { }; 3168 3172 3169 3173 grpcio = callPackage ../development/python-modules/grpcio { }; 3170 3174 ··· 8480 8484 subdownloader = callPackage ../development/python-modules/subdownloader { }; 8481 8485 8482 8486 subliminal = callPackage ../development/python-modules/subliminal { }; 8487 + 8488 + subprocess-tee = callPackage ../development/python-modules/subprocess-tee { }; 8483 8489 8484 8490 subunit = callPackage ../development/python-modules/subunit { 8485 8491 inherit (pkgs) subunit cppunit check;
+2
pkgs/top-level/stage.nix
··· 239 239 gnu = lib.systems.parse.abis.musl; 240 240 gnueabi = lib.systems.parse.abis.musleabi; 241 241 gnueabihf = lib.systems.parse.abis.musleabihf; 242 + musleabi = lib.systems.parse.abis.musleabi; 243 + musleabihf = lib.systems.parse.abis.musleabihf; 242 244 }.${stdenv.hostPlatform.parsed.abi.name} 243 245 or lib.systems.parse.abis.musl; 244 246 };