Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 7f28a596 5094b7bc

+711 -637
+3 -3
.github/CODEOWNERS
··· 218 218 /nixos/modules/services/mail/rspamd.nix @peti 219 219 220 220 # Emacs 221 - /pkgs/applications/editors/emacs-modes @adisbladis 222 - /pkgs/applications/editors/emacs @adisbladis 223 - /pkgs/top-level/emacs-packages.nix @adisbladis 221 + /pkgs/applications/editors/emacs/elisp-packages @adisbladis 222 + /pkgs/applications/editors/emacs @adisbladis 223 + /pkgs/top-level/emacs-packages.nix @adisbladis 224 224 225 225 # Neovim 226 226 /pkgs/applications/editors/neovim @jonringer @teto
+1 -1
.github/labeler.yml
··· 16 16 - nixos/modules/services/editors/emacs.nix 17 17 - nixos/modules/services/editors/emacs.xml 18 18 - nixos/tests/emacs-daemon.nix 19 - - pkgs/applications/editors/emacs-modes/**/* 19 + - pkgs/applications/editors/emacs/elisp-packages/**/* 20 20 - pkgs/applications/editors/emacs/**/* 21 21 - pkgs/build-support/emacs/**/* 22 22 - pkgs/top-level/emacs-packages.nix
+2 -1
doc/contributing/reviewing-contributions.chapter.md
··· 103 103 - [ ] `meta.maintainers` is set 104 104 - [ ] build time only dependencies are declared in `nativeBuildInputs` 105 105 - [ ] source is fetched using the appropriate function 106 - - [ ] phases are respected 106 + - [ ] the list of `phases` is not overridden 107 + - [ ] when a phase (like `installPhase`) is overridden it starts with `runHook preInstall` and ends with `runHook postInstall`. 107 108 - [ ] patches that are remotely available are fetched with `fetchpatch` 108 109 109 110 ##### Possible improvements
+4 -1
doc/stdenv/stdenv.chapter.md
··· 325 325 326 326 Each phase can be overridden in its entirety either by setting the environment variable `namePhase` to a string containing some shell commands to be executed, or by redefining the shell function `namePhase`. The former is convenient to override a phase from the derivation, while the latter is convenient from a build script. However, typically one only wants to *add* some commands to a phase, e.g. by defining `postInstall` or `preFixup`, as skipping some of the default actions may have unexpected consequences. The default script for each phase is defined in the file `pkgs/stdenv/generic/setup.sh`. 327 327 328 + When overriding a phase, for example `installPhase`, it is important to start with `runHook preInstall` and end it with `runHook postInstall`, otherwise `preInstall` and `postInstall` will not be run. Even if you don't use them directly, it is good practice to do so anyways for downstream users who would want to add a `postInstall` by overriding your derivation. 329 + 328 330 While inside an interactive `nix-shell`, if you wanted to run all phases in the order they would be run in an actual build, you can invoke `genericBuild` yourself. 329 331 330 332 ### Controlling phases {#ssec-controlling-phases} ··· 337 339 338 340 Specifies the phases. You can change the order in which phases are executed, or add new phases, by setting this variable. If it’s not set, the default value is used, which is `$prePhases unpackPhase patchPhase $preConfigurePhases configurePhase $preBuildPhases buildPhase checkPhase $preInstallPhases installPhase fixupPhase installCheckPhase $preDistPhases distPhase $postPhases`. 339 341 340 - Usually, if you just want to add a few phases, it’s more convenient to set one of the variables below (such as `preInstallPhases`), as you then don’t specify all the normal phases. 342 + It is discouraged to set this variable, as it is easy to miss some important functionality hidden in some of the less obviously needed phases (like `fixupPhase` which patches the shebang of scripts). 343 + Usually, if you just want to add a few phases, it’s more convenient to set one of the variables below (such as `preInstallPhases`). 341 344 342 345 ##### `prePhases` {#var-stdenv-prePhases} 343 346
+2 -2
nixos/modules/services/matrix/mjolnir.xml
··· 98 98 </para> 99 99 <para> 100 100 To use the Antispam Module, add <package>matrix-synapse-plugins.matrix-synapse-mjolnir-antispam</package> 101 - to the Synapse plugin list and enable the <literal>mjolnir.AntiSpam</literal> module. 101 + to the Synapse plugin list and enable the <literal>mjolnir.Module</literal> module. 102 102 </para> 103 103 <programlisting> 104 104 { ··· 108 108 ]; 109 109 extraConfig = '' 110 110 modules: 111 - - module: mjolnir.AntiSpam 111 + - module: mjolnir.Module 112 112 config: 113 113 # Prevent servers/users in the ban lists from inviting users on this 114 114 # server to rooms. Default true.
+7 -9
nixos/modules/services/networking/hylafax/options.nix
··· 3 3 let 4 4 5 5 inherit (lib.options) literalExpression mkEnableOption mkOption; 6 - inherit (lib.types) bool enum ints lines attrsOf nullOr path str submodule; 6 + inherit (lib.types) bool enum ints lines attrsOf nonEmptyStr nullOr path str submodule; 7 7 inherit (lib.modules) mkDefault mkIf mkMerge; 8 8 9 9 commonDescr = '' ··· 16 16 The default contains some reasonable 17 17 configuration to yield an operational system. 18 18 ''; 19 - 20 - str1 = lib.types.addCheck str (s: s!=""); # non-empty string 21 19 22 20 configAttrType = 23 21 # Options in HylaFAX configuration files can be ··· 37 35 modemConfigOptions = { name, config, ... }: { 38 36 options = { 39 37 name = mkOption { 40 - type = str1; 38 + type = nonEmptyStr; 41 39 example = "ttyS1"; 42 40 description = '' 43 41 Name of modem device, ··· 45 43 ''; 46 44 }; 47 45 type = mkOption { 48 - type = str1; 46 + type = nonEmptyStr; 49 47 example = "cirrus"; 50 48 description = '' 51 49 Name of modem configuration file, ··· 135 133 }; 136 134 137 135 countryCode = mkOption { 138 - type = nullOr str1; 136 + type = nullOr nonEmptyStr; 139 137 default = null; 140 138 example = "49"; 141 139 description = "Country code for server and all modems."; 142 140 }; 143 141 144 142 areaCode = mkOption { 145 - type = nullOr str1; 143 + type = nullOr nonEmptyStr; 146 144 default = null; 147 145 example = "30"; 148 146 description = "Area code for server and all modems."; ··· 279 277 each time the spooling area is initialized. 280 278 ''; 281 279 faxcron.enable.frequency = mkOption { 282 - type = nullOr str1; 280 + type = nullOr nonEmptyStr; 283 281 default = null; 284 282 example = "daily"; 285 283 description = '' ··· 319 317 each time the spooling area is initialized. 320 318 ''; 321 319 faxqclean.enable.frequency = mkOption { 322 - type = nullOr str1; 320 + type = nullOr nonEmptyStr; 323 321 default = null; 324 322 example = "daily"; 325 323 description = ''
+2 -2
pkgs/applications/misc/feedbackd/default.nix
··· 21 21 pname = "feedbackd"; 22 22 # Not an actual upstream project release, 23 23 # only a Debian package release that is tagged in the upstream repo 24 - version = "0.0.0+git20210426"; 24 + version = "0.0.0+git20211018"; 25 25 26 26 outputs = [ "out" "dev" "devdoc" ]; 27 27 ··· 30 30 owner = "Librem5"; 31 31 repo = "feedbackd"; 32 32 rev = "v${version}"; 33 - sha256 = "12kdchv11c5ynpv6fbagcx755x5p2kd7acpwjxi9khwdwjsqxlmn"; 33 + hash = "sha256-jqKRHcxISK54xq/tQm6zV+J+U71eKh04OVTNHDDy65E="; 34 34 }; 35 35 36 36 nativeBuildInputs = [
+3 -3
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 32 32 } 33 33 }, 34 34 "dev": { 35 - "version": "100.0.4878.0", 36 - "sha256": "0ac8fdbh3f66wq3y1l4s1i906zriajff84hpx9df9cwavj6r9svr", 37 - "sha256bin64": "1q37q02v6aaqkxwyavljga0h60cclklxj8adr1jc1fqs0irks8a8", 35 + "version": "100.0.4892.0", 36 + "sha256": "03f003prk0vqxac7l0sp3nfhh3adlrdx60dklm74v504ykdw84yn", 37 + "sha256bin64": "00033b2iq3aw5pvgm5nbh99sz8mj98rj32h1m6iw2xxwqaij06qw", 38 38 "deps": { 39 39 "gn": { 40 40 "version": "2022-01-21",
+3 -3
pkgs/applications/networking/cloudflared/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cloudflared"; 5 - version = "2022.2.0"; 5 + version = "2022.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudflare"; 9 9 repo = "cloudflared"; 10 10 rev = version; 11 - hash = "sha256-yo4Tu9wSxGdUAr2436lAlaP2U+5m/J4+oNQd/UQk3a0="; 11 + hash = "sha256-y9TduC6Fa1p3UFvSeW9n42AUD63dp/LEagiv3xlT/4U="; 12 12 }; 13 13 14 14 vendorSha256 = null; ··· 20 20 meta = with lib; { 21 21 description = "CloudFlare Tunnel daemon (and DNS-over-HTTPS client)"; 22 22 homepage = "https://www.cloudflare.com/products/tunnel"; 23 - license = licenses.unfree; 23 + license = licenses.asl20; 24 24 platforms = platforms.unix; 25 25 maintainers = with maintainers; [ bbigras enorris thoughtpolice ]; 26 26 };
-9
pkgs/applications/networking/cluster/arkade/default.nix
··· 2 2 , stdenv 3 3 , buildGoModule 4 4 , fetchFromGitHub 5 - , makeWrapper 6 - , kubectl 7 5 }: 8 6 9 7 buildGoModule rec { ··· 39 37 "-X github.com/alexellis/arkade/cmd.GitCommit=ref/tags/${version}" 40 38 "-X github.com/alexellis/arkade/cmd.Version=${version}" 41 39 ]; 42 - 43 - buildInputs = [ makeWrapper ]; 44 - 45 - postInstall = '' 46 - wrapProgram "$out/bin/arkade" \ 47 - --prefix PATH : ${lib.makeBinPath [ kubectl ]} 48 - ''; 49 40 50 41 meta = with lib; { 51 42 homepage = "https://github.com/alexellis/arkade";
-9
pkgs/applications/networking/cluster/krane/default.nix
··· 1 1 { lib 2 2 , bundlerApp 3 - , makeWrapper 4 - , kubectl 5 3 , bundlerUpdateScript 6 4 }: 7 5 ··· 9 7 pname = "krane"; 10 8 gemdir = ./.; 11 9 exes = [ "krane" ]; 12 - 13 - buildInputs = [ makeWrapper ]; 14 - 15 - postBuild = '' 16 - wrapProgram "$out/bin/krane" \ 17 - --prefix PATH : ${lib.makeBinPath [ kubectl ]} 18 - ''; 19 10 20 11 passthru.updateScript = bundlerUpdateScript "krane"; 21 12
+2 -2
pkgs/applications/networking/cluster/kubergrunt/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubergrunt"; 5 - version = "0.7.11"; 5 + version = "0.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gruntwork-io"; 9 9 repo = "kubergrunt"; 10 10 rev = "v${version}"; 11 - sha256 = "1224ssqdz9ak0vylyfbr9c2w0yfdp4hw9jh99qmfi2j5nhw9kzcc"; 11 + sha256 = "sha256-K94cGU+cFHOrAGXjHQFFFJYhZi9zNfdlGy5eb2DkcV8="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-95rteSEMOBQnAw0QKuj5Yyi8n3xXGl0Tm97WiyTGxVw=";
+2 -2
pkgs/applications/networking/cluster/kubernetes/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "kubernetes"; 24 - version = "1.23.3"; 24 + version = "1.23.4"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "kubernetes"; 28 28 repo = "kubernetes"; 29 29 rev = "v${version}"; 30 - sha256 = "sha256-Ccf+9mwDv1Fs0+xN8yDkUjh4A3aGox7rBGesyYtkUDs="; 30 + sha256 = "sha256-srJHW/wvrFKKgxVwJB4h0FGeaT7iSJYOTtSeTkcR3FE="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ removeReferencesTo makeWrapper which go rsync installShellFiles ];
+6 -5
pkgs/applications/networking/cluster/temporal/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "temporal"; 5 - version = "1.12.0"; 5 + version = "1.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "temporalio"; 9 9 repo = "temporal"; 10 10 rev = "v${version}"; 11 - sha256 = "1gdks7pzaqrsdihh2m3v597x0dw2qww95jlznj0h112jgicanimj"; 11 + sha256 = "sha256-5Tu838086qgIa2fqda2xi7vn4JbkENVJH4XU3NwW7Ic="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-dGmd6tCUKoK4uwhB5kXGOpXemtLn0VssabDE4iQWEAw="; 14 + vendorSha256 = "sha256-caRBgkuHQ38r6OsKQCJ2pxAe8s6mc4g/QCIsCEXvY3M="; 15 15 16 16 # Errors: 17 17 # > === RUN TestNamespaceHandlerGlobalNamespaceDisabledSuite ··· 22 22 runHook preInstall 23 23 mkdir -p $out/bin 24 24 install -Dm755 "$GOPATH/bin/cli" -T $out/bin/tctl 25 + install -Dm755 "$GOPATH/bin/authorization" -T $out/bin/tctl-authorization-plugin 25 26 install -Dm755 "$GOPATH/bin/cassandra" -T $out/bin/temporal-cassandra 26 27 install -Dm755 "$GOPATH/bin/server" -T $out/bin/temporal-server 27 28 install -Dm755 "$GOPATH/bin/sql" -T $out/bin/temporal-sql ··· 35 36 36 37 meta = with lib; { 37 38 description = "A microservice orchestration platform which enables developers to build scalable applications without sacrificing productivity or reliability"; 38 - downloadPage = "https://github.com/temporalio/temporal"; 39 39 homepage = "https://temporal.io"; 40 + changelog = "https://github.com/temporalio/temporal/releases/tag/v${version}"; 40 41 license = licenses.mit; 41 - maintainers = with maintainers; [ ]; 42 + maintainers = with maintainers; [ titanous ]; 42 43 }; 43 44 }
+30
pkgs/applications/networking/instant-messengers/gurk-rs/default.nix
··· 1 + { stdenv 2 + , lib 3 + , protobuf 4 + , rustPlatform 5 + , fetchFromGitHub 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "gurk-rs"; 10 + version = "0.2.3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "boxdot"; 14 + repo = pname; 15 + rev = "v${version}"; 16 + sha256 = "sha256-Mko5udM8BY50uUwn7xESxB+s0MEO1kAJX4Dt/DnEEa4="; 17 + }; 18 + 19 + cargoHash = "sha256-pYMMgBvLsqkj2peouDQK1vn97ByUjtdCrkbzuZZLXrY="; 20 + buildInputs = [ protobuf ]; 21 + 22 + PROTOC = "${protobuf}/bin/protoc"; 23 + 24 + meta = with lib; { 25 + description = "Signal Messenger client for terminal"; 26 + homepage = "https://github.com/boxdot/gurk-rs"; 27 + license = licenses.agpl3Only; 28 + maintainers = with maintainers; [ devhell ]; 29 + }; 30 + }
+2 -2
pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "signalbackup-tools"; 5 - version = "20220216"; 5 + version = "20220218"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bepaald"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-hB5zjSBOcpVW+kGja4DP0syAvYqkeDBJbtg0y2sX9w4="; 11 + sha256 = "sha256-6fwkhqXM6T0WCC1Y+GCmyLwStqhBTUAzDDsBTd5XlSE="; 12 12 }; 13 13 14 14 # Remove when Apple SDK is >= 10.13
+2 -2
pkgs/desktops/gnome/core/gnome-shell-extensions/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "gnome-shell-extensions"; 16 - version = "41.1"; 16 + version = "41.2"; 17 17 18 18 src = fetchurl { 19 19 url = "mirror://gnome/sources/gnome-shell-extensions/${lib.versions.major version}/${pname}-${version}.tar.xz"; 20 - sha256 = "0ObyJz8I1S2SX8K7ZrR7KOXvUNG4oUAgh3xmJCPVB9M="; 20 + sha256 = "rZuoL0y9BHJpc7XoevrRiv2qMjhgoK8+ckDzp00iLxk="; 21 21 }; 22 22 23 23 patches = [
+2 -2
pkgs/development/compilers/go/1.18.nix
··· 54 54 55 55 stdenv.mkDerivation rec { 56 56 pname = "go"; 57 - version = "1.18beta2"; 57 + version = "1.18rc1"; 58 58 59 59 src = fetchurl { 60 60 url = "https://go.dev/dl/go${version}.src.tar.gz"; 61 - sha256 = "sha256-PLFOLILaNm9zk8mI8fP8LBa3GlSSvT1J01iGzfJ6nRM="; 61 + sha256 = "sha256-XOx6ZlMAj6hfiCGzNmXeN74om3oC8X829wWojEOYC7g="; 62 62 }; 63 63 64 64 # perl is used for testing go vet
+2 -2
pkgs/development/interpreters/clojure/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "clojure"; 5 - version = "1.10.3.1075"; 5 + version = "1.10.3.1082"; 6 6 7 7 src = fetchurl { 8 8 # https://clojure.org/releases/tools 9 9 url = "https://download.clojure.org/install/clojure-tools-${version}.tar.gz"; 10 - sha256 = "5uJtr6uz6mrkoFfzUmUb6vy5H4s1Lag3CNCsGwsQZ9Q="; 10 + sha256 = "sha256-8hW8zgP+D72MtXYFPXx9FfkThQuCBo1Y6CU5w7xPE7c="; 11 11 }; 12 12 13 13 nativeBuildInputs = [
+9 -3
pkgs/development/python-modules/aio-geojson-geonetnz-volcano/default.nix
··· 8 8 , pytest-asyncio 9 9 , pytestCheckHook 10 10 , pytz 11 + , pythonOlder 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "aio-geojson-geonetnz-volcano"; 15 - version = "0.6"; 16 + version = "0.7"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.7"; 16 20 17 21 src = fetchFromGitHub { 18 22 owner = "exxamalte"; 19 23 repo = "python-aio-geojson-geonetnz-volcano"; 20 24 rev = "v${version}"; 21 - sha256 = "0n97kij2fprzajh57sy1z57kaqiil7pd5y67lq2hqm2cnvkar5ci"; 25 + sha256 = "sha256-2iVUHMk4ydmGmmGS6lJV5pvxJHyP9bRSeh/dOXbquE0="; 22 26 }; 23 27 24 28 propagatedBuildInputs = [ ··· 34 38 pytestCheckHook 35 39 ]; 36 40 37 - pythonImportsCheck = [ "aio_geojson_geonetnz_volcano" ]; 41 + pythonImportsCheck = [ 42 + "aio_geojson_geonetnz_volcano" 43 + ]; 38 44 39 45 meta = with lib; { 40 46 description = "Python module for accessing the GeoNet NZ Volcanic GeoJSON feeds";
+9 -3
pkgs/development/python-modules/aio-geojson-nsw-rfs-incidents/default.nix
··· 8 8 , pytest-asyncio 9 9 , pytestCheckHook 10 10 , pytz 11 + , pythonOlder 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "aio-geojson-nsw-rfs-incidents"; 15 - version = "0.4"; 16 + version = "0.5"; 17 + format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.7"; 16 20 17 21 src = fetchFromGitHub { 18 22 owner = "exxamalte"; 19 23 repo = "python-aio-geojson-nsw-rfs-incidents"; 20 24 rev = "v${version}"; 21 - sha256 = "sha256-o9tuoJ7VZ6bg0rYeRWClKxdbxxj6wPgkSF7ZdOfmJew="; 25 + sha256 = "sha256-rWlt4MYnuY+CzszFVDniWBnqpQW3WldSEl00ns3ko3U="; 22 26 }; 23 27 24 28 propagatedBuildInputs = [ ··· 34 38 pytestCheckHook 35 39 ]; 36 40 37 - pythonImportsCheck = [ "aio_geojson_nsw_rfs_incidents" ]; 41 + pythonImportsCheck = [ 42 + "aio_geojson_nsw_rfs_incidents" 43 + ]; 38 44 39 45 meta = with lib; { 40 46 description = "Python module for accessing the NSW Rural Fire Service incidents feeds";
+7 -3
pkgs/development/python-modules/aio-georss-client/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "aio-georss-client"; 18 - version = "0.8"; 18 + version = "0.9"; 19 + format = "setuptools"; 20 + 19 21 disabled = pythonOlder "3.7"; 20 22 21 23 src = fetchFromGitHub { 22 24 owner = "exxamalte"; 23 25 repo = "python-aio-georss-client"; 24 26 rev = "v${version}"; 25 - sha256 = "0447scp5n906p8kfzy0lwdq06f6hkq71r2zala6g3vr6b3kla6h8"; 27 + sha256 = "sha256-cnOW9Ey6WdL2bAqPop5noETn12OeeKsMkWHKGmYCjJU="; 26 28 }; 27 29 28 30 propagatedBuildInputs = [ ··· 40 42 pytestCheckHook 41 43 ]; 42 44 43 - pythonImportsCheck = [ "aio_georss_client" ]; 45 + pythonImportsCheck = [ 46 + "aio_georss_client" 47 + ]; 44 48 45 49 meta = with lib; { 46 50 description = "Python library for accessing GeoRSS feeds";
+5 -1
pkgs/development/python-modules/aio-georss-gdacs/default.nix
··· 12 12 buildPythonPackage rec { 13 13 pname = "aio-georss-gdacs"; 14 14 version = "0.5"; 15 + format = "setuptools"; 16 + 15 17 disabled = pythonOlder "3.7"; 16 18 17 19 src = fetchFromGitHub { ··· 32 34 pytestCheckHook 33 35 ]; 34 36 35 - pythonImportsCheck = [ "aio_georss_gdacs" ]; 37 + pythonImportsCheck = [ 38 + "aio_georss_gdacs" 39 + ]; 36 40 37 41 meta = with lib; { 38 42 description = "Python library for accessing GeoRSS feeds";
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "meshtastic"; 21 - version = "1.2.84"; 21 + version = "1.2.85"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.6"; ··· 27 27 owner = "meshtastic"; 28 28 repo = "Meshtastic-python"; 29 29 rev = version; 30 - sha256 = "sha256-0ItNYdbGnIzgIh23Qtg9zQ5lm7zhY3qz+5s4MCfXN0E="; 30 + sha256 = "sha256-DFRnyWBQ3/g5NwZH5hoVYJfj3gN/UP57JvNSnNaqws4="; 31 31 }; 32 32 33 33 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/oslo-config/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "oslo-config"; 17 - version = "8.7.1"; 17 + version = "8.8.0"; 18 18 19 19 src = fetchPypi { 20 20 pname = "oslo.config"; 21 21 inherit version; 22 - sha256 = "a0c346d778cdc8870ab945e438bea251b5f45fae05d6d99dfe4953cca2277b60"; 22 + sha256 = "sha256-lpM9MBHa4VYIoRYWv7ANlH4i2jywm2/zfd11dqvUdkw="; 23 23 }; 24 24 25 25 postPatch = ''
+2 -2
pkgs/development/python-modules/oslo-serialization/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "oslo-serialization"; 14 - version = "4.2.0"; 14 + version = "4.3.0"; 15 15 16 16 src = fetchPypi { 17 17 pname = "oslo.serialization"; 18 18 inherit version; 19 - sha256 = "3007e1b017ad3754cce54def894054cbcd05887e85928556657434b0fc7e4d83"; 19 + sha256 = "sha256-OqRy9DSu6LvMByUxK39AmqH6VLvBNJBBJM9JsOhrkRU="; 20 20 }; 21 21 22 22 postPatch = ''
+2 -2
pkgs/development/python-modules/oslo-utils/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "oslo-utils"; 26 - version = "4.12.1"; 26 + version = "4.12.2"; 27 27 28 28 src = fetchPypi { 29 29 pname = "oslo.utils"; 30 30 inherit version; 31 - sha256 = "sha256-zzEhx2/jwpY+1WOo68PJ/TvDy6XUT76K7LVAfUMMMJI="; 31 + sha256 = "sha256-Qf0sT/bS6No4qttaW/JCWKhlDg4KaYprI51IuOQXfDs="; 32 32 }; 33 33 34 34 postPatch = ''
+2 -2
pkgs/development/python-modules/pycfmodel/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pycfmodel"; 12 - version = "0.16.0"; 12 + version = "0.16.2"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "Skyscanner"; 19 19 repo = pname; 20 20 rev = version; 21 - hash = "sha256-44G1H6bOtqVkplaX/sHxEzErlunclLh97OPO0m6n9eM="; 21 + hash = "sha256-hOe6BH8aSGJ7YeraiCsJ10mbeGbFGaR3Bt5fh6M8iWI="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+7 -2
pkgs/development/python-modules/pydantic/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , cython 4 + , devtools 3 5 , email_validator 4 6 , fetchFromGitHub 5 7 , pytest-mock ··· 7 9 , python-dotenv 8 10 , pythonOlder 9 11 , typing-extensions 10 - , ujson 11 12 }: 12 13 13 14 buildPythonPackage rec { ··· 22 23 sha256 = "sha256-C4WP8tiMRFmkDkQRrvP3yOSM2zN8pHJmX9cdANIckpM="; 23 24 }; 24 25 26 + nativeBuildInputs = [ 27 + cython 28 + ]; 29 + 25 30 propagatedBuildInputs = [ 31 + devtools 26 32 email_validator 27 33 python-dotenv 28 34 typing-extensions 29 - ujson 30 35 ]; 31 36 32 37 checkInputs = [
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 32 32 33 33 buildPythonApplication rec { 34 34 pname = "checkov"; 35 - version = "2.0.866"; 35 + version = "2.0.873"; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "bridgecrewio"; 39 39 repo = pname; 40 40 rev = version; 41 - hash = "sha256-ASaRZO5/4IGT6GPQTMmwGao4Q+yuyiLO9eGV3Dy8mLQ="; 41 + hash = "sha256-81gNvfaFqTEGReOP7LgcN5OLU3xeO62r/45b5lEEgow="; 42 42 }; 43 43 44 44 nativeBuildInputs = with py.pkgs; [
+2 -2
pkgs/os-specific/linux/kernel/linux-4.14.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.14.265"; 6 + version = "4.14.267"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "1iwjg2z8818g1sl6l79pm5590hzwpxqcxh7wcdb00y4m3maksr0s"; 16 + sha256 = "13hq4hcq686gdragjcgmz3m0kkk8abz5lna0ildaa9gybj43yd4c"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.19.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "4.19.228"; 6 + version = "4.19.230"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 16 - sha256 = "14iis3x3jmfxwqqi7v7ijssqzha8d8nnydi4zqnpk53m45jw7km8"; 16 + sha256 = "107sqv4izdnazscwhyam88vbinsvnd33z8agn4awc42hkqh9l20p"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-4.9.nix
··· 1 1 { buildPackages, fetchurl, perl, buildLinux, nixosTests, stdenv, ... } @ args: 2 2 3 3 buildLinux (args // rec { 4 - version = "4.9.300"; 4 + version = "4.9.302"; 5 5 extraMeta.branch = "4.9"; 6 6 extraMeta.broken = stdenv.isAarch64; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; 10 - sha256 = "1bzmnkhxgz093ninqg8bh348d7s4xmkld2bld8nl215gnji0wfdb"; 10 + sha256 = "0difn0vjz4hz9vl5lklawqy19ccb5gz5p5r1cyckschf0l2nyifm"; 11 11 }; 12 12 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.10.99"; 6 + version = "5.10.101"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "0j84g55d0v3832y9c5gh7bnmhnrb5bc9xdivps5n7n6km9c3b980"; 16 + sha256 = "13hwpb85dynbayghxs3ln3hbyh8djgl5fj63vxwc8izfny62aj87"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.15.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.15.22"; 6 + version = "5.15.24"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1hv3ci37nz79m1dg83ha4hl1jjnl3l52lvdzx514sp8hqihgji1m"; 16 + sha256 = "0zx9big7n8gh6y14c05llxsqh543q0czjdrq906m8cc7r01yp5pl"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.16.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.16.8"; 6 + version = "5.16.10"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "05h3b11czr710lilmb5gq84a78cfz3jm03q2q0gcrpcaxq2mzajj"; 16 + sha256 = "17i3j07hgljsiz2kymbskp35p2xp14gb0mdi5s2r61c0h406yk8c"; 17 17 }; 18 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.4.nix
··· 3 3 with lib; 4 4 5 5 buildLinux (args // rec { 6 - version = "5.4.178"; 6 + version = "5.4.180"; 7 7 8 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "19k2yzqlr4rarl086sr6vjnh0lq5wmg5n7r2p0cai9yfvq3spp2c"; 16 + sha256 = "07ckmgcqpr39bzpp8v60b2vkb03p8931k7sl3ywg6f00lvcbaf8n"; 17 17 }; 18 18 } // (args.argsOverride or {}))
+3 -3
pkgs/os-specific/linux/kernel/linux-rt-5.10.nix
··· 6 6 , ... } @ args: 7 7 8 8 let 9 - version = "5.10.90-rt60"; # updated by ./update-rt.sh 9 + version = "5.10.78-rt55"; # updated by ./update-rt.sh 10 10 branch = lib.versions.majorMinor version; 11 11 kversion = builtins.elemAt (lib.splitString "-" version) 0; 12 12 in buildLinux (args // { ··· 18 18 19 19 src = fetchurl { 20 20 url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz"; 21 - sha256 = "0997ijkmvf9iz4hn8m8naiagphhyvl4r6qx4q3gxk8qlq1j44pll"; 21 + sha256 = "03q5lrv8gr9hnm7984pxi9kwsvxrn21qwykj60amisi2wac6r05y"; 22 22 }; 23 23 24 24 kernelPatches = let rt-patch = { 25 25 name = "rt"; 26 26 patch = fetchurl { 27 27 url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; 28 - sha256 = "0533s01ckjjw45b08zs9nhpszdcrqgfpwvnjs2dfjmc6yg9d13pi"; 28 + sha256 = "1wcw682r238qi5jgn5zk9m6j2506p9ypfax13bzhjfyjzz3h98kp"; 29 29 }; 30 30 }; in [ rt-patch ] ++ kernelPatches; 31 31
+37
pkgs/os-specific/linux/virtio_vmmci/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, kernel }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "virtio_vmmci"; 5 + version = "0.4.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "voutilad"; 9 + repo = "virtio_vmmci"; 10 + rev = "${version}"; 11 + sha256 = "104xnpcy5kb4y7ipy1fx1v6byddzs63bv2dqjy3yl23n764fsy43"; 12 + }; 13 + 14 + hardeningDisable = [ "pic" "format" ]; 15 + nativeBuildInputs = kernel.moduleBuildDependencies; 16 + 17 + extraConfig = '' 18 + CONFIG_RTC_HCTOSYS yes 19 + ''; 20 + 21 + makeFlags = kernel.makeFlags ++ [ 22 + "DEPMOD=echo" 23 + "INSTALL_MOD_PATH=$(out)" 24 + "KERNELRELEASE=${kernel.modDirVersion}" 25 + "KERNELDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" 26 + ]; 27 + 28 + meta = with lib; { 29 + description = "An OpenBSD VMM Control Interface (vmmci) for Linux"; 30 + homepage = "https://github.com/voutilad/virtio_vmmci"; 31 + license = licenses.gpl2; 32 + maintainers = with maintainers; [ qbit ]; 33 + platforms = platforms.linux; 34 + }; 35 + 36 + enableParallelBuilding = true; 37 + }
+3 -2
pkgs/servers/hylafaxplus/default.nix
··· 30 30 let 31 31 32 32 pname = "hylafaxplus"; 33 - version = "7.0.4"; 34 - sha256 = "1y4b178rxa4ivxm8cnypnnyc8db7cjqyyzy60hiw215x4cyyj4i5"; 33 + version = "7.0.5"; 34 + sha256 = "1blv251r0yhnhxk9wgkjgr35al50q23hiskjkcbs8lmqqrz0cm8f"; 35 35 36 36 configSite = substituteAll { 37 37 name = "${pname}-config.site"; ··· 96 96 postInstall = ". ${postInstall}"; 97 97 postInstallCheck = ". ${./post-install-check.sh}"; 98 98 meta = { 99 + changelog = "https://hylafax.sourceforge.io/news/${version}.php"; 99 100 description = "enterprise-class system for sending and receiving facsimiles"; 100 101 downloadPage = "https://hylafax.sourceforge.io/download.php"; 101 102 homepage = "https://hylafax.sourceforge.io";
+28 -3
pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, matrix-synapse }: 1 + { lib, buildPythonPackage, fetchFromGitHub, matrix-synapse, fetchpatch }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "matrix-synapse-mjolnir-antispam"; 5 - version = "1.2.1"; 5 + version = "1.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "matrix-org"; 9 9 repo = "mjolnir"; 10 10 rev = "v${version}"; 11 - sha256 = "0fvdzn5l1a6bhr1qzgs30a3kh6nj0byqichnl149sjgr0v4lpkz1"; 11 + sha256 = "05O7NgqlsVu4mdx1+0CZgBvwvBCWYg7nSFknJiXxuoc="; 12 12 }; 13 + 14 + patches = [ 15 + # Update legacy antispam plugin with newer types. Or it'll just ignore mjolnir 1.3.1 rules. 16 + (fetchpatch { 17 + url = "https://github.com/matrix-org/mjolnir/commit/eb8c5e08b4c2b78e6a796e38e826ac3b7e9dfbaf.patch"; 18 + sha256 = "sha256-rfFU45PfxR2YmNRU74eBI9M2hqBVZcNH0Sw8W/cavD4="; 19 + stripLen = 1; 20 + }) 21 + # Port to Synapse module API (needs Synapse >= 1.37.0) 22 + (fetchpatch { 23 + url = "https://github.com/matrix-org/mjolnir/commit/9c9bd0e02907412b5fa6b95844e9f53ac07b61fd.patch"; 24 + sha256 = "sha256-HR2OvqFnlQwRV7ezfOjseatjo+3P8i9PsV7D+hLD1Yo="; 25 + stripLen = 1; 26 + excludes = [ 27 + "README.md" 28 + "mx-tester.yml" 29 + ]; 30 + }) 31 + # Move glob_to_regex into the source 32 + (fetchpatch { 33 + url = "https://github.com/matrix-org/mjolnir/commit/6cb461fed424f07bf50a1fdc0693d40ed8bbee12.patch"; 34 + sha256 = "sha256-tqcKXNs+fxwPIvN5sJjdNgcz5KUVHiXgulLHR2redYk="; 35 + stripLen = 1; 36 + }) 37 + ]; 13 38 14 39 sourceRoot = "./source/synapse_antispam"; 15 40
+3 -3
pkgs/servers/minio/default.nix
··· 15 15 in 16 16 buildGoModule rec { 17 17 pname = "minio"; 18 - version = "2022-02-12T00-51-25Z"; 18 + version = "2022-02-16T00-35-27Z"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "minio"; 22 22 repo = "minio"; 23 23 rev = "RELEASE.${version}"; 24 - sha256 = "sha256-xAzfMyUa81gZgZhfe1XNAFJ6LFXdR2cFCba8aBDg6Rc="; 24 + sha256 = "sha256-Lh51R5CAidPmqScwzmQEGlSlv2sNJbqa+z9fsTnQb+s="; 25 25 }; 26 26 27 - vendorSha256 = "sha256-tw7SUCqQrDrET+GQbSkHaHC4usCapnH+NpILLwm6l9U="; 27 + vendorSha256 = "sha256-V8hCSpdIYQKFlHuV2GI9dt2rEhhr5q3cCSd8kEyMiDM="; 28 28 29 29 doCheck = false; 30 30
+2 -2
pkgs/servers/mjolnir/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "mjolnir"; 12 - version = "1.2.1"; 12 + version = "1.3.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "matrix-org"; 16 16 repo = "mjolnir"; 17 17 rev = "v${version}"; 18 - sha256 = "4c9LyQb5SZ1IoBayiP0C0ho4hwJDv49DhsuoQIv9bTs="; 18 + sha256 = "05O7NgqlsVu4mdx1+0CZgBvwvBCWYg7nSFknJiXxuoc="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/servers/mjolnir/node-composition.nix
··· 2 2 3 3 {pkgs ? import <nixpkgs> { 4 4 inherit system; 5 - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}: 5 + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-14_x"}: 6 6 7 7 let 8 8 nodeEnv = import ./node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile; 9 + inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; 10 10 inherit pkgs nodejs; 11 11 libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 12 };
+324 -374
pkgs/servers/mjolnir/node-deps.nix
··· 13 13 sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 14 14 }; 15 15 }; 16 - "@babel/code-frame-7.16.0" = { 16 + "@babel/code-frame-7.16.7" = { 17 17 name = "_at_babel_slash_code-frame"; 18 18 packageName = "@babel/code-frame"; 19 - version = "7.16.0"; 19 + version = "7.16.7"; 20 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz"; 22 - sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="; 21 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"; 22 + sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 23 23 }; 24 24 }; 25 - "@babel/helper-validator-identifier-7.15.7" = { 25 + "@babel/helper-validator-identifier-7.16.7" = { 26 26 name = "_at_babel_slash_helper-validator-identifier"; 27 27 packageName = "@babel/helper-validator-identifier"; 28 - version = "7.15.7"; 28 + version = "7.16.7"; 29 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; 31 - sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; 30 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"; 31 + sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="; 32 32 }; 33 33 }; 34 - "@babel/highlight-7.16.0" = { 34 + "@babel/highlight-7.16.10" = { 35 35 name = "_at_babel_slash_highlight"; 36 36 packageName = "@babel/highlight"; 37 - version = "7.16.0"; 37 + version = "7.16.10"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz"; 40 - sha512 = "t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="; 39 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"; 40 + sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="; 41 41 }; 42 42 }; 43 43 "@eslint/eslintrc-0.4.3" = { ··· 67 67 sha512 = "ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="; 68 68 }; 69 69 }; 70 - "@jest/types-27.2.5" = { 70 + "@jest/types-27.4.2" = { 71 71 name = "_at_jest_slash_types"; 72 72 packageName = "@jest/types"; 73 - version = "27.2.5"; 73 + version = "27.4.2"; 74 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@jest/types/-/types-27.2.5.tgz"; 76 - sha512 = "nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ=="; 75 + url = "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz"; 76 + sha512 = "j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg=="; 77 77 }; 78 78 }; 79 79 "@selderee/plugin-htmlparser2-0.6.0" = { ··· 94 94 sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="; 95 95 }; 96 96 }; 97 - "@types/axios-0.14.0" = { 98 - name = "_at_types_slash_axios"; 99 - packageName = "@types/axios"; 100 - version = "0.14.0"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@types/axios/-/axios-0.14.0.tgz"; 103 - sha1 = "ec2300fbe7d7dddd7eb9d3abf87999964cafce46"; 104 - }; 105 - }; 106 97 "@types/body-parser-1.19.2" = { 107 98 name = "_at_types_slash_body-parser"; 108 99 packageName = "@types/body-parser"; ··· 121 112 sha512 = "cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="; 122 113 }; 123 114 }; 124 - "@types/crypto-js-4.0.2" = { 115 + "@types/crypto-js-4.1.0" = { 125 116 name = "_at_types_slash_crypto-js"; 126 117 packageName = "@types/crypto-js"; 127 - version = "4.0.2"; 118 + version = "4.1.0"; 128 119 src = fetchurl { 129 - url = "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.0.2.tgz"; 130 - sha512 = "sCVniU+h3GcGqxOmng11BRvf9TfN9yIs8KKjB8C8d75W69cpTfZG80gau9yTx5SxF3gvHGbJhdESzzvnjtf3Og=="; 120 + url = "https://registry.npmjs.org/@types/crypto-js/-/crypto-js-4.1.0.tgz"; 121 + sha512 = "DCFfy/vh2lG6qHSGezQ+Sn2Ulf/1Mx51dqOdmOKyW5nMK3maLlxeS3onC7r212OnBM2pBR95HkAmAjjF08YkxQ=="; 131 122 }; 132 123 }; 133 124 "@types/express-4.17.13" = { ··· 139 130 sha512 = "6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="; 140 131 }; 141 132 }; 142 - "@types/express-serve-static-core-4.17.25" = { 133 + "@types/express-serve-static-core-4.17.28" = { 143 134 name = "_at_types_slash_express-serve-static-core"; 144 135 packageName = "@types/express-serve-static-core"; 145 - version = "4.17.25"; 136 + version = "4.17.28"; 146 137 src = fetchurl { 147 - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.25.tgz"; 148 - sha512 = "OUJIVfRMFijZukGGwTpKNFprqCCXk5WjNGvUgB/CxxBR40QWSjsNK86+yvGKlCOGc7sbwfHLaXhkG+NsytwBaQ=="; 138 + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz"; 139 + sha512 = "P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig=="; 149 140 }; 150 141 }; 151 - "@types/istanbul-lib-coverage-2.0.3" = { 142 + "@types/istanbul-lib-coverage-2.0.4" = { 152 143 name = "_at_types_slash_istanbul-lib-coverage"; 153 144 packageName = "@types/istanbul-lib-coverage"; 154 - version = "2.0.3"; 145 + version = "2.0.4"; 155 146 src = fetchurl { 156 - url = "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"; 157 - sha512 = "sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw=="; 147 + url = "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz"; 148 + sha512 = "z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="; 158 149 }; 159 150 }; 160 151 "@types/istanbul-lib-report-3.0.0" = { ··· 175 166 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 176 167 }; 177 168 }; 178 - "@types/jsdom-16.2.13" = { 169 + "@types/jsdom-16.2.14" = { 179 170 name = "_at_types_slash_jsdom"; 180 171 packageName = "@types/jsdom"; 181 - version = "16.2.13"; 172 + version = "16.2.14"; 182 173 src = fetchurl { 183 - url = "https://registry.npmjs.org/@types/jsdom/-/jsdom-16.2.13.tgz"; 184 - sha512 = "8JQCjdeAidptSsOcRWk2iTm9wCcwn9l+kRG6k5bzUacrnm1ezV4forq0kWjUih/tumAeoG+OspOvQEbbRucBTw=="; 174 + url = "https://registry.npmjs.org/@types/jsdom/-/jsdom-16.2.14.tgz"; 175 + sha512 = "6BAy1xXEmMuHeAJ4Fv4yXKwBDTGTOseExKE3OaHiNycdHdZw59KfYzrt0DkDluvwmik1HRt6QS7bImxUmpSy+w=="; 185 176 }; 186 177 }; 187 178 "@types/json5-0.0.29" = { ··· 202 193 sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 203 194 }; 204 195 }; 205 - "@types/mocha-9.0.0" = { 196 + "@types/mocha-9.1.0" = { 206 197 name = "_at_types_slash_mocha"; 207 198 packageName = "@types/mocha"; 208 - version = "9.0.0"; 199 + version = "9.1.0"; 209 200 src = fetchurl { 210 - url = "https://registry.npmjs.org/@types/mocha/-/mocha-9.0.0.tgz"; 211 - sha512 = "scN0hAWyLVAvLR9AyW7HoFF5sJZglyBsbPuHO4fv7JRvfmPBMfp1ozWqOf/e4wwPNxezBZXRfWzMb6iFLgEVRA=="; 201 + url = "https://registry.npmjs.org/@types/mocha/-/mocha-9.1.0.tgz"; 202 + sha512 = "QCWHkbMv4Y5U9oW10Uxbr45qMMSzl4OzijsozynUAgx3kEHUdXB00udx2dWDQ7f2TU2a2uuiFaRZjCe3unPpeg=="; 212 203 }; 213 204 }; 214 - "@types/node-16.11.7" = { 205 + "@types/node-16.11.22" = { 215 206 name = "_at_types_slash_node"; 216 207 packageName = "@types/node"; 217 - version = "16.11.7"; 208 + version = "16.11.22"; 218 209 src = fetchurl { 219 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.7.tgz"; 220 - sha512 = "QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw=="; 210 + url = "https://registry.npmjs.org/@types/node/-/node-16.11.22.tgz"; 211 + sha512 = "DYNtJWauMQ9RNpesl4aVothr97/tIJM8HbyOXJ0AYT1Z2bEjLHyfjOBPAQQVMLf8h3kSShYfNk8Wnto8B2zHUA=="; 221 212 }; 222 213 }; 223 - "@types/parse5-6.0.2" = { 214 + "@types/parse5-6.0.3" = { 224 215 name = "_at_types_slash_parse5"; 225 216 packageName = "@types/parse5"; 226 - version = "6.0.2"; 217 + version = "6.0.3"; 227 218 src = fetchurl { 228 - url = "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.2.tgz"; 229 - sha512 = "+hQX+WyJAOne7Fh3zF5CxPemILIbuhNcqHHodzK9caYOLnC8pD5efmPleRnw0z++LfKUC/sVNMwk0Gap+B0baA=="; 219 + url = "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz"; 220 + sha512 = "SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g=="; 230 221 }; 231 222 }; 232 223 "@types/qs-6.9.7" = { ··· 328 319 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 329 320 }; 330 321 }; 331 - "acorn-8.6.0" = { 322 + "acorn-8.7.0" = { 332 323 name = "acorn"; 333 324 packageName = "acorn"; 334 - version = "8.6.0"; 325 + version = "8.7.0"; 335 326 src = fetchurl { 336 - url = "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz"; 337 - sha512 = "U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="; 327 + url = "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz"; 328 + sha512 = "V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ=="; 338 329 }; 339 330 }; 340 331 "acorn-globals-6.0.0" = { ··· 382 373 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 383 374 }; 384 375 }; 385 - "ajv-8.8.1" = { 376 + "ajv-8.9.0" = { 386 377 name = "ajv"; 387 378 packageName = "ajv"; 388 - version = "8.8.1"; 379 + version = "8.9.0"; 389 380 src = fetchurl { 390 - url = "https://registry.npmjs.org/ajv/-/ajv-8.8.1.tgz"; 391 - sha512 = "6CiMNDrzv0ZR916u2T+iRunnD60uWmNn8SkdB44/6stVORUg0aAkWO7PkOhpCmjmW8f2I/G/xnowD66fxGyQJg=="; 381 + url = "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz"; 382 + sha512 = "qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ=="; 392 383 }; 393 384 }; 394 385 "ansi-colors-4.1.1" = { ··· 535 526 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 536 527 }; 537 528 }; 538 - "axios-0.21.4" = { 539 - name = "axios"; 540 - packageName = "axios"; 541 - version = "0.21.4"; 542 - src = fetchurl { 543 - url = "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"; 544 - sha512 = "ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="; 545 - }; 546 - }; 547 529 "balanced-match-1.0.2" = { 548 530 name = "balanced-match"; 549 531 packageName = "balanced-match"; ··· 589 571 sha512 = "XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="; 590 572 }; 591 573 }; 592 - "body-parser-1.19.0" = { 574 + "body-parser-1.19.1" = { 593 575 name = "body-parser"; 594 576 packageName = "body-parser"; 595 - version = "1.19.0"; 577 + version = "1.19.1"; 596 578 src = fetchurl { 597 - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"; 598 - sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; 579 + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.1.tgz"; 580 + sha512 = "8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA=="; 599 581 }; 600 582 }; 601 583 "brace-expansion-1.1.11" = { ··· 652 634 sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; 653 635 }; 654 636 }; 655 - "bytes-3.1.0" = { 637 + "bytes-3.1.1" = { 656 638 name = "bytes"; 657 639 packageName = "bytes"; 658 - version = "3.1.0"; 640 + version = "3.1.1"; 659 641 src = fetchurl { 660 - url = "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"; 661 - sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 642 + url = "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz"; 643 + sha512 = "dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg=="; 662 644 }; 663 645 }; 664 646 "callsites-3.1.0" = { ··· 670 652 sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 671 653 }; 672 654 }; 673 - "camelcase-6.2.1" = { 655 + "camelcase-6.3.0" = { 674 656 name = "camelcase"; 675 657 packageName = "camelcase"; 676 - version = "6.2.1"; 658 + version = "6.3.0"; 677 659 src = fetchurl { 678 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz"; 679 - sha512 = "tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA=="; 660 + url = "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"; 661 + sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 680 662 }; 681 663 }; 682 664 "caseless-0.12.0" = { ··· 706 688 sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 707 689 }; 708 690 }; 709 - "chokidar-3.5.2" = { 691 + "chokidar-3.5.3" = { 710 692 name = "chokidar"; 711 693 packageName = "chokidar"; 712 - version = "3.5.2"; 694 + version = "3.5.3"; 713 695 src = fetchurl { 714 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"; 715 - sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 696 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 697 + sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 716 698 }; 717 699 }; 718 700 "cliui-7.0.4" = { ··· 796 778 sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 797 779 }; 798 780 }; 799 - "config-3.3.6" = { 781 + "config-3.3.7" = { 800 782 name = "config"; 801 783 packageName = "config"; 802 - version = "3.3.6"; 784 + version = "3.3.7"; 803 785 src = fetchurl { 804 - url = "https://registry.npmjs.org/config/-/config-3.3.6.tgz"; 805 - sha512 = "Hj5916C5HFawjYJat1epbyY2PlAgLpBtDUlr0MxGLgo3p5+7kylyvnRY18PqJHgnNWXcdd0eWDemT7eYWuFgwg=="; 786 + url = "https://registry.npmjs.org/config/-/config-3.3.7.tgz"; 787 + sha512 = "mX/n7GKDYZMqvvkY6e6oBY49W8wxdmQt+ho/5lhwFDXqQW9gI+Ahp8EKp8VAbISPnmf2+Bv5uZK7lKXZ6pf1aA=="; 806 788 }; 807 789 }; 808 - "content-disposition-0.5.3" = { 790 + "content-disposition-0.5.4" = { 809 791 name = "content-disposition"; 810 792 packageName = "content-disposition"; 811 - version = "0.5.3"; 793 + version = "0.5.4"; 812 794 src = fetchurl { 813 - url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz"; 814 - sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; 795 + url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz"; 796 + sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ=="; 815 797 }; 816 798 }; 817 799 "content-type-1.0.4" = { ··· 823 805 sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; 824 806 }; 825 807 }; 826 - "cookie-0.4.0" = { 808 + "cookie-0.4.1" = { 827 809 name = "cookie"; 828 810 packageName = "cookie"; 829 - version = "0.4.0"; 811 + version = "0.4.1"; 830 812 src = fetchurl { 831 - url = "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz"; 832 - sha512 = "+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="; 813 + url = "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz"; 814 + sha512 = "ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA=="; 833 815 }; 834 816 }; 835 817 "cookie-signature-1.0.6" = { ··· 922 904 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 923 905 }; 924 906 }; 925 - "debug-4.3.2" = { 907 + "debug-4.3.3" = { 926 908 name = "debug"; 927 909 packageName = "debug"; 928 - version = "4.3.2"; 910 + version = "4.3.3"; 929 911 src = fetchurl { 930 - url = "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"; 931 - sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 912 + url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz"; 913 + sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q=="; 932 914 }; 933 915 }; 934 916 "decamelize-4.0.0" = { ··· 1030 1012 sha512 = "/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w=="; 1031 1013 }; 1032 1014 }; 1033 - "diff-sequences-27.0.6" = { 1015 + "diff-sequences-27.4.0" = { 1034 1016 name = "diff-sequences"; 1035 1017 packageName = "diff-sequences"; 1036 - version = "27.0.6"; 1018 + version = "27.4.0"; 1037 1019 src = fetchurl { 1038 - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.0.6.tgz"; 1039 - sha512 = "ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ=="; 1020 + url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz"; 1021 + sha512 = "YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww=="; 1040 1022 }; 1041 1023 }; 1042 1024 "discontinuous-range-1.0.0" = { ··· 1093 1075 sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA=="; 1094 1076 }; 1095 1077 }; 1096 - "domhandler-4.2.2" = { 1078 + "domhandler-4.3.0" = { 1097 1079 name = "domhandler"; 1098 1080 packageName = "domhandler"; 1099 - version = "4.2.2"; 1081 + version = "4.3.0"; 1100 1082 src = fetchurl { 1101 - url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz"; 1102 - sha512 = "PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w=="; 1083 + url = "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz"; 1084 + sha512 = "fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g=="; 1103 1085 }; 1104 1086 }; 1105 1087 "domutils-2.8.0" = { ··· 1345 1327 sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; 1346 1328 }; 1347 1329 }; 1348 - "expect-27.3.1" = { 1330 + "expect-27.4.6" = { 1349 1331 name = "expect"; 1350 1332 packageName = "expect"; 1351 - version = "27.3.1"; 1333 + version = "27.4.6"; 1352 1334 src = fetchurl { 1353 - url = "https://registry.npmjs.org/expect/-/expect-27.3.1.tgz"; 1354 - sha512 = "MrNXV2sL9iDRebWPGOGFdPQRl2eDQNu/uhxIMShjjx74T6kC6jFIkmQ6OqXDtevjGUkyB2IT56RzDBqXf/QPCg=="; 1335 + url = "https://registry.npmjs.org/expect/-/expect-27.4.6.tgz"; 1336 + sha512 = "1M/0kAALIaj5LaG66sFJTbRsWTADnylly82cu4bspI0nl+pgP4E6Bh/aqdHlTUjul06K7xQnnrAoqfxVU0+/ag=="; 1355 1337 }; 1356 1338 }; 1357 - "express-4.17.1" = { 1339 + "express-4.17.2" = { 1358 1340 name = "express"; 1359 1341 packageName = "express"; 1360 - version = "4.17.1"; 1342 + version = "4.17.2"; 1361 1343 src = fetchurl { 1362 - url = "https://registry.npmjs.org/express/-/express-4.17.1.tgz"; 1363 - sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; 1344 + url = "https://registry.npmjs.org/express/-/express-4.17.2.tgz"; 1345 + sha512 = "oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg=="; 1364 1346 }; 1365 1347 }; 1366 1348 "extend-3.0.2" = { ··· 1462 1444 sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 1463 1445 }; 1464 1446 }; 1465 - "flatted-3.2.4" = { 1447 + "flatted-3.2.5" = { 1466 1448 name = "flatted"; 1467 1449 packageName = "flatted"; 1468 - version = "3.2.4"; 1469 - src = fetchurl { 1470 - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz"; 1471 - sha512 = "8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw=="; 1472 - }; 1473 - }; 1474 - "follow-redirects-1.14.5" = { 1475 - name = "follow-redirects"; 1476 - packageName = "follow-redirects"; 1477 - version = "1.14.5"; 1450 + version = "3.2.5"; 1478 1451 src = fetchurl { 1479 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.5.tgz"; 1480 - sha512 = "wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA=="; 1452 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz"; 1453 + sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="; 1481 1454 }; 1482 1455 }; 1483 1456 "forever-agent-0.6.1" = { ··· 1579 1552 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 1580 1553 }; 1581 1554 }; 1582 - "glob-7.1.7" = { 1583 - name = "glob"; 1584 - packageName = "glob"; 1585 - version = "7.1.7"; 1586 - src = fetchurl { 1587 - url = "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"; 1588 - sha512 = "OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ=="; 1589 - }; 1590 - }; 1591 1555 "glob-7.2.0" = { 1592 1556 name = "glob"; 1593 1557 packageName = "glob"; ··· 1624 1588 sha512 = "uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg=="; 1625 1589 }; 1626 1590 }; 1627 - "graceful-fs-4.2.8" = { 1591 + "graceful-fs-4.2.9" = { 1628 1592 name = "graceful-fs"; 1629 1593 packageName = "graceful-fs"; 1630 - version = "4.2.8"; 1594 + version = "4.2.9"; 1631 1595 src = fetchurl { 1632 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 1633 - sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 1596 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"; 1597 + sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; 1634 1598 }; 1635 1599 }; 1636 1600 "growl-1.10.5" = { ··· 1759 1723 sha512 = "gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A=="; 1760 1724 }; 1761 1725 }; 1762 - "http-errors-1.7.2" = { 1726 + "http-errors-1.8.1" = { 1763 1727 name = "http-errors"; 1764 1728 packageName = "http-errors"; 1765 - version = "1.7.2"; 1729 + version = "1.8.1"; 1766 1730 src = fetchurl { 1767 - url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz"; 1768 - sha512 = "uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="; 1731 + url = "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz"; 1732 + sha512 = "Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g=="; 1769 1733 }; 1770 1734 }; 1771 1735 "http-proxy-agent-4.0.1" = { ··· 1840 1804 sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1841 1805 }; 1842 1806 }; 1843 - "inherits-2.0.3" = { 1807 + "inherits-2.0.4" = { 1844 1808 name = "inherits"; 1845 1809 packageName = "inherits"; 1846 - version = "2.0.3"; 1810 + version = "2.0.4"; 1847 1811 src = fetchurl { 1848 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; 1849 - sha1 = "633c2c83e3da42a502f52466022480f4208261de"; 1812 + url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; 1813 + sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 1850 1814 }; 1851 1815 }; 1852 1816 "ipaddr.js-1.9.1" = { ··· 1867 1831 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 1868 1832 }; 1869 1833 }; 1870 - "is-core-module-2.8.0" = { 1834 + "is-core-module-2.8.1" = { 1871 1835 name = "is-core-module"; 1872 1836 packageName = "is-core-module"; 1873 - version = "2.8.0"; 1837 + version = "2.8.1"; 1874 1838 src = fetchurl { 1875 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz"; 1876 - sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw=="; 1839 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz"; 1840 + sha512 = "SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA=="; 1877 1841 }; 1878 1842 }; 1879 1843 "is-extglob-2.1.1" = { ··· 1984 1948 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 1985 1949 }; 1986 1950 }; 1987 - "jest-diff-27.3.1" = { 1951 + "jest-diff-27.4.6" = { 1988 1952 name = "jest-diff"; 1989 1953 packageName = "jest-diff"; 1990 - version = "27.3.1"; 1954 + version = "27.4.6"; 1991 1955 src = fetchurl { 1992 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.3.1.tgz"; 1993 - sha512 = "PCeuAH4AWUo2O5+ksW4pL9v5xJAcIKPUPfIhZBcG1RKv/0+dvaWTQK1Nrau8d67dp65fOqbeMdoil+6PedyEPQ=="; 1956 + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.6.tgz"; 1957 + sha512 = "zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w=="; 1994 1958 }; 1995 1959 }; 1996 - "jest-get-type-27.3.1" = { 1960 + "jest-get-type-27.4.0" = { 1997 1961 name = "jest-get-type"; 1998 1962 packageName = "jest-get-type"; 1999 - version = "27.3.1"; 1963 + version = "27.4.0"; 2000 1964 src = fetchurl { 2001 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.3.1.tgz"; 2002 - sha512 = "+Ilqi8hgHSAdhlQ3s12CAVNd8H96ZkQBfYoXmArzZnOfAtVAJEiPDBirjByEblvG/4LPJmkL+nBqPO3A1YJAEg=="; 1965 + url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz"; 1966 + sha512 = "tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ=="; 2003 1967 }; 2004 1968 }; 2005 - "jest-matcher-utils-27.3.1" = { 1969 + "jest-matcher-utils-27.4.6" = { 2006 1970 name = "jest-matcher-utils"; 2007 1971 packageName = "jest-matcher-utils"; 2008 - version = "27.3.1"; 1972 + version = "27.4.6"; 2009 1973 src = fetchurl { 2010 - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.3.1.tgz"; 2011 - sha512 = "hX8N7zXS4k+8bC1Aj0OWpGb7D3gIXxYvPNK1inP5xvE4ztbz3rc4AkI6jGVaerepBnfWB17FL5lWFJT3s7qo8w=="; 1974 + url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.4.6.tgz"; 1975 + sha512 = "XD4PKT3Wn1LQnRAq7ZsTI0VRuEc9OrCPFiO1XL7bftTGmfNF0DcEwMHRgqiu7NGf8ZoZDREpGrCniDkjt79WbA=="; 2012 1976 }; 2013 1977 }; 2014 - "jest-message-util-27.3.1" = { 1978 + "jest-message-util-27.4.6" = { 2015 1979 name = "jest-message-util"; 2016 1980 packageName = "jest-message-util"; 2017 - version = "27.3.1"; 1981 + version = "27.4.6"; 2018 1982 src = fetchurl { 2019 - url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.3.1.tgz"; 2020 - sha512 = "bh3JEmxsTZ/9rTm0jQrPElbY2+y48Rw2t47uMfByNyUVR+OfPh4anuyKsGqsNkXk/TI4JbLRZx+7p7Hdt6q1yg=="; 2021 - }; 2022 - }; 2023 - "jest-regex-util-27.0.6" = { 2024 - name = "jest-regex-util"; 2025 - packageName = "jest-regex-util"; 2026 - version = "27.0.6"; 2027 - src = fetchurl { 2028 - url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.0.6.tgz"; 2029 - sha512 = "SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ=="; 1983 + url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.6.tgz"; 1984 + sha512 = "0p5szriFU0U74czRSFjH6RyS7UYIAkn/ntwMuOwTGWrQIOh5NzXXrq72LOqIkJKKvFbPq+byZKuBz78fjBERBA=="; 2030 1985 }; 2031 1986 }; 2032 1987 "js-tokens-4.0.0" = { ··· 2074 2029 sha512 = "u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw=="; 2075 2030 }; 2076 2031 }; 2077 - "json-schema-0.2.3" = { 2032 + "json-schema-0.4.0" = { 2078 2033 name = "json-schema"; 2079 2034 packageName = "json-schema"; 2080 - version = "0.2.3"; 2035 + version = "0.4.0"; 2081 2036 src = fetchurl { 2082 - url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; 2083 - sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; 2037 + url = "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz"; 2038 + sha512 = "es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="; 2084 2039 }; 2085 2040 }; 2086 2041 "json-schema-traverse-0.4.1" = { ··· 2137 2092 sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 2138 2093 }; 2139 2094 }; 2140 - "jsprim-1.4.1" = { 2095 + "jsprim-1.4.2" = { 2141 2096 name = "jsprim"; 2142 2097 packageName = "jsprim"; 2143 - version = "1.4.1"; 2098 + version = "1.4.2"; 2144 2099 src = fetchurl { 2145 - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; 2146 - sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 2100 + url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz"; 2101 + sha512 = "P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw=="; 2147 2102 }; 2148 2103 }; 2149 2104 "levn-0.3.0" = { ··· 2362 2317 sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="; 2363 2318 }; 2364 2319 }; 2365 - "mocha-9.1.3" = { 2320 + "mocha-9.2.0" = { 2366 2321 name = "mocha"; 2367 2322 packageName = "mocha"; 2368 - version = "9.1.3"; 2323 + version = "9.2.0"; 2369 2324 src = fetchurl { 2370 - url = "https://registry.npmjs.org/mocha/-/mocha-9.1.3.tgz"; 2371 - sha512 = "Xcpl9FqXOAYqI3j79pEtHBBnQgVXIhpULjGQa7DVb0Po+VzmSIK9kanAiWLHoRR/dbZ2qpdPshuXr8l1VaHCzw=="; 2325 + url = "https://registry.npmjs.org/mocha/-/mocha-9.2.0.tgz"; 2326 + sha512 = "kNn7E8g2SzVcq0a77dkphPsDSN7P+iYkqE0ZsGCYWRsoiKjOt+NvXfaagik8vuDa6W5Zw3qxe8Jfpt5qKf+6/Q=="; 2372 2327 }; 2373 2328 }; 2374 2329 "moo-0.5.1" = { ··· 2398 2353 sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 2399 2354 }; 2400 2355 }; 2401 - "ms-2.1.1" = { 2402 - name = "ms"; 2403 - packageName = "ms"; 2404 - version = "2.1.1"; 2405 - src = fetchurl { 2406 - url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; 2407 - sha512 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="; 2408 - }; 2409 - }; 2410 2356 "ms-2.1.2" = { 2411 2357 name = "ms"; 2412 2358 packageName = "ms"; ··· 2425 2371 sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 2426 2372 }; 2427 2373 }; 2428 - "nanoid-3.1.25" = { 2374 + "nanoid-3.2.0" = { 2429 2375 name = "nanoid"; 2430 2376 packageName = "nanoid"; 2431 - version = "3.1.25"; 2377 + version = "3.2.0"; 2432 2378 src = fetchurl { 2433 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz"; 2434 - sha512 = "rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q=="; 2435 - }; 2436 - }; 2437 - "nanoid-3.1.30" = { 2438 - name = "nanoid"; 2439 - packageName = "nanoid"; 2440 - version = "3.1.30"; 2441 - src = fetchurl { 2442 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz"; 2443 - sha512 = "zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ=="; 2379 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.2.0.tgz"; 2380 + sha512 = "fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA=="; 2444 2381 }; 2445 2382 }; 2446 2383 "natural-compare-1.4.0" = { ··· 2668 2605 sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 2669 2606 }; 2670 2607 }; 2671 - "picomatch-2.3.0" = { 2608 + "picomatch-2.3.1" = { 2672 2609 name = "picomatch"; 2673 2610 packageName = "picomatch"; 2674 - version = "2.3.0"; 2611 + version = "2.3.1"; 2675 2612 src = fetchurl { 2676 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"; 2677 - sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; 2613 + url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; 2614 + sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 2678 2615 }; 2679 2616 }; 2680 2617 "pify-3.0.0" = { ··· 2686 2623 sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; 2687 2624 }; 2688 2625 }; 2689 - "postcss-8.3.11" = { 2626 + "postcss-8.4.6" = { 2690 2627 name = "postcss"; 2691 2628 packageName = "postcss"; 2692 - version = "8.3.11"; 2629 + version = "8.4.6"; 2693 2630 src = fetchurl { 2694 - url = "https://registry.npmjs.org/postcss/-/postcss-8.3.11.tgz"; 2695 - sha512 = "hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA=="; 2631 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.6.tgz"; 2632 + sha512 = "OovjwIzs9Te46vlEx7+uXB0PLijpwjXGKXjVGGPIGubGpq7uh5Xgf6D6FiJ/SzJMBosHDp6a2hiXOS97iBXcaA=="; 2696 2633 }; 2697 2634 }; 2698 2635 "prelude-ls-1.1.2" = { ··· 2713 2650 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 2714 2651 }; 2715 2652 }; 2716 - "pretty-format-27.3.1" = { 2653 + "pretty-format-27.4.6" = { 2717 2654 name = "pretty-format"; 2718 2655 packageName = "pretty-format"; 2719 - version = "27.3.1"; 2656 + version = "27.4.6"; 2720 2657 src = fetchurl { 2721 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.3.1.tgz"; 2722 - sha512 = "DR/c+pvFc52nLimLROYjnXPtolawm+uWDxr4FjuLDLUn+ktWnSN851KoHwHzzqq6rfCOjkzN8FLgDrSub6UDuA=="; 2658 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.6.tgz"; 2659 + sha512 = "NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g=="; 2723 2660 }; 2724 2661 }; 2725 2662 "progress-2.0.3" = { ··· 2767 2704 sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 2768 2705 }; 2769 2706 }; 2770 - "qs-6.5.2" = { 2707 + "qs-6.5.3" = { 2771 2708 name = "qs"; 2772 2709 packageName = "qs"; 2773 - version = "6.5.2"; 2710 + version = "6.5.3"; 2774 2711 src = fetchurl { 2775 - url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; 2776 - sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 2712 + url = "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz"; 2713 + sha512 = "qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA=="; 2777 2714 }; 2778 2715 }; 2779 - "qs-6.7.0" = { 2716 + "qs-6.9.6" = { 2780 2717 name = "qs"; 2781 2718 packageName = "qs"; 2782 - version = "6.7.0"; 2719 + version = "6.9.6"; 2783 2720 src = fetchurl { 2784 - url = "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"; 2785 - sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 2721 + url = "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz"; 2722 + sha512 = "TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ=="; 2786 2723 }; 2787 2724 }; 2788 2725 "railroad-diagrams-1.0.0" = { ··· 2821 2758 sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; 2822 2759 }; 2823 2760 }; 2824 - "raw-body-2.4.0" = { 2761 + "raw-body-2.4.2" = { 2825 2762 name = "raw-body"; 2826 2763 packageName = "raw-body"; 2827 - version = "2.4.0"; 2764 + version = "2.4.2"; 2828 2765 src = fetchurl { 2829 - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz"; 2830 - sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; 2766 + url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz"; 2767 + sha512 = "RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ=="; 2831 2768 }; 2832 2769 }; 2833 2770 "react-is-17.0.2" = { ··· 2902 2839 sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 2903 2840 }; 2904 2841 }; 2905 - "resolve-1.20.0" = { 2842 + "resolve-1.22.0" = { 2906 2843 name = "resolve"; 2907 2844 packageName = "resolve"; 2908 - version = "1.20.0"; 2845 + version = "1.22.0"; 2909 2846 src = fetchurl { 2910 - url = "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"; 2911 - sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="; 2847 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz"; 2848 + sha512 = "Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw=="; 2912 2849 }; 2913 2850 }; 2914 2851 "resolve-from-4.0.0" = { ··· 2947 2884 sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 2948 2885 }; 2949 2886 }; 2887 + "safe-buffer-5.2.1" = { 2888 + name = "safe-buffer"; 2889 + packageName = "safe-buffer"; 2890 + version = "5.2.1"; 2891 + src = fetchurl { 2892 + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 2893 + sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 2894 + }; 2895 + }; 2950 2896 "safer-buffer-2.1.2" = { 2951 2897 name = "safer-buffer"; 2952 2898 packageName = "safer-buffer"; ··· 2956 2902 sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 2957 2903 }; 2958 2904 }; 2959 - "sanitize-html-2.5.3" = { 2905 + "sanitize-html-2.6.1" = { 2960 2906 name = "sanitize-html"; 2961 2907 packageName = "sanitize-html"; 2962 - version = "2.5.3"; 2908 + version = "2.6.1"; 2963 2909 src = fetchurl { 2964 - url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.5.3.tgz"; 2965 - sha512 = "DGATXd1fs/Rm287/i5FBKVYSBBUL0iAaztOA1/RFhEs4yqo39/X52i/q/CwsfCUG5cilmXSBmnQmyWfnKhBlOg=="; 2910 + url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.6.1.tgz"; 2911 + sha512 = "DzjSz3H5qDntD7s1TcWCSoRPmNR8UmA+y+xZQOvWgjATe2Br9ZW73+vD3Pj6Snrg0RuEuJdXgrKvnYuiuixRkA=="; 2966 2912 }; 2967 2913 }; 2968 2914 "saxes-5.0.1" = { ··· 3001 2947 sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 3002 2948 }; 3003 2949 }; 3004 - "send-0.17.1" = { 2950 + "send-0.17.2" = { 3005 2951 name = "send"; 3006 2952 packageName = "send"; 3007 - version = "0.17.1"; 2953 + version = "0.17.2"; 3008 2954 src = fetchurl { 3009 - url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; 3010 - sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 2955 + url = "https://registry.npmjs.org/send/-/send-0.17.2.tgz"; 2956 + sha512 = "UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww=="; 3011 2957 }; 3012 2958 }; 3013 2959 "serialize-javascript-6.0.0" = { ··· 3019 2965 sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; 3020 2966 }; 3021 2967 }; 3022 - "serve-static-1.14.1" = { 2968 + "serve-static-1.14.2" = { 3023 2969 name = "serve-static"; 3024 2970 packageName = "serve-static"; 3025 - version = "1.14.1"; 2971 + version = "1.14.2"; 3026 2972 src = fetchurl { 3027 - url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"; 3028 - sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; 2973 + url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz"; 2974 + sha512 = "+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ=="; 3029 2975 }; 3030 2976 }; 3031 - "setprototypeof-1.1.1" = { 2977 + "setprototypeof-1.2.0" = { 3032 2978 name = "setprototypeof"; 3033 2979 packageName = "setprototypeof"; 3034 - version = "1.1.1"; 2980 + version = "1.2.0"; 3035 2981 src = fetchurl { 3036 - url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"; 3037 - sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; 2982 + url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz"; 2983 + sha512 = "E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="; 3038 2984 }; 3039 2985 }; 3040 2986 "shebang-command-2.0.0" = { ··· 3091 3037 sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 3092 3038 }; 3093 3039 }; 3094 - "source-map-js-0.6.2" = { 3040 + "source-map-js-1.0.2" = { 3095 3041 name = "source-map-js"; 3096 3042 packageName = "source-map-js"; 3097 - version = "0.6.2"; 3043 + version = "1.0.2"; 3098 3044 src = fetchurl { 3099 - url = "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz"; 3100 - sha512 = "/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug=="; 3045 + url = "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"; 3046 + sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; 3101 3047 }; 3102 3048 }; 3103 - "source-map-support-0.5.20" = { 3049 + "source-map-support-0.5.21" = { 3104 3050 name = "source-map-support"; 3105 3051 packageName = "source-map-support"; 3106 - version = "0.5.20"; 3052 + version = "0.5.21"; 3107 3053 src = fetchurl { 3108 - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz"; 3109 - sha512 = "n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw=="; 3054 + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz"; 3055 + sha512 = "uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w=="; 3110 3056 }; 3111 3057 }; 3112 3058 "sprintf-js-1.0.3" = { ··· 3118 3064 sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 3119 3065 }; 3120 3066 }; 3121 - "sshpk-1.16.1" = { 3067 + "sshpk-1.17.0" = { 3122 3068 name = "sshpk"; 3123 3069 packageName = "sshpk"; 3124 - version = "1.16.1"; 3070 + version = "1.17.0"; 3125 3071 src = fetchurl { 3126 - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; 3127 - sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; 3072 + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz"; 3073 + sha512 = "/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="; 3128 3074 }; 3129 3075 }; 3130 3076 "stack-utils-2.0.5" = { ··· 3226 3172 sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; 3227 3173 }; 3228 3174 }; 3175 + "supports-preserve-symlinks-flag-1.0.0" = { 3176 + name = "supports-preserve-symlinks-flag"; 3177 + packageName = "supports-preserve-symlinks-flag"; 3178 + version = "1.0.0"; 3179 + src = fetchurl { 3180 + url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 3181 + sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 3182 + }; 3183 + }; 3229 3184 "symbol-tree-3.2.4" = { 3230 3185 name = "symbol-tree"; 3231 3186 packageName = "symbol-tree"; ··· 3235 3190 sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; 3236 3191 }; 3237 3192 }; 3238 - "table-6.7.3" = { 3193 + "table-6.8.0" = { 3239 3194 name = "table"; 3240 3195 packageName = "table"; 3241 - version = "6.7.3"; 3196 + version = "6.8.0"; 3242 3197 src = fetchurl { 3243 - url = "https://registry.npmjs.org/table/-/table-6.7.3.tgz"; 3244 - sha512 = "5DkIxeA7XERBqMwJq0aHZOdMadBx4e6eDoFRuyT5VR82J0Ycg2DwM6GfA/EQAhJ+toRTaS1lIdSQCqgrmhPnlw=="; 3198 + url = "https://registry.npmjs.org/table/-/table-6.8.0.tgz"; 3199 + sha512 = "s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA=="; 3245 3200 }; 3246 3201 }; 3247 3202 "text-table-0.2.0" = { ··· 3262 3217 sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; 3263 3218 }; 3264 3219 }; 3265 - "toidentifier-1.0.0" = { 3220 + "toidentifier-1.0.1" = { 3266 3221 name = "toidentifier"; 3267 3222 packageName = "toidentifier"; 3268 - version = "1.0.0"; 3223 + version = "1.0.1"; 3269 3224 src = fetchurl { 3270 - url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; 3271 - sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; 3225 + url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz"; 3226 + sha512 = "o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="; 3272 3227 }; 3273 3228 }; 3274 3229 "tough-cookie-2.5.0" = { ··· 3316 3271 sha512 = "BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw=="; 3317 3272 }; 3318 3273 }; 3319 - "tsconfig-paths-3.11.0" = { 3274 + "tsconfig-paths-3.12.0" = { 3320 3275 name = "tsconfig-paths"; 3321 3276 packageName = "tsconfig-paths"; 3322 - version = "3.11.0"; 3277 + version = "3.12.0"; 3323 3278 src = fetchurl { 3324 - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz"; 3325 - sha512 = "7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA=="; 3279 + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz"; 3280 + sha512 = "e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg=="; 3326 3281 }; 3327 3282 }; 3328 3283 "tslib-1.14.1" = { ··· 3406 3361 sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; 3407 3362 }; 3408 3363 }; 3409 - "typescript-4.5.2" = { 3364 + "typescript-4.5.5" = { 3410 3365 name = "typescript"; 3411 3366 packageName = "typescript"; 3412 - version = "4.5.2"; 3367 + version = "4.5.5"; 3413 3368 src = fetchurl { 3414 - url = "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz"; 3415 - sha512 = "5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw=="; 3369 + url = "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz"; 3370 + sha512 = "TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA=="; 3416 3371 }; 3417 3372 }; 3418 3373 "typescript-formatter-7.2.2" = { ··· 3577 3532 sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 3578 3533 }; 3579 3534 }; 3580 - "workerpool-6.1.5" = { 3535 + "workerpool-6.2.0" = { 3581 3536 name = "workerpool"; 3582 3537 packageName = "workerpool"; 3583 - version = "6.1.5"; 3538 + version = "6.2.0"; 3584 3539 src = fetchurl { 3585 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.1.5.tgz"; 3586 - sha512 = "XdKkCK0Zqc6w3iTxLckiuJ81tiD/o5rBE/m+nXpRCB+/Sq4DqkfXZ/x0jW02DG1tGsfUGXbTJyZDP+eu67haSw=="; 3540 + url = "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz"; 3541 + sha512 = "Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A=="; 3587 3542 }; 3588 3543 }; 3589 3544 "wrap-ansi-7.0.0" = { ··· 3604 3559 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 3605 3560 }; 3606 3561 }; 3607 - "ws-7.5.5" = { 3562 + "ws-7.5.6" = { 3608 3563 name = "ws"; 3609 3564 packageName = "ws"; 3610 - version = "7.5.5"; 3565 + version = "7.5.6"; 3611 3566 src = fetchurl { 3612 - url = "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz"; 3613 - sha512 = "BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w=="; 3567 + url = "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz"; 3568 + sha512 = "6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA=="; 3614 3569 }; 3615 3570 }; 3616 3571 "xml-name-validator-3.0.0" = { ··· 3707 3662 args = { 3708 3663 name = "mjolnir"; 3709 3664 packageName = "mjolnir"; 3710 - version = "1.2.1"; 3711 - src = ../../../../../../../nix/store/8x9ib7ymf5yj075632mz4qap4m0nzd52-source; 3665 + version = "1.3.1"; 3666 + src = ../../../../../../../nix/store/k1myvl4f3yvjk9jw4d1b1k1rc8rlwcy2-source; 3712 3667 dependencies = [ 3713 3668 sources."@babel/code-frame-7.12.11" 3714 - sources."@babel/helper-validator-identifier-7.15.7" 3715 - (sources."@babel/highlight-7.16.0" // { 3669 + sources."@babel/helper-validator-identifier-7.16.7" 3670 + (sources."@babel/highlight-7.16.10" // { 3716 3671 dependencies = [ 3717 3672 sources."ansi-styles-3.2.1" 3718 3673 sources."chalk-2.4.2" ··· 3726 3681 (sources."@eslint/eslintrc-0.4.3" // { 3727 3682 dependencies = [ 3728 3683 sources."argparse-1.0.10" 3729 - sources."debug-4.3.2" 3684 + sources."debug-4.3.3" 3730 3685 sources."js-yaml-3.14.1" 3731 3686 sources."ms-2.1.2" 3732 3687 ]; 3733 3688 }) 3734 3689 (sources."@humanwhocodes/config-array-0.5.0" // { 3735 3690 dependencies = [ 3736 - sources."debug-4.3.2" 3691 + sources."debug-4.3.3" 3737 3692 sources."ms-2.1.2" 3738 3693 ]; 3739 3694 }) 3740 3695 sources."@humanwhocodes/object-schema-1.2.1" 3741 - sources."@jest/types-27.2.5" 3696 + sources."@jest/types-27.4.2" 3742 3697 sources."@selderee/plugin-htmlparser2-0.6.0" 3743 3698 sources."@tootallnate/once-1.1.2" 3744 - sources."@types/axios-0.14.0" 3745 3699 sources."@types/body-parser-1.19.2" 3746 3700 sources."@types/connect-3.4.35" 3747 - sources."@types/crypto-js-4.0.2" 3701 + sources."@types/crypto-js-4.1.0" 3748 3702 sources."@types/express-4.17.13" 3749 - sources."@types/express-serve-static-core-4.17.25" 3750 - sources."@types/istanbul-lib-coverage-2.0.3" 3703 + sources."@types/express-serve-static-core-4.17.28" 3704 + sources."@types/istanbul-lib-coverage-2.0.4" 3751 3705 sources."@types/istanbul-lib-report-3.0.0" 3752 3706 sources."@types/istanbul-reports-3.0.1" 3753 - sources."@types/jsdom-16.2.13" 3707 + sources."@types/jsdom-16.2.14" 3754 3708 sources."@types/json5-0.0.29" 3755 3709 sources."@types/mime-1.3.2" 3756 - sources."@types/mocha-9.0.0" 3757 - sources."@types/node-16.11.7" 3758 - sources."@types/parse5-6.0.2" 3710 + sources."@types/mocha-9.1.0" 3711 + sources."@types/node-16.11.22" 3712 + sources."@types/parse5-6.0.3" 3759 3713 sources."@types/qs-6.9.7" 3760 3714 sources."@types/range-parser-1.2.4" 3761 3715 sources."@types/serve-static-1.13.10" ··· 3766 3720 sources."@ungap/promise-all-settled-1.1.2" 3767 3721 sources."abab-2.0.5" 3768 3722 sources."accepts-1.3.7" 3769 - sources."acorn-8.6.0" 3723 + sources."acorn-8.7.0" 3770 3724 (sources."acorn-globals-6.0.0" // { 3771 3725 dependencies = [ 3772 3726 sources."acorn-7.4.1" ··· 3776 3730 sources."acorn-walk-7.2.0" 3777 3731 (sources."agent-base-6.0.2" // { 3778 3732 dependencies = [ 3779 - sources."debug-4.3.2" 3733 + sources."debug-4.3.3" 3780 3734 sources."ms-2.1.2" 3781 3735 ]; 3782 3736 }) ··· 3794 3748 sources."asynckit-0.4.0" 3795 3749 sources."aws-sign2-0.7.0" 3796 3750 sources."aws4-1.11.0" 3797 - sources."axios-0.21.4" 3798 3751 sources."balanced-match-1.0.2" 3799 - sources."basic-auth-2.0.1" 3752 + (sources."basic-auth-2.0.1" // { 3753 + dependencies = [ 3754 + sources."safe-buffer-5.1.2" 3755 + ]; 3756 + }) 3800 3757 sources."bcrypt-pbkdf-1.0.2" 3801 3758 sources."binary-extensions-2.2.0" 3802 3759 sources."bluebird-3.7.2" 3803 - sources."body-parser-1.19.0" 3760 + sources."body-parser-1.19.1" 3804 3761 sources."brace-expansion-1.1.11" 3805 3762 sources."braces-3.0.2" 3806 3763 sources."browser-process-hrtime-1.0.0" 3807 3764 sources."browser-stdout-1.3.1" 3808 3765 sources."buffer-from-1.1.2" 3809 3766 sources."builtin-modules-1.1.1" 3810 - sources."bytes-3.1.0" 3767 + sources."bytes-3.1.1" 3811 3768 sources."callsites-3.1.0" 3812 - sources."camelcase-6.2.1" 3769 + sources."camelcase-6.3.0" 3813 3770 sources."caseless-0.12.0" 3814 3771 sources."chalk-4.1.2" 3815 - sources."chokidar-3.5.2" 3772 + sources."chokidar-3.5.3" 3816 3773 sources."cliui-7.0.4" 3817 3774 sources."color-convert-2.0.1" 3818 3775 sources."color-name-1.1.4" ··· 3820 3777 sources."commander-2.20.3" 3821 3778 sources."commandpost-1.4.0" 3822 3779 sources."concat-map-0.0.1" 3823 - sources."config-3.3.6" 3824 - sources."content-disposition-0.5.3" 3780 + sources."config-3.3.7" 3781 + sources."content-disposition-0.5.4" 3825 3782 sources."content-type-1.0.4" 3826 - sources."cookie-0.4.0" 3783 + sources."cookie-0.4.1" 3827 3784 sources."cookie-signature-1.0.6" 3828 3785 sources."core-util-is-1.0.2" 3829 3786 sources."cross-spawn-7.0.3" ··· 3845 3802 sources."depd-1.1.2" 3846 3803 sources."destroy-1.0.4" 3847 3804 sources."diff-5.0.0" 3848 - sources."diff-sequences-27.0.6" 3805 + sources."diff-sequences-27.4.0" 3849 3806 sources."discontinuous-range-1.0.0" 3850 3807 sources."doctrine-3.0.0" 3851 3808 sources."dom-serializer-1.3.2" ··· 3855 3812 sources."webidl-conversions-5.0.0" 3856 3813 ]; 3857 3814 }) 3858 - sources."domhandler-4.2.2" 3815 + sources."domhandler-4.3.0" 3859 3816 sources."domutils-2.8.0" 3860 3817 sources."ecc-jsbn-0.1.2" 3861 3818 (sources."editorconfig-0.15.3" // { ··· 3877 3834 (sources."eslint-7.32.0" // { 3878 3835 dependencies = [ 3879 3836 sources."argparse-1.0.10" 3880 - sources."debug-4.3.2" 3837 + sources."debug-4.3.3" 3881 3838 sources."js-yaml-3.14.1" 3882 3839 sources."levn-0.4.1" 3883 3840 sources."ms-2.1.2" ··· 3909 3866 sources."estraverse-5.3.0" 3910 3867 sources."esutils-2.0.3" 3911 3868 sources."etag-1.8.1" 3912 - (sources."expect-27.3.1" // { 3913 - dependencies = [ 3914 - sources."ansi-styles-5.2.0" 3915 - ]; 3916 - }) 3917 - sources."express-4.17.1" 3869 + sources."expect-27.4.6" 3870 + sources."express-4.17.2" 3918 3871 sources."extend-3.0.2" 3919 3872 sources."extsprintf-1.3.0" 3920 3873 sources."fast-deep-equal-3.1.3" ··· 3926 3879 sources."find-up-5.0.0" 3927 3880 sources."flat-5.0.2" 3928 3881 sources."flat-cache-3.0.4" 3929 - sources."flatted-3.2.4" 3930 - sources."follow-redirects-1.14.5" 3882 + sources."flatted-3.2.5" 3931 3883 sources."forever-agent-0.6.1" 3932 3884 sources."form-data-3.0.1" 3933 3885 sources."forwarded-0.2.0" ··· 3942 3894 sources."glob-parent-5.1.2" 3943 3895 sources."glob-to-regexp-0.4.1" 3944 3896 sources."globals-13.12.0" 3945 - sources."graceful-fs-4.2.8" 3897 + sources."graceful-fs-4.2.9" 3946 3898 sources."growl-1.10.5" 3947 3899 sources."har-schema-2.0.0" 3948 3900 sources."har-validator-5.1.5" ··· 3954 3906 sources."html-to-text-8.1.0" 3955 3907 sources."htmlencode-0.0.4" 3956 3908 sources."htmlparser2-6.1.0" 3957 - sources."http-errors-1.7.2" 3909 + sources."http-errors-1.8.1" 3958 3910 (sources."http-proxy-agent-4.0.1" // { 3959 3911 dependencies = [ 3960 - sources."debug-4.3.2" 3912 + sources."debug-4.3.3" 3961 3913 sources."ms-2.1.2" 3962 3914 ]; 3963 3915 }) 3964 3916 sources."http-signature-1.2.0" 3965 3917 (sources."https-proxy-agent-5.0.0" // { 3966 3918 dependencies = [ 3967 - sources."debug-4.3.2" 3919 + sources."debug-4.3.3" 3968 3920 sources."ms-2.1.2" 3969 3921 ]; 3970 3922 }) ··· 3973 3925 sources."import-fresh-3.3.0" 3974 3926 sources."imurmurhash-0.1.4" 3975 3927 sources."inflight-1.0.6" 3976 - sources."inherits-2.0.3" 3928 + sources."inherits-2.0.4" 3977 3929 sources."ipaddr.js-1.9.1" 3978 3930 sources."is-binary-path-2.1.0" 3979 - sources."is-core-module-2.8.0" 3931 + sources."is-core-module-2.8.1" 3980 3932 sources."is-extglob-2.1.1" 3981 3933 sources."is-fullwidth-code-point-3.0.0" 3982 3934 sources."is-glob-4.0.3" ··· 3989 3941 sources."is-unicode-supported-0.1.0" 3990 3942 sources."isexe-2.0.0" 3991 3943 sources."isstream-0.1.2" 3992 - sources."jest-diff-27.3.1" 3993 - sources."jest-get-type-27.3.1" 3994 - sources."jest-matcher-utils-27.3.1" 3995 - (sources."jest-message-util-27.3.1" // { 3944 + sources."jest-diff-27.4.6" 3945 + sources."jest-get-type-27.4.0" 3946 + sources."jest-matcher-utils-27.4.6" 3947 + (sources."jest-message-util-27.4.6" // { 3996 3948 dependencies = [ 3997 - sources."@babel/code-frame-7.16.0" 3949 + sources."@babel/code-frame-7.16.7" 3998 3950 ]; 3999 3951 }) 4000 - sources."jest-regex-util-27.0.6" 4001 3952 sources."js-tokens-4.0.0" 4002 3953 sources."js-yaml-4.1.0" 4003 3954 sources."jsbn-0.1.1" 4004 3955 sources."jsdom-16.7.0" 4005 - sources."json-schema-0.2.3" 3956 + sources."json-schema-0.4.0" 4006 3957 sources."json-schema-traverse-0.4.1" 4007 3958 sources."json-stable-stringify-without-jsonify-1.0.1" 4008 3959 sources."json-stringify-safe-5.0.1" 4009 3960 sources."json5-2.2.0" 4010 - sources."jsprim-1.4.1" 3961 + sources."jsprim-1.4.2" 4011 3962 sources."levn-0.3.0" 4012 3963 sources."locate-path-6.0.0" 4013 3964 sources."lodash-4.17.21" ··· 4035 3986 sources."minimatch-3.0.4" 4036 3987 sources."minimist-1.2.5" 4037 3988 sources."mkdirp-1.0.4" 4038 - (sources."mocha-9.1.3" // { 3989 + (sources."mocha-9.2.0" // { 4039 3990 dependencies = [ 4040 - (sources."debug-4.3.2" // { 3991 + (sources."debug-4.3.3" // { 4041 3992 dependencies = [ 4042 3993 sources."ms-2.1.2" 4043 3994 ]; 4044 3995 }) 4045 - sources."glob-7.1.7" 4046 3996 sources."ms-2.1.3" 4047 - sources."nanoid-3.1.25" 4048 3997 sources."supports-color-8.1.1" 4049 3998 ]; 4050 3999 }) ··· 4055 4004 ]; 4056 4005 }) 4057 4006 sources."ms-2.0.0" 4058 - sources."nanoid-3.1.30" 4007 + sources."nanoid-3.2.0" 4059 4008 sources."natural-compare-1.4.0" 4060 4009 sources."nearley-2.20.1" 4061 4010 sources."negotiator-0.6.2" ··· 4080 4029 sources."path-to-regexp-0.1.7" 4081 4030 sources."performance-now-2.1.0" 4082 4031 sources."picocolors-1.0.0" 4083 - sources."picomatch-2.3.0" 4032 + sources."picomatch-2.3.1" 4084 4033 sources."pify-3.0.0" 4085 - sources."postcss-8.3.11" 4034 + sources."postcss-8.4.6" 4086 4035 sources."prelude-ls-1.1.2" 4087 - (sources."pretty-format-27.3.1" // { 4036 + (sources."pretty-format-27.4.6" // { 4088 4037 dependencies = [ 4089 4038 sources."ansi-styles-5.2.0" 4090 4039 ]; ··· 4094 4043 sources."pseudomap-1.0.2" 4095 4044 sources."psl-1.8.0" 4096 4045 sources."punycode-2.1.1" 4097 - sources."qs-6.7.0" 4046 + sources."qs-6.9.6" 4098 4047 sources."railroad-diagrams-1.0.0" 4099 4048 sources."randexp-0.4.6" 4100 4049 sources."randombytes-2.1.0" 4101 4050 sources."range-parser-1.2.1" 4102 - sources."raw-body-2.4.0" 4051 + sources."raw-body-2.4.2" 4103 4052 sources."react-is-17.0.2" 4104 4053 sources."readdirp-3.6.0" 4105 4054 sources."regexpp-3.2.0" 4106 4055 (sources."request-2.88.2" // { 4107 4056 dependencies = [ 4108 4057 sources."form-data-2.3.3" 4109 - sources."qs-6.5.2" 4058 + sources."qs-6.5.3" 4110 4059 sources."tough-cookie-2.5.0" 4111 4060 ]; 4112 4061 }) ··· 4118 4067 sources."request-promise-core-1.1.4" 4119 4068 sources."require-directory-2.1.1" 4120 4069 sources."require-from-string-2.0.2" 4121 - sources."resolve-1.20.0" 4070 + sources."resolve-1.22.0" 4122 4071 sources."resolve-from-4.0.0" 4123 4072 sources."ret-0.1.15" 4124 4073 sources."rimraf-3.0.2" 4125 - sources."safe-buffer-5.1.2" 4074 + sources."safe-buffer-5.2.1" 4126 4075 sources."safer-buffer-2.1.2" 4127 - sources."sanitize-html-2.5.3" 4076 + sources."sanitize-html-2.6.1" 4128 4077 sources."saxes-5.0.1" 4129 4078 sources."selderee-0.6.0" 4130 4079 sources."semver-7.3.5" 4131 - (sources."send-0.17.1" // { 4080 + (sources."send-0.17.2" // { 4132 4081 dependencies = [ 4133 - sources."ms-2.1.1" 4082 + sources."ms-2.1.3" 4134 4083 ]; 4135 4084 }) 4136 4085 sources."serialize-javascript-6.0.0" 4137 - sources."serve-static-1.14.1" 4138 - sources."setprototypeof-1.1.1" 4086 + sources."serve-static-1.14.2" 4087 + sources."setprototypeof-1.2.0" 4139 4088 sources."shebang-command-2.0.0" 4140 4089 sources."shebang-regex-3.0.0" 4141 4090 sources."sigmund-1.0.1" 4142 4091 sources."slash-3.0.0" 4143 4092 sources."slice-ansi-4.0.0" 4144 4093 sources."source-map-0.6.1" 4145 - sources."source-map-js-0.6.2" 4146 - sources."source-map-support-0.5.20" 4094 + sources."source-map-js-1.0.2" 4095 + sources."source-map-support-0.5.21" 4147 4096 sources."sprintf-js-1.0.3" 4148 - sources."sshpk-1.16.1" 4097 + sources."sshpk-1.17.0" 4149 4098 (sources."stack-utils-2.0.5" // { 4150 4099 dependencies = [ 4151 4100 sources."escape-string-regexp-2.0.0" ··· 4159 4108 sources."strip-bom-3.0.0" 4160 4109 sources."strip-json-comments-3.1.1" 4161 4110 sources."supports-color-7.2.0" 4111 + sources."supports-preserve-symlinks-flag-1.0.0" 4162 4112 sources."symbol-tree-3.2.4" 4163 - (sources."table-6.7.3" // { 4113 + (sources."table-6.8.0" // { 4164 4114 dependencies = [ 4165 - sources."ajv-8.8.1" 4115 + sources."ajv-8.9.0" 4166 4116 sources."json-schema-traverse-1.0.0" 4167 4117 ]; 4168 4118 }) 4169 4119 sources."text-table-0.2.0" 4170 4120 sources."to-regex-range-5.0.1" 4171 - sources."toidentifier-1.0.0" 4121 + sources."toidentifier-1.0.1" 4172 4122 sources."tough-cookie-4.0.0" 4173 4123 sources."tr46-2.1.0" 4174 4124 sources."ts-mocha-8.0.0" ··· 4178 4128 sources."mkdirp-0.5.5" 4179 4129 ]; 4180 4130 }) 4181 - (sources."tsconfig-paths-3.11.0" // { 4131 + (sources."tsconfig-paths-3.12.0" // { 4182 4132 dependencies = [ 4183 4133 sources."json5-1.0.1" 4184 4134 ]; ··· 4206 4156 sources."type-check-0.3.2" 4207 4157 sources."type-fest-0.20.2" 4208 4158 sources."type-is-1.6.18" 4209 - sources."typescript-4.5.2" 4159 + sources."typescript-4.5.5" 4210 4160 sources."typescript-formatter-7.2.2" 4211 4161 sources."universalify-0.1.2" 4212 4162 sources."unpipe-1.0.0" ··· 4224 4174 sources."whatwg-url-8.7.0" 4225 4175 sources."which-2.0.2" 4226 4176 sources."word-wrap-1.2.3" 4227 - sources."workerpool-6.1.5" 4177 + sources."workerpool-6.2.0" 4228 4178 sources."wrap-ansi-7.0.0" 4229 4179 sources."wrappy-1.0.2" 4230 - sources."ws-7.5.5" 4180 + sources."ws-7.5.6" 4231 4181 sources."xml-name-validator-3.0.0" 4232 4182 sources."xmlchars-2.2.0" 4233 4183 sources."y18n-5.0.8"
+47 -32
pkgs/servers/mjolnir/node-env.nix
··· 1 1 # This file originates from node2nix 2 2 3 - {lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile}: 3 + {lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}: 4 4 5 5 let 6 6 # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master ··· 40 40 ''; 41 41 }; 42 42 43 - includeDependencies = {dependencies}: 44 - lib.optionalString (dependencies != []) 45 - (lib.concatMapStrings (dependency: 46 - '' 47 - # Bundle the dependencies of the package 48 - mkdir -p node_modules 49 - cd node_modules 50 - 51 - # Only include dependencies if they don't exist. They may also be bundled in the package. 52 - if [ ! -e "${dependency.name}" ] 53 - then 54 - ${composePackage dependency} 55 - fi 43 + # Common shell logic 44 + installPackage = writeShellScript "install-package" '' 45 + installPackage() { 46 + local packageName=$1 src=$2 56 47 57 - cd .. 58 - '' 59 - ) dependencies); 48 + local strippedName 60 49 61 - # Recursively composes the dependencies of a package 62 - composePackage = { name, packageName, src, dependencies ? [], ... }@args: 63 - builtins.addErrorContext "while evaluating node package '${packageName}'" '' 64 - DIR=$(pwd) 50 + local DIR=$PWD 65 51 cd $TMPDIR 66 52 67 - unpackFile ${src} 53 + unpackFile $src 68 54 69 55 # Make the base dir in which the target dependency resides first 70 - mkdir -p "$(dirname "$DIR/${packageName}")" 56 + mkdir -p "$(dirname "$DIR/$packageName")" 71 57 72 - if [ -f "${src}" ] 58 + if [ -f "$src" ] 73 59 then 74 60 # Figure out what directory has been unpacked 75 61 packageDir="$(find . -maxdepth 1 -type d | tail -1)" ··· 79 65 chmod -R u+w "$packageDir" 80 66 81 67 # Move the extracted tarball into the output folder 82 - mv "$packageDir" "$DIR/${packageName}" 83 - elif [ -d "${src}" ] 68 + mv "$packageDir" "$DIR/$packageName" 69 + elif [ -d "$src" ] 84 70 then 85 71 # Get a stripped name (without hash) of the source directory. 86 72 # On old nixpkgs it's already set internally. 87 73 if [ -z "$strippedName" ] 88 74 then 89 - strippedName="$(stripHash ${src})" 75 + strippedName="$(stripHash $src)" 90 76 fi 91 77 92 78 # Restore write permissions to make building work 93 79 chmod -R u+w "$strippedName" 94 80 95 81 # Move the extracted directory into the output folder 96 - mv "$strippedName" "$DIR/${packageName}" 82 + mv "$strippedName" "$DIR/$packageName" 97 83 fi 98 84 99 - # Unset the stripped name to not confuse the next unpack step 100 - unset strippedName 85 + # Change to the package directory to install dependencies 86 + cd "$DIR/$packageName" 87 + } 88 + ''; 89 + 90 + # Bundle the dependencies of the package 91 + # 92 + # Only include dependencies if they don't exist. They may also be bundled in the package. 93 + includeDependencies = {dependencies}: 94 + lib.optionalString (dependencies != []) ( 95 + '' 96 + mkdir -p node_modules 97 + cd node_modules 98 + '' 99 + + (lib.concatMapStrings (dependency: 100 + '' 101 + if [ ! -e "${dependency.name}" ]; then 102 + ${composePackage dependency} 103 + fi 104 + '' 105 + ) dependencies) 106 + + '' 107 + cd .. 108 + '' 109 + ); 101 110 102 - # Include the dependencies of the package 103 - cd "$DIR/${packageName}" 111 + # Recursively composes the dependencies of a package 112 + composePackage = { name, packageName, src, dependencies ? [], ... }@args: 113 + builtins.addErrorContext "while evaluating node package '${packageName}'" '' 114 + installPackage "${packageName}" "${src}" 104 115 ${includeDependencies { inherit dependencies; }} 105 116 cd .. 106 117 ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} ··· 415 426 passAsFile = [ "compositionScript" "pinpointDependenciesScript" ]; 416 427 417 428 installPhase = '' 429 + source ${installPackage} 430 + 418 431 # Create and enter a root node_modules/ folder 419 432 mkdir -p $out/lib/node_modules 420 433 cd $out/lib/node_modules ··· 492 505 passAsFile = [ "includeScript" "pinpointDependenciesScript" ]; 493 506 494 507 installPhase = '' 508 + source ${installPackage} 509 + 495 510 mkdir -p $out/${packageName} 496 511 cd $out/${packageName} 497 512
+1 -1
pkgs/servers/mjolnir/update.sh
··· 20 20 cd "$(dirname "${BASH_SOURCE[0]}")" 21 21 22 22 node2nix \ 23 - --nodejs-12 \ 23 + --nodejs-14 \ 24 24 --development \ 25 25 --node-env ./node-env.nix \ 26 26 --output ./node-deps.nix \
+3 -3
pkgs/tools/misc/miniserve/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "miniserve"; 14 - version = "0.19.0"; 14 + version = "0.19.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "svenstaro"; 18 18 repo = "miniserve"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-2/LBldSIiAFMY8ytMurbPfLQoKn1FNn6hfMozD48LaI="; 20 + sha256 = "sha256-pKNcgrhq5sh6AXKCStAIYAjTpW+tcnSheFHohp+Z84k="; 21 21 }; 22 22 23 - cargoSha256 = "sha256-0EuYYaH0Quy6wvuUsy9u/ayf/8zToTtTJzvYCWNk8ac="; 23 + cargoSha256 = "sha256-QonLcAixRR7HEefU6D7cSF/stWFodWLWQI7HAkPJHrY="; 24 24 25 25 nativeBuildInputs = [ installShellFiles pkg-config zlib ]; 26 26 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
+2 -2
pkgs/tools/misc/mmctl/default.nix
··· 1 1 { lib, fetchFromGitHub, buildGoModule }: 2 2 buildGoModule rec { 3 3 pname = "mmctl"; 4 - version = "6.3.0"; 4 + version = "6.3.3"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "mattermost"; 8 8 repo = "mmctl"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-hrNVDHM8AweAdda9SC29EGhkOhdiLD0EE1BLPhwe5SI="; 10 + sha256 = "sha256-V2p6diXymu37aJdHs0ZQJ7ak4LWe55KYCq15JRzMF48="; 11 11 }; 12 12 13 13 vendorSha256 = null;
+2 -2
pkgs/tools/misc/remind/default.nix
··· 16 16 in 17 17 tcl.mkTclDerivation rec { 18 18 pname = "remind"; 19 - version = "03.03.12"; 19 + version = "03.04.00"; 20 20 21 21 src = fetchurl { 22 22 url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz"; 23 - sha256 = "sha256-1KpM2lobU+KsxjHpNeAxwAx3mCrU8IZyhvfYJwlUQJ4="; 23 + sha256 = "sha256-uIpIygxV5l122FN8sz+OMeQh8iL4Vy87EM1/CjFvLVI="; 24 24 }; 25 25 26 26 propagatedBuildInputs = tclLibraries;
+3 -3
pkgs/tools/networking/minio-client/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "minio-client"; 5 - version = "2022-02-07T09-25-34Z"; 5 + version = "2022-02-13T23-26-13Z"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "minio"; 9 9 repo = "mc"; 10 10 rev = "RELEASE.${version}"; 11 - sha256 = "sha256-EoRJK+0C1SYKRrCoddCNkjyVV7yJp0vekYUD6yf86Rs="; 11 + sha256 = "sha256-1Led0OTJO/nN8NisLD/of5IybwYOygsL4xwQmXYCxfs="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-tJh+ElqKG3HUex2VT2YoawVZYq9rtK1X24E1GpDuOPA="; 14 + vendorSha256 = "sha256-DDtpRKBetVyeUYk0OGddKkAEe3mqL7d+cbSdIbXeZ2s="; 15 15 16 16 subPackages = [ "." ]; 17 17
+11 -10
pkgs/tools/networking/openfortivpn/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config 2 - , openssl, ppp 3 - , systemd ? null }: 4 - 5 - let 6 - withSystemd = stdenv.isLinux && !(systemd == null); 2 + , openssl 3 + , ppp 4 + , systemd 5 + , withSystemd ? stdenv.isLinux 6 + , withPpp ? stdenv.isLinux 7 + }: 7 8 8 - in 9 9 stdenv.mkDerivation rec { 10 10 pname = "openfortivpn"; 11 11 version = "1.17.1"; ··· 26 26 nativeBuildInputs = [ autoreconfHook pkg-config ]; 27 27 28 28 buildInputs = [ 29 - openssl ppp 29 + openssl 30 30 ] 31 - ++ lib.optional withSystemd systemd; 31 + ++ lib.optional withSystemd systemd 32 + ++ lib.optional withPpp ppp; 32 33 33 34 configureFlags = [ 34 35 "--sysconfdir=/etc" 35 - "--with-pppd=${ppp}/bin/pppd" 36 36 ] 37 - ++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"; 37 + ++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 38 + ++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd"; 38 39 39 40 enableParallelBuilding = true; 40 41
+2 -2
pkgs/tools/package-management/nix/default.nix
··· 58 58 }; 59 59 60 60 nix_2_6 = common { 61 - version = "2.6.0"; 62 - sha256 = "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg="; 61 + version = "2.6.1"; 62 + sha256 = "sha256-E9iQ7f+9Z6xFcUvvfksTEfn8LsDfzmwrcRBC//5B3V0="; 63 63 }; 64 64 65 65 stable = self.nix_2_6;
+2 -2
pkgs/tools/security/exploitdb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "exploitdb"; 5 - version = "2022-02-11"; 5 + version = "2022-02-17"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "offensive-security"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-pSvjTL/vS3E9jYGxae9RUw+DD9u49PoF7oNM/UZOzDg="; 11 + sha256 = "sha256-qmddjXZq4SLsAMEIMtpkXURfTUEDjXnkFGXLt/zrk9s="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+1
pkgs/tools/security/john/default.nix
··· 40 40 nativeBuildInputs = [ gcc python3Packages.wrapPython perl makeWrapper ]; 41 41 propagatedBuildInputs = (with python3Packages; [ dpkt scapy lxml ]) ++ # For pcap2john.py 42 42 (with perlPackages; [ DigestMD4 DigestSHA1 GetoptLong # For pass_gen.pl 43 + CompressRawLzma # For 7z2john.pl 43 44 perlldap ]); # For sha-dump.pl 44 45 # TODO: Get dependencies for radius2john.pl and lion2john-alt.pl 45 46
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 source "https://rubygems.org" 3 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.29" 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.30"
+39 -39
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 1 GIT 2 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: 61b21e59fe8f4f65fba27f88d49782dece0aad00 4 - ref: refs/tags/6.1.29 3 + revision: aab66244adaadb275bd780c1301fea51f444426a 4 + ref: refs/tags/6.1.30 5 5 specs: 6 - metasploit-framework (6.1.29) 6 + metasploit-framework (6.1.30) 7 7 actionpack (~> 6.0) 8 8 activerecord (~> 6.0) 9 9 activesupport (~> 6.0) ··· 31 31 metasploit-concern 32 32 metasploit-credential 33 33 metasploit-model 34 - metasploit-payloads (= 2.0.72) 34 + metasploit-payloads (= 2.0.74) 35 35 metasploit_data_models 36 36 metasploit_payloads-mettle (= 1.0.18) 37 37 mqtt ··· 98 98 remote: https://rubygems.org/ 99 99 specs: 100 100 Ascii85 (1.1.0) 101 - actionpack (6.1.4.4) 102 - actionview (= 6.1.4.4) 103 - activesupport (= 6.1.4.4) 101 + actionpack (6.1.4.6) 102 + actionview (= 6.1.4.6) 103 + activesupport (= 6.1.4.6) 104 104 rack (~> 2.0, >= 2.0.9) 105 105 rack-test (>= 0.6.3) 106 106 rails-dom-testing (~> 2.0) 107 107 rails-html-sanitizer (~> 1.0, >= 1.2.0) 108 - actionview (6.1.4.4) 109 - activesupport (= 6.1.4.4) 108 + actionview (6.1.4.6) 109 + activesupport (= 6.1.4.6) 110 110 builder (~> 3.1) 111 111 erubi (~> 1.4) 112 112 rails-dom-testing (~> 2.0) 113 113 rails-html-sanitizer (~> 1.1, >= 1.2.0) 114 - activemodel (6.1.4.4) 115 - activesupport (= 6.1.4.4) 116 - activerecord (6.1.4.4) 117 - activemodel (= 6.1.4.4) 118 - activesupport (= 6.1.4.4) 119 - activesupport (6.1.4.4) 114 + activemodel (6.1.4.6) 115 + activesupport (= 6.1.4.6) 116 + activerecord (6.1.4.6) 117 + activemodel (= 6.1.4.6) 118 + activesupport (= 6.1.4.6) 119 + activesupport (6.1.4.6) 120 120 concurrent-ruby (~> 1.0, >= 1.0.2) 121 121 i18n (>= 1.6, < 2) 122 122 minitest (>= 5.1) ··· 128 128 arel-helpers (2.14.0) 129 129 activerecord (>= 3.1.0, < 8) 130 130 aws-eventstream (1.2.0) 131 - aws-partitions (1.554.0) 132 - aws-sdk-core (3.126.0) 131 + aws-partitions (1.555.0) 132 + aws-sdk-core (3.126.2) 133 133 aws-eventstream (~> 1, >= 1.0.2) 134 134 aws-partitions (~> 1, >= 1.525.0) 135 135 aws-sigv4 (~> 1.1) 136 136 jmespath (~> 1.0) 137 - aws-sdk-ec2 (1.298.0) 137 + aws-sdk-ec2 (1.299.0) 138 138 aws-sdk-core (~> 3, >= 3.126.0) 139 139 aws-sigv4 (~> 1.1) 140 - aws-sdk-iam (1.66.0) 140 + aws-sdk-iam (1.67.0) 141 141 aws-sdk-core (~> 3, >= 3.126.0) 142 142 aws-sigv4 (~> 1.1) 143 143 aws-sdk-kms (1.54.0) ··· 175 175 eventmachine (1.2.7) 176 176 faker (2.19.0) 177 177 i18n (>= 1.6, < 2) 178 - faraday (1.9.3) 178 + faraday (1.10.0) 179 179 faraday-em_http (~> 1.0) 180 180 faraday-em_synchrony (~> 1.0) 181 181 faraday-excon (~> 1.1) ··· 216 216 domain_name (~> 0.5) 217 217 http_parser.rb (0.8.0) 218 218 httpclient (2.8.3) 219 - i18n (1.9.1) 219 + i18n (1.10.0) 220 220 concurrent-ruby (~> 1.0) 221 221 io-console (0.5.11) 222 222 irb (1.3.6) 223 223 reline (>= 0.2.5) 224 - jmespath (1.5.0) 224 + jmespath (1.6.0) 225 225 jsobfu (0.4.2) 226 226 rkelly-remix 227 227 json (2.6.1) ··· 229 229 logging (2.3.0) 230 230 little-plugger (~> 1.1) 231 231 multi_json (~> 1.14) 232 - loofah (2.13.0) 232 + loofah (2.14.0) 233 233 crass (~> 1.0.2) 234 234 nokogiri (>= 1.5.9) 235 235 metasm (1.0.5) ··· 251 251 activemodel (~> 6.0) 252 252 activesupport (~> 6.0) 253 253 railties (~> 6.0) 254 - metasploit-payloads (2.0.72) 254 + metasploit-payloads (2.0.74) 255 255 metasploit_data_models (5.0.4) 256 256 activerecord (~> 6.0) 257 257 activesupport (~> 6.0) ··· 267 267 mini_portile2 (2.7.1) 268 268 minitest (5.15.0) 269 269 mqtt (0.5.0) 270 - msgpack (1.4.4) 270 + msgpack (1.4.5) 271 271 multi_json (1.15.0) 272 272 multipart-post (2.1.1) 273 273 mustermann (1.1.1) ··· 298 298 hashery (~> 2.0) 299 299 ruby-rc4 300 300 ttfunk 301 - pg (1.3.1) 301 + pg (1.3.2) 302 302 public_suffix (4.0.6) 303 - puma (5.6.1) 303 + puma (5.6.2) 304 304 nio4r (~> 2.0) 305 305 racc (1.6.0) 306 306 rack (2.2.3) 307 - rack-protection (2.1.0) 307 + rack-protection (2.2.0) 308 308 rack 309 309 rack-test (1.1.0) 310 310 rack (>= 1.0, < 3) ··· 313 313 nokogiri (>= 1.6) 314 314 rails-html-sanitizer (1.4.2) 315 315 loofah (~> 2.3) 316 - railties (6.1.4.4) 317 - actionpack (= 6.1.4.4) 318 - activesupport (= 6.1.4.4) 316 + railties (6.1.4.6) 317 + actionpack (= 6.1.4.6) 318 + activesupport (= 6.1.4.6) 319 319 method_source 320 320 rake (>= 0.13) 321 321 thor (~> 1.0) ··· 334 334 rex-core 335 335 rex-struct2 336 336 rex-text 337 - rex-core (0.1.25) 337 + rex-core (0.1.26) 338 338 rex-encoder (0.1.6) 339 339 metasm 340 340 rex-arch ··· 353 353 rex-arch 354 354 rex-ole (0.1.7) 355 355 rex-text 356 - rex-powershell (0.1.94) 356 + rex-powershell (0.1.95) 357 357 rex-random_identifier 358 358 rex-text 359 359 ruby-rc4 ··· 379 379 ruby-macho (3.0.0) 380 380 ruby-rc4 (0.1.5) 381 381 ruby2_keywords (0.0.5) 382 - ruby_smb (3.0.2) 382 + ruby_smb (3.0.4) 383 383 bindata 384 384 openssl-ccm 385 385 openssl-cmac ··· 392 392 faraday (> 0.8, < 2.0) 393 393 simpleidn (0.2.1) 394 394 unf (~> 0.1.4) 395 - sinatra (2.1.0) 395 + sinatra (2.2.0) 396 396 mustermann (~> 1.0) 397 397 rack (~> 2.2) 398 - rack-protection (= 2.1.0) 398 + rack-protection (= 2.2.0) 399 399 tilt (~> 2.0) 400 400 sqlite3 (1.4.2) 401 401 sshkey (2.0.0) ··· 432 432 logging (>= 1.6.1, < 3.0) 433 433 nori (~> 2.0) 434 434 rubyntlm (~> 0.6.0, >= 0.6.3) 435 - xdr (3.0.2) 436 - activemodel (>= 4.2, < 7.0) 437 - activesupport (>= 4.2, < 7.0) 435 + xdr (3.0.3) 436 + activemodel (>= 4.2, < 8.0) 437 + activesupport (>= 4.2, < 8.0) 438 438 xmlrpc (0.3.2) 439 439 webrick 440 440 zeitwerk (2.5.4)
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 15 15 }; 16 16 in stdenv.mkDerivation rec { 17 17 pname = "metasploit-framework"; 18 - version = "6.1.29"; 18 + version = "6.1.30"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "rapid7"; 22 22 repo = "metasploit-framework"; 23 23 rev = version; 24 - sha256 = "sha256-S0R9D6Tih9+aVdYkpAodfwcRCq8WaqaJ5oYuPl7PgK8="; 24 + sha256 = "sha256-QSKJIcHaWsxbHe2uTW5MnZFMoK1fOa6TejIT2Mq0z7k="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ makeWrapper ];
+51 -51
pkgs/tools/security/metasploit/gemset.nix
··· 4 4 platforms = []; 5 5 source = { 6 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "171ida68hrk21cq1zz1kfl9h94a3qw5p3afviqzsirl0kx6qjyv9"; 7 + sha256 = "1d4nxv0p3wv4w0pf89nmxzg10balny5rwbchwsscgiminzh3mg7y"; 8 8 type = "gem"; 9 9 }; 10 - version = "6.1.4.4"; 10 + version = "6.1.4.6"; 11 11 }; 12 12 actionview = { 13 13 groups = ["default"]; 14 14 platforms = []; 15 15 source = { 16 16 remotes = ["https://rubygems.org"]; 17 - sha256 = "1lm2pf35p6q4ff78z175h6ihmzfg2j7ssn41374rb9iy9gpiiidm"; 17 + sha256 = "0cmxc80gg7pm6d9y7ah5qr4ymzks8rp51jv0a2qdq2m9p6llzlkk"; 18 18 type = "gem"; 19 19 }; 20 - version = "6.1.4.4"; 20 + version = "6.1.4.6"; 21 21 }; 22 22 activemodel = { 23 23 groups = ["default"]; 24 24 platforms = []; 25 25 source = { 26 26 remotes = ["https://rubygems.org"]; 27 - sha256 = "0g3qdz8dw6zkgz45jd13lwfdnm7rhgczv1pssw63g9k6qj3bkxjm"; 27 + sha256 = "0izra8g3g1agv3mz72b0474adkj4ldszj3nwk3l0szgrln7df0lv"; 28 28 type = "gem"; 29 29 }; 30 - version = "6.1.4.4"; 30 + version = "6.1.4.6"; 31 31 }; 32 32 activerecord = { 33 33 groups = ["default"]; 34 34 platforms = []; 35 35 source = { 36 36 remotes = ["https://rubygems.org"]; 37 - sha256 = "090d4wl1pq06m9mibpck0m5nm8h45fwhs3fjx27297kjmnv4gzik"; 37 + sha256 = "15v0dwp2122yzwlw8ca0lgx5qbw8fsasbn8zzcks1mvmc9afisss"; 38 38 type = "gem"; 39 39 }; 40 - version = "6.1.4.4"; 40 + version = "6.1.4.6"; 41 41 }; 42 42 activesupport = { 43 43 groups = ["default"]; 44 44 platforms = []; 45 45 source = { 46 46 remotes = ["https://rubygems.org"]; 47 - sha256 = "0rvnz9lsf9mrkpji748sf51f54m027snkw6rm8flyvf7fq18rm98"; 47 + sha256 = "0vrz4vgqz4grr2ykwkd8zhhd0rg12z89n89zl6aff17zrdhhad35"; 48 48 type = "gem"; 49 49 }; 50 - version = "6.1.4.4"; 50 + version = "6.1.4.6"; 51 51 }; 52 52 addressable = { 53 53 groups = ["default"]; ··· 104 104 platforms = []; 105 105 source = { 106 106 remotes = ["https://rubygems.org"]; 107 - sha256 = "0c5dyi1hy9xawlicdfzakj279r514vmb93kpwfa92lbb9bz1plg5"; 107 + sha256 = "0r3ihnddcizpf34mcfggyjii8lmjyy1q89mswpbzqa5mxvws85qg"; 108 108 type = "gem"; 109 109 }; 110 - version = "1.554.0"; 110 + version = "1.555.0"; 111 111 }; 112 112 aws-sdk-core = { 113 113 groups = ["default"]; 114 114 platforms = []; 115 115 source = { 116 116 remotes = ["https://rubygems.org"]; 117 - sha256 = "002hgcpsch33r82jd5imyxj0h2w4v8ymmby42rnxdisd03jkygy9"; 117 + sha256 = "19xi4dr675f7x9dmk1fc10jmjdgv45j3dn9k44m5xavd3qnpzx7v"; 118 118 type = "gem"; 119 119 }; 120 - version = "3.126.0"; 120 + version = "3.126.2"; 121 121 }; 122 122 aws-sdk-ec2 = { 123 123 groups = ["default"]; 124 124 platforms = []; 125 125 source = { 126 126 remotes = ["https://rubygems.org"]; 127 - sha256 = "0s0xdcrhmcgbh4m1g57dnw04g45zviv6a4r3qaw8468bm6bi16z6"; 127 + sha256 = "13kl993psm21mni2g3llyj6b1nzway8kcabnrblnrjkd4d4fg3v7"; 128 128 type = "gem"; 129 129 }; 130 - version = "1.298.0"; 130 + version = "1.299.0"; 131 131 }; 132 132 aws-sdk-iam = { 133 133 groups = ["default"]; 134 134 platforms = []; 135 135 source = { 136 136 remotes = ["https://rubygems.org"]; 137 - sha256 = "0dr1lgg76syyqj12x8w0j6qvwn3410vdjhy0r9y8k930svrjlkh7"; 137 + sha256 = "1iv8db2wb3lajcnqx6icn7bdvhrfd7di01c329r95kgw6gzsf7sc"; 138 138 type = "gem"; 139 139 }; 140 - version = "1.66.0"; 140 + version = "1.67.0"; 141 141 }; 142 142 aws-sdk-kms = { 143 143 groups = ["default"]; ··· 344 344 platforms = []; 345 345 source = { 346 346 remotes = ["https://rubygems.org"]; 347 - sha256 = "0y32gj994ll3zlcqjmwp78r7s03iiwayij6fz2pjpkfywgvp71s6"; 347 + sha256 = "00palwawk897p5gypw5wjrh93d4p0xz2yl9w93yicb4kq7amh8d4"; 348 348 type = "gem"; 349 349 }; 350 - version = "1.9.3"; 350 + version = "1.10.0"; 351 351 }; 352 352 faraday-em_http = { 353 353 groups = ["default"]; ··· 564 564 platforms = []; 565 565 source = { 566 566 remotes = ["https://rubygems.org"]; 567 - sha256 = "1nancdgq51wk3c1pkxps0rkjsfdwnkx60hzkm947m5rzsz8b2sw8"; 567 + sha256 = "0b2qyvnk4yynlg17ymkq4g5xgr275637fhl1mjh0valw3cb1fhhg"; 568 568 type = "gem"; 569 569 }; 570 - version = "1.9.1"; 570 + version = "1.10.0"; 571 571 }; 572 572 io-console = { 573 573 groups = ["default"]; ··· 594 594 platforms = []; 595 595 source = { 596 596 remotes = ["https://rubygems.org"]; 597 - sha256 = "1ylph158dc3ql6cvkik00ab6gf2k1rv2dii63m196xclhkzwfyan"; 597 + sha256 = "1gjrr5pdcl3l3skhp9d0jzs4yhmknpv3ldcz59b339b9lqbqasnr"; 598 598 type = "gem"; 599 599 }; 600 - version = "1.5.0"; 600 + version = "1.6.0"; 601 601 }; 602 602 jsobfu = { 603 603 groups = ["default"]; ··· 644 644 platforms = []; 645 645 source = { 646 646 remotes = ["https://rubygems.org"]; 647 - sha256 = "17rvbrqcci1579d7dpbsfmz1f9g7msk82lyh9ip5h29dkrnixcgg"; 647 + sha256 = "0z8bdcmw66j3dy6ivcc02yq32lx3n9bavx497llln8qy014xjm4w"; 648 648 type = "gem"; 649 649 }; 650 - version = "2.13.0"; 650 + version = "2.14.0"; 651 651 }; 652 652 metasm = { 653 653 groups = ["default"]; ··· 684 684 platforms = []; 685 685 source = { 686 686 fetchSubmodules = false; 687 - rev = "61b21e59fe8f4f65fba27f88d49782dece0aad00"; 688 - sha256 = "1bw0rxg3wbl6ws4scshnmw5121vz3l5a896nanddz1z2lh7psi2b"; 687 + rev = "aab66244adaadb275bd780c1301fea51f444426a"; 688 + sha256 = "1ffgnk5dh4rjga9swfazmnh4r4cx9ip4vbpd3mdwqnnsq4hqj8j1"; 689 689 type = "git"; 690 690 url = "https://github.com/rapid7/metasploit-framework"; 691 691 }; 692 - version = "6.1.29"; 692 + version = "6.1.30"; 693 693 }; 694 694 metasploit-model = { 695 695 groups = ["default"]; ··· 706 706 platforms = []; 707 707 source = { 708 708 remotes = ["https://rubygems.org"]; 709 - sha256 = "0ybw1daczslifq684hjxmr5668w7db1fi0z6g53812yva7lf4sv6"; 709 + sha256 = "03q70mqn38chhm9cmjh6k4ch5jsrgf2id09jv0ylkn3vsrrjfzpg"; 710 710 type = "gem"; 711 711 }; 712 - version = "2.0.72"; 712 + version = "2.0.74"; 713 713 }; 714 714 metasploit_data_models = { 715 715 groups = ["default"]; ··· 776 776 platforms = []; 777 777 source = { 778 778 remotes = ["https://rubygems.org"]; 779 - sha256 = "0b98w2j7g89ihnc753hh3if68r5qrmdp9n2j6mvqy2yl73sbv739"; 779 + sha256 = "1cshgsx3hmpgx639xyqjqa2q3hgrhlyr9rpwhsglsx529alqq125"; 780 780 type = "gem"; 781 781 }; 782 - version = "1.4.4"; 782 + version = "1.4.5"; 783 783 }; 784 784 multi_json = { 785 785 groups = ["default"]; ··· 977 977 platforms = []; 978 978 source = { 979 979 remotes = ["https://rubygems.org"]; 980 - sha256 = "1zn1miz2h3pki11jwf6f474540kvai3sc43jp8smi3mjx8brvws0"; 980 + sha256 = "0m776cj2hik15wi730vhgczd5v9s0xmi45q2hgcf5m5cnqvfih35"; 981 981 type = "gem"; 982 982 }; 983 - version = "1.3.1"; 983 + version = "1.3.2"; 984 984 }; 985 985 public_suffix = { 986 986 groups = ["default"]; ··· 997 997 platforms = []; 998 998 source = { 999 999 remotes = ["https://rubygems.org"]; 1000 - sha256 = "03blhf8snz59433zsv7apwqy1hg92yhkb5am9x2dpqr0c4i6hscs"; 1000 + sha256 = "1np2myaxlk5iab1zarwgmp7zsjvm5j8ssg35ijv8b6dpvc3cjd56"; 1001 1001 type = "gem"; 1002 1002 }; 1003 - version = "5.6.1"; 1003 + version = "5.6.2"; 1004 1004 }; 1005 1005 racc = { 1006 1006 groups = ["default"]; ··· 1027 1027 platforms = []; 1028 1028 source = { 1029 1029 remotes = ["https://rubygems.org"]; 1030 - sha256 = "159a4j4kragqh0z0z8vrpilpmaisnlz3n7kgiyf16bxkwlb3qlhz"; 1030 + sha256 = "1hz6h6d67r217qi202qmxq2xkn3643ay3iybhl3dq3qd6j8nm3b2"; 1031 1031 type = "gem"; 1032 1032 }; 1033 - version = "2.1.0"; 1033 + version = "2.2.0"; 1034 1034 }; 1035 1035 rack-test = { 1036 1036 groups = ["default"]; ··· 1067 1067 platforms = []; 1068 1068 source = { 1069 1069 remotes = ["https://rubygems.org"]; 1070 - sha256 = "1nmyds2www6dmqbbd5ggq31gxxb9mwxd5llzmb3iyczssk6l7lla"; 1070 + sha256 = "1snhwpbnmsyhr297qmin8i5i631aimjca1hiazi128i1355255hb"; 1071 1071 type = "gem"; 1072 1072 }; 1073 - version = "6.1.4.4"; 1073 + version = "6.1.4.6"; 1074 1074 }; 1075 1075 rake = { 1076 1076 groups = ["default"]; ··· 1147 1147 platforms = []; 1148 1148 source = { 1149 1149 remotes = ["https://rubygems.org"]; 1150 - sha256 = "04w1pknswnjs02fgsqcr8dx6cz3qjmx7hs83kbhn836s4yfpyv6a"; 1150 + sha256 = "1hjc70q6wb580k0jk4g4s9aqwd25l48kr0pcyjjs2ffax0zcm4d0"; 1151 1151 type = "gem"; 1152 1152 }; 1153 - version = "0.1.25"; 1153 + version = "0.1.26"; 1154 1154 }; 1155 1155 rex-encoder = { 1156 1156 groups = ["default"]; ··· 1217 1217 platforms = []; 1218 1218 source = { 1219 1219 remotes = ["https://rubygems.org"]; 1220 - sha256 = "0ib75d16j8z0chni7m9v74xpxf13164hh8kr7v7yg93zpsqxw6p5"; 1220 + sha256 = "0ydzvakfg8can56jn0i8qnrf742csyk82krj50b44sj93ncj7h54"; 1221 1221 type = "gem"; 1222 1222 }; 1223 - version = "0.1.94"; 1223 + version = "0.1.95"; 1224 1224 }; 1225 1225 rex-random_identifier = { 1226 1226 groups = ["default"]; ··· 1357 1357 platforms = []; 1358 1358 source = { 1359 1359 remotes = ["https://rubygems.org"]; 1360 - sha256 = "13sp6bqgj06h7jkw5qvafwawfh2akyrsj38vq8qkjfjdg79pkbxf"; 1360 + sha256 = "0w7ywnf3b3dsfqarj9yc21q1f5p29vs359x5d7sipvc0ljdwn95l"; 1361 1361 type = "gem"; 1362 1362 }; 1363 - version = "3.0.2"; 1363 + version = "3.0.4"; 1364 1364 }; 1365 1365 rubyntlm = { 1366 1366 groups = ["default"]; ··· 1407 1407 platforms = []; 1408 1408 source = { 1409 1409 remotes = ["https://rubygems.org"]; 1410 - sha256 = "0dd53rzpkxgs697pycbhhgc9vcnxra4ly4xar8ni6aiydx2f88zk"; 1410 + sha256 = "1x3rci7k30g96y307hvglpdgm3f7nga3k3n4i8n1v2xxx290800y"; 1411 1411 type = "gem"; 1412 1412 }; 1413 - version = "2.1.0"; 1413 + version = "2.2.0"; 1414 1414 }; 1415 1415 sqlite3 = { 1416 1416 groups = ["default"]; ··· 1607 1607 platforms = []; 1608 1608 source = { 1609 1609 remotes = ["https://rubygems.org"]; 1610 - sha256 = "019yzxddyndc7m7basars0m380m27sfcq99vr5hk1ag4ymayqkwr"; 1610 + sha256 = "1vsimn1vha6qjh1zbkvma5biwlh3hzc6s24ksw7vsxg0z27m8bmz"; 1611 1611 type = "gem"; 1612 1612 }; 1613 - version = "3.0.2"; 1613 + version = "3.0.3"; 1614 1614 }; 1615 1615 xmlrpc = { 1616 1616 groups = ["default"];
+2
pkgs/top-level/all-packages.nix
··· 25647 25647 fftw = fftwSinglePrec; 25648 25648 }; 25649 25649 25650 + gurk-rs = callPackage ../applications/networking/instant-messengers/gurk-rs { }; 25651 + 25650 25652 gjay = callPackage ../applications/audio/gjay { }; 25651 25653 25652 25654 photivo = callPackage ../applications/graphics/photivo { };
+2
pkgs/top-level/linux-kernels.nix
··· 440 440 441 441 vhba = callPackage ../applications/emulators/cdemu/vhba.nix { }; 442 442 443 + virtio_vmmci = callPackage ../os-specific/linux/virtio_vmmci { }; 444 + 443 445 virtualbox = callPackage ../os-specific/linux/virtualbox { 444 446 virtualbox = pkgs.virtualboxHardened; 445 447 };