lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
e4af2372 56daf120

+1416 -482
+50 -2
doc/languages-frameworks/python.section.md
··· 744 744 unittestFlags = [ "-s" "tests" "-v" ]; 745 745 ``` 746 746 747 + ##### Using sphinxHook {#using-sphinxhook} 748 + 749 + The `sphinxHook` is a helpful tool to build documentation and manpages 750 + using the popular Sphinx documentation generator. 751 + It is setup to automatically find common documentation source paths and 752 + render them using the default `html` style. 753 + 754 + ``` 755 + outputs = [ 756 + "out" 757 + "doc" 758 + ]; 759 + 760 + nativeBuildInputs = [ 761 + sphinxHook 762 + ]; 763 + ``` 764 + 765 + The hook will automatically build and install the artifact into the 766 + `doc` output, if it exists. It also provides an automatic diversion 767 + for the artifacts of the `man` builder into the `man` target. 768 + 769 + ``` 770 + outputs = [ 771 + "out" 772 + "doc" 773 + "man" 774 + ]; 775 + 776 + # Use multiple builders 777 + sphinxBuilders = [ 778 + "singlehtml" 779 + "man" 780 + ]; 781 + ``` 782 + 783 + Overwrite `sphinxRoot` when the hook is unable to find your 784 + documentation source root. 785 + 786 + ``` 787 + # Configure sphinxRoot for uncommon paths 788 + sphinxRoot = "weird/docs/path"; 789 + ``` 790 + 791 + The hook is also available to packages outside the python ecosystem by 792 + referencing it using `python3.pkgs.sphinxHook`. 793 + 747 794 ### Develop local package {#develop-local-package} 748 795 749 796 As a Python developer you're likely aware of [development mode](http://setuptools.readthedocs.io/en/latest/setuptools.html#development-mode) ··· 1270 1317 - `pytestCheckHook` to run tests with `pytest`. See [example usage](#using-pytestcheckhook). 1271 1318 - `pythonCatchConflictsHook` to check whether a Python package is not already existing. 1272 1319 - `pythonImportsCheckHook` to check whether importing the listed modules works. 1320 + - `pythonRelaxDepsHook` will relax Python dependencies restrictions for the package. 1321 + See [example usage](#using-pythonrelaxdepshook). 1273 1322 - `pythonRemoveBinBytecode` to remove bytecode from the `/bin` folder. 1274 1323 - `setuptoolsBuildHook` to build a wheel using `setuptools`. 1275 1324 - `setuptoolsCheckHook` to run tests with `python setup.py test`. 1325 + - `sphinxHook` to build documentation and manpages using Sphinx. 1276 1326 - `venvShellHook` to source a Python 3 `venv` at the `venvDir` location. A 1277 1327 `venv` is created if it does not yet exist. `postVenvCreation` can be used to 1278 1328 to run commands only after venv is first created. 1279 1329 - `wheelUnpackHook` to move a wheel to the correct folder so it can be installed 1280 1330 with the `pipInstallHook`. 1281 - - `pythonRelaxDepsHook` will relax Python dependencies restrictions for the package. 1282 - See [example usage](#using-pythonrelaxdepshook). 1283 1331 - `unittestCheckHook` will run tests with `python -m unittest discover`. See [example usage](#using-unittestcheckhook). 1284 1332 1285 1333 ### Development mode {#development-mode}
+2 -2
nixos/modules/services/backup/sanoid.nix
··· 130 130 type = types.attrsOf (types.submodule ({ config, options, ... }: { 131 131 freeformType = datasetSettingsType; 132 132 options = commonOptions // datasetOptions; 133 - config.use_template = mkAliasDefinitions (mkDefault options.useTemplate or { }); 134 - config.process_children_only = mkAliasDefinitions (mkDefault options.processChildrenOnly or { }); 133 + config.use_template = modules.mkAliasAndWrapDefsWithPriority id (options.useTemplate or { }); 134 + config.process_children_only = modules.mkAliasAndWrapDefsWithPriority id (options.processChildrenOnly or { }); 135 135 })); 136 136 default = { }; 137 137 description = lib.mdDoc "Datasets to snapshot.";
+12
nixos/tests/sanoid.nix
··· 34 34 autosnap = true; 35 35 }; 36 36 datasets."pool/sanoid".use_template = [ "test" ]; 37 + datasets."pool/compat".useTemplate = [ "test" ]; 37 38 extraArgs = [ "--verbose" ]; 38 39 }; 39 40 ··· 51 52 52 53 # Test pool without parent (regression test for https://github.com/NixOS/nixpkgs/pull/180111) 53 54 "pool".target = "root@target:pool/full-pool"; 55 + 56 + # Test backward compatible options (regression test for https://github.com/NixOS/nixpkgs/issues/181561) 57 + "pool/compat" = { 58 + target = "root@target:pool/compat"; 59 + extraArgs = [ "--no-sync-snap" ]; 60 + }; 54 61 }; 55 62 }; 56 63 }; ··· 70 77 "udevadm settle", 71 78 "zpool create pool -R /mnt /dev/vdb1", 72 79 "zfs create pool/sanoid", 80 + "zfs create pool/compat", 73 81 "zfs create pool/syncoid", 74 82 "udevadm settle", 75 83 ) ··· 94 102 95 103 # Take snapshot with sanoid 96 104 source.succeed("touch /mnt/pool/sanoid/test.txt") 105 + source.succeed("touch /mnt/pool/compat/test.txt") 97 106 source.systemctl("start --wait sanoid.service") 98 107 99 108 assert len(source.succeed("zfs allow pool")) == 0, "Pool shouldn't have delegated permissions set after snapshotting" ··· 110 119 111 120 source.systemctl("start --wait syncoid-pool.service") 112 121 target.succeed("[[ -d /mnt/pool/full-pool/syncoid ]]") 122 + 123 + source.systemctl("start --wait syncoid-pool-compat.service") 124 + target.succeed("cat /mnt/pool/compat/test.txt") 113 125 114 126 assert len(source.succeed("zfs allow pool")) == 0, "Pool shouldn't have delegated permissions set after syncing snapshots" 115 127 assert len(source.succeed("zfs allow pool/sanoid")) == 0, "Sanoid dataset shouldn't have delegated permissions set after syncing snapshots"
+2
pkgs/applications/audio/tidal-hifi/default.nix
··· 106 106 makeWrapper $out/opt/tidal-hifi/tidal-hifi $out/bin/tidal-hifi \ 107 107 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \ 108 108 "''${gappsWrapperArgs[@]}" 109 + substituteInPlace $out/share/applications/tidal-hifi.desktop --replace \ 110 + "/opt/tidal-hifi/tidal-hifi" "tidal-hifi" 109 111 ''; 110 112 111 113 meta = with lib; {
+2 -2
pkgs/applications/graphics/foxotron/default.nix
··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "foxotron"; 28 - version = "2022-03-06"; 28 + version = "2022-08-06"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "Gargaj"; 32 32 repo = "Foxotron"; 33 33 rev = version; 34 34 fetchSubmodules = true; 35 - sha256 = "sha256-w66wi+aMwQa9akfNA/1cS6UmDXPWC4OPK9BIa9Kt47A="; 35 + sha256 = "sha256-IGLoiUeHcTlQ+WJTot3o5/Q+jRJcY52I3xHDAT0zuIU="; 36 36 }; 37 37 38 38 nativeBuildInputs = [ cmake pkg-config makeWrapper ];
+4 -1
pkgs/applications/kde/kdepim-runtime/default.nix
··· 3 3 extra-cmake-modules, kdoctools, 4 4 shared-mime-info, 5 5 akonadi, akonadi-calendar, akonadi-contacts, akonadi-mime, akonadi-notes, 6 - kholidays, kcalutils, kcontacts, kdav, kidentitymanagement, 6 + cyrus_sasl, kholidays, kcalutils, kcontacts, kdav, kidentitymanagement, 7 7 kimap, kldap, kmailtransport, kmbox, kmime, knotifications, knotifyconfig, 8 8 pimcommon, libkgapi, libsecret, 9 9 qca-qt5, qtkeychain, qtnetworkauth, qtspeech, qtwebengine, qtxmlpatterns, ··· 22 22 kldap kmailtransport kmbox kmime knotifications knotifyconfig qtwebengine 23 23 pimcommon libkgapi libsecret 24 24 qca-qt5 qtkeychain qtnetworkauth qtspeech qtxmlpatterns 25 + ]; 26 + qtWrapperArgs = [ 27 + "--prefix SASL_PATH : ${lib.makeSearchPath "lib/sasl2" [ cyrus_sasl libkgapi ]}" 25 28 ]; 26 29 }
+49
pkgs/applications/misc/darkman/default.nix
··· 1 + { lib, fetchFromGitLab, buildGoModule, scdoc, nix-update-script }: 2 + 3 + buildGoModule rec { 4 + pname = "darkman"; 5 + version = "1.3.1"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "WhyNotHugo"; 9 + repo = "darkman"; 10 + rev = "v${version}"; 11 + sha256 = "09iwc9cwwc88c6yrf6a552nbsnf1w8cnlra9axsar2p0k21v5yl1"; 12 + }; 13 + 14 + vendorSha256 = "09rjqw6v1jaf0mhmycw9mcay9q0y1fya2azj8216gdgkl48ics08"; 15 + 16 + nativeBuildInputs = [ scdoc ]; 17 + 18 + postPatch = '' 19 + substituteInPlace darkman.service \ 20 + --replace "/usr/bin/darkman" "$out/bin/darkman" 21 + substituteInPlace contrib/dbus/nl.whynothugo.darkman.service \ 22 + --replace "/usr/bin/darkman" "$out/bin/darkman" 23 + substituteInPlace contrib/dbus/org.freedesktop.impl.portal.desktop.darkman.service \ 24 + --replace "/usr/bin/darkman" "$out/bin/darkman" 25 + ''; 26 + 27 + buildPhase = '' 28 + runHook preBuild 29 + make build 30 + runHook postBuild 31 + ''; 32 + 33 + installPhase = '' 34 + runHook preInstall 35 + make PREFIX=$out install 36 + runHook postInstall 37 + ''; 38 + 39 + passthru.updateScript = nix-update-script { 40 + attrPath = pname; 41 + }; 42 + 43 + meta = with lib; { 44 + description = "Framework for dark-mode and light-mode transitions on Linux desktop"; 45 + homepage = "https://gitlab.com/WhyNotHugo/darkman"; 46 + license = licenses.isc; 47 + maintainers = [ maintainers.ajgrf ]; 48 + }; 49 + }
+9 -1
pkgs/applications/misc/djvulibre/default.nix
··· 4 4 , libtiff 5 5 , librsvg 6 6 , libiconv 7 + , bash 7 8 }: 8 9 9 10 stdenv.mkDerivation rec { ··· 17 18 18 19 outputs = [ "bin" "dev" "out" ]; 19 20 21 + strictDeps = true; 22 + nativeBuildInputs = [ 23 + librsvg 24 + ]; 25 + 20 26 buildInputs = [ 21 27 libjpeg 22 28 libtiff 23 - librsvg 24 29 libiconv 30 + bash 25 31 ]; 32 + 33 + enableParallelBuilding = true; 26 34 27 35 meta = with lib; { 28 36 description = "The big set of CLI tools to make/modify/optimize/show/export DJVU files";
+2 -2
pkgs/applications/networking/cluster/helm/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubernetes-helm"; 5 - version = "3.9.3"; 5 + version = "3.9.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "helm"; 9 9 repo = "helm"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-fRlHI2g+pSexPzeEqUnow5WTPvNMGnQNWjnllzJ42fY="; 11 + sha256 = "sha256-KIqbugEzwjlDcQPiQQjN+i05rcMNIbYpGufVYZwQ/uQ="; 12 12 }; 13 13 vendorSha256 = "sha256-ZOY25wgxCdVQafdhBW4Z3aQxOGTs7N3SvSDJ/Fu5psg="; 14 14
+3 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 169 169 mkTerraform = attrs: pluggable (generic attrs); 170 170 171 171 terraform_1 = mkTerraform { 172 - version = "1.2.7"; 173 - sha256 = "sha256-0AGONBurlm0cSM4HyAmUxLt8GdnqNPh146A8ibyfe+k="; 174 - vendorSha256 = "sha256-Whe1prBGsE0q0QdNkzAKwvAP7EVlnD/985gjngh+VI4="; 172 + version = "1.2.8"; 173 + sha256 = "sha256-FJHZtYQHzRPWlSlXYu8mdd0YddIrBy8eBzhsvAHwfZw="; 174 + vendorSha256 = "sha256-VKJ+aWZYD6N8HDJwUEtgWxoBMGOa27K9ze2RUJvuipc="; 175 175 patches = [ ./provider-path-0_15.patch ]; 176 176 passthru = { 177 177 inherit plugins;
+95
pkgs/applications/office/cutemarked-ng/0001-remove-dependency-on-vendored-library.patch
··· 1 + From b9bf46966dd7931f9f33c30ed608a21d0e71e923 Mon Sep 17 00:00:00 2001 2 + From: rewine <lhongxu@outlook.com> 3 + Date: Tue, 19 Jul 2022 13:19:10 +0800 4 + Subject: [PATCH 1/2] remove dependency on vendored library 5 + 6 + --- 7 + CuteMarkEd.pro | 4 +--- 8 + app-static/app-static.pro | 11 ++--------- 9 + app/app.pro | 2 -- 10 + app/cutemarkdownhighlighter.h | 2 +- 11 + 4 files changed, 4 insertions(+), 15 deletions(-) 12 + 13 + diff --git a/CuteMarkEd.pro b/CuteMarkEd.pro 14 + index 4ee92e3..0d247a4 100644 15 + --- a/CuteMarkEd.pro 16 + +++ b/CuteMarkEd.pro 17 + @@ -9,12 +9,10 @@ TEMPLATE = subdirs 18 + CONFIG += c++14 19 + 20 + SUBDIRS = \ 21 + - 3rdparty \ 22 + libs \ 23 + app-static \ 24 + app \ 25 + - fontawesomeicon \ 26 + - test 27 + + fontawesomeicon 28 + 29 + # build order: 3rdparty -> libs -> app-static -> app & test 30 + #libs.depends = 3rdparty 31 + diff --git a/app-static/app-static.pro b/app-static/app-static.pro 32 + index cd3c292..560b4fc 100644 33 + --- a/app-static/app-static.pro 34 + +++ b/app-static/app-static.pro 35 + @@ -13,7 +13,6 @@ CONFIG += c++11 36 + 37 + INCLUDEPATH += $$PWD 38 + # MD4C library 39 + -INCLUDEPATH += $$PWD/../3rdparty/md4c/src 40 + 41 + SOURCES += \ 42 + snippets/jsonsnippettranslator.cpp \ 43 + @@ -34,10 +33,7 @@ SOURCES += \ 44 + revealviewsynchronizer.cpp \ 45 + htmlpreviewcontroller.cpp \ 46 + htmlviewsynchronizer.cpp \ 47 + - yamlheaderchecker.cpp \ 48 + - $$PWD/../3rdparty/md4c/src/md4c.c \ 49 + - $$PWD/../3rdparty/md4c/src/entity.c \ 50 + - $$PWD/../3rdparty/md4c/src/md4c-html.c 51 + + yamlheaderchecker.cpp 52 + 53 + HEADERS += \ 54 + snippets/snippet.h \ 55 + @@ -64,10 +60,7 @@ HEADERS += \ 56 + revealviewsynchronizer.h \ 57 + htmlpreviewcontroller.h \ 58 + htmlviewsynchronizer.h \ 59 + - yamlheaderchecker.h \ 60 + - $$PWD/../3rdparty/md4c/src/md4c.h \ 61 + - $$PWD/../3rdparty/md4c/src/entity.h \ 62 + - $$PWD/../3rdparty/md4c/src/md4c-html.h 63 + + yamlheaderchecker.h 64 + 65 + 66 + #unix:!symbian { 67 + diff --git a/app/app.pro b/app/app.pro 68 + index 4827673..ab961cf 100644 69 + --- a/app/app.pro 70 + +++ b/app/app.pro 71 + @@ -40,8 +40,6 @@ macx { 72 + } 73 + 74 + #qmarkdowntextedit 75 + -include(../3rdparty/qmarkdowntextedit/qmarkdowntextedit.pri) 76 + -include(../3rdparty/hunspell/hunspell.pri) 77 + INCLUDEPATH += $$PWD 78 + 79 + SOURCES += \ 80 + diff --git a/app/cutemarkdownhighlighter.h b/app/cutemarkdownhighlighter.h 81 + index c99ab56..78f2be6 100644 82 + --- a/app/cutemarkdownhighlighter.h 83 + +++ b/app/cutemarkdownhighlighter.h 84 + @@ -19,7 +19,7 @@ 85 + 86 + #include <QSyntaxHighlighter> 87 + 88 + -#include "../3rdparty/qmarkdowntextedit/markdownhighlighter.h" 89 + +#include <QMarkdownTextedit/markdownhighlighter.h> 90 + 91 + namespace hunspell { 92 + class SpellChecker; 93 + -- 94 + 2.36.1 95 +
+25
pkgs/applications/office/cutemarked-ng/0002-use-pkgcofig-to-find-libraries.patch
··· 1 + From bdc66eace846edc8a7b435f7ca9f324427243ce4 Mon Sep 17 00:00:00 2001 2 + From: rewine <lhongxu@outlook.com> 3 + Date: Thu, 21 Jul 2022 17:30:22 +0800 4 + Subject: [PATCH 2/2] use pkgcofig to find libraries 5 + 6 + --- 7 + app/app.pro | 2 ++ 8 + 1 file changed, 2 insertions(+) 9 + 10 + diff --git a/app/app.pro b/app/app.pro 11 + index ab961cf..475487d 100644 12 + --- a/app/app.pro 13 + +++ b/app/app.pro 14 + @@ -13,6 +13,8 @@ win32: QT += winextras 15 + TARGET = cutemarked 16 + TEMPLATE = app 17 + CONFIG += c++11 18 + +CONFIG += link_pkgconfig 19 + +PKGCONFIG += QMarkdownTextedit hunspell md4c-html 20 + 21 + unix:!macx { 22 + CONFIG += link_pkgconfig 23 + -- 24 + 2.36.1 25 +
+57
pkgs/applications/office/cutemarked-ng/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , qmake 5 + , pkg-config 6 + , qttools 7 + , qtbase 8 + , qtwebengine 9 + , wrapQtAppsHook 10 + , qmarkdowntextedit 11 + , md4c 12 + , hunspell 13 + }: 14 + 15 + stdenv.mkDerivation rec { 16 + pname = "CuteMarkEd-NG"; 17 + version = "unstable-2021-07-29"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "Waqar144"; 21 + repo = pname; 22 + rev = "9431ac603cef23d6f29e51e18f1eeee156f5bfb3"; 23 + sha256 = "sha256-w/D4C2ZYgI/7ZCDamTQlhrJ9vtvAMThgM/fopkdKWYc"; 24 + }; 25 + 26 + patches = [ 27 + ./0001-remove-dependency-on-vendored-library.patch 28 + ./0002-use-pkgcofig-to-find-libraries.patch 29 + ]; 30 + 31 + postPatch = '' 32 + substituteInPlace app/app.pro \ 33 + --replace '$$[QT_INSTALL_BINS]/lrelease' "lrelease" 34 + ''; 35 + 36 + nativeBuildInputs = [ 37 + qmake 38 + qttools 39 + pkg-config 40 + wrapQtAppsHook 41 + ]; 42 + 43 + buildInputs = [ 44 + md4c 45 + qtwebengine 46 + qmarkdowntextedit 47 + hunspell.dev 48 + ]; 49 + 50 + meta = with lib; { 51 + description = "A Qt-based, free and open source markdown editor"; 52 + homepage = "https://github.com/Waqar144/CuteMarkEd-NG"; 53 + license = licenses.gpl2Plus; 54 + maintainers = with maintainers; [ rewine ]; 55 + platforms = platforms.linux; 56 + }; 57 + }
+7
pkgs/applications/science/math/wolfram-engine/l10ns.nix
··· 8 8 # N.B. Versions in this list should be ordered from newest to oldest. 9 9 [ 10 10 { 11 + version = "13.1.0"; 12 + lang = "en"; 13 + language = "English"; 14 + sha256 = "1659kyp38a8xknic95pynx9fsgn96i8jn9lnk89pc8n6vydw1460"; 15 + installer = "WolframEngine_13.1.0_LINUX.sh"; 16 + } 17 + { 11 18 version = "13.0.1"; 12 19 lang = "en"; 13 20 language = "English";
+4 -4
pkgs/applications/version-management/gitkraken/default.nix
··· 10 10 11 11 let 12 12 pname = "gitkraken"; 13 - version = "8.6.0"; 13 + version = "8.8.0"; 14 14 15 15 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; 16 16 17 17 srcs = { 18 18 x86_64-linux = fetchzip { 19 19 url = "https://release.axocdn.com/linux/GitKraken-v${version}.tar.gz"; 20 - sha256 = "sha256-BBhKenEm1D680wJ1hmIOM/AdXN1DxoipLf9K4eHESzs="; 20 + sha256 = "sha256-F/uqV6CL/zFERS6nKVD8kEqCZQ2O9AGGzU5uCJ94qwk="; 21 21 }; 22 22 23 23 x86_64-darwin = fetchzip { 24 24 url = "https://release.axocdn.com/darwin/GitKraken-v${version}.zip"; 25 - sha256 = "sha256-fyRhvaKDGYyKu6lAxHb5ve7Ix+7Tuu5JWXnqBF73ti4="; 25 + sha256 = "sha256-TWkwN39SxPRvUUjAPSBxv4octWasjRiA91FNCWRya44="; 26 26 }; 27 27 28 28 aarch64-darwin = fetchzip { 29 29 url = "https://release.axocdn.com/darwin-arm64/GitKraken-v${version}.zip"; 30 - sha256 = "sha256-qbu3gPTo5zY7OQyULY2iIUDQjwjlL4xZdkl68rE3VHA="; 30 + sha256 = "sha256-drAj0t8BRUETQ6mZPdHXgkuFAKeYsGLE8oLtf/imHk4="; 31 31 }; 32 32 }; 33 33
+4 -4
pkgs/applications/video/handbrake/default.nix
··· 57 57 , libdvdcss 58 58 , libbluray 59 59 # Darwin-specific 60 - , AudioToolbox ? null 61 - , Foundation ? null 62 - , libobjc ? null 63 - , VideoToolbox ? null 60 + , AudioToolbox 61 + , Foundation 62 + , libobjc 63 + , VideoToolbox 64 64 # GTK 65 65 # NOTE: 2019-07-19: The gtk3 package has a transitive dependency on dbus, 66 66 # which in turn depends on systemd. systemd is not supported on Darwin, so
+3 -3
pkgs/applications/virtualization/docker/compose.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "docker-compose"; 5 - version = "2.10.0"; 5 + version = "2.10.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "docker"; 9 9 repo = "compose"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-SXmYf1IvHXzNLP6w8MzFx6W2kX4yIICuACOJ8Yu/HWE="; 11 + sha256 = "sha256-SAq6sXhYySqebXbWHJ9X6q1wWnNJjgwKf8YLTXZpKuA="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-nqfCdvgK2JF4XNnA14KJNngP2M/OKThawdTo+iPjRNM="; 14 + vendorSha256 = "sha256-Yz2lea+ttgNbfP1mL+kwTKmo81Q6GGjJyvDANzeckpo="; 15 15 16 16 ldflags = [ "-X github.com/docker/compose/v2/internal.Version=${version}" "-s" "-w" ]; 17 17
+34
pkgs/data/icons/hackneyed/default.nix
··· 1 + { lib, fetchzip, stdenvNoCC, fetchFromGitLab, xcursorgen, imagemagick6, inkscape }: 2 + 3 + stdenvNoCC.mkDerivation rec { 4 + pname = "hackneyed"; 5 + version = "0.8.2"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "Enthymeme"; 9 + repo = "hackneyed-x11-cursors"; 10 + rev = version; 11 + sha256 = "sha256-Wtrw/EzxCj4cAyfdBp0OJE4+c6FouW7+b6nFTLxdXNY="; 12 + }; 13 + 14 + buildInputs = [ imagemagick6 inkscape xcursorgen ]; 15 + 16 + postPatch = '' 17 + patchShebangs *.sh 18 + substituteInPlace make-png.sh \ 19 + --replace /usr/bin/inkscape ${inkscape}/bin/inkscape 20 + ''; 21 + 22 + enableParallelBuilding = true; 23 + 24 + makeFlags = [ "PREFIX=$(out)" ]; 25 + buildFlags = [ "theme" "theme.left" ]; 26 + 27 + meta = with lib; { 28 + homepage = "https://gitlab.com/Enthymeme/hackneyed-x11-cursors"; 29 + description = "A scalable cursor theme that resembles Windows 3.x/NT 3.x cursors"; 30 + platforms = platforms.all; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ somasis ]; 33 + }; 34 + }
+425 -349
pkgs/development/compilers/elm/packages/node-packages.nix
··· 31 31 sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; 32 32 }; 33 33 }; 34 - "@babel/compat-data-7.18.8" = { 34 + "@babel/compat-data-7.18.13" = { 35 35 name = "_at_babel_slash_compat-data"; 36 36 packageName = "@babel/compat-data"; 37 - version = "7.18.8"; 37 + version = "7.18.13"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz"; 40 - sha512 = "HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ=="; 39 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.13.tgz"; 40 + sha512 = "5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw=="; 41 41 }; 42 42 }; 43 43 "@babel/core-7.12.10" = { ··· 49 49 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 50 50 }; 51 51 }; 52 - "@babel/generator-7.18.7" = { 52 + "@babel/generator-7.18.13" = { 53 53 name = "_at_babel_slash_generator"; 54 54 packageName = "@babel/generator"; 55 - version = "7.18.7"; 55 + version = "7.18.13"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz"; 58 - sha512 = "shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A=="; 57 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.18.13.tgz"; 58 + sha512 = "CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ=="; 59 59 }; 60 60 }; 61 61 "@babel/helper-annotate-as-pure-7.18.6" = { ··· 67 67 sha512 = "duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="; 68 68 }; 69 69 }; 70 - "@babel/helper-builder-binary-assignment-operator-visitor-7.18.6" = { 70 + "@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" = { 71 71 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 72 72 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 73 - version = "7.18.6"; 73 + version = "7.18.9"; 74 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz"; 76 - sha512 = "KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw=="; 75 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz"; 76 + sha512 = "yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw=="; 77 77 }; 78 78 }; 79 - "@babel/helper-compilation-targets-7.18.6" = { 79 + "@babel/helper-compilation-targets-7.18.9" = { 80 80 name = "_at_babel_slash_helper-compilation-targets"; 81 81 packageName = "@babel/helper-compilation-targets"; 82 - version = "7.18.6"; 82 + version = "7.18.9"; 83 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz"; 85 - sha512 = "vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg=="; 84 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz"; 85 + sha512 = "tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg=="; 86 86 }; 87 87 }; 88 - "@babel/helper-create-class-features-plugin-7.18.6" = { 88 + "@babel/helper-create-class-features-plugin-7.18.13" = { 89 89 name = "_at_babel_slash_helper-create-class-features-plugin"; 90 90 packageName = "@babel/helper-create-class-features-plugin"; 91 - version = "7.18.6"; 91 + version = "7.18.13"; 92 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz"; 94 - sha512 = "YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw=="; 93 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.13.tgz"; 94 + sha512 = "hDvXp+QYxSRL+23mpAlSGxHMDyIGChm0/AwTfTAAK5Ufe40nCsyNdaYCGuK91phn/fVu9kqayImRDkvNAgdrsA=="; 95 95 }; 96 96 }; 97 97 "@babel/helper-create-regexp-features-plugin-7.18.6" = { ··· 103 103 sha512 = "7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A=="; 104 104 }; 105 105 }; 106 - "@babel/helper-environment-visitor-7.18.6" = { 106 + "@babel/helper-environment-visitor-7.18.9" = { 107 107 name = "_at_babel_slash_helper-environment-visitor"; 108 108 packageName = "@babel/helper-environment-visitor"; 109 - version = "7.18.6"; 109 + version = "7.18.9"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz"; 112 - sha512 = "8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q=="; 111 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"; 112 + sha512 = "3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="; 113 113 }; 114 114 }; 115 115 "@babel/helper-explode-assignable-expression-7.18.6" = { ··· 121 121 sha512 = "eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg=="; 122 122 }; 123 123 }; 124 - "@babel/helper-function-name-7.18.6" = { 124 + "@babel/helper-function-name-7.18.9" = { 125 125 name = "_at_babel_slash_helper-function-name"; 126 126 packageName = "@babel/helper-function-name"; 127 - version = "7.18.6"; 127 + version = "7.18.9"; 128 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz"; 130 - sha512 = "0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw=="; 129 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz"; 130 + sha512 = "fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A=="; 131 131 }; 132 132 }; 133 133 "@babel/helper-hoist-variables-7.18.6" = { ··· 139 139 sha512 = "UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="; 140 140 }; 141 141 }; 142 - "@babel/helper-member-expression-to-functions-7.18.6" = { 142 + "@babel/helper-member-expression-to-functions-7.18.9" = { 143 143 name = "_at_babel_slash_helper-member-expression-to-functions"; 144 144 packageName = "@babel/helper-member-expression-to-functions"; 145 - version = "7.18.6"; 145 + version = "7.18.9"; 146 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz"; 148 - sha512 = "CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng=="; 147 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz"; 148 + sha512 = "RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg=="; 149 149 }; 150 150 }; 151 151 "@babel/helper-module-imports-7.18.6" = { ··· 157 157 sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; 158 158 }; 159 159 }; 160 - "@babel/helper-module-transforms-7.18.8" = { 160 + "@babel/helper-module-transforms-7.18.9" = { 161 161 name = "_at_babel_slash_helper-module-transforms"; 162 162 packageName = "@babel/helper-module-transforms"; 163 - version = "7.18.8"; 163 + version = "7.18.9"; 164 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.8.tgz"; 166 - sha512 = "che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA=="; 165 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz"; 166 + sha512 = "KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g=="; 167 167 }; 168 168 }; 169 169 "@babel/helper-optimise-call-expression-7.18.6" = { ··· 175 175 sha512 = "HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA=="; 176 176 }; 177 177 }; 178 - "@babel/helper-plugin-utils-7.18.6" = { 178 + "@babel/helper-plugin-utils-7.18.9" = { 179 179 name = "_at_babel_slash_helper-plugin-utils"; 180 180 packageName = "@babel/helper-plugin-utils"; 181 - version = "7.18.6"; 181 + version = "7.18.9"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz"; 184 - sha512 = "gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg=="; 183 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz"; 184 + sha512 = "aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w=="; 185 185 }; 186 186 }; 187 - "@babel/helper-remap-async-to-generator-7.18.6" = { 187 + "@babel/helper-remap-async-to-generator-7.18.9" = { 188 188 name = "_at_babel_slash_helper-remap-async-to-generator"; 189 189 packageName = "@babel/helper-remap-async-to-generator"; 190 - version = "7.18.6"; 190 + version = "7.18.9"; 191 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz"; 193 - sha512 = "z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ=="; 192 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz"; 193 + sha512 = "dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA=="; 194 194 }; 195 195 }; 196 - "@babel/helper-replace-supers-7.18.6" = { 196 + "@babel/helper-replace-supers-7.18.9" = { 197 197 name = "_at_babel_slash_helper-replace-supers"; 198 198 packageName = "@babel/helper-replace-supers"; 199 - version = "7.18.6"; 199 + version = "7.18.9"; 200 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz"; 202 - sha512 = "fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g=="; 201 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz"; 202 + sha512 = "dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ=="; 203 203 }; 204 204 }; 205 205 "@babel/helper-simple-access-7.18.6" = { ··· 211 211 sha512 = "iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g=="; 212 212 }; 213 213 }; 214 - "@babel/helper-skip-transparent-expression-wrappers-7.18.6" = { 214 + "@babel/helper-skip-transparent-expression-wrappers-7.18.9" = { 215 215 name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 216 216 packageName = "@babel/helper-skip-transparent-expression-wrappers"; 217 - version = "7.18.6"; 217 + version = "7.18.9"; 218 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz"; 220 - sha512 = "4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw=="; 219 + url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz"; 220 + sha512 = "imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw=="; 221 221 }; 222 222 }; 223 223 "@babel/helper-split-export-declaration-7.18.6" = { ··· 229 229 sha512 = "bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="; 230 230 }; 231 231 }; 232 + "@babel/helper-string-parser-7.18.10" = { 233 + name = "_at_babel_slash_helper-string-parser"; 234 + packageName = "@babel/helper-string-parser"; 235 + version = "7.18.10"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz"; 238 + sha512 = "XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="; 239 + }; 240 + }; 232 241 "@babel/helper-validator-identifier-7.18.6" = { 233 242 name = "_at_babel_slash_helper-validator-identifier"; 234 243 packageName = "@babel/helper-validator-identifier"; ··· 247 256 sha512 = "XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="; 248 257 }; 249 258 }; 250 - "@babel/helper-wrap-function-7.18.6" = { 259 + "@babel/helper-wrap-function-7.18.11" = { 251 260 name = "_at_babel_slash_helper-wrap-function"; 252 261 packageName = "@babel/helper-wrap-function"; 253 - version = "7.18.6"; 262 + version = "7.18.11"; 254 263 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz"; 256 - sha512 = "I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw=="; 264 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz"; 265 + sha512 = "oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w=="; 257 266 }; 258 267 }; 259 - "@babel/helpers-7.18.6" = { 268 + "@babel/helpers-7.18.9" = { 260 269 name = "_at_babel_slash_helpers"; 261 270 packageName = "@babel/helpers"; 262 - version = "7.18.6"; 271 + version = "7.18.9"; 263 272 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz"; 265 - sha512 = "vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ=="; 273 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz"; 274 + sha512 = "Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ=="; 266 275 }; 267 276 }; 268 277 "@babel/highlight-7.18.6" = { ··· 274 283 sha512 = "u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="; 275 284 }; 276 285 }; 277 - "@babel/parser-7.18.8" = { 286 + "@babel/parser-7.18.13" = { 278 287 name = "_at_babel_slash_parser"; 279 288 packageName = "@babel/parser"; 280 - version = "7.18.8"; 289 + version = "7.18.13"; 281 290 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.8.tgz"; 283 - sha512 = "RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA=="; 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz"; 292 + sha512 = "dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg=="; 284 293 }; 285 294 }; 286 - "@babel/plugin-proposal-async-generator-functions-7.18.6" = { 295 + "@babel/plugin-proposal-async-generator-functions-7.18.10" = { 287 296 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 288 297 packageName = "@babel/plugin-proposal-async-generator-functions"; 289 - version = "7.18.6"; 298 + version = "7.18.10"; 290 299 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz"; 292 - sha512 = "WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w=="; 300 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz"; 301 + sha512 = "1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew=="; 293 302 }; 294 303 }; 295 304 "@babel/plugin-proposal-class-properties-7.18.6" = { ··· 310 319 sha512 = "1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw=="; 311 320 }; 312 321 }; 313 - "@babel/plugin-proposal-export-namespace-from-7.18.6" = { 322 + "@babel/plugin-proposal-export-namespace-from-7.18.9" = { 314 323 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 315 324 packageName = "@babel/plugin-proposal-export-namespace-from"; 316 - version = "7.18.6"; 325 + version = "7.18.9"; 317 326 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz"; 319 - sha512 = "zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw=="; 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz"; 328 + sha512 = "k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA=="; 320 329 }; 321 330 }; 322 331 "@babel/plugin-proposal-json-strings-7.18.6" = { ··· 328 337 sha512 = "lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ=="; 329 338 }; 330 339 }; 331 - "@babel/plugin-proposal-logical-assignment-operators-7.18.6" = { 340 + "@babel/plugin-proposal-logical-assignment-operators-7.18.9" = { 332 341 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 333 342 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 334 - version = "7.18.6"; 343 + version = "7.18.9"; 335 344 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz"; 337 - sha512 = "zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q=="; 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz"; 346 + sha512 = "128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q=="; 338 347 }; 339 348 }; 340 349 "@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" = { ··· 355 364 sha512 = "ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q=="; 356 365 }; 357 366 }; 358 - "@babel/plugin-proposal-object-rest-spread-7.18.6" = { 367 + "@babel/plugin-proposal-object-rest-spread-7.18.9" = { 359 368 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 360 369 packageName = "@babel/plugin-proposal-object-rest-spread"; 361 - version = "7.18.6"; 370 + version = "7.18.9"; 362 371 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz"; 364 - sha512 = "9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw=="; 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz"; 373 + sha512 = "kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q=="; 365 374 }; 366 375 }; 367 376 "@babel/plugin-proposal-optional-catch-binding-7.18.6" = { ··· 373 382 sha512 = "Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw=="; 374 383 }; 375 384 }; 376 - "@babel/plugin-proposal-optional-chaining-7.18.6" = { 385 + "@babel/plugin-proposal-optional-chaining-7.18.9" = { 377 386 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 378 387 packageName = "@babel/plugin-proposal-optional-chaining"; 379 - version = "7.18.6"; 388 + version = "7.18.9"; 380 389 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz"; 382 - sha512 = "PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA=="; 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz"; 391 + sha512 = "v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w=="; 383 392 }; 384 393 }; 385 394 "@babel/plugin-proposal-private-methods-7.18.6" = { ··· 535 544 sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; 536 545 }; 537 546 }; 538 - "@babel/plugin-transform-block-scoping-7.18.6" = { 547 + "@babel/plugin-transform-block-scoping-7.18.9" = { 539 548 name = "_at_babel_slash_plugin-transform-block-scoping"; 540 549 packageName = "@babel/plugin-transform-block-scoping"; 541 - version = "7.18.6"; 550 + version = "7.18.9"; 542 551 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz"; 544 - sha512 = "pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ=="; 552 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz"; 553 + sha512 = "5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw=="; 545 554 }; 546 555 }; 547 - "@babel/plugin-transform-classes-7.18.8" = { 556 + "@babel/plugin-transform-classes-7.18.9" = { 548 557 name = "_at_babel_slash_plugin-transform-classes"; 549 558 packageName = "@babel/plugin-transform-classes"; 550 - version = "7.18.8"; 559 + version = "7.18.9"; 551 560 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.8.tgz"; 553 - sha512 = "RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg=="; 561 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz"; 562 + sha512 = "EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g=="; 554 563 }; 555 564 }; 556 - "@babel/plugin-transform-computed-properties-7.18.6" = { 565 + "@babel/plugin-transform-computed-properties-7.18.9" = { 557 566 name = "_at_babel_slash_plugin-transform-computed-properties"; 558 567 packageName = "@babel/plugin-transform-computed-properties"; 559 - version = "7.18.6"; 568 + version = "7.18.9"; 560 569 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz"; 562 - sha512 = "9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A=="; 570 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz"; 571 + sha512 = "+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw=="; 563 572 }; 564 573 }; 565 - "@babel/plugin-transform-destructuring-7.18.6" = { 574 + "@babel/plugin-transform-destructuring-7.18.13" = { 566 575 name = "_at_babel_slash_plugin-transform-destructuring"; 567 576 packageName = "@babel/plugin-transform-destructuring"; 568 - version = "7.18.6"; 577 + version = "7.18.13"; 569 578 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz"; 571 - sha512 = "tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ=="; 579 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz"; 580 + sha512 = "TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow=="; 572 581 }; 573 582 }; 574 583 "@babel/plugin-transform-dotall-regex-7.18.6" = { ··· 580 589 sha512 = "6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg=="; 581 590 }; 582 591 }; 583 - "@babel/plugin-transform-duplicate-keys-7.18.6" = { 592 + "@babel/plugin-transform-duplicate-keys-7.18.9" = { 584 593 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 585 594 packageName = "@babel/plugin-transform-duplicate-keys"; 586 - version = "7.18.6"; 595 + version = "7.18.9"; 587 596 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz"; 589 - sha512 = "NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg=="; 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz"; 598 + sha512 = "d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw=="; 590 599 }; 591 600 }; 592 601 "@babel/plugin-transform-exponentiation-operator-7.18.6" = { ··· 607 616 sha512 = "yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ=="; 608 617 }; 609 618 }; 610 - "@babel/plugin-transform-function-name-7.18.6" = { 619 + "@babel/plugin-transform-function-name-7.18.9" = { 611 620 name = "_at_babel_slash_plugin-transform-function-name"; 612 621 packageName = "@babel/plugin-transform-function-name"; 613 - version = "7.18.6"; 622 + version = "7.18.9"; 614 623 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz"; 616 - sha512 = "kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA=="; 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz"; 625 + sha512 = "WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ=="; 617 626 }; 618 627 }; 619 - "@babel/plugin-transform-literals-7.18.6" = { 628 + "@babel/plugin-transform-literals-7.18.9" = { 620 629 name = "_at_babel_slash_plugin-transform-literals"; 621 630 packageName = "@babel/plugin-transform-literals"; 622 - version = "7.18.6"; 631 + version = "7.18.9"; 623 632 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz"; 625 - sha512 = "x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q=="; 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"; 634 + sha512 = "IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg=="; 626 635 }; 627 636 }; 628 637 "@babel/plugin-transform-member-expression-literals-7.18.6" = { ··· 652 661 sha512 = "Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q=="; 653 662 }; 654 663 }; 655 - "@babel/plugin-transform-modules-systemjs-7.18.6" = { 664 + "@babel/plugin-transform-modules-systemjs-7.18.9" = { 656 665 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 657 666 packageName = "@babel/plugin-transform-modules-systemjs"; 658 - version = "7.18.6"; 667 + version = "7.18.9"; 659 668 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz"; 661 - sha512 = "UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g=="; 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz"; 670 + sha512 = "zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A=="; 662 671 }; 663 672 }; 664 673 "@babel/plugin-transform-modules-umd-7.18.6" = { ··· 751 760 sha512 = "eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw=="; 752 761 }; 753 762 }; 754 - "@babel/plugin-transform-spread-7.18.6" = { 763 + "@babel/plugin-transform-spread-7.18.9" = { 755 764 name = "_at_babel_slash_plugin-transform-spread"; 756 765 packageName = "@babel/plugin-transform-spread"; 757 - version = "7.18.6"; 766 + version = "7.18.9"; 758 767 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz"; 760 - sha512 = "ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw=="; 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz"; 769 + sha512 = "39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA=="; 761 770 }; 762 771 }; 763 772 "@babel/plugin-transform-sticky-regex-7.18.6" = { ··· 769 778 sha512 = "kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q=="; 770 779 }; 771 780 }; 772 - "@babel/plugin-transform-template-literals-7.18.6" = { 781 + "@babel/plugin-transform-template-literals-7.18.9" = { 773 782 name = "_at_babel_slash_plugin-transform-template-literals"; 774 783 packageName = "@babel/plugin-transform-template-literals"; 775 - version = "7.18.6"; 784 + version = "7.18.9"; 776 785 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz"; 778 - sha512 = "UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw=="; 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"; 787 + sha512 = "S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA=="; 779 788 }; 780 789 }; 781 - "@babel/plugin-transform-typeof-symbol-7.18.6" = { 790 + "@babel/plugin-transform-typeof-symbol-7.18.9" = { 782 791 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 783 792 packageName = "@babel/plugin-transform-typeof-symbol"; 784 - version = "7.18.6"; 793 + version = "7.18.9"; 785 794 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz"; 787 - sha512 = "7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g=="; 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz"; 796 + sha512 = "SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw=="; 788 797 }; 789 798 }; 790 - "@babel/plugin-transform-unicode-escapes-7.18.6" = { 799 + "@babel/plugin-transform-unicode-escapes-7.18.10" = { 791 800 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 792 801 packageName = "@babel/plugin-transform-unicode-escapes"; 793 - version = "7.18.6"; 802 + version = "7.18.10"; 794 803 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz"; 796 - sha512 = "XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw=="; 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz"; 805 + sha512 = "kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ=="; 797 806 }; 798 807 }; 799 808 "@babel/plugin-transform-unicode-regex-7.18.6" = { ··· 832 841 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 833 842 }; 834 843 }; 835 - "@babel/template-7.18.6" = { 844 + "@babel/template-7.18.10" = { 836 845 name = "_at_babel_slash_template"; 837 846 packageName = "@babel/template"; 838 - version = "7.18.6"; 847 + version = "7.18.10"; 839 848 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz"; 841 - sha512 = "JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw=="; 849 + url = "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz"; 850 + sha512 = "TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="; 842 851 }; 843 852 }; 844 - "@babel/traverse-7.18.8" = { 853 + "@babel/traverse-7.18.13" = { 845 854 name = "_at_babel_slash_traverse"; 846 855 packageName = "@babel/traverse"; 847 - version = "7.18.8"; 856 + version = "7.18.13"; 848 857 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.8.tgz"; 850 - sha512 = "UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg=="; 858 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.13.tgz"; 859 + sha512 = "N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA=="; 851 860 }; 852 861 }; 853 - "@babel/types-7.18.8" = { 862 + "@babel/types-7.18.13" = { 854 863 name = "_at_babel_slash_types"; 855 864 packageName = "@babel/types"; 856 - version = "7.18.8"; 865 + version = "7.18.13"; 857 866 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/types/-/types-7.18.8.tgz"; 859 - sha512 = "qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw=="; 867 + url = "https://registry.npmjs.org/@babel/types/-/types-7.18.13.tgz"; 868 + sha512 = "ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ=="; 860 869 }; 861 870 }; 862 871 "@hapi/address-2.1.4" = { ··· 949 958 sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; 950 959 }; 951 960 }; 952 - "@jridgewell/trace-mapping-0.3.14" = { 961 + "@jridgewell/trace-mapping-0.3.15" = { 953 962 name = "_at_jridgewell_slash_trace-mapping"; 954 963 packageName = "@jridgewell/trace-mapping"; 955 - version = "0.3.14"; 964 + version = "0.3.15"; 956 965 src = fetchurl { 957 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz"; 958 - sha512 = "bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ=="; 966 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz"; 967 + sha512 = "oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g=="; 959 968 }; 960 969 }; 961 970 "@kwsites/file-exists-1.1.1" = { ··· 1037 1046 src = fetchurl { 1038 1047 url = "https://registry.npmjs.org/@sindresorhus/is/-/is-2.1.1.tgz"; 1039 1048 sha512 = "/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg=="; 1049 + }; 1050 + }; 1051 + "@sindresorhus/is-4.6.0" = { 1052 + name = "_at_sindresorhus_slash_is"; 1053 + packageName = "@sindresorhus/is"; 1054 + version = "4.6.0"; 1055 + src = fetchurl { 1056 + url = "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz"; 1057 + sha512 = "t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw=="; 1040 1058 }; 1041 1059 }; 1042 1060 "@szmarczak/http-timer-1.1.2" = { ··· 1174 1192 sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1175 1193 }; 1176 1194 }; 1177 - "@types/lodash-4.14.182" = { 1195 + "@types/lodash-4.14.184" = { 1178 1196 name = "_at_types_slash_lodash"; 1179 1197 packageName = "@types/lodash"; 1180 - version = "4.14.182"; 1198 + version = "4.14.184"; 1181 1199 src = fetchurl { 1182 - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz"; 1183 - sha512 = "/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q=="; 1200 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.184.tgz"; 1201 + sha512 = "RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q=="; 1184 1202 }; 1185 1203 }; 1186 - "@types/minimatch-3.0.5" = { 1204 + "@types/minimatch-5.1.0" = { 1187 1205 name = "_at_types_slash_minimatch"; 1188 1206 packageName = "@types/minimatch"; 1189 - version = "3.0.5"; 1207 + version = "5.1.0"; 1190 1208 src = fetchurl { 1191 - url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"; 1192 - sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1209 + url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.0.tgz"; 1210 + sha512 = "0RJHq5FqDWo17kdHe+SMDJLfxmLaqHbWnqZ6gNKzDvStUlrmx/eKIY17+ifLS1yybo7X86aUshQMlittDOVNnw=="; 1193 1211 }; 1194 1212 }; 1195 1213 "@types/mkdirp-0.5.2" = { ··· 1201 1219 sha512 = "U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg=="; 1202 1220 }; 1203 1221 }; 1204 - "@types/node-18.0.3" = { 1222 + "@types/node-18.7.13" = { 1205 1223 name = "_at_types_slash_node"; 1206 1224 packageName = "@types/node"; 1207 - version = "18.0.3"; 1225 + version = "18.7.13"; 1208 1226 src = fetchurl { 1209 - url = "https://registry.npmjs.org/@types/node/-/node-18.0.3.tgz"; 1210 - sha512 = "HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ=="; 1227 + url = "https://registry.npmjs.org/@types/node/-/node-18.7.13.tgz"; 1228 + sha512 = "46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw=="; 1211 1229 }; 1212 1230 }; 1213 1231 "@types/node-8.10.66" = { ··· 1282 1300 sha512 = "gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ=="; 1283 1301 }; 1284 1302 }; 1285 - "@types/uglify-js-3.16.0" = { 1303 + "@types/uglify-js-3.17.0" = { 1286 1304 name = "_at_types_slash_uglify-js"; 1287 1305 packageName = "@types/uglify-js"; 1288 - version = "3.16.0"; 1306 + version = "3.17.0"; 1289 1307 src = fetchurl { 1290 - url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.16.0.tgz"; 1291 - sha512 = "0yeUr92L3r0GLRnBOvtYK1v2SjqMIqQDHMl7GLb+l2L8+6LSFWEEWEIgVsPdMn5ImLM8qzWT8xFPtQYpp8co0g=="; 1308 + url = "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.0.tgz"; 1309 + sha512 = "3HO6rm0y+/cqvOyA8xcYLweF0TKXlAxmQASjbOi49Co51A1N4nR4bEwBgRoD9kNM+rqFGArjKr654SLp2CoGmQ=="; 1292 1310 }; 1293 1311 }; 1294 1312 "@types/webpack-4.41.32" = { ··· 1516 1534 sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 1517 1535 }; 1518 1536 }; 1519 - "acorn-8.7.1" = { 1537 + "acorn-8.8.0" = { 1520 1538 name = "acorn"; 1521 1539 packageName = "acorn"; 1522 - version = "8.7.1"; 1540 + version = "8.8.0"; 1523 1541 src = fetchurl { 1524 - url = "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz"; 1525 - sha512 = "Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A=="; 1542 + url = "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz"; 1543 + sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="; 1526 1544 }; 1527 1545 }; 1528 1546 "address-1.0.3" = { ··· 2398 2416 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2399 2417 }; 2400 2418 }; 2401 - "browserslist-4.21.1" = { 2419 + "browserslist-4.21.3" = { 2402 2420 name = "browserslist"; 2403 2421 packageName = "browserslist"; 2404 - version = "4.21.1"; 2422 + version = "4.21.3"; 2405 2423 src = fetchurl { 2406 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz"; 2407 - sha512 = "Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ=="; 2424 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz"; 2425 + sha512 = "898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ=="; 2408 2426 }; 2409 2427 }; 2410 2428 "buffer-4.9.2" = { ··· 2531 2549 src = fetchurl { 2532 2550 url = "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-2.0.1.tgz"; 2533 2551 sha512 = "EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg=="; 2552 + }; 2553 + }; 2554 + "cacheable-lookup-5.0.4" = { 2555 + name = "cacheable-lookup"; 2556 + packageName = "cacheable-lookup"; 2557 + version = "5.0.4"; 2558 + src = fetchurl { 2559 + url = "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz"; 2560 + sha512 = "2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA=="; 2534 2561 }; 2535 2562 }; 2536 2563 "cacheable-request-6.1.0" = { ··· 2650 2677 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2651 2678 }; 2652 2679 }; 2653 - "caniuse-lite-1.0.30001364" = { 2680 + "caniuse-lite-1.0.30001382" = { 2654 2681 name = "caniuse-lite"; 2655 2682 packageName = "caniuse-lite"; 2656 - version = "1.0.30001364"; 2683 + version = "1.0.30001382"; 2657 2684 src = fetchurl { 2658 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001364.tgz"; 2659 - sha512 = "9O0xzV3wVyX0SlegIQ6knz+okhBB5pE0PC40MNdwcipjwpxoUEHL24uJ+gG42cgklPjfO5ZjZPme9FTSN3QT2Q=="; 2685 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001382.tgz"; 2686 + sha512 = "2rtJwDmSZ716Pxm1wCtbPvHtbDWAreTPxXbkc5RkKglow3Ig/4GNGazDI9/BVnXbG/wnv6r3B5FEbkfg9OcTGg=="; 2660 2687 }; 2661 2688 }; 2662 2689 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2875 2902 sha512 = "I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw=="; 2876 2903 }; 2877 2904 }; 2878 - "cli-spinners-2.6.1" = { 2905 + "cli-spinners-2.7.0" = { 2879 2906 name = "cli-spinners"; 2880 2907 packageName = "cli-spinners"; 2881 - version = "2.6.1"; 2908 + version = "2.7.0"; 2882 2909 src = fetchurl { 2883 - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz"; 2884 - sha512 = "x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g=="; 2910 + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz"; 2911 + sha512 = "qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw=="; 2885 2912 }; 2886 2913 }; 2887 2914 "cli-table-0.3.4" = { ··· 2938 2965 sha512 = "JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="; 2939 2966 }; 2940 2967 }; 2941 - "clone-response-1.0.2" = { 2968 + "clone-response-1.0.3" = { 2942 2969 name = "clone-response"; 2943 2970 packageName = "clone-response"; 2944 - version = "1.0.2"; 2971 + version = "1.0.3"; 2945 2972 src = fetchurl { 2946 - url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz"; 2947 - sha512 = "yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q=="; 2973 + url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz"; 2974 + sha512 = "ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA=="; 2948 2975 }; 2949 2976 }; 2950 2977 "coa-2.0.2" = { ··· 3136 3163 sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; 3137 3164 }; 3138 3165 }; 3139 - "commander-9.3.0" = { 3166 + "commander-9.4.0" = { 3140 3167 name = "commander"; 3141 3168 packageName = "commander"; 3142 - version = "9.3.0"; 3169 + version = "9.4.0"; 3143 3170 src = fetchurl { 3144 - url = "https://registry.npmjs.org/commander/-/commander-9.3.0.tgz"; 3145 - sha512 = "hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw=="; 3171 + url = "https://registry.npmjs.org/commander/-/commander-9.4.0.tgz"; 3172 + sha512 = "sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw=="; 3146 3173 }; 3147 3174 }; 3148 3175 "common-tags-1.8.2" = { ··· 3379 3406 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3380 3407 }; 3381 3408 }; 3382 - "core-js-compat-3.23.4" = { 3409 + "core-js-compat-3.25.0" = { 3383 3410 name = "core-js-compat"; 3384 3411 packageName = "core-js-compat"; 3385 - version = "3.23.4"; 3412 + version = "3.25.0"; 3386 3413 src = fetchurl { 3387 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.4.tgz"; 3388 - sha512 = "RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q=="; 3414 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.0.tgz"; 3415 + sha512 = "extKQM0g8/3GjFx9US12FAgx8KJawB7RCQ5y8ipYLbmfzEzmFRWdDjIlxDx82g7ygcNG85qMVUSRyABouELdow=="; 3389 3416 }; 3390 3417 }; 3391 3418 "core-util-is-1.0.2" = { ··· 3775 3802 sha512 = "TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw=="; 3776 3803 }; 3777 3804 }; 3805 + "decompress-response-6.0.0" = { 3806 + name = "decompress-response"; 3807 + packageName = "decompress-response"; 3808 + version = "6.0.0"; 3809 + src = fetchurl { 3810 + url = "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz"; 3811 + sha512 = "aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ=="; 3812 + }; 3813 + }; 3778 3814 "deep-equal-0.2.2" = { 3779 3815 name = "deep-equal"; 3780 3816 packageName = "deep-equal"; ··· 4189 4225 sha512 = "WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="; 4190 4226 }; 4191 4227 }; 4192 - "electron-to-chromium-1.4.185" = { 4228 + "electron-to-chromium-1.4.228" = { 4193 4229 name = "electron-to-chromium"; 4194 4230 packageName = "electron-to-chromium"; 4195 - version = "1.4.185"; 4231 + version = "1.4.228"; 4196 4232 src = fetchurl { 4197 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.185.tgz"; 4198 - sha512 = "9kV/isoOGpKkBt04yYNaSWIBn3187Q5VZRtoReq8oz5NY/A4XmU6cAoqgQlDp7kKJCZMRjWZ8nsQyxfpFHvfyw=="; 4233 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.228.tgz"; 4234 + sha512 = "XfDHCvou7CsDMlFwb0WZ1tWmW48e7Sn7VBRyPfZsZZila9esRsJl1trO+OqDNV97GggFSt0ISbWslKXfQkG//g=="; 4199 4235 }; 4200 4236 }; 4201 4237 "elliptic-6.5.4" = { ··· 4810 4846 sha512 = "hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ=="; 4811 4847 }; 4812 4848 }; 4813 - "fastest-levenshtein-1.0.12" = { 4849 + "fastest-levenshtein-1.0.16" = { 4814 4850 name = "fastest-levenshtein"; 4815 4851 packageName = "fastest-levenshtein"; 4816 - version = "1.0.12"; 4852 + version = "1.0.16"; 4817 4853 src = fetchurl { 4818 - url = "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz"; 4819 - sha512 = "On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow=="; 4854 + url = "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz"; 4855 + sha512 = "eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg=="; 4820 4856 }; 4821 4857 }; 4822 4858 "fastq-1.13.0" = { ··· 5602 5638 sha512 = "aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg=="; 5603 5639 }; 5604 5640 }; 5641 + "got-11.8.5" = { 5642 + name = "got"; 5643 + packageName = "got"; 5644 + version = "11.8.5"; 5645 + src = fetchurl { 5646 + url = "https://registry.npmjs.org/got/-/got-11.8.5.tgz"; 5647 + sha512 = "o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ=="; 5648 + }; 5649 + }; 5605 5650 "got-9.6.0" = { 5606 5651 name = "got"; 5607 5652 packageName = "got"; ··· 6034 6079 sha512 = "CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ=="; 6035 6080 }; 6036 6081 }; 6082 + "http2-wrapper-1.0.3" = { 6083 + name = "http2-wrapper"; 6084 + packageName = "http2-wrapper"; 6085 + version = "1.0.3"; 6086 + src = fetchurl { 6087 + url = "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz"; 6088 + sha512 = "V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg=="; 6089 + }; 6090 + }; 6037 6091 "https-browserify-1.0.0" = { 6038 6092 name = "https-browserify"; 6039 6093 packageName = "https-browserify"; ··· 6421 6475 sha512 = "H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA=="; 6422 6476 }; 6423 6477 }; 6424 - "is-core-module-2.9.0" = { 6478 + "is-core-module-2.10.0" = { 6425 6479 name = "is-core-module"; 6426 6480 packageName = "is-core-module"; 6427 - version = "2.9.0"; 6481 + version = "2.10.0"; 6428 6482 src = fetchurl { 6429 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz"; 6430 - sha512 = "+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A=="; 6483 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz"; 6484 + sha512 = "Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg=="; 6431 6485 }; 6432 6486 }; 6433 6487 "is-data-descriptor-0.1.4" = { ··· 7141 7195 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 7142 7196 }; 7143 7197 }; 7144 - "keyv-4.3.2" = { 7198 + "keyv-4.4.1" = { 7145 7199 name = "keyv"; 7146 7200 packageName = "keyv"; 7147 - version = "4.3.2"; 7201 + version = "4.4.1"; 7148 7202 src = fetchurl { 7149 - url = "https://registry.npmjs.org/keyv/-/keyv-4.3.2.tgz"; 7150 - sha512 = "kn8WmodVBe12lmHpA6W8OY7SNh6wVR+Z+wZESF4iF5FCazaVXGWOtnbnvX0tMQ1bO+/TmOD9LziuYMvrIIs0xw=="; 7203 + url = "https://registry.npmjs.org/keyv/-/keyv-4.4.1.tgz"; 7204 + sha512 = "PzByhNxfBLnSBW2MZi1DF+W5+qB/7BMpOokewqIvqS8GFtP7xHm2oeGU72Y1fhtfOv/FiEnI4+nyViYDmUChnw=="; 7151 7205 }; 7152 7206 }; 7153 7207 "killable-1.0.1" = { ··· 7744 7798 sha512 = "wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA=="; 7745 7799 }; 7746 7800 }; 7801 + "mimic-response-3.1.0" = { 7802 + name = "mimic-response"; 7803 + packageName = "mimic-response"; 7804 + version = "3.1.0"; 7805 + src = fetchurl { 7806 + url = "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz"; 7807 + sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; 7808 + }; 7809 + }; 7747 7810 "mini-css-extract-plugin-0.12.0" = { 7748 7811 name = "mini-css-extract-plugin"; 7749 7812 packageName = "mini-css-extract-plugin"; ··· 7843 7906 sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg=="; 7844 7907 }; 7845 7908 }; 7846 - "minipass-3.3.4" = { 7909 + "minipass-3.3.5" = { 7847 7910 name = "minipass"; 7848 7911 packageName = "minipass"; 7849 - version = "3.3.4"; 7912 + version = "3.3.5"; 7850 7913 src = fetchurl { 7851 - url = "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz"; 7852 - sha512 = "I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw=="; 7914 + url = "https://registry.npmjs.org/minipass/-/minipass-3.3.5.tgz"; 7915 + sha512 = "rQ/p+KfKBkeNwo04U15i+hOwoVBVmekmm/HcfTkTN2t9pbQKCMm4eN5gFeqgrrSp/kH/7BYYhTIHOxGqzbBPaA=="; 7853 7916 }; 7854 7917 }; 7855 7918 "minizlib-1.3.3" = { ··· 8374 8437 sha512 = "GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA=="; 8375 8438 }; 8376 8439 }; 8377 - "object.assign-4.1.2" = { 8440 + "object.assign-4.1.4" = { 8378 8441 name = "object.assign"; 8379 8442 packageName = "object.assign"; 8380 - version = "4.1.2"; 8443 + version = "4.1.4"; 8381 8444 src = fetchurl { 8382 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"; 8383 - sha512 = "ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="; 8445 + url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"; 8446 + sha512 = "1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="; 8384 8447 }; 8385 8448 }; 8386 8449 "object.entries-1.1.5" = { ··· 9130 9193 sha512 = "8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ=="; 9131 9194 }; 9132 9195 }; 9133 - "portfinder-1.0.28" = { 9196 + "portfinder-1.0.32" = { 9134 9197 name = "portfinder"; 9135 9198 packageName = "portfinder"; 9136 - version = "1.0.28"; 9199 + version = "1.0.32"; 9137 9200 src = fetchurl { 9138 - url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz"; 9139 - sha512 = "Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA=="; 9201 + url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz"; 9202 + sha512 = "on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg=="; 9140 9203 }; 9141 9204 }; 9142 9205 "posix-character-classes-0.1.1" = { ··· 9157 9220 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 9158 9221 }; 9159 9222 }; 9160 - "postcss-8.4.14" = { 9223 + "postcss-8.4.16" = { 9161 9224 name = "postcss"; 9162 9225 packageName = "postcss"; 9163 - version = "8.4.14"; 9226 + version = "8.4.16"; 9164 9227 src = fetchurl { 9165 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"; 9166 - sha512 = "E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig=="; 9228 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz"; 9229 + sha512 = "ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ=="; 9167 9230 }; 9168 9231 }; 9169 9232 "postcss-calc-7.0.5" = { ··· 9814 9877 sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 9815 9878 }; 9816 9879 }; 9880 + "quick-lru-5.1.1" = { 9881 + name = "quick-lru"; 9882 + packageName = "quick-lru"; 9883 + version = "5.1.1"; 9884 + src = fetchurl { 9885 + url = "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz"; 9886 + sha512 = "WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA=="; 9887 + }; 9888 + }; 9817 9889 "randombytes-2.1.0" = { 9818 9890 name = "randombytes"; 9819 9891 packageName = "randombytes"; ··· 10264 10336 sha512 = "nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="; 10265 10337 }; 10266 10338 }; 10339 + "resolve-alpn-1.2.1" = { 10340 + name = "resolve-alpn"; 10341 + packageName = "resolve-alpn"; 10342 + version = "1.2.1"; 10343 + src = fetchurl { 10344 + url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz"; 10345 + sha512 = "0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g=="; 10346 + }; 10347 + }; 10267 10348 "resolve-cwd-2.0.0" = { 10268 10349 name = "resolve-cwd"; 10269 10350 packageName = "resolve-cwd"; ··· 10318 10399 sha512 = "/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ=="; 10319 10400 }; 10320 10401 }; 10321 - "responselike-2.0.0" = { 10402 + "responselike-2.0.1" = { 10322 10403 name = "responselike"; 10323 10404 packageName = "responselike"; 10324 - version = "2.0.0"; 10405 + version = "2.0.1"; 10325 10406 src = fetchurl { 10326 - url = "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz"; 10327 - sha512 = "xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw=="; 10407 + url = "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz"; 10408 + sha512 = "4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw=="; 10328 10409 }; 10329 10410 }; 10330 10411 "restore-cursor-2.0.0" = { ··· 10858 10939 sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 10859 10940 }; 10860 10941 }; 10861 - "simple-git-3.10.0" = { 10942 + "simple-git-3.13.0" = { 10862 10943 name = "simple-git"; 10863 10944 packageName = "simple-git"; 10864 - version = "3.10.0"; 10945 + version = "3.13.0"; 10865 10946 src = fetchurl { 10866 - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.10.0.tgz"; 10867 - sha512 = "2w35xrS5rVtAW0g67LqtxCZN5cdddz/woQRfS0OJXaljXEoTychZ4jnE+CQgra/wX4ZvHeiChTUMenCwfIYEYw=="; 10947 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.13.0.tgz"; 10948 + sha512 = "VYrs3joeHvWGcN3K135RpGpPjm4AHYeOrclwew6LlfHgq6ozQYIW2yMnmjf4PCgVOuSYCbXkdUjyiFawuJz8MA=="; 10868 10949 }; 10869 10950 }; 10870 10951 "simple-swizzle-0.2.2" = { ··· 11083 11164 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 11084 11165 }; 11085 11166 }; 11086 - "spdx-license-ids-3.0.11" = { 11167 + "spdx-license-ids-3.0.12" = { 11087 11168 name = "spdx-license-ids"; 11088 11169 packageName = "spdx-license-ids"; 11089 - version = "3.0.11"; 11170 + version = "3.0.12"; 11090 11171 src = fetchurl { 11091 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz"; 11092 - sha512 = "Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g=="; 11172 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz"; 11173 + sha512 = "rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA=="; 11093 11174 }; 11094 11175 }; 11095 11176 "spdy-4.0.2" = { ··· 11641 11722 sha512 = "un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ=="; 11642 11723 }; 11643 11724 }; 11644 - "terser-4.8.0" = { 11725 + "terser-4.8.1" = { 11645 11726 name = "terser"; 11646 11727 packageName = "terser"; 11647 - version = "4.8.0"; 11728 + version = "4.8.1"; 11648 11729 src = fetchurl { 11649 - url = "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz"; 11650 - sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw=="; 11730 + url = "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz"; 11731 + sha512 = "4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw=="; 11651 11732 }; 11652 11733 }; 11653 - "terser-5.14.1" = { 11734 + "terser-5.15.0" = { 11654 11735 name = "terser"; 11655 11736 packageName = "terser"; 11656 - version = "5.14.1"; 11737 + version = "5.15.0"; 11657 11738 src = fetchurl { 11658 - url = "https://registry.npmjs.org/terser/-/terser-5.14.1.tgz"; 11659 - sha512 = "+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ=="; 11739 + url = "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz"; 11740 + sha512 = "L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA=="; 11660 11741 }; 11661 11742 }; 11662 11743 "terser-webpack-plugin-1.4.5" = { ··· 12217 12298 sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 12218 12299 }; 12219 12300 }; 12220 - "update-browserslist-db-1.0.4" = { 12301 + "update-browserslist-db-1.0.5" = { 12221 12302 name = "update-browserslist-db"; 12222 12303 packageName = "update-browserslist-db"; 12223 - version = "1.0.4"; 12304 + version = "1.0.5"; 12224 12305 src = fetchurl { 12225 - url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz"; 12226 - sha512 = "jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA=="; 12306 + url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz"; 12307 + sha512 = "dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q=="; 12227 12308 }; 12228 12309 }; 12229 12310 "upgrade-1.1.0" = { ··· 12910 12991 sha512 = "o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A=="; 12911 12992 }; 12912 12993 }; 12913 - "ws-7.5.8" = { 12994 + "ws-7.5.9" = { 12914 12995 name = "ws"; 12915 12996 packageName = "ws"; 12916 - version = "7.5.8"; 12997 + version = "7.5.9"; 12917 12998 src = fetchurl { 12918 - url = "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz"; 12919 - sha512 = "ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw=="; 12999 + url = "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz"; 13000 + sha512 = "F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q=="; 12920 13001 }; 12921 13002 }; 12922 13003 "xmlbuilder-13.0.2" = { ··· 13388 13469 sources."mime-types-2.1.35" 13389 13470 sources."minimatch-3.1.2" 13390 13471 sources."minimist-1.2.6" 13391 - sources."minipass-3.3.4" 13472 + sources."minipass-3.3.5" 13392 13473 sources."minizlib-2.1.2" 13393 13474 sources."mkdirp-1.0.4" 13394 13475 sources."moment-2.29.4" ··· 13536 13617 sources."call-bind-1.0.2" 13537 13618 sources."chalk-3.0.0" 13538 13619 sources."chokidar-3.5.3" 13539 - sources."clone-response-1.0.2" 13620 + sources."clone-response-1.0.3" 13540 13621 sources."color-convert-2.0.1" 13541 13622 sources."color-name-1.1.4" 13542 13623 sources."commander-5.1.0" ··· 13669 13750 sources."vary-1.1.2" 13670 13751 sources."which-2.0.2" 13671 13752 sources."wrappy-1.0.2" 13672 - sources."ws-7.5.8" 13753 + sources."ws-7.5.9" 13673 13754 ]; 13674 13755 buildInputs = globalBuildInputs; 13675 13756 meta = { ··· 13898 13979 sources."chokidar-3.5.3" 13899 13980 sources."color-convert-2.0.1" 13900 13981 sources."color-name-1.1.4" 13901 - sources."commander-9.3.0" 13982 + sources."commander-9.4.0" 13902 13983 sources."cross-spawn-7.0.3" 13903 13984 sources."elm-solve-deps-wasm-1.0.1" 13904 13985 sources."fill-range-7.0.1" ··· 13956 14037 sources."@types/http-cache-semantics-4.0.1" 13957 14038 sources."@types/json-buffer-3.0.0" 13958 14039 sources."@types/keyv-3.1.4" 13959 - sources."@types/node-18.0.3" 14040 + sources."@types/node-18.7.13" 13960 14041 sources."@types/responselike-1.0.0" 13961 14042 sources."cacheable-lookup-2.0.1" 13962 14043 sources."cacheable-request-7.0.2" 13963 14044 sources."caw-2.0.1" 13964 - (sources."clone-response-1.0.2" // { 14045 + (sources."clone-response-1.0.3" // { 13965 14046 dependencies = [ 13966 14047 sources."mimic-response-1.0.1" 13967 14048 ]; ··· 13986 14067 sources."isurl-1.0.0" 13987 14068 sources."json-buffer-3.0.1" 13988 14069 sources."jsonfile-4.0.0" 13989 - sources."keyv-4.3.2" 14070 + sources."keyv-4.4.1" 13990 14071 sources."lowercase-keys-2.0.0" 13991 14072 sources."lru-cache-6.0.0" 13992 14073 sources."mimic-response-2.1.0" ··· 14000 14081 sources."pify-3.0.0" 14001 14082 sources."proto-list-1.2.4" 14002 14083 sources."pump-3.0.0" 14003 - sources."responselike-2.0.0" 14084 + sources."responselike-2.0.1" 14004 14085 sources."safe-buffer-5.2.1" 14005 14086 sources."safename-1.0.2" 14006 14087 sources."semver-7.3.7" ··· 14274 14355 dependencies = [ 14275 14356 sources."@babel/cli-7.12.10" 14276 14357 sources."@babel/code-frame-7.18.6" 14277 - sources."@babel/compat-data-7.18.8" 14358 + sources."@babel/compat-data-7.18.13" 14278 14359 sources."@babel/core-7.12.10" 14279 - sources."@babel/generator-7.18.7" 14360 + sources."@babel/generator-7.18.13" 14280 14361 sources."@babel/helper-annotate-as-pure-7.18.6" 14281 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.6" 14282 - (sources."@babel/helper-compilation-targets-7.18.6" // { 14362 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" 14363 + (sources."@babel/helper-compilation-targets-7.18.9" // { 14283 14364 dependencies = [ 14284 14365 sources."semver-6.3.0" 14285 14366 ]; 14286 14367 }) 14287 - sources."@babel/helper-create-class-features-plugin-7.18.6" 14368 + sources."@babel/helper-create-class-features-plugin-7.18.13" 14288 14369 sources."@babel/helper-create-regexp-features-plugin-7.18.6" 14289 - sources."@babel/helper-environment-visitor-7.18.6" 14370 + sources."@babel/helper-environment-visitor-7.18.9" 14290 14371 sources."@babel/helper-explode-assignable-expression-7.18.6" 14291 - sources."@babel/helper-function-name-7.18.6" 14372 + sources."@babel/helper-function-name-7.18.9" 14292 14373 sources."@babel/helper-hoist-variables-7.18.6" 14293 - sources."@babel/helper-member-expression-to-functions-7.18.6" 14374 + sources."@babel/helper-member-expression-to-functions-7.18.9" 14294 14375 sources."@babel/helper-module-imports-7.18.6" 14295 - sources."@babel/helper-module-transforms-7.18.8" 14376 + sources."@babel/helper-module-transforms-7.18.9" 14296 14377 sources."@babel/helper-optimise-call-expression-7.18.6" 14297 - sources."@babel/helper-plugin-utils-7.18.6" 14298 - sources."@babel/helper-remap-async-to-generator-7.18.6" 14299 - sources."@babel/helper-replace-supers-7.18.6" 14378 + sources."@babel/helper-plugin-utils-7.18.9" 14379 + sources."@babel/helper-remap-async-to-generator-7.18.9" 14380 + sources."@babel/helper-replace-supers-7.18.9" 14300 14381 sources."@babel/helper-simple-access-7.18.6" 14301 - sources."@babel/helper-skip-transparent-expression-wrappers-7.18.6" 14382 + sources."@babel/helper-skip-transparent-expression-wrappers-7.18.9" 14302 14383 sources."@babel/helper-split-export-declaration-7.18.6" 14384 + sources."@babel/helper-string-parser-7.18.10" 14303 14385 sources."@babel/helper-validator-identifier-7.18.6" 14304 14386 sources."@babel/helper-validator-option-7.18.6" 14305 - sources."@babel/helper-wrap-function-7.18.6" 14306 - sources."@babel/helpers-7.18.6" 14387 + sources."@babel/helper-wrap-function-7.18.11" 14388 + sources."@babel/helpers-7.18.9" 14307 14389 sources."@babel/highlight-7.18.6" 14308 - sources."@babel/parser-7.18.8" 14309 - sources."@babel/plugin-proposal-async-generator-functions-7.18.6" 14390 + sources."@babel/parser-7.18.13" 14391 + sources."@babel/plugin-proposal-async-generator-functions-7.18.10" 14310 14392 sources."@babel/plugin-proposal-class-properties-7.18.6" 14311 14393 sources."@babel/plugin-proposal-dynamic-import-7.18.6" 14312 - sources."@babel/plugin-proposal-export-namespace-from-7.18.6" 14394 + sources."@babel/plugin-proposal-export-namespace-from-7.18.9" 14313 14395 sources."@babel/plugin-proposal-json-strings-7.18.6" 14314 - sources."@babel/plugin-proposal-logical-assignment-operators-7.18.6" 14396 + sources."@babel/plugin-proposal-logical-assignment-operators-7.18.9" 14315 14397 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" 14316 14398 sources."@babel/plugin-proposal-numeric-separator-7.18.6" 14317 - sources."@babel/plugin-proposal-object-rest-spread-7.18.6" 14399 + sources."@babel/plugin-proposal-object-rest-spread-7.18.9" 14318 14400 sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" 14319 - sources."@babel/plugin-proposal-optional-chaining-7.18.6" 14401 + sources."@babel/plugin-proposal-optional-chaining-7.18.9" 14320 14402 sources."@babel/plugin-proposal-private-methods-7.18.6" 14321 14403 sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" 14322 14404 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 14334 14416 sources."@babel/plugin-transform-arrow-functions-7.18.6" 14335 14417 sources."@babel/plugin-transform-async-to-generator-7.18.6" 14336 14418 sources."@babel/plugin-transform-block-scoped-functions-7.18.6" 14337 - sources."@babel/plugin-transform-block-scoping-7.18.6" 14338 - sources."@babel/plugin-transform-classes-7.18.8" 14339 - sources."@babel/plugin-transform-computed-properties-7.18.6" 14340 - sources."@babel/plugin-transform-destructuring-7.18.6" 14419 + sources."@babel/plugin-transform-block-scoping-7.18.9" 14420 + sources."@babel/plugin-transform-classes-7.18.9" 14421 + sources."@babel/plugin-transform-computed-properties-7.18.9" 14422 + sources."@babel/plugin-transform-destructuring-7.18.13" 14341 14423 sources."@babel/plugin-transform-dotall-regex-7.18.6" 14342 - sources."@babel/plugin-transform-duplicate-keys-7.18.6" 14424 + sources."@babel/plugin-transform-duplicate-keys-7.18.9" 14343 14425 sources."@babel/plugin-transform-exponentiation-operator-7.18.6" 14344 14426 sources."@babel/plugin-transform-for-of-7.18.8" 14345 - sources."@babel/plugin-transform-function-name-7.18.6" 14346 - sources."@babel/plugin-transform-literals-7.18.6" 14427 + sources."@babel/plugin-transform-function-name-7.18.9" 14428 + sources."@babel/plugin-transform-literals-7.18.9" 14347 14429 sources."@babel/plugin-transform-member-expression-literals-7.18.6" 14348 14430 sources."@babel/plugin-transform-modules-amd-7.18.6" 14349 14431 sources."@babel/plugin-transform-modules-commonjs-7.18.6" 14350 - sources."@babel/plugin-transform-modules-systemjs-7.18.6" 14432 + sources."@babel/plugin-transform-modules-systemjs-7.18.9" 14351 14433 sources."@babel/plugin-transform-modules-umd-7.18.6" 14352 14434 sources."@babel/plugin-transform-named-capturing-groups-regex-7.18.6" 14353 14435 sources."@babel/plugin-transform-new-target-7.18.6" ··· 14358 14440 sources."@babel/plugin-transform-reserved-words-7.18.6" 14359 14441 sources."@babel/plugin-transform-runtime-7.12.10" 14360 14442 sources."@babel/plugin-transform-shorthand-properties-7.18.6" 14361 - sources."@babel/plugin-transform-spread-7.18.6" 14443 + sources."@babel/plugin-transform-spread-7.18.9" 14362 14444 sources."@babel/plugin-transform-sticky-regex-7.18.6" 14363 - sources."@babel/plugin-transform-template-literals-7.18.6" 14364 - sources."@babel/plugin-transform-typeof-symbol-7.18.6" 14365 - sources."@babel/plugin-transform-unicode-escapes-7.18.6" 14445 + sources."@babel/plugin-transform-template-literals-7.18.9" 14446 + sources."@babel/plugin-transform-typeof-symbol-7.18.9" 14447 + sources."@babel/plugin-transform-unicode-escapes-7.18.10" 14366 14448 sources."@babel/plugin-transform-unicode-regex-7.18.6" 14367 14449 sources."@babel/preset-env-7.12.10" 14368 14450 sources."@babel/preset-modules-0.1.5" 14369 14451 sources."@babel/runtime-7.12.5" 14370 - sources."@babel/template-7.18.6" 14371 - sources."@babel/traverse-7.18.8" 14372 - sources."@babel/types-7.18.8" 14452 + sources."@babel/template-7.18.10" 14453 + sources."@babel/traverse-7.18.13" 14454 + sources."@babel/types-7.18.13" 14373 14455 sources."@hapi/address-2.1.4" 14374 14456 sources."@hapi/bourne-1.3.2" 14375 14457 sources."@hapi/hoek-8.5.1" ··· 14379 14461 sources."@jridgewell/resolve-uri-3.1.0" 14380 14462 sources."@jridgewell/set-array-1.1.2" 14381 14463 sources."@jridgewell/sourcemap-codec-1.4.14" 14382 - sources."@jridgewell/trace-mapping-0.3.14" 14464 + sources."@jridgewell/trace-mapping-0.3.15" 14383 14465 sources."@mrmlnc/readdir-enhanced-2.2.1" 14384 14466 sources."@nodelib/fs.stat-1.1.3" 14385 14467 sources."@types/glob-7.2.0" 14386 14468 sources."@types/html-minifier-terser-5.1.2" 14387 14469 sources."@types/http-proxy-1.17.9" 14388 14470 sources."@types/json-schema-7.0.11" 14389 - sources."@types/minimatch-3.0.5" 14390 - sources."@types/node-18.0.3" 14471 + sources."@types/minimatch-5.1.0" 14472 + sources."@types/node-18.7.13" 14391 14473 sources."@types/parse-json-4.0.0" 14392 14474 sources."@types/q-1.5.5" 14393 14475 sources."@types/source-list-map-0.1.2" 14394 14476 sources."@types/tapable-1.0.8" 14395 - (sources."@types/uglify-js-3.16.0" // { 14477 + (sources."@types/uglify-js-3.17.0" // { 14396 14478 dependencies = [ 14397 14479 sources."source-map-0.6.1" 14398 14480 ]; ··· 14539 14621 ]; 14540 14622 }) 14541 14623 sources."browserify-zlib-0.2.0" 14542 - sources."browserslist-4.21.1" 14624 + sources."browserslist-4.21.3" 14543 14625 sources."buffer-4.9.2" 14544 14626 sources."buffer-from-1.1.2" 14545 14627 sources."buffer-indexof-1.1.1" ··· 14556 14638 sources."camel-case-4.1.2" 14557 14639 sources."camelcase-5.3.1" 14558 14640 sources."caniuse-api-3.0.0" 14559 - sources."caniuse-lite-1.0.30001364" 14641 + sources."caniuse-lite-1.0.30001382" 14560 14642 sources."case-sensitive-paths-webpack-plugin-2.3.0" 14561 14643 sources."caseless-0.12.0" 14562 14644 (sources."chalk-2.4.2" // { ··· 14655 14737 ]; 14656 14738 }) 14657 14739 sources."core-js-2.6.12" 14658 - (sources."core-js-compat-3.23.4" // { 14740 + (sources."core-js-compat-3.25.0" // { 14659 14741 dependencies = [ 14660 14742 sources."semver-7.0.0" 14661 14743 ]; ··· 14756 14838 sources."duplexify-3.7.1" 14757 14839 sources."ecc-jsbn-0.1.2" 14758 14840 sources."ee-first-1.1.1" 14759 - sources."electron-to-chromium-1.4.185" 14841 + sources."electron-to-chromium-1.4.228" 14760 14842 (sources."elliptic-6.5.4" // { 14761 14843 dependencies = [ 14762 14844 sources."bn.js-4.12.0" ··· 14774 14856 sources."chalk-4.1.2" 14775 14857 sources."color-convert-2.0.1" 14776 14858 sources."color-name-1.1.4" 14777 - sources."commander-9.3.0" 14859 + sources."commander-9.4.0" 14778 14860 sources."glob-8.0.3" 14779 14861 sources."has-flag-4.0.0" 14780 14862 sources."minimatch-5.1.0" ··· 15068 15150 sources."is-buffer-1.1.6" 15069 15151 sources."is-callable-1.2.4" 15070 15152 sources."is-color-stop-1.1.0" 15071 - sources."is-core-module-2.9.0" 15153 + sources."is-core-module-2.10.0" 15072 15154 sources."is-data-descriptor-1.0.0" 15073 15155 sources."is-date-object-1.0.5" 15074 15156 sources."is-descriptor-1.0.2" ··· 15241 15323 sources."object-is-1.1.5" 15242 15324 sources."object-keys-1.1.1" 15243 15325 sources."object-visit-1.0.1" 15244 - sources."object.assign-4.1.2" 15326 + sources."object.assign-4.1.4" 15245 15327 sources."object.entries-1.1.5" 15246 15328 sources."object.getownpropertydescriptors-2.1.4" 15247 15329 sources."object.pick-1.3.0" ··· 15309 15391 ]; 15310 15392 }) 15311 15393 sources."pkginfo-0.4.1" 15312 - (sources."portfinder-1.0.28" // { 15394 + (sources."portfinder-1.0.32" // { 15313 15395 dependencies = [ 15314 15396 sources."async-2.6.4" 15315 15397 sources."debug-3.2.7" ··· 15443 15525 }) 15444 15526 (sources."postcss-safe-parser-5.0.2" // { 15445 15527 dependencies = [ 15446 - sources."postcss-8.4.14" 15528 + sources."postcss-8.4.16" 15447 15529 ]; 15448 15530 }) 15449 15531 sources."postcss-selector-parser-6.0.10" ··· 15698 15780 sources."spdx-correct-3.1.1" 15699 15781 sources."spdx-exceptions-2.3.0" 15700 15782 sources."spdx-expression-parse-3.0.1" 15701 - sources."spdx-license-ids-3.0.11" 15783 + sources."spdx-license-ids-3.0.12" 15702 15784 sources."spdy-4.0.2" 15703 15785 (sources."spdy-transport-3.0.0" // { 15704 15786 dependencies = [ ··· 15785 15867 sources."rimraf-2.6.3" 15786 15868 ]; 15787 15869 }) 15788 - (sources."terser-4.8.0" // { 15870 + (sources."terser-4.8.1" // { 15789 15871 dependencies = [ 15790 15872 sources."commander-2.20.3" 15791 15873 sources."source-map-0.6.1" ··· 15880 15962 ]; 15881 15963 }) 15882 15964 sources."upath-1.2.0" 15883 - sources."update-browserslist-db-1.0.4" 15965 + sources."update-browserslist-db-1.0.5" 15884 15966 sources."uri-js-4.4.1" 15885 15967 sources."urix-0.1.0" 15886 15968 (sources."url-0.11.0" // { ··· 16176 16258 sources."@jridgewell/set-array-1.1.2" 16177 16259 sources."@jridgewell/source-map-0.3.2" 16178 16260 sources."@jridgewell/sourcemap-codec-1.4.14" 16179 - sources."@jridgewell/trace-mapping-0.3.14" 16261 + sources."@jridgewell/trace-mapping-0.3.15" 16180 16262 sources."@nodelib/fs.scandir-2.1.5" 16181 16263 sources."@nodelib/fs.stat-2.0.5" 16182 16264 sources."@nodelib/fs.walk-1.2.8" ··· 16186 16268 sources."@types/debug-0.0.30" 16187 16269 sources."@types/get-port-3.2.0" 16188 16270 sources."@types/glob-5.0.37" 16189 - sources."@types/lodash-4.14.182" 16190 - sources."@types/minimatch-3.0.5" 16271 + sources."@types/lodash-4.14.184" 16272 + sources."@types/minimatch-5.1.0" 16191 16273 sources."@types/mkdirp-0.5.2" 16192 16274 sources."@types/node-8.10.66" 16193 16275 sources."@types/rimraf-2.0.5" 16194 16276 sources."@types/tmp-0.0.33" 16195 16277 sources."accepts-1.3.8" 16196 - sources."acorn-8.7.1" 16278 + sources."acorn-8.8.0" 16197 16279 sources."ansi-escapes-3.2.0" 16198 16280 sources."ansi-styles-4.3.0" 16199 16281 sources."anymatch-3.1.2" ··· 16223 16305 sources."call-bind-1.0.2" 16224 16306 sources."chalk-3.0.0" 16225 16307 sources."chokidar-3.5.2" 16226 - sources."clone-response-1.0.2" 16308 + sources."clone-response-1.0.3" 16227 16309 sources."color-convert-2.0.1" 16228 16310 sources."color-name-1.1.4" 16229 16311 sources."command-exists-1.2.9" ··· 16422 16504 sources."strip-json-comments-2.0.1" 16423 16505 sources."sudo-prompt-8.2.5" 16424 16506 sources."supports-color-7.2.0" 16425 - (sources."terser-5.14.1" // { 16507 + (sources."terser-5.15.0" // { 16426 16508 dependencies = [ 16427 16509 sources."commander-2.20.3" 16428 16510 ]; ··· 16441 16523 sources."vary-1.1.2" 16442 16524 sources."which-2.0.2" 16443 16525 sources."wrappy-1.0.2" 16444 - sources."ws-7.5.8" 16526 + sources."ws-7.5.9" 16445 16527 ]; 16446 16528 buildInputs = globalBuildInputs; 16447 16529 meta = { ··· 16456 16538 elm-review = nodeEnv.buildNodePackage { 16457 16539 name = "elm-review"; 16458 16540 packageName = "elm-review"; 16459 - version = "2.7.2"; 16541 + version = "2.7.4"; 16460 16542 src = fetchurl { 16461 - url = "https://registry.npmjs.org/elm-review/-/elm-review-2.7.2.tgz"; 16462 - sha512 = "llkRvxgR2GOmtc7wi2vAM+u9j61Pf1fmPsAbpsE4X0ZfusJv0Dddor3lHNNZ0MmpYzNxpm7npxNqYRXs5JIz9A=="; 16543 + url = "https://registry.npmjs.org/elm-review/-/elm-review-2.7.4.tgz"; 16544 + sha512 = "D6J3Gx1JCuNiTk7QeXbRkywLhEtOWqvZKyZoihxQdYlxUqVICwvQf2qaP0d1QunpQKY22iQQpzyEn0PAczNn7Q=="; 16463 16545 }; 16464 16546 dependencies = [ 16465 - sources."@sindresorhus/is-2.1.1" 16547 + sources."@sindresorhus/is-4.6.0" 16466 16548 sources."@szmarczak/http-timer-4.0.6" 16467 16549 sources."@types/cacheable-request-6.0.2" 16468 16550 sources."@types/http-cache-semantics-4.0.1" 16469 16551 sources."@types/json-buffer-3.0.0" 16470 16552 sources."@types/keyv-3.1.4" 16471 - sources."@types/node-18.0.3" 16553 + sources."@types/node-18.7.13" 16472 16554 sources."@types/responselike-1.0.0" 16473 - (sources."ansi-escapes-4.3.2" // { 16474 - dependencies = [ 16475 - sources."type-fest-0.21.3" 16476 - ]; 16477 - }) 16555 + sources."ansi-escapes-4.3.2" 16478 16556 sources."ansi-regex-5.0.1" 16479 16557 sources."ansi-styles-4.3.0" 16480 16558 sources."anymatch-3.1.2" ··· 16486 16564 sources."brace-expansion-1.1.11" 16487 16565 sources."braces-3.0.2" 16488 16566 sources."buffer-5.7.1" 16489 - sources."cacheable-lookup-2.0.1" 16567 + sources."cacheable-lookup-5.0.4" 16490 16568 sources."cacheable-request-7.0.2" 16491 16569 sources."chalk-4.1.2" 16492 16570 sources."chokidar-3.5.3" 16493 16571 sources."cli-cursor-3.1.0" 16494 - sources."cli-spinners-2.6.1" 16572 + sources."cli-spinners-2.7.0" 16495 16573 sources."clone-1.0.4" 16496 - (sources."clone-response-1.0.2" // { 16497 - dependencies = [ 16498 - sources."mimic-response-1.0.1" 16499 - ]; 16500 - }) 16574 + sources."clone-response-1.0.3" 16501 16575 sources."color-convert-2.0.1" 16502 16576 sources."color-name-1.1.4" 16503 16577 sources."compress-brotli-1.3.8" 16504 16578 sources."concat-map-0.0.1" 16505 16579 sources."cross-spawn-7.0.3" 16506 16580 sources."debug-4.3.4" 16507 - sources."decompress-response-5.0.0" 16581 + (sources."decompress-response-6.0.0" // { 16582 + dependencies = [ 16583 + sources."mimic-response-3.1.0" 16584 + ]; 16585 + }) 16508 16586 sources."defaults-1.0.3" 16509 16587 sources."defer-to-connect-2.0.1" 16510 - sources."duplexer3-0.1.5" 16511 16588 sources."elm-tooling-1.8.0" 16512 16589 sources."emoji-regex-8.0.0" 16513 16590 sources."end-of-stream-1.4.4" 16514 16591 sources."fast-levenshtein-3.0.0" 16515 - sources."fastest-levenshtein-1.0.12" 16592 + sources."fastest-levenshtein-1.0.16" 16516 16593 sources."fill-range-7.0.1" 16517 16594 sources."find-up-4.1.0" 16518 16595 sources."folder-hash-3.3.3" ··· 16526 16603 ]; 16527 16604 }) 16528 16605 sources."glob-parent-5.1.2" 16529 - sources."got-10.7.0" 16606 + sources."got-11.8.5" 16530 16607 sources."graceful-fs-4.2.10" 16531 16608 sources."has-flag-4.0.0" 16532 16609 sources."http-cache-semantics-4.1.0" 16610 + sources."http2-wrapper-1.0.3" 16533 16611 sources."ieee754-1.2.1" 16534 16612 sources."inflight-1.0.6" 16535 16613 sources."inherits-2.0.4" ··· 16543 16621 sources."isexe-2.0.0" 16544 16622 sources."json-buffer-3.0.1" 16545 16623 sources."jsonfile-6.1.0" 16546 - sources."keyv-4.3.2" 16624 + sources."keyv-4.4.1" 16547 16625 sources."kleur-3.0.3" 16548 16626 sources."locate-path-5.0.0" 16549 16627 sources."log-symbols-4.1.0" 16550 16628 sources."lowercase-keys-2.0.0" 16551 16629 sources."mimic-fn-2.1.0" 16552 - sources."mimic-response-2.1.0" 16630 + sources."mimic-response-1.0.1" 16553 16631 sources."minimatch-3.0.8" 16554 16632 sources."minimist-1.2.6" 16555 16633 sources."mkdirp-0.5.6" ··· 16560 16638 sources."onetime-5.1.2" 16561 16639 sources."ora-5.4.1" 16562 16640 sources."p-cancelable-2.1.1" 16563 - sources."p-event-4.2.0" 16564 - sources."p-finally-1.0.0" 16565 16641 sources."p-limit-2.3.0" 16566 16642 sources."p-locate-4.1.0" 16567 - sources."p-timeout-3.2.0" 16568 16643 sources."p-try-2.2.0" 16569 16644 sources."path-exists-4.0.0" 16570 16645 sources."path-is-absolute-1.0.1" ··· 16572 16647 sources."picomatch-2.3.1" 16573 16648 sources."prompts-2.4.2" 16574 16649 sources."pump-3.0.0" 16650 + sources."quick-lru-5.1.1" 16575 16651 sources."readable-stream-3.6.0" 16576 16652 sources."readdirp-3.6.0" 16577 - sources."responselike-2.0.0" 16653 + sources."resolve-alpn-1.2.1" 16654 + sources."responselike-2.0.1" 16578 16655 sources."restore-cursor-3.1.0" 16579 16656 sources."rimraf-2.6.3" 16580 16657 sources."safe-buffer-5.2.1" ··· 16589 16666 sources."supports-hyperlinks-2.2.0" 16590 16667 sources."temp-0.9.4" 16591 16668 sources."terminal-link-2.1.1" 16592 - sources."to-readable-stream-2.1.0" 16593 16669 sources."to-regex-range-5.0.1" 16594 - sources."type-fest-0.10.0" 16670 + sources."type-fest-0.21.3" 16595 16671 sources."universalify-2.0.0" 16596 16672 sources."util-deprecate-1.0.2" 16597 16673 sources."wcwidth-1.0.1" ··· 16625 16701 sources."lru-cache-6.0.0" 16626 16702 sources."ms-2.1.2" 16627 16703 sources."semver-7.3.7" 16628 - sources."simple-git-3.10.0" 16704 + sources."simple-git-3.13.0" 16629 16705 sources."upath-2.0.1" 16630 16706 sources."yallist-4.0.0" 16631 16707 ];
+2 -1
pkgs/development/interpreters/python/hooks/default.nix
··· 6 6 , isPy3k 7 7 , ensureNewerSourcesForZipFilesHook 8 8 , findutils 9 + , installShellFiles 9 10 }: 10 11 11 12 let ··· 190 191 sphinxHook = callPackage ({ sphinx }: 191 192 makeSetupHook { 192 193 name = "python${python.pythonVersion}-sphinx-hook"; 193 - deps = [ sphinx ]; 194 + deps = [ sphinx installShellFiles ]; 194 195 } ./sphinx-hook.sh) {}; 195 196 }
+39 -24
pkgs/development/interpreters/python/hooks/sphinx-hook.sh
··· 1 - # This hook automatically finds Sphinx documentation, builds it in html format 2 - # and installs it. 3 - # 4 - # This hook knows about several popular locations in which subdirectory 5 - # documentation may be, but in very unusual cases $sphinxRoot directory can be 6 - # set explicitly. 7 - # 8 - # Name of the directory relative to ${doc:-$out}/share/doc is normally also 9 - # deduced automatically, but can be overridden with $sphinxOutdir variable. 10 - # 11 - # Sphinx build system can depend on arbitrary amount of python modules, client 12 - # code is responsible for ensuring that all dependencies are present. 1 + # shellcheck shell=bash 2 + echo "Sourcing sphinx-hook" 3 + 4 + declare -a __sphinxBuilders 13 5 14 6 buildSphinxPhase() { 15 - local __sphinxRoot="" o 7 + echo "Executing buildSphinxPhase" 16 8 9 + local __sphinxRoot="" 17 10 runHook preBuildSphinx 11 + 18 12 if [[ -n "${sphinxRoot:-}" ]] ; then # explicit root 19 13 if ! [[ -f "${sphinxRoot}/conf.py" ]] ; then 20 14 echo 2>&1 "$sphinxRoot/conf.py: no such file" ··· 22 16 fi 23 17 __sphinxRoot=$sphinxRoot 24 18 else 25 - for o in doc docs doc/source docs/source ; do 26 - if [[ -f "$o/conf.py" ]] ; then 27 - echo "Sphinx documentation found in $o" 28 - __sphinxRoot=$o 19 + for candidate in doc docs doc/source docs/source ; do 20 + if [[ -f "$candidate/conf.py" ]] ; then 21 + echo "Sphinx documentation found in $candidate" 22 + __sphinxRoot=$candidate 29 23 break 30 24 fi 31 25 done ··· 35 29 echo 2>&1 "Sphinx documentation not found, use 'sphinxRoot' variable" 36 30 exit 1 37 31 fi 38 - sphinx-build -M html "${__sphinxRoot}" ".sphinx/html" -v 32 + 33 + if [ -n "${sphinxBuilders-}" ]; then 34 + eval "__sphinxBuilders=($sphinxBuilders)" 35 + else 36 + __sphinxBuilders=(html) 37 + fi 38 + 39 + for __builder in "${__sphinxBuilders[@]}"; do 40 + echo "Executing sphinx-build with ${__builder} builder" 41 + sphinx-build -M "${__builder}" "${__sphinxRoot}" ".sphinx/${__builder}" -v 42 + done 39 43 40 44 runHook postBuildSphinx 41 45 } 42 46 43 47 installSphinxPhase() { 48 + echo "Executing installSphinxPhase" 49 + 44 50 local docdir="" 45 51 runHook preInstallSphinx 46 52 47 - docdir="${doc:-$out}/share/doc/${sphinxOutdir:-$name}" 48 - mkdir -p "$docdir" 53 + for __builder in "${__sphinxBuilders[@]}"; do 54 + # divert output for man builder 55 + if [ "$__builder" == "man" ]; then 56 + installManPage .sphinx/man/man/* 57 + 58 + else 59 + # shellcheck disable=2154 60 + docdir="${doc:-$out}/share/doc/${pname}" 49 61 50 - cp -r .sphinx/html/html "$docdir/" 51 - rm -fr "${docdir}/html/_sources" "${docdir}/html/.buildinfo" 62 + mkdir -p "$docdir" 63 + 64 + cp -r ".sphinx/${__builder}/${__builder}" "$docdir/" 65 + rm -fr "${docdir}/${__builder}/_sources" "${docdir}/${__builder}/.buildinfo" 66 + fi 67 + done 52 68 53 69 runHook postInstallSphinx 54 70 } 55 71 56 - preDistPhases+=" buildSphinxPhase" 57 - postPhases+=" installSphinxPhase" 72 + preDistPhases+=" buildSphinxPhase installSphinxPhase"
+8 -2
pkgs/development/libraries/intel-media-driver/default.nix
··· 10 10 , libdrm 11 11 , enableX11 ? stdenv.isLinux 12 12 , libX11 13 + # for passhtru.tests 14 + , pkgsi686Linux 13 15 }: 14 16 15 17 stdenv.mkDerivation rec { 16 18 pname = "intel-media-driver"; 17 - version = "22.5.0"; 19 + version = "22.5.2"; 18 20 19 21 outputs = [ "out" "dev" ]; 20 22 ··· 22 24 owner = "intel"; 23 25 repo = "media-driver"; 24 26 rev = "intel-media-${version}"; 25 - sha256 = "sha256-8E3MN4a+k8YA+uuUPApYFvT82bgJHE1cnPyuAO6R1tA="; 27 + sha256 = "sha256-3WqmTM68XdQfGibkVAT1S9N7Cn8eviNM6qUeF8qogtc="; 26 28 }; 27 29 28 30 patches = [ ··· 57 59 patchelf --set-rpath "$(patchelf --print-rpath $out/lib/dri/iHD_drv_video.so):${lib.makeLibraryPath [ libX11 ]}" \ 58 60 $out/lib/dri/iHD_drv_video.so 59 61 ''; 62 + 63 + passthru.tests = { 64 + inherit (pkgsi686Linux) intel-media-driver; 65 + }; 60 66 61 67 meta = with lib; { 62 68 description = "Intel Media Driver for VAAPI — Broadwell+ iGPUs";
+34
pkgs/development/libraries/qmarkdowntextedit/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , qmake 5 + , wrapQtAppsHook 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "qmarkdowntextedit"; 10 + version = "unstable-2022-08-24"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "pbek"; 14 + repo = pname; 15 + rev = "f7ddc0d520407405b9b132ca239f4a927e3025e6"; 16 + sha256 = "sha256-TEb2w48MZ8U1INVvUiS1XohdvnVLBCTba31AwATd/oE="; 17 + }; 18 + 19 + nativeBuildInputs = [ qmake wrapQtAppsHook ]; 20 + 21 + qmakeFlags = [ 22 + "qmarkdowntextedit-lib.pro" 23 + "PREFIX=${placeholder "out"}" 24 + "LIBDIR=${placeholder "out"}/lib" 25 + ]; 26 + 27 + meta = with lib; { 28 + description = "C++ Qt QPlainTextEdit widget with markdown highlighting and some other goodies"; 29 + homepage = "https://github.com/pbek/qmarkdowntextedit"; 30 + license = licenses.mit; 31 + platforms = platforms.linux; 32 + maintainers = with maintainers; [ rewine ]; 33 + }; 34 + }
+2 -2
pkgs/development/libraries/rapidfuzz-cpp/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "rapidfuzz-cpp"; 10 - version = "1.1.1"; 10 + version = "1.2.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "maxbachmann"; 14 14 repo = "rapidfuzz-cpp"; 15 15 rev = "v${version}"; 16 - hash = "sha256-ogj8eFkiDtjFcBb3Yip909gKBIeALsoH3LnRIjQmLMA="; 16 + hash = "sha256-S92ookWpQ4OW53oYXPiCokUchI+47CILDR5RXxPJbmU="; 17 17 }; 18 18 19 19 patches = [
+1 -1
pkgs/development/libraries/science/math/ipopt/default.nix
··· 5 5 , blas 6 6 , lapack 7 7 , gfortran 8 - , enableAMPL ? stdenv.isLinux, libamplsolver 8 + , enableAMPL ? true, libamplsolver 9 9 }: 10 10 11 11 assert (!blas.isILP64) && (!lapack.isILP64);
+7 -8
pkgs/development/libraries/science/math/libamplsolver/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch }: 1 + { lib, stdenv, substitute, fetchurl, fetchpatch }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libamplsolver"; ··· 10 10 }; 11 11 12 12 patches = [ 13 - # Debian provides a patch to build a shared library 14 - (fetchpatch { 15 - url = "https://sources.debian.org/data/main/liba/libamplsolver/0~20190702-2/debian/patches/fix-makefile-shared-lib.patch"; 16 - sha256 = "sha256-96qwj3fLugzbsfxguKMce13cUo7XGC4VUE7xKcJs42Y="; 13 + (substitute { 14 + src = ./libamplsolver-sharedlib.patch; 15 + replacements = [ "--replace" "@sharedlibext@" "${stdenv.hostPlatform.extensions.sharedLibrary}" ]; 17 16 }) 18 17 ]; 19 18 20 19 installPhase = '' 21 20 runHook preInstall 22 - pushd sys.`uname -m`.`uname -s` 21 + pushd sys.$(uname -m).$(uname -s) 23 22 install -D -m 0644 *.h -t $out/include 24 - install -D -m 0644 *.so* -t $out/lib 23 + install -D -m 0644 *${stdenv.hostPlatform.extensions.sharedLibrary}* -t $out/lib 25 24 install -D -m 0644 *.a -t $out/lib 26 25 popd 27 26 runHook postInstall ··· 31 30 description = "A library of routines that help solvers work with AMPL"; 32 31 homepage = "https://ampl.com/netlib/ampl/"; 33 32 license = [ licenses.mit ]; 34 - platforms = platforms.linux; 33 + platforms = platforms.unix; 35 34 maintainers = with maintainers; [ aanderse ]; 36 35 }; 37 36 }
+39
pkgs/development/libraries/science/math/libamplsolver/libamplsolver-sharedlib.patch
··· 1 + Authors: Andrei Rozanski and Grace Dinh 2 + Last-Update: 2022-08-23 3 + Description: fix makefile.u in order to get libamplsover.so (Linux) or libamplsolver.dylib (Mac) 4 + 5 + --- a/makefile.u 6 + +++ b/makefile.u 7 + 8 + @@ -26,8 +26,9 @@ 9 + 10 + .SUFFIXES: .c .o 11 + CC = cc 12 + -CFLAGS = -O 13 + +CFLAGS := $(CFLAGS) -pipe -DASL_BUILD -fPIC -DPIC 14 + SHELL=/bin/sh 15 + +OFILES=$(addsuffix .o,$(basename $(a))) 16 + 17 + # Add -DNO_RUSAGE to the CFLAGS assignment if your system 18 + # lacks getrusage(). This only matters for compiling xectim.c. 19 + @@ -86,7 +87,7 @@ 20 + .c.o: 21 + $(CC) -c $(CFLAGS) $*.c 22 + 23 + -all: arith.h stdio1.h amplsolver.a funcadd0.o 24 + +all: arith.h stdio1.h amplsolver.a funcadd0.o libamplsolver@sharedlibext@ 25 + 26 + a = \ 27 + asldate.c \ 28 + @@ -189,6 +190,11 @@ 29 + # search path, e.g. 30 + # exec true 31 + # or just comment out the ranlib invocation above. 32 + +libamplsolver.so: $(OFILES) 33 + + $(CC) $^ -shared -Wl,-soname,libamplsolver.so.0 $(LDFLAGS) -o $@.0 34 + + ln -s $@.0 $@ 35 + +libamplsolver.dylib: amplsolver.a 36 + + $(CC) -fpic -shared -Wl,-all_load amplsolver.a $(LDFLAGS) -o libamplsolver.dylib 37 + 38 + Aslh = arith.h asl.h funcadd.h stdio1.h 39 + auxinfo.o libnamsave.o: funcadd.h stdio1.h
+3 -11
pkgs/development/libraries/ucommon/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config 2 - , openssl ? null, zlib ? null, gnutls ? null 2 + , gnutls 3 3 }: 4 - 5 - let 6 - xor = a: b: (a || b) && (!(a && b)); 7 - in 8 - 9 - assert xor (openssl != null) (gnutls != null); 10 - assert !(xor (openssl != null) (zlib != null)); 11 4 12 5 stdenv.mkDerivation rec { 13 6 pname = "ucommon"; ··· 29 22 --replace 'ifndef UCOMMON_SYSRUNTIME' 'if 0' 30 23 ''; 31 24 32 - # ucommon.pc has link time depdendencies on -lssl, -lcrypto, -lz, -lgnutls 33 - propagatedBuildInputs = [ openssl zlib gnutls ]; 25 + # ucommon.pc has link time depdendencies on -lusecure -lucommon -lgnutls 26 + propagatedBuildInputs = [ gnutls ]; 34 27 35 28 doCheck = true; 36 29 ··· 38 31 description = "C++ library to facilitate using C++ design patterns"; 39 32 homepage = "https://www.gnu.org/software/commoncpp/"; 40 33 license = lib.licenses.lgpl3Plus; 41 - 42 34 maintainers = with lib.maintainers; [ ]; 43 35 platforms = lib.platforms.linux; 44 36 };
+76
pkgs/development/python-modules/betterproto/default.nix
··· 1 + { buildPythonPackage 2 + , fetchFromGitHub 3 + , lib 4 + , pythonOlder 5 + , poetry-core 6 + , grpclib 7 + , python-dateutil 8 + , dataclasses 9 + , black 10 + , jinja2 11 + , isort 12 + , python 13 + , pytestCheckHook 14 + , pytest-asyncio 15 + , pytest-mock 16 + , tomlkit 17 + , grpcio-tools 18 + }: 19 + 20 + buildPythonPackage rec { 21 + pname = "betterproto"; 22 + version = "2.0.0b5"; 23 + format = "pyproject"; 24 + disabled = pythonOlder "3.6"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "danielgtaylor"; 28 + repo = "python-betterproto"; 29 + rev = "v${version}"; 30 + sha256 = "sha256-XyXdpo3Yo4aO1favMWC7i9utz4fNDbKbsnYXJW0b7Gc="; 31 + }; 32 + 33 + nativeBuildInputs = [ poetry-core ]; 34 + 35 + propagatedBuildInputs = [ 36 + grpclib 37 + python-dateutil 38 + ] ++ lib.optional (pythonOlder "3.7") [ 39 + dataclasses 40 + ]; 41 + 42 + passthru.optional-dependencies.compiler = [ 43 + black 44 + jinja2 45 + isort 46 + ]; 47 + 48 + pythonImportsCheck = [ "betterproto" ]; 49 + 50 + checkInputs = [ 51 + pytestCheckHook 52 + pytest-asyncio 53 + pytest-mock 54 + tomlkit 55 + grpcio-tools 56 + ] ++ passthru.optional-dependencies.compiler; 57 + 58 + # The tests require the generation of code before execution. This requires 59 + # the protoc-gen-python_betterproto script from the packge to be on PATH. 60 + preCheck = '' 61 + export PATH=$PATH:$out/bin 62 + ${python.interpreter} -m tests.generate 63 + ''; 64 + 65 + meta = with lib; { 66 + description = "Clean, modern, Python 3.6+ code generator & library for Protobuf 3 and async gRPC"; 67 + longDescription = '' 68 + This project aims to provide an improved experience when using Protobuf / 69 + gRPC in a modern Python environment by making use of modern language 70 + features and generating readable, understandable, idiomatic Python code. 71 + ''; 72 + homepage = "https://github.com/danielgtaylor/python-betterproto"; 73 + license = licenses.mit; 74 + maintainers = with maintainers; [ nikstur ]; 75 + }; 76 + }
+96
pkgs/development/python-modules/cairo-lang/default.nix
··· 1 + { lib 2 + , fetchzip 3 + , buildPythonPackage 4 + , setuptools 5 + , ecdsa 6 + , fastecdsa 7 + , sympy 8 + , frozendict 9 + , marshmallow 10 + , marshmallow-enum 11 + , marshmallow-dataclass 12 + , marshmallow-oneofschema 13 + , pipdeptree 14 + , eth-hash 15 + , web3 16 + , aiohttp 17 + , cachetools 18 + , mpmath 19 + , numpy 20 + , prometheus-client 21 + , typeguard 22 + , lark 23 + , pyyaml 24 + , pytest-asyncio 25 + , pytest 26 + , pytestCheckHook 27 + , gmp 28 + }: 29 + 30 + buildPythonPackage rec { 31 + pname = "cairo-lang"; 32 + version = "0.9.1"; 33 + 34 + src = fetchzip { 35 + url = "https://github.com/starkware-libs/cairo-lang/releases/download/v${version}/cairo-lang-${version}.zip"; 36 + sha256 = "sha256-i4030QLG6PssfKD5FO4VrZxap19obMZ3Aa77p5MXlNY="; 37 + }; 38 + 39 + # TODO: remove a substantial part when https://github.com/starkware-libs/cairo-lang/pull/88/files is merged. 40 + # TODO: pytest and pytest-asyncio must be removed as they are check inputs in fact. 41 + postPatch = '' 42 + substituteInPlace requirements.txt \ 43 + --replace 'frozendict==1.2' 'frozendict>=1.2' \ 44 + --replace 'lark-parser' 'lark' \ 45 + --replace 'pytest-asyncio' ''' \ 46 + --replace "pytest" ''' 47 + 48 + substituteInPlace starkware/cairo/lang/compiler/parser_transformer.py \ 49 + --replace 'value, meta' 'meta, value' \ 50 + --replace 'value: Tuple[CommaSeparatedWithNotes], meta' 'meta, value: Tuple[CommaSeparatedWithNotes]' 51 + substituteInPlace starkware/cairo/lang/compiler/parser.py \ 52 + --replace 'standard' 'basic' 53 + ''; 54 + 55 + buildInputs = [ gmp ]; 56 + 57 + propagatedBuildInputs = [ 58 + aiohttp 59 + cachetools 60 + setuptools 61 + ecdsa 62 + fastecdsa 63 + sympy 64 + mpmath 65 + numpy 66 + typeguard 67 + frozendict 68 + prometheus-client 69 + marshmallow 70 + marshmallow-enum 71 + marshmallow-dataclass 72 + marshmallow-oneofschema 73 + pipdeptree 74 + lark 75 + web3 76 + eth-hash 77 + eth-hash.optional-dependencies.pycryptodome 78 + pyyaml 79 + ]; 80 + 81 + checkInputs = [ 82 + pytestCheckHook 83 + ]; 84 + 85 + # There seems to be no test included in the ZIP release… 86 + # Cloning from GitHub is harder because they use a custom CMake setup 87 + # TODO(raitobezarius): upstream was pinged out of band about it. 88 + doCheck = false; 89 + 90 + meta = { 91 + homepage = "https://github.com/starkware/cairo-lang"; 92 + description = "Tooling for Cairo language"; 93 + license = lib.licenses.mit; 94 + maintainers = with lib.maintainers; [ raitobezarius ]; 95 + }; 96 + }
+2 -2
pkgs/development/python-modules/flake8-bugbear/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "flake8-bugbear"; 14 - version = "22.7.1"; 14 + version = "22.8.23"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.6"; ··· 20 20 owner = "PyCQA"; 21 21 repo = pname; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-eG/1BENY93j76ZFlcnariDFkK9yspqgNUxFPdAhBCVA="; 23 + hash = "sha256-5SBG/lrbe25kcABngDpOdjA/JJQ0DKcCYi6JBxTurPg="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+3
pkgs/development/python-modules/hacking/default.nix
··· 39 39 ]; 40 40 41 41 checkPhase = '' 42 + # tries to trigger flake8 and fails 43 + rm hacking/tests/test_doctest.py 44 + 42 45 stestr run 43 46 ''; 44 47
+2
pkgs/development/python-modules/ipfshttpclient/default.nix
··· 80 80 runHook postCheck 81 81 ''; 82 82 83 + doCheck = false; 84 + 83 85 pythonImportsCheck = [ "ipfshttpclient" ]; 84 86 85 87 meta = with lib; {
+2 -2
pkgs/development/python-modules/rapidfuzz/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "rapidfuzz"; 23 - version = "2.5.0"; 23 + version = "2.6.0"; 24 24 25 25 disabled = pythonOlder "3.6"; 26 26 ··· 30 30 owner = "maxbachmann"; 31 31 repo = "RapidFuzz"; 32 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-Cdzf6qQZQzH+tRyLEYvi7c01L5i+6WmgHozLhFQNsiQ="; 33 + hash = "sha256-EplQodBTdZCqhM+6nCovpnqDJ6zvu+jG5muVMLIxdKI="; 34 34 }; 35 35 36 36 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/setuptools-scm/default.nix
··· 29 29 "setuptools_scm" 30 30 ]; 31 31 32 - # check in passhtru.tests.pytest to escape infinite recursion on pytest 32 + # check in passthru.tests.pytest to escape infinite recursion on pytest 33 33 doCheck = false; 34 34 35 35 passthru.tests = {
+83
pkgs/development/python-modules/web3/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , aiohttp 5 + , eth-abi 6 + , eth-account 7 + , eth-hash 8 + , eth-typing 9 + , eth-utils 10 + , eth-rlp 11 + , hexbytes 12 + , ipfshttpclient 13 + , jsonschema 14 + , lru-dict 15 + , protobuf 16 + , requests 17 + , typing-extensions 18 + , websockets 19 + # , eth-tester 20 + # , py-geth 21 + , pytestCheckHook 22 + , pythonOlder 23 + }: 24 + 25 + buildPythonPackage rec { 26 + pname = "web3"; 27 + version = "5.30.0"; 28 + disabled = pythonOlder "3.6"; 29 + 30 + src = fetchFromGitHub { 31 + owner = "ethereum"; 32 + repo = "web3.py"; 33 + rev = "v${version}"; 34 + sha256 = "sha256-HajumvOG18r7TslkmCfI0iiLsEddevGrRZQFWICGeYE="; 35 + }; 36 + 37 + postPatch = '' 38 + substituteInPlace setup.py \ 39 + --replace "eth-account>=0.5.7,<0.6.0" "eth-account>=0.5.7,<0.7" \ 40 + --replace "eth-utils>=1.9.5,<2.0.0" "eth-utils>=1.9.5,<3" \ 41 + --replace "eth-rlp<0.3" "eth-rlp<0.4" \ 42 + --replace "websockets>=9.1,<10" "websockets>=9.1,<11" \ 43 + --replace "eth-abi>=2.0.0b6,<3.0.0" "eth-abi>=2.0.0b6,<4" \ 44 + --replace "eth-typing>=2.0.0,<3.0.0" "eth-typing>=2.0.0,<4" 45 + ''; 46 + 47 + propagatedBuildInputs = [ 48 + aiohttp 49 + eth-abi 50 + eth-account 51 + eth-hash 52 + eth-hash.optional-dependencies.pycryptodome 53 + eth-rlp 54 + eth-typing 55 + eth-utils 56 + hexbytes 57 + ipfshttpclient 58 + jsonschema 59 + lru-dict 60 + protobuf 61 + requests 62 + websockets 63 + ] ++ lib.optional (pythonOlder "3.8") [ typing-extensions ]; 64 + 65 + # TODO: package eth-tester 66 + #checkInputs = [ 67 + # eth-tester 68 + # eth-tester.optional-dependencies.py-evm 69 + # py-geth 70 + # pytestCheckHook 71 + #]; 72 + 73 + doCheck = false; 74 + 75 + pythonImportsCheck = [ "web3" ]; 76 + 77 + meta = with lib; { 78 + description = "Web3 library for interactions"; 79 + homepage = "https://github.com/ethereum/web3"; 80 + license = licenses.mit; 81 + maintainers = with maintainers; [ raitobezarius ]; 82 + }; 83 + }
+2 -2
pkgs/development/tools/buildkit/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "buildkit"; 5 - version = "0.10.3"; 5 + version = "0.10.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "moby"; 9 9 repo = "buildkit"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-hZINmKzLB0nFVVP8eXK2ghe4Emmuq55w0vDwLw8XuJk="; 11 + sha256 = "sha256-vxu0QLZ6ERNV1lTH0/c0yR6FT/im5rn85oqQeRvdt6M="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/development/tools/delve/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "delve"; 5 - version = "1.9.0"; 5 + version = "1.9.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "go-delve"; 9 9 repo = "delve"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-paNr9aiRG6NP6DIGUojl7VPPPMTeJRpDW8ThDNOQhWM="; 11 + sha256 = "sha256-Ga+1xz7gsLoHA0G4UOiJf331hrBVoeB93Pjd0PyATB4="; 12 12 }; 13 13 14 14 vendorSha256 = null;
+2 -2
pkgs/development/tools/misc/lttng-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lttng-tools"; 5 - version = "2.13.7"; 5 + version = "2.13.8"; 6 6 7 7 src = fetchurl { 8 8 url = "https://lttng.org/files/lttng-tools/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-0XoC6PF4p880A+PJ7fuQrToWKOIKoLUTFAiuR/ci8I0="; 9 + sha256 = "sha256-selZV5smB5CTCyDzx6p877ikDg3oDUp3fCv3jGs1PcE="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ];
+5 -3
pkgs/development/tools/profiling/EZTrace/default.nix
··· 5 5 libelf, 6 6 libiberty, 7 7 zlib, 8 - libbfd, 9 - libopcodes, 8 + # Once https://gitlab.com/eztrace/eztrace/-/issues/41 9 + # is released we can switch to latest binutils. 10 + libbfd_2_38, 11 + libopcodes_2_38, 10 12 buildPackages, 11 13 autoreconfHook 12 14 }: ··· 23 25 }; 24 26 25 27 nativeBuildInputs = [ gfortran autoreconfHook ]; 26 - buildInputs = [ libelf libiberty zlib libbfd libopcodes ]; 28 + buildInputs = [ libelf libiberty zlib libbfd_2_38 libopcodes_2_38 ]; 27 29 28 30 meta = with lib; { 29 31 description = "Tool that aims at generating automatically execution trace from HPC programs";
+8 -3
pkgs/os-specific/linux/bpftools/default.nix
··· 1 1 { lib, stdenv 2 - , libopcodes, libbfd, elfutils, readline 2 + , libopcodes, libopcodes_2_38 3 + , libbfd, libbfd_2_38 4 + , elfutils, readline 3 5 , linuxPackages_latest, zlib 4 6 , python3, bison, flex 5 7 }: 6 8 7 - stdenv.mkDerivation { 9 + stdenv.mkDerivation rec { 8 10 pname = "bpftools"; 9 11 inherit (linuxPackages_latest.kernel) version src; 10 12 11 13 nativeBuildInputs = [ python3 bison flex ]; 12 - buildInputs = [ libopcodes libbfd elfutils zlib readline ]; 14 + buildInputs = (if (lib.versionAtLeast version "5.20") 15 + then [ libopcodes libbfd ] 16 + else [ libopcodes_2_38 libbfd_2_38 ]) 17 + ++ [ elfutils zlib readline ]; 13 18 14 19 preConfigure = '' 15 20 patchShebangs scripts/bpf_doc.py
+2 -2
pkgs/os-specific/linux/kernel/hardened/update.py
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -i python -p "python38.withPackages (ps: [ps.PyGithub])" git gnupg 2 + #! nix-shell -i python -p "python3.withPackages (ps: [ps.PyGithub])" git gnupg 3 3 4 4 # This is automatically called by ../update.sh. 5 5 ··· 201 201 (callPackage {NIXPKGS_KERNEL_PATH / filename} {{}}).version 202 202 """ 203 203 kernel_version_json = run( 204 - "nix-instantiate", "--eval", "--json", "--expr", nix_version_expr, 204 + "nix-instantiate", "--eval", "--system", "x86_64-linux", "--json", "--expr", nix_version_expr, 205 205 ).stdout 206 206 kernel_version = parse_version(json.loads(kernel_version_json)) 207 207 if kernel_version < MIN_KERNEL_VERSION:
+7 -4
pkgs/os-specific/linux/kernel/perf/default.nix
··· 1 1 { lib, stdenv, fetchpatch, kernel, elfutils, python2, python3, perl, newt, slang, asciidoc, xmlto, makeWrapper 2 2 , docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkg-config, libunwind, binutils-unwrapped 3 - , libiberty, audit, libbfd, libopcodes, openssl, systemtap, numactl 3 + , libiberty, audit, libbfd, libbfd_2_38, libopcodes, libopcodes_2_38, openssl, systemtap, numactl 4 4 , zlib 5 5 , withGtk ? false, gtk2 6 6 , withZstd ? true, zstd ··· 45 45 flex bison libiberty audit makeWrapper pkg-config python3 46 46 ]; 47 47 buildInputs = [ 48 - elfutils newt slang libunwind libbfd zlib openssl systemtap.stapBuild numactl 49 - libopcodes python3 perl 50 - ] ++ lib.optional withGtk gtk2 48 + elfutils newt slang libunwind zlib openssl systemtap.stapBuild numactl 49 + python3 perl 50 + ] ++ (if (lib.versionAtLeast kernel.version "5.19") 51 + then [ libbfd libopcodes ] 52 + else [ libbfd_2_38 libopcodes_2_38 ]) 53 + ++ lib.optional withGtk gtk2 51 54 ++ (if (lib.versionAtLeast kernel.version "4.19") then [ python3 ] else [ python2 ]) 52 55 ++ lib.optional withZstd zstd 53 56 ++ lib.optional withLibcap libcap;
+6 -5
pkgs/os-specific/linux/openvswitch/default.nix
··· 8 8 _kernel = kernel; 9 9 pythonEnv = python3.withPackages (ps: with ps; [ six ]); 10 10 in stdenv.mkDerivation rec { 11 - version = "2.17.0"; 11 + version = "2.17.2"; 12 12 pname = "openvswitch"; 13 13 14 14 src = fetchurl { 15 - url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz"; 16 - sha256 = "sha256-4Dv6t8qC2Bp9OjbeTzkKO1IQ4/OWV2cfkih3zU6m3HM="; 15 + url = "https://www.openvswitch.org/releases/openvswitch-${version}.tar.gz"; 16 + sha256 = "sha256-ai4NtCutuMvK9/O+vVtemicBMZ3x0EKU6aennpRQTWk="; 17 17 }; 18 18 19 19 kernel = optional (_kernel != null) _kernel.dev; 20 20 21 21 nativeBuildInputs = [ pkg-config makeWrapper ]; 22 - buildInputs = [ util-linux openssl libcap_ng pythonEnv 23 - perl procps which ]; 22 + buildInputs = [ 23 + util-linux openssl libcap_ng pythonEnv perl procps which 24 + ]; 24 25 25 26 configureFlags = [ 26 27 "--localstatedir=/var"
+8 -2
pkgs/servers/plex/default.nix
··· 1 1 # The actual Plex package that we run is a FHS userenv of the "raw" package. 2 2 { stdenv 3 - , buildFHSUserEnv 3 + , buildFHSUserEnvBubblewrap 4 4 , writeScript 5 5 , plexRaw 6 6 ··· 9 9 , dataDir ? "/var/lib/plex" 10 10 }: 11 11 12 - buildFHSUserEnv { 12 + buildFHSUserEnvBubblewrap { 13 13 name = "plexmediaserver"; 14 + 14 15 inherit (plexRaw) meta; 16 + 17 + # Plex does some magic to detect if it is already running. 18 + # The separate PID namespace somehow breaks this and Plex is thinking it's already 19 + # running and refuses to start. 20 + unsharePid = false; 15 21 16 22 # This script is run when we start our Plex binary 17 23 runScript = writeScript "plex-run-script" ''
+5 -4
pkgs/servers/sql/mariadb/default.nix
··· 94 94 # to pass in java explicitly. 95 95 "-DCONNECT_WITH_JDBC=OFF" 96 96 "-DCURSES_LIBRARY=${ncurses.out}/lib/libncurses.dylib" 97 + ] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ 98 + # revisit this if nixpkgs supports any architecture whose stack grows upwards 99 + "-DSTACK_DIRECTION=-1" 100 + "-DCMAKE_CROSSCOMPILING_EMULATOR=${stdenv.hostPlatform.emulator buildPackages}" 97 101 ]; 98 102 99 103 postInstall = '' ··· 211 215 "-DPLUGIN_AUTH_PAM_V1=NO" 212 216 "-DWITHOUT_OQGRAPH=1" 213 217 "-DWITHOUT_PLUGIN_S3=1" 214 - ] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ 215 - # revisit this if nixpkgs supports any architecture whose stack grows upwards 216 - "-DSTACK_DIRECTION=-1" 217 - "-DCMAKE_CROSSCOMPILING_EMULATOR=${stdenv.hostPlatform.emulator buildPackages}" 218 218 ]; 219 219 220 220 preConfigure = lib.optionalString (!stdenv.hostPlatform.isDarwin) '' ··· 234 234 ''; 235 235 236 236 CXXFLAGS = lib.optionalString stdenv.hostPlatform.isi686 "-fpermissive"; 237 + NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isRiscV "-latomic"; 237 238 }); 238 239 in { 239 240 mariadb_104 = mariadbPackage {
+7 -6
pkgs/tools/admin/hedgedoc-cli/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, wget, jq, curl }: 1 + { lib, stdenv, fetchFromGitHub, makeWrapper, wget, jq, curl }: 2 2 3 3 let 4 4 version = "1.0"; ··· 14 14 sha256 = "uz+lkRRUTRr8WR295esNEbgjlZ/Em7mBk6Nx0BWLfg4="; 15 15 }; 16 16 17 - buildInputs = [ 18 - wget 19 - jq 20 - curl 17 + nativeBuildInputs = [ 18 + makeWrapper 21 19 ]; 22 20 23 21 installPhase = '' 24 22 runHook preInstall 25 - install -Dm0755 -t $out/bin $src/bin/codimd 23 + mkdir -p $out/bin 24 + cp $src/bin/codimd $out/bin 25 + wrapProgram $out/bin/codimd \ 26 + --prefix PATH : ${lib.makeBinPath [ jq wget curl ]} 26 27 ln -s $out/bin/codimd $out/bin/hedgedoc-cli 27 28 runHook postInstall 28 29 '';
+3 -9
pkgs/tools/backup/borgbackup/default.nix
··· 33 33 setuptools-scm 34 34 35 35 # docs 36 - sphinx 36 + sphinxHook 37 37 guzzle_sphinx_theme 38 38 39 39 # shell completions 40 40 installShellFiles 41 41 ]; 42 + 43 + sphinxBuilders = [ "singlehtml" "man" ]; 42 44 43 45 buildInputs = [ 44 46 libb2 ··· 67 69 ]; 68 70 69 71 postInstall = '' 70 - make -C docs singlehtml 71 - mkdir -p $out/share/doc/borg 72 - cp -R docs/_build/singlehtml $out/share/doc/borg/html 73 - 74 - make -C docs man 75 - mkdir -p $out/share/man 76 - cp -R docs/_build/man $out/share/man/man1 77 - 78 72 installShellCompletion --cmd borg \ 79 73 --bash scripts/shell_completions/bash/borg \ 80 74 --fish scripts/shell_completions/fish/borg.fish \
+105
pkgs/tools/filesystems/stratisd/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , pkg-config 6 + , asciidoc 7 + , dbus 8 + , cryptsetup 9 + , util-linux 10 + , udev 11 + , systemd 12 + , xfsprogs 13 + , thin-provisioning-tools 14 + , clevis 15 + , jose 16 + , jq 17 + , curl 18 + , tpm2-tools 19 + , coreutils 20 + , clevisSupport ? false 21 + }: 22 + 23 + stdenv.mkDerivation rec { 24 + pname = "stratisd"; 25 + version = "3.2.2"; 26 + 27 + src = fetchFromGitHub { 28 + owner = "stratis-storage"; 29 + repo = pname; 30 + rev = "v${version}"; 31 + hash = "sha256-dNbbKGRLSYVnPdKfxlLIwXNEf7P6EvGbOp8sfpaw38g="; 32 + }; 33 + 34 + cargoDeps = rustPlatform.fetchCargoTarball { 35 + inherit src; 36 + hash = "sha256-tJT0GKLpZtiQ/AZACkNeC3zgso54k/L03dFI0m1Jbls="; 37 + }; 38 + 39 + patches = [ 40 + # Allow overriding BINARIES_PATHS with environment variable at compile time 41 + ./paths.patch 42 + ]; 43 + 44 + postPatch = '' 45 + substituteInPlace udev/61-stratisd.rules \ 46 + --replace stratis-base32-decode "$out/lib/udev/stratis-base32-decode" \ 47 + --replace stratis-str-cmp "$out/lib/udev/stratis-str-cmp" 48 + 49 + substituteInPlace systemd/stratis-fstab-setup \ 50 + --replace stratis-min "$out/bin/stratis-min" \ 51 + --replace systemd-ask-password "${systemd}/bin/systemd-ask-password" \ 52 + --replace sleep "${coreutils}/bin/sleep" \ 53 + --replace udevadm "${udev}/bin/udevadm" 54 + ''; 55 + 56 + nativeBuildInputs = with rustPlatform; [ 57 + cargoSetupHook 58 + bindgenHook 59 + rust.cargo 60 + rust.rustc 61 + pkg-config 62 + asciidoc 63 + ]; 64 + 65 + buildInputs = [ 66 + dbus 67 + cryptsetup 68 + util-linux 69 + udev 70 + ]; 71 + 72 + BINARIES_PATHS = lib.makeBinPath ([ 73 + xfsprogs 74 + thin-provisioning-tools 75 + udev 76 + ] ++ lib.optionals clevisSupport [ 77 + clevis 78 + jose 79 + jq 80 + cryptsetup 81 + curl 82 + tpm2-tools 83 + coreutils 84 + ]); 85 + 86 + makeFlags = [ "PREFIX=${placeholder "out"}" ]; 87 + buildFlags = [ "release" "release-min" "docs/stratisd.8" ]; 88 + 89 + doCheck = true; 90 + checkTarget = "test"; 91 + 92 + # remove files for supporting dracut 93 + postInstall = '' 94 + rm -r "$out/lib/dracut" 95 + rm -r "$out/lib/systemd/system-generators" 96 + ''; 97 + 98 + meta = with lib; { 99 + description = "Easy to use local storage management for Linux"; 100 + homepage = "https://stratis-storage.github.io"; 101 + license = licenses.mpl20; 102 + maintainers = with maintainers; [ nickcao ]; 103 + platforms = [ "x86_64-linux" ]; 104 + }; 105 + }
+42
pkgs/tools/filesystems/stratisd/paths.patch
··· 1 + diff --git a/src/engine/strat_engine/cmd.rs b/src/engine/strat_engine/cmd.rs 2 + index daaff70f..ed528f7f 100644 3 + --- a/src/engine/strat_engine/cmd.rs 4 + +++ b/src/engine/strat_engine/cmd.rs 5 + @@ -39,8 +39,6 @@ use crate::{ 6 + // The maximum allowable size of the thinpool metadata device 7 + const MAX_META_SIZE: MetaBlocks = MetaBlocks(255 * ((1 << 14) - 64)); 8 + 9 + -const BINARIES_PATHS: [&str; 4] = ["/usr/sbin", "/sbin", "/usr/bin", "/bin"]; 10 + - 11 + /// Find the binary with the given name by looking in likely locations. 12 + /// Return None if no binary was found. 13 + /// Search an explicit list of directories rather than the user's PATH 14 + @@ -49,7 +47,7 @@ const BINARIES_PATHS: [&str; 4] = ["/usr/sbin", "/sbin", "/usr/bin", "/bin"]; 15 + fn find_binary(name: &str) -> Option<PathBuf> { 16 + BINARIES_PATHS 17 + .iter() 18 + - .map(|pre| [pre, name].iter().collect::<PathBuf>()) 19 + + .map(|pre| [pre, &name.into()].iter().collect::<PathBuf>()) 20 + .find(|path| path.exists()) 21 + } 22 + 23 + @@ -147,6 +145,10 @@ lazy_static! { 24 + .and_then(|mut hm| hm 25 + .remove(CLEVIS) 26 + .and_then(|c| hm.remove(JOSE).map(|j| (c, j)))); 27 + + static ref BINARIES_PATHS: Vec<PathBuf> = match std::option_env!("BINARIES_PATHS") { 28 + + Some(paths) => std::env::split_paths(paths).collect(), 29 + + None => ["/usr/sbin", "/sbin", "/usr/bin", "/bin"].iter().map(|p| p.into()).collect(), 30 + + }; 31 + } 32 + 33 + /// Verify that all binaries that the engine might invoke are available at some 34 + @@ -160,7 +162,7 @@ pub fn verify_binaries() -> StratisResult<()> { 35 + name, 36 + BINARIES_PATHS 37 + .iter() 38 + - .map(|p| format!("\"{}\"", p)) 39 + + .map(|p| format!("\"{}\"", p.display())) 40 + .collect::<Vec<_>>() 41 + .join(", "), 42 + ))),
+3 -3
pkgs/tools/misc/dust/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "du-dust"; 5 - version = "0.8.1"; 5 + version = "0.8.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bootandy"; 9 9 repo = "dust"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-7hhg54x8EZ3x40a8kaOUzhyHDF0CJ5dZibGVvcFF9zk="; 11 + sha256 = "sha256-ZPIxJ8D8yxaL7RKIVKIIlqwUXBbVM0JprE5TSTGkhfI="; 12 12 # Remove unicode file names which leads to different checksums on HFS+ 13 13 # vs. other filesystems because of unicode normalisation. 14 14 postFetch = '' ··· 16 16 ''; 17 17 }; 18 18 19 - cargoSha256 = "sha256-fbNP89xg0Di/p/y78C9kar3UKOqkAJ94rJqZOWK3Rp0="; 19 + cargoSha256 = "sha256-dgAyxSVNe+UKuT0UJqPvYcrLolKtC2+EN/okSvzkhcA="; 20 20 21 21 doCheck = false; 22 22
+14 -8
pkgs/top-level/all-packages.nix
··· 3483 3483 3484 3484 cucumber = callPackage ../development/tools/cucumber {}; 3485 3485 3486 + cutemarked-ng = libsForQt5.callPackage ../applications/office/cutemarked-ng { }; 3487 + 3486 3488 dabet = callPackage ../tools/misc/dabet { }; 3487 3489 3488 3490 dabtools = callPackage ../applications/radio/dabtools { }; ··· 5849 5851 5850 5852 soupault = callPackage ../tools/typesetting/soupault { }; 5851 5853 5854 + stratisd = callPackage ../tools/filesystems/stratisd { }; 5855 + 5852 5856 strawberry = libsForQt5.callPackage ../applications/audio/strawberry { }; 5853 5857 5854 5858 schildichat-desktop = callPackage ../applications/networking/instant-messengers/schildichat/schildichat-desktop.nix { ··· 7270 7274 haproxy = callPackage ../tools/networking/haproxy { }; 7271 7275 7272 7276 hackertyper = callPackage ../tools/misc/hackertyper { }; 7277 + 7278 + hackneyed = callPackage ../data/icons/hackneyed { }; 7273 7279 7274 7280 haveged = callPackage ../tools/security/haveged { }; 7275 7281 ··· 9880 9886 inherit (callPackage ../servers/plik { }) 9881 9887 plik plikd; 9882 9888 9883 - plex = callPackage ../servers/plex { 9884 - buildFHSUserEnv = buildFHSUserEnvBubblewrap; 9885 - }; 9889 + plex = callPackage ../servers/plex { }; 9890 + 9886 9891 plexRaw = callPackage ../servers/plex/raw.nix { }; 9887 9892 9888 9893 psitransfer = callPackage ../servers/psitransfer { }; ··· 10201 10206 10202 10207 qmk = callPackage ../tools/misc/qmk { }; 10203 10208 10209 + qmarkdowntextedit = libsForQt5.callPackage ../development/libraries/qmarkdowntextedit { }; 10210 + 10204 10211 qodem = callPackage ../tools/networking/qodem { }; 10205 10212 10206 10213 qosmic = libsForQt5.callPackage ../applications/graphics/qosmic { }; ··· 18396 18403 # these things are only used for tests, they don't get into the closure 18397 18404 shared-mime-info = shared-mime-info.override { glib = glib-untested; }; 18398 18405 desktop-file-utils = desktop-file-utils.override { glib = glib-untested; }; 18399 - dbus = dbus.override { systemd = null; }; 18406 + dbus = dbus.override { enableSystemd = false; }; 18400 18407 }); 18401 18408 18402 18409 glibmm = callPackage ../development/libraries/glibmm { }; ··· 21765 21772 21766 21773 utmps = skawarePackages.utmps; 21767 21774 21768 - ucommon = callPackage ../development/libraries/ucommon { 21769 - openssl = null; 21770 - zlib = null; 21771 - }; 21775 + ucommon = callPackage ../development/libraries/ucommon { }; 21772 21776 21773 21777 v8 = callPackage ../development/libraries/v8 { }; 21774 21778 ··· 26753 26757 }) (haskell.lib.compose.justStaticExecutables haskellPackages.darcs); 26754 26758 26755 26759 darcs-to-git = callPackage ../applications/version-management/git-and-tools/darcs-to-git { }; 26760 + 26761 + darkman = callPackage ../applications/misc/darkman { }; 26756 26762 26757 26763 darktable = callPackage ../applications/graphics/darktable { 26758 26764 lua = lua5_4;
+6
pkgs/top-level/python-packages.nix
··· 1306 1306 1307 1307 betamax-serializers = callPackage ../development/python-modules/betamax-serializers { }; 1308 1308 1309 + betterproto = callPackage ../development/python-modules/betterproto { }; 1310 + 1309 1311 bibtexparser = callPackage ../development/python-modules/bibtexparser { }; 1310 1312 1311 1313 bidict = callPackage ../development/python-modules/bidict { }; ··· 1586 1588 pythonSupport = true; 1587 1589 inherit (self) python numpy boost; 1588 1590 }); 1591 + 1592 + cairo-lang = callPackage ../development/python-modules/cairo-lang { }; 1589 1593 1590 1594 cairocffi = callPackage ../development/python-modules/cairocffi { }; 1591 1595 ··· 11524 11528 wcwidth = callPackage ../development/python-modules/wcwidth { }; 11525 11529 11526 11530 weasyprint = callPackage ../development/python-modules/weasyprint { }; 11531 + 11532 + web3 = callPackage ../development/python-modules/web3 { }; 11527 11533 11528 11534 webargs = callPackage ../development/python-modules/webargs { }; 11529 11535