lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
6e5f43a5 44026c97

+721 -1195
+24 -11
nixos/lib/systemd-lib.nix
··· 187 187 done 188 188 done 189 189 190 - # Symlink all units defined by systemd.units. If these are also 191 - # provided by systemd or systemd.packages, then add them as 190 + # Symlink units defined by systemd.units where override strategy 191 + # shall be automatically detected. If these are also provided by 192 + # systemd or systemd.packages, then add them as 192 193 # <unit-name>.d/overrides.conf, which makes them extend the 193 194 # upstream unit. 194 - for i in ${toString (mapAttrsToList (n: v: v.unit) units)}; do 195 + for i in ${toString (mapAttrsToList 196 + (n: v: v.unit) 197 + (lib.filterAttrs (n: v: (attrByPath [ "overrideStrategy" ] "asDropinIfExists" v) == "asDropinIfExists") units))}; do 195 198 fn=$(basename $i/*) 196 199 if [ -e $out/$fn ]; then 197 200 if [ "$(readlink -f $i/$fn)" = /dev/null ]; then ··· 208 211 else 209 212 ln -fs $i/$fn $out/ 210 213 fi 214 + done 215 + 216 + # Symlink units defined by systemd.units which shall be 217 + # treated as drop-in file. 218 + for i in ${toString (mapAttrsToList 219 + (n: v: v.unit) 220 + (lib.filterAttrs (n: v: v ? overrideStrategy && v.overrideStrategy == "asDropin") units))}; do 221 + fn=$(basename $i/*) 222 + mkdir -p $out/$fn.d 223 + ln -s $i/$fn $out/$fn.d/overrides.conf 211 224 done 212 225 213 226 # Create service aliases from aliases option. ··· 340 353 ''; 341 354 342 355 targetToUnit = name: def: 343 - { inherit (def) aliases wantedBy requiredBy enable; 356 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 344 357 text = 345 358 '' 346 359 [Unit] ··· 349 362 }; 350 363 351 364 serviceToUnit = name: def: 352 - { inherit (def) aliases wantedBy requiredBy enable; 365 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 353 366 text = commonUnitText def + 354 367 '' 355 368 [Service] ··· 371 384 }; 372 385 373 386 socketToUnit = name: def: 374 - { inherit (def) aliases wantedBy requiredBy enable; 387 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 375 388 text = commonUnitText def + 376 389 '' 377 390 [Socket] ··· 382 395 }; 383 396 384 397 timerToUnit = name: def: 385 - { inherit (def) aliases wantedBy requiredBy enable; 398 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 386 399 text = commonUnitText def + 387 400 '' 388 401 [Timer] ··· 391 404 }; 392 405 393 406 pathToUnit = name: def: 394 - { inherit (def) aliases wantedBy requiredBy enable; 407 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 395 408 text = commonUnitText def + 396 409 '' 397 410 [Path] ··· 400 413 }; 401 414 402 415 mountToUnit = name: def: 403 - { inherit (def) aliases wantedBy requiredBy enable; 416 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 404 417 text = commonUnitText def + 405 418 '' 406 419 [Mount] ··· 409 422 }; 410 423 411 424 automountToUnit = name: def: 412 - { inherit (def) aliases wantedBy requiredBy enable; 425 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 413 426 text = commonUnitText def + 414 427 '' 415 428 [Automount] ··· 418 431 }; 419 432 420 433 sliceToUnit = name: def: 421 - { inherit (def) aliases wantedBy requiredBy enable; 434 + { inherit (def) aliases wantedBy requiredBy enable overrideStrategy; 422 435 text = commonUnitText def + 423 436 '' 424 437 [Slice]
+16
nixos/lib/systemd-unit-options.nix
··· 48 48 ''; 49 49 }; 50 50 51 + overrideStrategy = mkOption { 52 + default = "asDropinIfExists"; 53 + type = types.enum [ "asDropinIfExists" "asDropin" ]; 54 + description = lib.mdDoc '' 55 + Defines how unit configuration is provided for systemd: 56 + 57 + `asDropinIfExists` creates a unit file when no unit file is provided by the package 58 + otherwise a drop-in file name `overrides.conf`. 59 + 60 + `asDropin` creates a drop-in file named `overrides.conf`. 61 + Mainly needed to define instances for systemd template units (e.g. `systemd-nspawn@mycontainer.service`). 62 + 63 + See also systemd.unit(1). 64 + ''; 65 + }; 66 + 51 67 requiredBy = mkOption { 52 68 default = []; 53 69 type = types.listOf unitNameType;
+7 -4
nixos/modules/services/networking/mosquitto.nix
··· 56 56 default = null; 57 57 description = mdDoc '' 58 58 Specifies the hashed password for the MQTT User. 59 - To generate hashed password install `mosquitto` 60 - package and use `mosquitto_passwd`. 59 + To generate hashed password install the `mosquitto` 60 + package and use `mosquitto_passwd`, then extract 61 + the second field (after the `:`) from the generated 62 + file. 61 63 ''; 62 64 }; 63 65 ··· 68 70 description = mdDoc '' 69 71 Specifies the path to a file containing the 70 72 hashed password for the MQTT user. 71 - To generate hashed password install `mosquitto` 72 - package and use `mosquitto_passwd`. 73 + To generate hashed password install the `mosquitto` 74 + package and use `mosquitto_passwd`, then remove the 75 + `username:` prefix from the generated file. 73 76 ''; 74 77 }; 75 78
+8 -4
nixos/tests/mosquitto.nix
··· 4 4 port = 1888; 5 5 tlsPort = 1889; 6 6 anonPort = 1890; 7 - bindTestPort = 1891; 7 + bindTestPort = 18910; 8 8 password = "VERY_secret"; 9 9 hashedPassword = "$7$101$/WJc4Mp+I+uYE9sR$o7z9rD1EYXHPwEP5GqQj6A7k4W1yVbePlb8TqNcuOLV9WNCiDgwHOB0JHC1WCtdkssqTBduBNUnUGd6kmZvDSw=="; 10 10 topic = "test/foo"; ··· 165 165 for t in threads: t.start() 166 166 for t in threads: t.join() 167 167 168 + def wait_uuid(uuid): 169 + server.wait_for_console_text(uuid) 170 + return None 171 + 168 172 169 173 start_all() 170 174 server.wait_for_unit("mosquitto.service") ··· 203 207 parallel( 204 208 lambda: client1.succeed(subscribe("-i 3688cdd7-aa07-42a4-be22-cb9352917e40", "reader")), 205 209 lambda: [ 206 - server.wait_for_console_text("3688cdd7-aa07-42a4-be22-cb9352917e40"), 210 + wait_uuid("3688cdd7-aa07-42a4-be22-cb9352917e40"), 207 211 client2.succeed(publish("-m test", "writer")) 208 212 ]) 209 213 210 214 parallel( 211 215 lambda: client1.fail(subscribe("-i 24ff16a2-ae33-4a51-9098-1b417153c712", "reader")), 212 216 lambda: [ 213 - server.wait_for_console_text("24ff16a2-ae33-4a51-9098-1b417153c712"), 217 + wait_uuid("24ff16a2-ae33-4a51-9098-1b417153c712"), 214 218 client2.succeed(publish("-m test", "reader")) 215 219 ]) 216 220 ··· 229 233 lambda: client1.succeed(subscribe("-i fd56032c-d9cb-4813-a3b4-6be0e04c8fc3", 230 234 "anonReader", port=${toString anonPort})), 231 235 lambda: [ 232 - server.wait_for_console_text("fd56032c-d9cb-4813-a3b4-6be0e04c8fc3"), 236 + wait_uuid("fd56032c-d9cb-4813-a3b4-6be0e04c8fc3"), 233 237 client2.succeed(publish("-m test", "anonWriter", port=${toString anonPort})) 234 238 ]) 235 239 '';
+11
nixos/tests/systemd-machinectl.nix
··· 44 44 45 45 # not needed, but we want to test the nspawn file generation 46 46 systemd.nspawn.${containerName} = { }; 47 + 48 + systemd.services."systemd-nspawn@${containerName}" = { 49 + serviceConfig.Environment = [ 50 + # Disable tmpfs for /tmp 51 + "SYSTEMD_NSPAWN_TMPFS_TMP=0" 52 + ]; 53 + overrideStrategy = "asDropin"; 54 + }; 47 55 }; 48 56 49 57 testScript = '' ··· 94 102 # Test machinectl stop 95 103 machine.succeed("machinectl stop ${containerName}"); 96 104 machine.wait_until_succeeds("test $(systemctl is-active systemd-nspawn@${containerName}) = inactive"); 105 + 106 + # Test tmpfs for /tmp 107 + machine.fail("mountpoint /tmp"); 97 108 98 109 # Show to to delete the container 99 110 machine.succeed("chattr -i ${containerRoot}/var/empty");
+7 -7
pkgs/applications/audio/mmtc/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mmtc"; 5 - version = "0.2.15"; 5 + version = "0.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "figsoda"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-GQ1SoZE74o8fsXHVdjdEMbdUeefyPb4FXxidcHCy180="; 11 + sha256 = "sha256-fWd349IDlN6XNv7MrqJeLwkmevZoKXLSz8a09YWsNcI="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-2IcOwjYTRl2tCB/YAuDACpgaRKZ/21IKWpVs+koYH3k="; 14 + cargoSha256 = "sha256-WrEC3zWwY1plOn8DrspbJFI3R/fE6yDQT2u2lVubbQU="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17 18 - preFixup = '' 19 - completions=($releaseDir/build/mmtc-*/out/completions) 20 - installShellCompletion $completions/mmtc.{bash,fish} --zsh $completions/_mmtc 18 + postInstall = '' 19 + installManPage artifacts/mmtc.1 20 + installShellCompletion artifacts/mmtc.{bash,fish} --zsh artifacts/_mmtc 21 21 ''; 22 22 23 - GEN_COMPLETIONS = 1; 23 + GEN_ARTIFACTS = "artifacts"; 24 24 25 25 meta = with lib; { 26 26 description = "Minimal mpd terminal client that aims to be simple yet highly configurable";
+2 -2
pkgs/applications/editors/emacs/elisp-packages/emacspeak/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "emacspeak"; 13 - version = "54.0"; 13 + version = "56.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "tvraman"; 17 17 repo = pname; 18 18 rev = version; 19 - hash= "sha256-aOZ8PmkASJKETPhXhE9WQXyJS7SPe+d97fK/piqqzqc="; 19 + hash= "sha256-juy+nQ7DrG818/uTH6Dv/lrrzu8qzPWwi0sX7JrhHK8="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+1 -2
pkgs/applications/misc/plover/default.nix
··· 1 - { lib, fetchFromGitHub, python27Packages, python3Packages, wmctrl, 2 - qtbase, mkDerivationWith }: 1 + { lib, fetchFromGitHub, python3Packages, wmctrl, qtbase, mkDerivationWith }: 3 2 4 3 { 5 4 stable = throw "plover.stable was removed because it used Python 2. Use plover.dev instead."; # added 2022-06-05
+2 -2
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 3 3 versions = if stdenv.isLinux then { 4 4 stable = "0.0.21"; 5 5 ptb = "0.0.34"; 6 - canary = "0.0.140"; 6 + canary = "0.0.142"; 7 7 } else { 8 8 stable = "0.0.264"; 9 9 ptb = "0.0.59"; ··· 22 22 }; 23 23 canary = fetchurl { 24 24 url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz"; 25 - sha256 = "sha256-AEbjkAMeOJ48RVgbVj35Rp26klCsCsDCX+VD5u1xCM0="; 25 + sha256 = "sha256-/EWJC3hFIBqwHa9z4nMWR7CpoaqYY+pvw+1vcq4F0LU="; 26 26 }; 27 27 }; 28 28 aarch64-darwin = {
+471 -261
pkgs/applications/networking/n8n/node-packages.nix
··· 166 166 sha512 = "UA/8dgLy3+ZiwJjAZHxL4MUB14fFQPkaAOZ94jsTW/Z6WmoOeny2+cLk0+dyIX/iH6qSrEWKwbStEeB970B9pA=="; 167 167 }; 168 168 }; 169 - "@azure/msal-browser-2.29.0" = { 169 + "@azure/msal-browser-2.30.0" = { 170 170 name = "_at_azure_slash_msal-browser"; 171 171 packageName = "@azure/msal-browser"; 172 - version = "2.29.0"; 172 + version = "2.30.0"; 173 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.29.0.tgz"; 175 - sha512 = "ezrB0qL1WsJSNgvLmAN5vKr/4pH28UYLe8JUZeHzB6Z408JU8qYXXGnHAhDPzpDg0g91eG05IdIVrLwxk/i15g=="; 174 + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.30.0.tgz"; 175 + sha512 = "4Y9+rjJiTFP7KEmuq1btmIrBgk0ImNyKsXj6A6NHZALd1X0M6W7L7kxpH6F+d1tEkMv8bYnZdn7IcauXbL8Llw=="; 176 176 }; 177 177 }; 178 - "@azure/msal-common-7.5.0" = { 178 + "@azure/msal-common-7.6.0" = { 179 179 name = "_at_azure_slash_msal-common"; 180 180 packageName = "@azure/msal-common"; 181 - version = "7.5.0"; 181 + version = "7.6.0"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.5.0.tgz"; 184 - sha512 = "W+SIsGSjkUAyDggA/6QVMKErttQ/8Bq9l/7ADr7GJwt9JFsc+XNBdQDsOsUvZ7YCVkZcSgzJw2MZJLIBqfQtQA=="; 183 + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-7.6.0.tgz"; 184 + sha512 = "XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q=="; 185 185 }; 186 186 }; 187 - "@azure/msal-node-1.14.1" = { 187 + "@azure/msal-node-1.14.2" = { 188 188 name = "_at_azure_slash_msal-node"; 189 189 packageName = "@azure/msal-node"; 190 - version = "1.14.1"; 190 + version = "1.14.2"; 191 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.1.tgz"; 193 - sha512 = "RftjLd35xlafh5cPT17zrzpYdcsbHKJal7R/FTbThpbetSk8y8vQHUzNwWNhBM6GFFiyMS4IQ+zs+z8bgJ4sKQ=="; 192 + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.2.tgz"; 193 + sha512 = "t3whVhhLdZVVeDEtUPD2Wqfa8BDi3EDMnpWp8dbuRW0GhUpikBfs4AQU0Fe6P9zS87n9LpmUTLrIcPEEuzkvfA=="; 194 194 }; 195 195 }; 196 - "@azure/storage-blob-12.11.0" = { 196 + "@azure/storage-blob-12.12.0" = { 197 197 name = "_at_azure_slash_storage-blob"; 198 198 packageName = "@azure/storage-blob"; 199 - version = "12.11.0"; 199 + version = "12.12.0"; 200 + src = fetchurl { 201 + url = "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.12.0.tgz"; 202 + sha512 = "o/Mf6lkyYG/eBW4/hXB9864RxVNmAkcKHjsGR6Inlp5hupa3exjSyH2KjO3tLO//YGA+tS+17hM2bxRl9Sn16g=="; 203 + }; 204 + }; 205 + "@babel/parser-7.20.0" = { 206 + name = "_at_babel_slash_parser"; 207 + packageName = "@babel/parser"; 208 + version = "7.20.0"; 200 209 src = fetchurl { 201 - url = "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.11.0.tgz"; 202 - sha512 = "na+FisoARuaOWaHWpmdtk3FeuTWf2VWamdJ9/TJJzj5ZdXPLC3juoDgFs6XVuJIoK30yuBpyFBEDXVRK4pB7Tg=="; 210 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.20.0.tgz"; 211 + sha512 = "G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg=="; 203 212 }; 204 213 }; 205 - "@babel/runtime-7.19.4" = { 214 + "@babel/runtime-7.20.0" = { 206 215 name = "_at_babel_slash_runtime"; 207 216 packageName = "@babel/runtime"; 208 - version = "7.19.4"; 217 + version = "7.20.0"; 218 + src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.0.tgz"; 220 + sha512 = "NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q=="; 221 + }; 222 + }; 223 + "@codemirror/autocomplete-6.3.0" = { 224 + name = "_at_codemirror_slash_autocomplete"; 225 + packageName = "@codemirror/autocomplete"; 226 + version = "6.3.0"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.3.0.tgz"; 229 + sha512 = "4jEvh3AjJZTDKazd10J6ZsCIqaYxDMCeua5ouQxY8hlFIml+nr7le0SgBhT3SIytFBmdzPK3AUhXGuW3T79nVg=="; 230 + }; 231 + }; 232 + "@codemirror/commands-6.1.2" = { 233 + name = "_at_codemirror_slash_commands"; 234 + packageName = "@codemirror/commands"; 235 + version = "6.1.2"; 236 + src = fetchurl { 237 + url = "https://registry.npmjs.org/@codemirror/commands/-/commands-6.1.2.tgz"; 238 + sha512 = "sO3jdX1s0pam6lIdeSJLMN3DQ6mPEbM4yLvyKkdqtmd/UDwhXA5+AwFJ89rRXm6vTeOXBsE5cAmlos/t7MJdgg=="; 239 + }; 240 + }; 241 + "@codemirror/lang-javascript-6.1.1" = { 242 + name = "_at_codemirror_slash_lang-javascript"; 243 + packageName = "@codemirror/lang-javascript"; 244 + version = "6.1.1"; 245 + src = fetchurl { 246 + url = "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.1.1.tgz"; 247 + sha512 = "F4+kiuC5d5dUSJmff96tJQwpEXs/tX/4bapMRnZWW6bHKK1Fx6MunTzopkCUWRa9bF87GPmb9m7Qtg7Yv8f3uQ=="; 248 + }; 249 + }; 250 + "@codemirror/language-6.3.0" = { 251 + name = "_at_codemirror_slash_language"; 252 + packageName = "@codemirror/language"; 253 + version = "6.3.0"; 254 + src = fetchurl { 255 + url = "https://registry.npmjs.org/@codemirror/language/-/language-6.3.0.tgz"; 256 + sha512 = "6jOE5DEt6sKD46SXhn3xPbBehn+l48ACcA6Uxs2k+E2YNH9XGF5WdGMTYr2DlggfK4h0QZBK6zEb5S7lkTriWA=="; 257 + }; 258 + }; 259 + "@codemirror/lint-6.0.0" = { 260 + name = "_at_codemirror_slash_lint"; 261 + packageName = "@codemirror/lint"; 262 + version = "6.0.0"; 263 + src = fetchurl { 264 + url = "https://registry.npmjs.org/@codemirror/lint/-/lint-6.0.0.tgz"; 265 + sha512 = "nUUXcJW1Xp54kNs+a1ToPLK8MadO0rMTnJB8Zk4Z8gBdrN0kqV7uvUraU/T2yqg+grDNR38Vmy/MrhQN/RgwiA=="; 266 + }; 267 + }; 268 + "@codemirror/state-6.1.2" = { 269 + name = "_at_codemirror_slash_state"; 270 + packageName = "@codemirror/state"; 271 + version = "6.1.2"; 209 272 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz"; 211 - sha512 = "EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA=="; 273 + url = "https://registry.npmjs.org/@codemirror/state/-/state-6.1.2.tgz"; 274 + sha512 = "Mxff85Hp5va+zuj+H748KbubXjrinX/k28lj43H14T2D0+4kuvEFIEIO7hCEcvBT8ubZyIelt9yGOjj2MWOEQA=="; 275 + }; 276 + }; 277 + "@codemirror/view-6.4.0" = { 278 + name = "_at_codemirror_slash_view"; 279 + packageName = "@codemirror/view"; 280 + version = "6.4.0"; 281 + src = fetchurl { 282 + url = "https://registry.npmjs.org/@codemirror/view/-/view-6.4.0.tgz"; 283 + sha512 = "Kv32b6Tn7QVwFbj/EDswTLSocjk5kgggF6zzBFAL4o4hZ/vmtFD155+EjH1pVlbfoDyVC2M6SedPsMrwYscgNg=="; 212 284 }; 213 285 }; 214 286 "@colors/colors-1.5.0" = { ··· 247 319 sha512 = "hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA=="; 248 320 }; 249 321 }; 250 - "@fontsource/open-sans-4.5.12" = { 322 + "@fontsource/open-sans-4.5.13" = { 251 323 name = "_at_fontsource_slash_open-sans"; 252 324 packageName = "@fontsource/open-sans"; 253 - version = "4.5.12"; 325 + version = "4.5.13"; 254 326 src = fetchurl { 255 - url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.12.tgz"; 256 - sha512 = "WKCexsVbOECJUSOgG7GnrUxe+3ds4Sa1yhsTjSnszI+0TaJvMZnDnn5YDKwA/KwLbkZqCaV3nvMTH97jJuxWNA=="; 327 + url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.13.tgz"; 328 + sha512 = "/UzqP7ZFk145XAq8KG4pvFPP7UQhtreDGXgqXZjagCDreKxcrhwn/x7DYz9rPcycWkLUVApIybcoczGZiM0cRg=="; 257 329 }; 258 330 }; 259 331 "@fortawesome/fontawesome-common-types-0.2.36" = { ··· 337 409 sha512 = "RxSa9VjcDWgWCYsaLdZItdCnJj7p4LxggaEk+Y3MP0dHKoxez8ioG07DVekVbZZqccsrL+oPB/N9AzVPxj4blg=="; 338 410 }; 339 411 }; 340 - "@js-joda/core-5.4.1" = { 412 + "@js-joda/core-5.4.2" = { 341 413 name = "_at_js-joda_slash_core"; 342 414 packageName = "@js-joda/core"; 343 - version = "5.4.1"; 415 + version = "5.4.2"; 344 416 src = fetchurl { 345 - url = "https://registry.npmjs.org/@js-joda/core/-/core-5.4.1.tgz"; 346 - sha512 = "+uMco2Xm9VYJ81XYWwrvgsM9xEvqs9JvLNrN4/fOg7YJKk4yeqAg+O/cpoFPTGxvfL2Zy0mUcnKlIz9UV0Cadw=="; 417 + url = "https://registry.npmjs.org/@js-joda/core/-/core-5.4.2.tgz"; 418 + sha512 = "QIDIZ9a0NfDStgD47VaTgwiPjlw1p4QPLwjOB/9+/DqIztoQopPNNAd+HdtQMHgE+ibP3dJacd8/TVL/A1RaaA=="; 347 419 }; 348 420 }; 349 421 "@jsdevtools/ono-7.1.3" = { ··· 382 454 sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="; 383 455 }; 384 456 }; 457 + "@lezer/common-1.0.1" = { 458 + name = "_at_lezer_slash_common"; 459 + packageName = "@lezer/common"; 460 + version = "1.0.1"; 461 + src = fetchurl { 462 + url = "https://registry.npmjs.org/@lezer/common/-/common-1.0.1.tgz"; 463 + sha512 = "8TR5++Q/F//tpDsLd5zkrvEX5xxeemafEaek7mUp7Y+bI8cKQXdSqhzTOBaOogETcMOVr0pT3BBPXp13477ciw=="; 464 + }; 465 + }; 466 + "@lezer/highlight-1.1.2" = { 467 + name = "_at_lezer_slash_highlight"; 468 + packageName = "@lezer/highlight"; 469 + version = "1.1.2"; 470 + src = fetchurl { 471 + url = "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.1.2.tgz"; 472 + sha512 = "CAun1WR1glxG9ZdOokTZwXbcwB7PXkIEyZRUMFBVwSrhTcogWq634/ByNImrkUnQhjju6xsIaOBIxvcRJtplXQ=="; 473 + }; 474 + }; 475 + "@lezer/javascript-1.0.2" = { 476 + name = "_at_lezer_slash_javascript"; 477 + packageName = "@lezer/javascript"; 478 + version = "1.0.2"; 479 + src = fetchurl { 480 + url = "https://registry.npmjs.org/@lezer/javascript/-/javascript-1.0.2.tgz"; 481 + sha512 = "IjOVeIRhM8IuafWNnk+UzRz7p4/JSOKBNINLYLsdSGuJS9Ju7vFdc82AlTt0jgtV5D8eBZf4g0vK4d3ttBNz7A=="; 482 + }; 483 + }; 484 + "@lezer/lr-1.2.3" = { 485 + name = "_at_lezer_slash_lr"; 486 + packageName = "@lezer/lr"; 487 + version = "1.2.3"; 488 + src = fetchurl { 489 + url = "https://registry.npmjs.org/@lezer/lr/-/lr-1.2.3.tgz"; 490 + sha512 = "qpB7rBzH8f6Mzjv2AVZRahcm+2Cf7nbIH++uXbvVOL1yIRvVWQ3HAM/saeBLCyz/togB7LGo76qdJYL1uKQlqA=="; 491 + }; 492 + }; 385 493 "@mapbox/node-pre-gyp-1.0.10" = { 386 494 name = "_at_mapbox_slash_node-pre-gyp"; 387 495 packageName = "@mapbox/node-pre-gyp"; ··· 463 571 sha512 = "R6dBedaUVn5jtAh79aaRm7jezx4l3V7Im9NORlLmudz5BL1foMeuXEvnqm+bMiejyexVA+oi9mto6YKZPzo/5Q=="; 464 572 }; 465 573 }; 466 - "@oclif/core-1.16.5" = { 574 + "@oclif/core-1.19.2" = { 467 575 name = "_at_oclif_slash_core"; 468 576 packageName = "@oclif/core"; 469 - version = "1.16.5"; 577 + version = "1.19.2"; 470 578 src = fetchurl { 471 - url = "https://registry.npmjs.org/@oclif/core/-/core-1.16.5.tgz"; 472 - sha512 = "Jb58K79AALkLmY0PNU1Jx4Z+/JIWtpgtRbei92PIIBx+TaAmYgVySNI1beInZFNOpGo2fhxVBp+yr3DZ38z3kQ=="; 579 + url = "https://registry.npmjs.org/@oclif/core/-/core-1.19.2.tgz"; 580 + sha512 = "n5ni/NNR6+I0IQXVGoLKdrdw6IS3WH/R/hw6WX8ERfLMZACrNSuJFD9EmBZkztyRkmiQ2L06ULazW5bJn5Shog=="; 473 581 }; 474 582 }; 475 583 "@oclif/errors-1.3.6" = { ··· 535 643 sha512 = "kJYCXv6fRFbQrAp3hMsgRCnAa7RUBdbiGLBT9PcpQURi0VwHmD7mk3Ja7U4HDnL0EHXYJpPyx3oSonkklmPJ9Q=="; 536 644 }; 537 645 }; 538 - "@sap/hana-client-2.14.18" = { 646 + "@sap/hana-client-2.14.22" = { 539 647 name = "_at_sap_slash_hana-client"; 540 648 packageName = "@sap/hana-client"; 541 - version = "2.14.18"; 649 + version = "2.14.22"; 542 650 src = fetchurl { 543 - url = "https://registry.npmjs.org/@sap/hana-client/-/hana-client-2.14.18.tgz"; 544 - sha512 = "9TfoDuxWZyUYIwISVVMPguX9iirZrD0cI6rI0xXg6URRaqk71GZ5U0ueomeZapSY1nni2Yf+th1ZjU+jSUw/9g=="; 651 + url = "https://registry.npmjs.org/@sap/hana-client/-/hana-client-2.14.22.tgz"; 652 + sha512 = "Do1VnybxssI5kAg/ti4GoEOhgU7p7R9T9/v9amzDNZMg7rC7C4LVno+x++ERTWv81pzSaSrYKkr2O/MP7OE1hA=="; 545 653 }; 546 654 }; 547 655 "@segment/loosely-validate-event-2.0.0" = { ··· 571 679 sha512 = "sBSO19KzdrJCM3gdx6eIxV8M9Gxfgg6iDQmH5TIAGaUu+X9VDdsINXJOnoiZ1Kx3TrHdH4bt5UVglkjsEGBcvw=="; 572 680 }; 573 681 }; 574 - "@sqltools/formatter-1.2.3" = { 682 + "@sqltools/formatter-1.2.5" = { 575 683 name = "_at_sqltools_slash_formatter"; 576 684 packageName = "@sqltools/formatter"; 577 - version = "1.2.3"; 685 + version = "1.2.5"; 578 686 src = fetchurl { 579 - url = "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.3.tgz"; 580 - sha512 = "O3uyB/JbkAEMZaP3YqyHH7TMnex7tWyCbCI4EfJdOCoN6HIhqdJBWTM6aCCiWQ/5f5wxjgU735QAIpJbjDvmzg=="; 687 + url = "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.5.tgz"; 688 + sha512 = "Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw=="; 581 689 }; 582 690 }; 583 691 "@techteamer/ocsp-1.0.0" = { ··· 679 787 sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q=="; 680 788 }; 681 789 }; 682 - "@types/express-unless-0.5.3" = { 790 + "@types/express-unless-2.0.1" = { 683 791 name = "_at_types_slash_express-unless"; 684 792 packageName = "@types/express-unless"; 685 - version = "0.5.3"; 793 + version = "2.0.1"; 686 794 src = fetchurl { 687 - url = "https://registry.npmjs.org/@types/express-unless/-/express-unless-0.5.3.tgz"; 688 - sha512 = "TyPLQaF6w8UlWdv4gj8i46B+INBVzURBNRahCozCSXfsK2VTlL1wNyTlMKw817VHygBtlcl5jfnPadlydr06Yw=="; 795 + url = "https://registry.npmjs.org/@types/express-unless/-/express-unless-2.0.1.tgz"; 796 + sha512 = "PJLiNw03EjkWDkQbhNjIXXDLObC3eMQhFASDV+WakFbT8eL7YdjlbV6MXd3Av5Lejq499d6pFuV1jyK+EHyG3Q=="; 689 797 }; 690 798 }; 691 - "@types/js-nacl-1.3.0" = { 799 + "@types/js-nacl-1.3.1" = { 692 800 name = "_at_types_slash_js-nacl"; 693 801 packageName = "@types/js-nacl"; 694 - version = "1.3.0"; 802 + version = "1.3.1"; 695 803 src = fetchurl { 696 - url = "https://registry.npmjs.org/@types/js-nacl/-/js-nacl-1.3.0.tgz"; 697 - sha512 = "juUvxo444ZfwDSwWyhssMxSN+snqTdiUoOVXZF+/ffVrGHq3rAf1fmczWn3z9TCEAuRbaTmgAcYlZ9MutyyOkQ=="; 804 + url = "https://registry.npmjs.org/@types/js-nacl/-/js-nacl-1.3.1.tgz"; 805 + sha512 = "flSA1xio62MepOtcglW7s+V7jFoJqGAAQXFRKZ3NkLbw36LEoQYQQ2jighvbr7DB1g6bCFB4YOx+x/CNQj1TsA=="; 698 806 }; 699 807 }; 700 808 "@types/json-schema-7.0.11" = { ··· 742 850 sha512 = "J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="; 743 851 }; 744 852 }; 745 - "@types/node-18.8.3" = { 853 + "@types/node-18.11.7" = { 746 854 name = "_at_types_slash_node"; 747 855 packageName = "@types/node"; 748 - version = "18.8.3"; 856 + version = "18.11.7"; 749 857 src = fetchurl { 750 - url = "https://registry.npmjs.org/@types/node/-/node-18.8.3.tgz"; 751 - sha512 = "0os9vz6BpGwxGe9LOhgP/ncvYN5Tx1fNcd2TM3rD/aCGBkysb+ZWpXEocG24h6ZzOi13+VB8HndAQFezsSOw1w=="; 858 + url = "https://registry.npmjs.org/@types/node/-/node-18.11.7.tgz"; 859 + sha512 = "LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ=="; 752 860 }; 753 861 }; 754 862 "@types/node-fetch-2.6.2" = { ··· 832 940 sha512 = "FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA=="; 833 941 }; 834 942 }; 835 - "@xmldom/xmldom-0.7.5" = { 943 + "@vue/compiler-sfc-2.7.13" = { 944 + name = "_at_vue_slash_compiler-sfc"; 945 + packageName = "@vue/compiler-sfc"; 946 + version = "2.7.13"; 947 + src = fetchurl { 948 + url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.13.tgz"; 949 + sha512 = "zzu2rLRZlgIU+OT3Atbr7Y6PG+LW4wVQpPfNRrGDH3dM9PsrcVfa+1pKb8bW467bGM3aDOvAnsYLWVpYIv3GRg=="; 950 + }; 951 + }; 952 + "@xmldom/xmldom-0.7.6" = { 836 953 name = "_at_xmldom_slash_xmldom"; 837 954 packageName = "@xmldom/xmldom"; 838 - version = "0.7.5"; 955 + version = "0.7.6"; 839 956 src = fetchurl { 840 - url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz"; 841 - sha512 = "V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A=="; 957 + url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.6.tgz"; 958 + sha512 = "HHXP9hskkFQHy8QxxUXkS7946FFIhYVfGqsk0WLwllmexN9x/+R4UBLvurHEuyXRfVEObVR8APuQehykLviwSQ=="; 842 959 }; 843 960 }; 844 961 "a-sync-waterfall-1.0.1" = { ··· 886 1003 sha512 = "H5aqjkogmFxfaOrfn/e42vyspHVXuJ8er63KuljJXpOyJ1ZO/U5CrHfO8BLKIy2w7mBM02L5quL0vbfQqrGQbA=="; 887 1004 }; 888 1005 }; 889 - "acorn-8.8.0" = { 1006 + "acorn-8.8.1" = { 890 1007 name = "acorn"; 891 1008 packageName = "acorn"; 892 - version = "8.8.0"; 1009 + version = "8.8.1"; 893 1010 src = fetchurl { 894 - url = "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz"; 895 - sha512 = "QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="; 1011 + url = "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz"; 1012 + sha512 = "7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA=="; 896 1013 }; 897 1014 }; 898 1015 "acorn-walk-8.2.0" = { ··· 911 1028 src = fetchurl { 912 1029 url = "https://registry.npmjs.org/adal-node/-/adal-node-0.2.3.tgz"; 913 1030 sha512 = "gMKr8RuYEYvsj7jyfCv/4BfKToQThz20SP71N3AtFn3ia3yAR8Qt2T3aVQhuJzunWs2b38ZsQV0qsZPdwZr7VQ=="; 914 - }; 915 - }; 916 - "address-1.2.1" = { 917 - name = "address"; 918 - packageName = "address"; 919 - version = "1.2.1"; 920 - src = fetchurl { 921 - url = "https://registry.npmjs.org/address/-/address-1.2.1.tgz"; 922 - sha512 = "B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA=="; 923 1031 }; 924 1032 }; 925 1033 "adler-32-1.2.0" = { ··· 1300 1408 sha512 = "jyn9tfd9J3h7pgJSk4qQ/1c1Tk5qiXrvmdCDON2UjcFplqRu/KpmKmpi+Ess8ZKmmqK12U4Y3VHrfwQs1xSMZA=="; 1301 1409 }; 1302 1410 }; 1303 - "aws-sdk-2.1231.0" = { 1411 + "aws-sdk-2.1242.0" = { 1304 1412 name = "aws-sdk"; 1305 1413 packageName = "aws-sdk"; 1306 - version = "2.1231.0"; 1414 + version = "2.1242.0"; 1307 1415 src = fetchurl { 1308 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1231.0.tgz"; 1309 - sha512 = "ONBuRsOxsu0zL8u/Vmz49tPWi9D4ls2pjb6szdfSx9VQef7bOnWe9gJpWoA94OTzcjOWsvjsG7UgjvQJkIuPBg=="; 1416 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1242.0.tgz"; 1417 + sha512 = "qVpaMafIHw3Mn3Mo7zTY4Xq8lHkTxIRQJFV5ronsi4lTLqhqF1rANoPKSlVWxUPRyG5so/we+ZUIog5wpjSgiw=="; 1310 1418 }; 1311 1419 }; 1312 1420 "aws-sign2-0.7.0" = { ··· 1525 1633 sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 1526 1634 }; 1527 1635 }; 1528 - "bl-5.0.0" = { 1636 + "bl-5.1.0" = { 1529 1637 name = "bl"; 1530 1638 packageName = "bl"; 1531 - version = "5.0.0"; 1639 + version = "5.1.0"; 1532 1640 src = fetchurl { 1533 - url = "https://registry.npmjs.org/bl/-/bl-5.0.0.tgz"; 1534 - sha512 = "8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ=="; 1641 + url = "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz"; 1642 + sha512 = "tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ=="; 1535 1643 }; 1536 1644 }; 1537 1645 "bluebird-2.11.0" = { ··· 1705 1813 sha512 = "a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw=="; 1706 1814 }; 1707 1815 }; 1708 - "bufferutil-4.0.6" = { 1816 + "bufferutil-4.0.7" = { 1709 1817 name = "bufferutil"; 1710 1818 packageName = "bufferutil"; 1711 - version = "4.0.6"; 1819 + version = "4.0.7"; 1712 1820 src = fetchurl { 1713 - url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz"; 1714 - sha512 = "jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw=="; 1821 + url = "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz"; 1822 + sha512 = "kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw=="; 1715 1823 }; 1716 1824 }; 1717 1825 "bull-3.29.3" = { ··· 2371 2479 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 2372 2480 }; 2373 2481 }; 2374 - "core-js-3.25.5" = { 2482 + "core-js-3.26.0" = { 2375 2483 name = "core-js"; 2376 2484 packageName = "core-js"; 2377 - version = "3.25.5"; 2485 + version = "3.26.0"; 2378 2486 src = fetchurl { 2379 - url = "https://registry.npmjs.org/core-js/-/core-js-3.25.5.tgz"; 2380 - sha512 = "nbm6eZSjm+ZuBQxCUPQKQCoUEfFOXjUZ8dTTyikyKaWrTYmAVbykQfwsKE5dBK88u3QCkCrzsx/PPlKfhsvgpw=="; 2487 + url = "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz"; 2488 + sha512 = "+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw=="; 2381 2489 }; 2382 2490 }; 2383 2491 "core-util-is-1.0.2" = { ··· 2405 2513 src = fetchurl { 2406 2514 url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz"; 2407 2515 sha512 = "ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="; 2516 + }; 2517 + }; 2518 + "crelt-1.0.5" = { 2519 + name = "crelt"; 2520 + packageName = "crelt"; 2521 + version = "1.0.5"; 2522 + src = fetchurl { 2523 + url = "https://registry.npmjs.org/crelt/-/crelt-1.0.5.tgz"; 2524 + sha512 = "+BO9wPPi+DWTDcNYhr/W90myha8ptzftZT+LwcmUbbok0rcP/fequmFYCw8NMoH7pkAZQzU78b3kYrlua5a9eA=="; 2408 2525 }; 2409 2526 }; 2410 2527 "cron-1.7.2" = { ··· 2479 2596 sha512 = "wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ=="; 2480 2597 }; 2481 2598 }; 2599 + "css-select-5.1.0" = { 2600 + name = "css-select"; 2601 + packageName = "css-select"; 2602 + version = "5.1.0"; 2603 + src = fetchurl { 2604 + url = "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz"; 2605 + sha512 = "nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg=="; 2606 + }; 2607 + }; 2482 2608 "css-what-6.1.0" = { 2483 2609 name = "css-what"; 2484 2610 packageName = "css-what"; ··· 2495 2621 src = fetchurl { 2496 2622 url = "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz"; 2497 2623 sha512 = "FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw=="; 2624 + }; 2625 + }; 2626 + "csstype-3.1.1" = { 2627 + name = "csstype"; 2628 + packageName = "csstype"; 2629 + version = "3.1.1"; 2630 + src = fetchurl { 2631 + url = "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz"; 2632 + sha512 = "DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="; 2498 2633 }; 2499 2634 }; 2500 2635 "curlconverter-3.21.0" = { ··· 2821 2956 sha512 = "9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w=="; 2822 2957 }; 2823 2958 }; 2824 - "digest-header-0.0.1" = { 2959 + "digest-header-1.0.0" = { 2825 2960 name = "digest-header"; 2826 2961 packageName = "digest-header"; 2827 - version = "0.0.1"; 2962 + version = "1.0.0"; 2828 2963 src = fetchurl { 2829 - url = "https://registry.npmjs.org/digest-header/-/digest-header-0.0.1.tgz"; 2830 - sha512 = "Qi0KOZgRnkQJuvMWbs1ZRRajEnbsMU8xlJI4rHIbPC+skHQ30heO5cIHpUFT4jAvAe+zPtdavLSAxASqoyZ3cg=="; 2964 + url = "https://registry.npmjs.org/digest-header/-/digest-header-1.0.0.tgz"; 2965 + sha512 = "sRTuakZ2PkOUCuAaVv+SLjhr/hRf8ldZP0XnGEQ69RFGxmll5fVaMsnRXWKKK4XsUTnJf8+eRPSFNgE/lWa9wQ=="; 2831 2966 }; 2832 2967 }; 2833 2968 "dir-glob-3.0.1" = { ··· 2866 3001 sha512 = "VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag=="; 2867 3002 }; 2868 3003 }; 3004 + "dom-serializer-2.0.0" = { 3005 + name = "dom-serializer"; 3006 + packageName = "dom-serializer"; 3007 + version = "2.0.0"; 3008 + src = fetchurl { 3009 + url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz"; 3010 + sha512 = "wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg=="; 3011 + }; 3012 + }; 2869 3013 "domelementtype-2.3.0" = { 2870 3014 name = "domelementtype"; 2871 3015 packageName = "domelementtype"; ··· 2882 3026 src = fetchurl { 2883 3027 url = "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz"; 2884 3028 sha512 = "GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ=="; 3029 + }; 3030 + }; 3031 + "domhandler-5.0.3" = { 3032 + name = "domhandler"; 3033 + packageName = "domhandler"; 3034 + version = "5.0.3"; 3035 + src = fetchurl { 3036 + url = "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz"; 3037 + sha512 = "cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w=="; 2885 3038 }; 2886 3039 }; 2887 3040 "domutils-2.8.0" = { ··· 2891 3044 src = fetchurl { 2892 3045 url = "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"; 2893 3046 sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A=="; 3047 + }; 3048 + }; 3049 + "domutils-3.0.1" = { 3050 + name = "domutils"; 3051 + packageName = "domutils"; 3052 + version = "3.0.1"; 3053 + src = fetchurl { 3054 + url = "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz"; 3055 + sha512 = "z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q=="; 2894 3056 }; 2895 3057 }; 2896 3058 "dot-case-3.0.4" = { ··· 3044 3206 src = fetchurl { 3045 3207 url = "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"; 3046 3208 sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="; 3209 + }; 3210 + }; 3211 + "entities-4.4.0" = { 3212 + name = "entities"; 3213 + packageName = "entities"; 3214 + version = "4.4.0"; 3215 + src = fetchurl { 3216 + url = "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz"; 3217 + sha512 = "oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA=="; 3047 3218 }; 3048 3219 }; 3049 3220 "env-paths-2.2.1" = { ··· 3314 3485 src = fetchurl { 3315 3486 url = "https://registry.npmjs.org/express-openapi-validator/-/express-openapi-validator-4.13.8.tgz"; 3316 3487 sha512 = "89/sdkq+BKBuIyykaMl/vR9grFc3WFUPTjFo0THHbu+5g+q8rA7fKeoMfz+h84yOQIBcztmJ5ZJdk5uhEls31A=="; 3488 + }; 3489 + }; 3490 + "express-unless-2.1.3" = { 3491 + name = "express-unless"; 3492 + packageName = "express-unless"; 3493 + version = "2.1.3"; 3494 + src = fetchurl { 3495 + url = "https://registry.npmjs.org/express-unless/-/express-unless-2.1.3.tgz"; 3496 + sha512 = "wj4tLMyCVYuIIKHGt0FhCtIViBcwzWejX0EjNxveAa6dG+0XBCQhMbx+PnkLkFCxLC69qoFrxds4pIyL88inaQ=="; 3317 3497 }; 3318 3498 }; 3319 3499 "extend-3.0.2" = { ··· 4198 4378 sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw=="; 4199 4379 }; 4200 4380 }; 4201 - "ics-2.40.0" = { 4381 + "ics-2.41.0" = { 4202 4382 name = "ics"; 4203 4383 packageName = "ics"; 4204 - version = "2.40.0"; 4384 + version = "2.41.0"; 4205 4385 src = fetchurl { 4206 - url = "https://registry.npmjs.org/ics/-/ics-2.40.0.tgz"; 4207 - sha512 = "PPkE9ij60sGhqdTxZZzsXQPB/TCXAB/dD3NqUf1I/GkbJzPeJHHMzaoMQiYAsm1pFaHRp2OIhFDgUBihkk8s/w=="; 4386 + url = "https://registry.npmjs.org/ics/-/ics-2.41.0.tgz"; 4387 + sha512 = "6oleMfOpdBIrZGMNrTutwW7eFwua8lOkymDNxMXlsVF00HghqH+I3S6frt3a2rfjXTlkI0qiY2rnsKP2JQ9vJA=="; 4208 4388 }; 4209 4389 }; 4210 4390 "ieee754-1.1.13" = { ··· 4450 4630 sha512 = "1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="; 4451 4631 }; 4452 4632 }; 4453 - "is-core-module-2.10.0" = { 4633 + "is-core-module-2.11.0" = { 4454 4634 name = "is-core-module"; 4455 4635 packageName = "is-core-module"; 4456 - version = "2.10.0"; 4636 + version = "2.11.0"; 4457 4637 src = fetchurl { 4458 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz"; 4459 - sha512 = "Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg=="; 4638 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"; 4639 + sha512 = "RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="; 4460 4640 }; 4461 4641 }; 4462 4642 "is-date-object-1.0.5" = { ··· 4792 4972 sha512 = "xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="; 4793 4973 }; 4794 4974 }; 4795 - "isbot-3.6.1" = { 4975 + "isbot-3.6.2" = { 4796 4976 name = "isbot"; 4797 4977 packageName = "isbot"; 4798 - version = "3.6.1"; 4978 + version = "3.6.2"; 4799 4979 src = fetchurl { 4800 - url = "https://registry.npmjs.org/isbot/-/isbot-3.6.1.tgz"; 4801 - sha512 = "e1RmjWns87x60QyiHberWWMJGutL3+Ad0nZ8cz735iDEDDS6ApPfKSFo4EMj0PmMZ0m0ntpWIM0ADdqDFvUJPQ=="; 4980 + url = "https://registry.npmjs.org/isbot/-/isbot-3.6.2.tgz"; 4981 + sha512 = "jk8IRbrvyTJC2f4VpxXQ4ff+xVJgsXHygtpc5Sl6m9PWuF8oXVcpEmcZKR88j5WOoqpHTxrOKccCpxdAgW7Afw=="; 4802 4982 }; 4803 4983 }; 4804 4984 "isexe-2.0.0" = { ··· 5161 5341 sha512 = "xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA=="; 5162 5342 }; 5163 5343 }; 5164 - "libphonenumber-js-1.10.13" = { 5344 + "libphonenumber-js-1.10.14" = { 5165 5345 name = "libphonenumber-js"; 5166 5346 packageName = "libphonenumber-js"; 5167 - version = "1.10.13"; 5347 + version = "1.10.14"; 5168 5348 src = fetchurl { 5169 - url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.13.tgz"; 5170 - sha512 = "b74iyWmwb4GprAUPjPkJ11GTC7KX4Pd3onpJfKxYyY8y9Rbb4ERY47LvCMEDM09WD3thiLDMXtkfDK/AX+zT7Q=="; 5349 + url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.14.tgz"; 5350 + sha512 = "McGS7GV/WjJ2KjfOGhJU1oJn29RYeo7Q+RpANRbUNMQ9gj5XArpbjurSuyYPTejFwbaUojstQ4XyWCrAzGOUXw=="; 5171 5351 }; 5172 5352 }; 5173 5353 "libpq-1.8.12" = { ··· 5557 5737 sha512 = "IXAq50s4qwrOBrXJklY+KhgZF+5y98PDaNo0gi/v2KQBFLyWr+JyFvijZXkGKjQj/h9c0OwoE+JZbwUXce76hQ=="; 5558 5738 }; 5559 5739 }; 5560 - "luxon-2.5.0" = { 5740 + "luxon-2.3.2" = { 5561 5741 name = "luxon"; 5562 5742 packageName = "luxon"; 5563 - version = "2.5.0"; 5743 + version = "2.3.2"; 5564 5744 src = fetchurl { 5565 - url = "https://registry.npmjs.org/luxon/-/luxon-2.5.0.tgz"; 5566 - sha512 = "IDkEPB80Rb6gCAU+FEib0t4FeJ4uVOuX1CQ9GsvU3O+JAGIgu0J7sf1OarXKaKDygTZIoJyU6YdZzTFRu+YR0A=="; 5745 + url = "https://registry.npmjs.org/luxon/-/luxon-2.3.2.tgz"; 5746 + sha512 = "MlAQQVMFhGk4WUA6gpfsy0QycnKP0+NlCBJRVRNPxxSIbjrCbQ65nrpJD3FVyJNZLuJ0uoqL57ye6BmDYgHaSw=="; 5567 5747 }; 5568 5748 }; 5569 5749 "mailparser-3.5.0" = { ··· 5791 5971 sha512 = "9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="; 5792 5972 }; 5793 5973 }; 5794 - "minimist-1.2.6" = { 5974 + "minimist-1.2.7" = { 5795 5975 name = "minimist"; 5796 5976 packageName = "minimist"; 5797 - version = "1.2.6"; 5977 + version = "1.2.7"; 5798 5978 src = fetchurl { 5799 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz"; 5800 - sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 5979 + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"; 5980 + sha512 = "bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="; 5801 5981 }; 5802 5982 }; 5803 5983 "minipass-3.3.5" = { ··· 5908 6088 sha512 = "5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w=="; 5909 6089 }; 5910 6090 }; 5911 - "moment-timezone-0.5.37" = { 6091 + "moment-timezone-0.5.38" = { 5912 6092 name = "moment-timezone"; 5913 6093 packageName = "moment-timezone"; 5914 - version = "0.5.37"; 6094 + version = "0.5.38"; 5915 6095 src = fetchurl { 5916 - url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.37.tgz"; 5917 - sha512 = "uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg=="; 6096 + url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.38.tgz"; 6097 + sha512 = "nMIrzGah4+oYZPflDvLZUgoVUO4fvAqHstvG3xAUnMolWncuAiLDWNnJZj6EwJGMGfb1ZcuTFE6GI3hNOVWI/Q=="; 5918 6098 }; 5919 6099 }; 5920 6100 "monaco-editor-0.30.1" = { ··· 5935 6115 sha512 = "Psm+g3/wHXhjBEktkxXsFMZvd3nemI0r3IPsE0bU+4//PnvNWKkzhZcEsbPcYiWqe8XqXJJEg4Tgtr7Raw67Yw=="; 5936 6116 }; 5937 6117 }; 5938 - "mongodb-4.10.0" = { 6118 + "mongodb-4.11.0" = { 5939 6119 name = "mongodb"; 5940 6120 packageName = "mongodb"; 5941 - version = "4.10.0"; 6121 + version = "4.11.0"; 5942 6122 src = fetchurl { 5943 - url = "https://registry.npmjs.org/mongodb/-/mongodb-4.10.0.tgz"; 5944 - sha512 = "My2QxLTw0Cc1O9gih0mz4mqo145Jq4rLAQx0Glk/Ha9iYBzYpt4I2QFNRIh35uNFNfe8KFQcdwY1/HKxXBkinw=="; 6123 + url = "https://registry.npmjs.org/mongodb/-/mongodb-4.11.0.tgz"; 6124 + sha512 = "9l9n4Nk2BYZzljW3vHah3Z0rfS5npKw6ktnkmFgTcnzaXH1DRm3pDl6VMHu84EVb1lzmSaJC4OzWZqTkB5i2wg=="; 5945 6125 }; 5946 6126 }; 5947 6127 "mongodb-connection-string-url-2.5.4" = { ··· 6061 6241 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 6062 6242 }; 6063 6243 }; 6064 - "n8n-core-0.137.0" = { 6244 + "n8n-core-0.140.1" = { 6065 6245 name = "n8n-core"; 6066 6246 packageName = "n8n-core"; 6067 - version = "0.137.0"; 6247 + version = "0.140.1"; 6068 6248 src = fetchurl { 6069 - url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.137.0.tgz"; 6070 - sha512 = "qNFzL20TDG7kdtW7rt46DEf6eAWi9MrYmCjmrliJqDOGp2CHtpwlQM8dsIDXuzHoLRX4vuYXDA4kEKA/8kPvlw=="; 6249 + url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.140.1.tgz"; 6250 + sha512 = "a0fNyYhL8VsxQPUz0Jya0OOFy0eIFkiK40405XkAkonah+wBBBA01g46QSDdBCn3UMeDZ/LkfY+pzypkrmjMQQ=="; 6071 6251 }; 6072 6252 }; 6073 - "n8n-design-system-0.37.0" = { 6253 + "n8n-design-system-0.40.0" = { 6074 6254 name = "n8n-design-system"; 6075 6255 packageName = "n8n-design-system"; 6076 - version = "0.37.0"; 6256 + version = "0.40.0"; 6077 6257 src = fetchurl { 6078 - url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.37.0.tgz"; 6079 - sha512 = "P17+YgT5NjjuaBfqLD+CyTEaLM89q3UyuSDJgmyQdTmsg0tKwaWmVXL455a6L6syLILjwMDg77lTFKKMedBhtg=="; 6258 + url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.40.0.tgz"; 6259 + sha512 = "P9ZubxZzNNMiXC58L2fyAAm4R4L3dJPZ+NMjKEZbu9+11XMX9SVX1+5t2NEWz1MsgVHGRLfc3mjPr7mnn05BQQ=="; 6080 6260 }; 6081 6261 }; 6082 - "n8n-editor-ui-0.163.1" = { 6262 + "n8n-editor-ui-0.166.1" = { 6083 6263 name = "n8n-editor-ui"; 6084 6264 packageName = "n8n-editor-ui"; 6085 - version = "0.163.1"; 6265 + version = "0.166.1"; 6086 6266 src = fetchurl { 6087 - url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.163.1.tgz"; 6088 - sha512 = "bKn6DkK4GuFdjW9rcaBewYZE2wF5g5zfb5zamp+I4TlJXMAsR1bSHpiq8Z8BRyGg0bR76Ny35MQvmXCbvKTejQ=="; 6267 + url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.166.1.tgz"; 6268 + sha512 = "AxGb+Rkq/TTytKjef60Q7Tmtyu+I4l0639aMrxg7ObqurqCjGL0WkJXaoGrb1H6pBHRSL3jU7ZuD/QfiGN93IQ=="; 6089 6269 }; 6090 6270 }; 6091 - "n8n-nodes-base-0.195.1" = { 6271 + "n8n-nodes-base-0.198.1" = { 6092 6272 name = "n8n-nodes-base"; 6093 6273 packageName = "n8n-nodes-base"; 6094 - version = "0.195.1"; 6274 + version = "0.198.1"; 6095 6275 src = fetchurl { 6096 - url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.195.1.tgz"; 6097 - sha512 = "EfTySsb3sc1RzGe8Da/FClXVkCwUIErDfOjl6me8ikRGntjf7Sco6FXS6Ib0iLi6XGbXbyKlJ1c9+Phe9A1I4g=="; 6276 + url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.198.1.tgz"; 6277 + sha512 = "kM5L/zib1Db5LG1qIYQeEDUM05kd/pQXvxxClCs+qs8RuCMVLnjWDua48NbpiINcnpEY0GI5Hzd0mDHCMjirpA=="; 6098 6278 }; 6099 6279 }; 6100 - "n8n-workflow-0.119.0" = { 6280 + "n8n-workflow-0.122.1" = { 6101 6281 name = "n8n-workflow"; 6102 6282 packageName = "n8n-workflow"; 6103 - version = "0.119.0"; 6283 + version = "0.122.1"; 6104 6284 src = fetchurl { 6105 - url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.119.0.tgz"; 6106 - sha512 = "BcSIBSbX1NZ9i8eFFk4Wp0k7esmzH6m8j0RDZK5KwhD4hla4mpx6z6i7kKmAOCuLWjKuY0OMQPEYFWrDEjt0fA=="; 6285 + url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.122.1.tgz"; 6286 + sha512 = "8lJuN5AFBEhIBcS8MRt0XuwZ4KXbRGwOA9InlnBoYWFloBdDh+1zDOIxiKJH94xjtihLU9tk3c9mnYPEJqnvDQ=="; 6107 6287 }; 6108 6288 }; 6109 6289 "named-placeholders-1.1.2" = { ··· 6115 6295 sha512 = "wiFWqxoLL3PGVReSZpjLVxyJ1bRqe+KKJVbr4hGs1KWfTZTQyezHFBbuKj9hsizHyGV2ne7EMjHdxEGAybD5SA=="; 6116 6296 }; 6117 6297 }; 6118 - "nan-2.16.0" = { 6298 + "nan-2.17.0" = { 6119 6299 name = "nan"; 6120 6300 packageName = "nan"; 6121 - version = "2.16.0"; 6301 + version = "2.17.0"; 6122 6302 src = fetchurl { 6123 - url = "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz"; 6124 - sha512 = "UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="; 6303 + url = "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz"; 6304 + sha512 = "2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="; 6125 6305 }; 6126 6306 }; 6127 6307 "nanoclone-0.2.1" = { ··· 6223 6403 sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg=="; 6224 6404 }; 6225 6405 }; 6226 - "node-abi-3.26.0" = { 6406 + "node-abi-3.28.0" = { 6227 6407 name = "node-abi"; 6228 6408 packageName = "node-abi"; 6229 - version = "3.26.0"; 6409 + version = "3.28.0"; 6230 6410 src = fetchurl { 6231 - url = "https://registry.npmjs.org/node-abi/-/node-abi-3.26.0.tgz"; 6232 - sha512 = "jRVtMFTChbi2i/jqo/i2iP9634KMe+7K1v35mIdj3Mn59i5q27ZYhn+sW6npISM/PQg7HrP2kwtRBMmh5Uvzdg=="; 6411 + url = "https://registry.npmjs.org/node-abi/-/node-abi-3.28.0.tgz"; 6412 + sha512 = "fRlDb4I0eLcQeUvGq7IY3xHrSb0c9ummdvDSYWfT9+LKP+3jCKw/tKoqaM7r1BAoiAC6GtwyjaGnOz6B3OtF+A=="; 6233 6413 }; 6234 6414 }; 6235 6415 "node-abort-controller-3.0.1" = { ··· 6286 6466 sha512 = "2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg=="; 6287 6467 }; 6288 6468 }; 6289 - "node-html-markdown-1.2.0" = { 6469 + "node-html-markdown-1.2.2" = { 6290 6470 name = "node-html-markdown"; 6291 6471 packageName = "node-html-markdown"; 6292 - version = "1.2.0"; 6472 + version = "1.2.2"; 6293 6473 src = fetchurl { 6294 - url = "https://registry.npmjs.org/node-html-markdown/-/node-html-markdown-1.2.0.tgz"; 6295 - sha512 = "mGA53bSqo7j62PjmMuFPdO0efNT9pqiGYhQTNVCWkY7PdduRIECJF7n7NOrr5cb+d/js1GdYRLpoTYDwawRk6A=="; 6474 + url = "https://registry.npmjs.org/node-html-markdown/-/node-html-markdown-1.2.2.tgz"; 6475 + sha512 = "VkiTJ2Y9BWscRY0yLm9OYTREvXobmlK7YehdDwIYfDj9VW6MefaFNaQkMTk94U0zyAuCsfLdBsOld54fsNhP9A=="; 6296 6476 }; 6297 6477 }; 6298 - "node-html-parser-5.4.2" = { 6478 + "node-html-parser-6.1.1" = { 6299 6479 name = "node-html-parser"; 6300 6480 packageName = "node-html-parser"; 6301 - version = "5.4.2"; 6481 + version = "6.1.1"; 6302 6482 src = fetchurl { 6303 - url = "https://registry.npmjs.org/node-html-parser/-/node-html-parser-5.4.2.tgz"; 6304 - sha512 = "RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw=="; 6483 + url = "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.1.tgz"; 6484 + sha512 = "eYYblUeoMg0nR6cYGM4GRb1XncNa9FXEftuKAU1qyMIr6rXVtNyUKduvzZtkqFqSHVByq2lLjC7WO8tz7VDmnA=="; 6305 6485 }; 6306 6486 }; 6307 6487 "node-ssh-12.0.5" = { ··· 7051 7231 sha512 = "His3Fh17Z4eg7oANLob6ZvH8xIVen3phEZh2QuyrIl4dQSDVEabNducv6ysROKpDNPSD+12tONZVWfSgMvDD9w=="; 7052 7232 }; 7053 7233 }; 7054 - "pg-promise-10.12.0" = { 7234 + "pg-promise-10.12.1" = { 7055 7235 name = "pg-promise"; 7056 7236 packageName = "pg-promise"; 7057 - version = "10.12.0"; 7237 + version = "10.12.1"; 7058 7238 src = fetchurl { 7059 - url = "https://registry.npmjs.org/pg-promise/-/pg-promise-10.12.0.tgz"; 7060 - sha512 = "7uN64iEHrhtRcOaU/AT3925S20JzQJG2nWVK2IUz5SlhB1eNdkXjAYoQtei+5kLJo81mOWcFq7x9J9VRldp0ig=="; 7239 + url = "https://registry.npmjs.org/pg-promise/-/pg-promise-10.12.1.tgz"; 7240 + sha512 = "SiJkBUDGq7PNfJFJbWferodsSH+vLrhte0Q0kVgQbwlNYeKmp9Hhkr+357+5DWEuBGOHhSu1UQffSSf5HVqRtA=="; 7061 7241 }; 7062 7242 }; 7063 7243 "pg-protocol-1.5.0" = { ··· 7186 7366 sha512 = "epKaq3TTfTzXcxBxjpoKYMcTTcAX8Rykus6QZu77XNhJuRHSRxMd+JJrbX/3PFI0opFGSN0BabbAYCbGxbu0mA=="; 7187 7367 }; 7188 7368 }; 7189 - "postcss-8.4.17" = { 7369 + "postcss-8.4.18" = { 7190 7370 name = "postcss"; 7191 7371 packageName = "postcss"; 7192 - version = "8.4.17"; 7372 + version = "8.4.18"; 7193 7373 src = fetchurl { 7194 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.17.tgz"; 7195 - sha512 = "UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q=="; 7374 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz"; 7375 + sha512 = "Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA=="; 7196 7376 }; 7197 7377 }; 7198 7378 "postgres-array-1.0.3" = { ··· 7753 7933 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 7754 7934 }; 7755 7935 }; 7756 - "regenerator-runtime-0.13.9" = { 7936 + "regenerator-runtime-0.13.10" = { 7757 7937 name = "regenerator-runtime"; 7758 7938 packageName = "regenerator-runtime"; 7759 - version = "0.13.9"; 7939 + version = "0.13.10"; 7760 7940 src = fetchurl { 7761 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; 7762 - sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 7941 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz"; 7942 + sha512 = "KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="; 7763 7943 }; 7764 7944 }; 7765 7945 "regexp.prototype.flags-1.4.3" = { ··· 8005 8185 sha512 = "JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA=="; 8006 8186 }; 8007 8187 }; 8008 - "safe-stable-stringify-2.4.0" = { 8188 + "safe-stable-stringify-2.4.1" = { 8009 8189 name = "safe-stable-stringify"; 8010 8190 packageName = "safe-stable-stringify"; 8011 - version = "2.4.0"; 8191 + version = "2.4.1"; 8012 8192 src = fetchurl { 8013 - url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.0.tgz"; 8014 - sha512 = "eehKHKpab6E741ud7ZIMcXhKcP6TSIezPkNZhy5U8xC6+VvrRdUA2tMgxGxaGl4cz7c2Ew5+mg5+wNB16KQqrA=="; 8193 + url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.1.tgz"; 8194 + sha512 = "dVHE6bMtS/bnL2mwualjc6IxEv1F+OCUpA46pKUj6F8uDbUM0jCCulPqRNPSnWwGNKx5etqMjZYdXtrm5KJZGA=="; 8015 8195 }; 8016 8196 }; 8017 8197 "safer-buffer-2.1.2" = { ··· 8707 8887 sha512 = "fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw=="; 8708 8888 }; 8709 8889 }; 8890 + "style-mod-4.0.0" = { 8891 + name = "style-mod"; 8892 + packageName = "style-mod"; 8893 + version = "4.0.0"; 8894 + src = fetchurl { 8895 + url = "https://registry.npmjs.org/style-mod/-/style-mod-4.0.0.tgz"; 8896 + sha512 = "OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw=="; 8897 + }; 8898 + }; 8710 8899 "supports-color-7.2.0" = { 8711 8900 name = "supports-color"; 8712 8901 packageName = "supports-color"; ··· 8743 8932 sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 8744 8933 }; 8745 8934 }; 8746 - "swagger-ui-dist-4.14.2" = { 8935 + "swagger-ui-dist-4.15.2" = { 8747 8936 name = "swagger-ui-dist"; 8748 8937 packageName = "swagger-ui-dist"; 8749 - version = "4.14.2"; 8938 + version = "4.15.2"; 8750 8939 src = fetchurl { 8751 - url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.14.2.tgz"; 8752 - sha512 = "kOIU7Ts3TrXDLb3/c9jRe4qGp8O3bRT19FFJA8wJfrRFkcK/4atPn3krhtBVJ57ZkNNofworXHxuYwmaisXBdg=="; 8940 + url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.15.2.tgz"; 8941 + sha512 = "sanLAioshpa+Q0PpPxD86uo4labSqeIxtjLoC7xoce3HTnECPoQwY7PUVOiGMZ4dnEnROZPLUTloCEM86jZc1Q=="; 8753 8942 }; 8754 8943 }; 8755 8944 "swagger-ui-express-4.5.0" = { ··· 9346 9535 sha512 = "WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ=="; 9347 9536 }; 9348 9537 }; 9349 - "urllib-2.39.1" = { 9538 + "urllib-2.40.0" = { 9350 9539 name = "urllib"; 9351 9540 packageName = "urllib"; 9352 - version = "2.39.1"; 9541 + version = "2.40.0"; 9353 9542 src = fetchurl { 9354 - url = "https://registry.npmjs.org/urllib/-/urllib-2.39.1.tgz"; 9355 - sha512 = "c3sLtY8uhc/WoyJt/nNcEwO4fFC9sFYMQmU5NKoUz9OqUYrPSbYFPflocZCA5oCTavky9weK+YA2EHjsva9AwQ=="; 9543 + url = "https://registry.npmjs.org/urllib/-/urllib-2.40.0.tgz"; 9544 + sha512 = "XDZjoijtzsbkXTXgM+A/sJM002nwoYsc46YOYr6MNH2jUUw1nCBf2ywT1WaPsVEWJX4Yr+9isGmYj4+yofFn9g=="; 9356 9545 }; 9357 9546 }; 9358 - "utf-8-validate-5.0.9" = { 9547 + "utf-8-validate-5.0.10" = { 9359 9548 name = "utf-8-validate"; 9360 9549 packageName = "utf-8-validate"; 9361 - version = "5.0.9"; 9550 + version = "5.0.10"; 9362 9551 src = fetchurl { 9363 - url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz"; 9364 - sha512 = "Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q=="; 9552 + url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz"; 9553 + sha512 = "Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ=="; 9365 9554 }; 9366 9555 }; 9367 9556 "utf7-1.0.2" = { ··· 9382 9571 sha512 = "QXo+O/QkLP/x1nyi54uQiG0XrODxdysuQvE5dtVqv7F5K2Qb6FsN+qbr6KhF5wQ20tfcV3VQp0/2x1e1MRSPWg=="; 9383 9572 }; 9384 9573 }; 9385 - "util-0.12.4" = { 9574 + "util-0.12.5" = { 9386 9575 name = "util"; 9387 9576 packageName = "util"; 9388 - version = "0.12.4"; 9577 + version = "0.12.5"; 9389 9578 src = fetchurl { 9390 - url = "https://registry.npmjs.org/util/-/util-0.12.4.tgz"; 9391 - sha512 = "bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw=="; 9579 + url = "https://registry.npmjs.org/util/-/util-0.12.5.tgz"; 9580 + sha512 = "kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA=="; 9392 9581 }; 9393 9582 }; 9394 9583 "util-deprecate-1.0.2" = { ··· 9409 9598 sha512 = "/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw=="; 9410 9599 }; 9411 9600 }; 9412 - "utility-0.1.11" = { 9413 - name = "utility"; 9414 - packageName = "utility"; 9415 - version = "0.1.11"; 9416 - src = fetchurl { 9417 - url = "https://registry.npmjs.org/utility/-/utility-0.1.11.tgz"; 9418 - sha512 = "epFsJ71+/yC7MKMX7CM9azP31QBIQhywkiBUj74i/T3Y2TXtEor26QBkat7lGamrrNTr5CBI1imd/8F0Bmqw4g=="; 9419 - }; 9420 - }; 9421 9601 "utility-1.17.0" = { 9422 9602 name = "utility"; 9423 9603 packageName = "utility"; ··· 9517 9697 sha512 = "PFG8iJRSjvvBdisowQ7iVF580DXb1uCIiGaXgm7tynMR1uTBlv7UJlB1zdv5KJ+Tmq1f0Upnj3fayoEOPpCBKg=="; 9518 9698 }; 9519 9699 }; 9520 - "vue-2.6.14" = { 9700 + "vue-2.7.13" = { 9521 9701 name = "vue"; 9522 9702 packageName = "vue"; 9523 - version = "2.6.14"; 9703 + version = "2.7.13"; 9524 9704 src = fetchurl { 9525 - url = "https://registry.npmjs.org/vue/-/vue-2.6.14.tgz"; 9526 - sha512 = "x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ=="; 9705 + url = "https://registry.npmjs.org/vue/-/vue-2.7.13.tgz"; 9706 + sha512 = "QnM6ULTNnPmn71eUO+4hdjfBIA3H0GLsBnchnI/kS678tjI45GOUZhXd0oP/gX9isikXz1PAzSnkPspp9EUNfQ=="; 9527 9707 }; 9528 9708 }; 9529 9709 "vue-agile-2.0.0" = { ··· 9589 9769 sha512 = "VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ=="; 9590 9770 }; 9591 9771 }; 9592 - "vue-template-compiler-2.6.14" = { 9772 + "vue-template-compiler-2.7.13" = { 9593 9773 name = "vue-template-compiler"; 9594 9774 packageName = "vue-template-compiler"; 9595 - version = "2.6.14"; 9775 + version = "2.7.13"; 9596 9776 src = fetchurl { 9597 - url = "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.14.tgz"; 9598 - sha512 = "ODQS1SyMbjKoO1JBJZojSw6FE4qnh9rIpUZn2EUT86FKizx9uH5z6uXiIrm4/Nb/gwxTi/o17ZDEGWAXHvtC7g=="; 9777 + url = "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.13.tgz"; 9778 + sha512 = "jYM6TClwDS9YqP48gYrtAtaOhRKkbYmbzE+Q51gX5YDr777n7tNI/IZk4QV4l/PjQPNh/FVa/E92sh/RqKMrog=="; 9599 9779 }; 9600 9780 }; 9601 9781 "vue-typed-mixins-0.2.0" = { ··· 9643 9823 sha512 = "ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw=="; 9644 9824 }; 9645 9825 }; 9826 + "w3c-keyname-2.2.6" = { 9827 + name = "w3c-keyname"; 9828 + packageName = "w3c-keyname"; 9829 + version = "2.2.6"; 9830 + src = fetchurl { 9831 + url = "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.6.tgz"; 9832 + sha512 = "f+fciywl1SJEniZHD6H+kUO8gOnwIr7f4ijKA6+ZvJFjeGi1r4PDLl53Ayud9O/rk64RqgoQine0feoeOU0kXg=="; 9833 + }; 9834 + }; 9646 9835 "webidl-conversions-3.0.1" = { 9647 9836 name = "webidl-conversions"; 9648 9837 packageName = "webidl-conversions"; ··· 10027 10216 n8n = nodeEnv.buildNodePackage { 10028 10217 name = "n8n"; 10029 10218 packageName = "n8n"; 10030 - version = "0.197.1"; 10219 + version = "0.200.1"; 10031 10220 src = fetchurl { 10032 - url = "https://registry.npmjs.org/n8n/-/n8n-0.197.1.tgz"; 10033 - sha512 = "uswTJAfyDqMSBT0HZrNFFVKQ/s/FiaQl97+Pdl/MdrC74scPNSTBUrS/L2X08LR0UADO6ByPpB7uOrj+w29pdg=="; 10221 + url = "https://registry.npmjs.org/n8n/-/n8n-0.200.1.tgz"; 10222 + sha512 = "g6RFonJAuvaNyQ6t3DfDHnV4T5NT4obfkRzELJ4S0DnT5jq68n1UsYmbPII8rhmdZJsK+d67prGlKUsnyZ3VxQ=="; 10034 10223 }; 10035 10224 dependencies = [ 10036 10225 (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { ··· 10115 10304 ]; 10116 10305 }) 10117 10306 sources."@azure/ms-rest-nodeauth-3.1.1" 10118 - sources."@azure/msal-browser-2.29.0" 10119 - sources."@azure/msal-common-7.5.0" 10120 - sources."@azure/msal-node-1.14.1" 10121 - (sources."@azure/storage-blob-12.11.0" // { 10307 + sources."@azure/msal-browser-2.30.0" 10308 + sources."@azure/msal-common-7.6.0" 10309 + sources."@azure/msal-node-1.14.2" 10310 + (sources."@azure/storage-blob-12.12.0" // { 10122 10311 dependencies = [ 10123 10312 sources."@azure/core-tracing-1.0.0-preview.13" 10124 10313 sources."tslib-2.4.0" 10125 10314 ]; 10126 10315 }) 10127 - sources."@babel/runtime-7.19.4" 10316 + sources."@babel/parser-7.20.0" 10317 + sources."@babel/runtime-7.20.0" 10318 + sources."@codemirror/autocomplete-6.3.0" 10319 + sources."@codemirror/commands-6.1.2" 10320 + sources."@codemirror/lang-javascript-6.1.1" 10321 + sources."@codemirror/language-6.3.0" 10322 + sources."@codemirror/lint-6.0.0" 10323 + sources."@codemirror/state-6.1.2" 10324 + sources."@codemirror/view-6.4.0" 10128 10325 sources."@colors/colors-1.5.0" 10129 10326 sources."@curlconverter/yargs-0.0.2" 10130 10327 sources."@curlconverter/yargs-parser-0.0.1" ··· 10134 10331 sources."kuler-2.0.0" 10135 10332 ]; 10136 10333 }) 10137 - sources."@fontsource/open-sans-4.5.12" 10334 + sources."@fontsource/open-sans-4.5.13" 10138 10335 sources."@fortawesome/fontawesome-common-types-0.3.0" 10139 10336 sources."@fortawesome/fontawesome-svg-core-1.3.0" 10140 10337 (sources."@fortawesome/free-regular-svg-icons-6.2.0" // { ··· 10156 10353 sources."string_decoder-0.10.31" 10157 10354 ]; 10158 10355 }) 10159 - sources."@js-joda/core-5.4.1" 10356 + sources."@js-joda/core-5.4.2" 10160 10357 sources."@jsdevtools/ono-7.1.3" 10161 10358 sources."@kafkajs/confluent-schema-registry-1.0.6" 10162 10359 sources."@kwsites/file-exists-1.1.1" 10163 10360 sources."@kwsites/promise-deferred-1.1.1" 10361 + sources."@lezer/common-1.0.1" 10362 + sources."@lezer/highlight-1.1.2" 10363 + sources."@lezer/javascript-1.0.2" 10364 + sources."@lezer/lr-1.2.3" 10164 10365 sources."@mapbox/node-pre-gyp-1.0.10" 10165 10366 sources."@n8n_io/riot-tmpl-1.0.1" 10166 10367 sources."@nodelib/fs.scandir-2.1.5" ··· 10178 10379 sources."tslib-2.4.0" 10179 10380 ]; 10180 10381 }) 10181 - (sources."@oclif/core-1.16.5" // { 10382 + (sources."@oclif/core-1.19.2" // { 10182 10383 dependencies = [ 10183 10384 sources."supports-color-8.1.1" 10184 10385 sources."tslib-2.4.0" ··· 10203 10404 sources."@oclif/screen-3.0.2" 10204 10405 sources."@opentelemetry/api-1.2.0" 10205 10406 sources."@rudderstack/rudder-sdk-node-1.0.6" 10206 - (sources."@sap/hana-client-2.14.18" // { 10407 + (sources."@sap/hana-client-2.14.22" // { 10207 10408 dependencies = [ 10208 10409 sources."debug-3.1.0" 10209 10410 sources."ms-2.0.0" ··· 10212 10413 sources."@segment/loosely-validate-event-2.0.0" 10213 10414 sources."@selderee/plugin-htmlparser2-0.6.0" 10214 10415 sources."@servie/events-1.0.0" 10215 - sources."@sqltools/formatter-1.2.3" 10416 + sources."@sqltools/formatter-1.2.5" 10216 10417 sources."@techteamer/ocsp-1.0.0" 10217 10418 sources."@tediousjs/connection-string-0.3.0" 10218 10419 sources."@tokenizer/token-0.3.0" ··· 10223 10424 sources."@types/express-4.17.14" 10224 10425 sources."@types/express-jwt-0.0.42" 10225 10426 sources."@types/express-serve-static-core-4.17.31" 10226 - sources."@types/express-unless-0.5.3" 10227 - sources."@types/js-nacl-1.3.0" 10427 + sources."@types/express-unless-2.0.1" 10428 + sources."@types/js-nacl-1.3.1" 10228 10429 sources."@types/json-schema-7.0.11" 10229 10430 sources."@types/lodash-4.14.186" 10230 10431 sources."@types/mime-3.0.1" 10231 10432 sources."@types/multer-1.4.7" 10232 - sources."@types/node-18.8.3" 10433 + sources."@types/node-18.11.7" 10233 10434 (sources."@types/node-fetch-2.6.2" // { 10234 10435 dependencies = [ 10235 10436 sources."form-data-3.0.1" ··· 10243 10444 sources."@types/tunnel-0.0.3" 10244 10445 sources."@types/webidl-conversions-7.0.0" 10245 10446 sources."@types/whatwg-url-8.2.2" 10246 - sources."@xmldom/xmldom-0.7.5" 10447 + sources."@vue/compiler-sfc-2.7.13" 10448 + sources."@xmldom/xmldom-0.7.6" 10247 10449 sources."a-sync-waterfall-1.0.1" 10248 10450 sources."abbrev-1.1.1" 10249 10451 sources."abort-controller-3.0.0" 10250 10452 sources."accepts-1.3.8" 10251 10453 sources."access-control-1.0.1" 10252 - sources."acorn-8.8.0" 10454 + sources."acorn-8.8.1" 10253 10455 sources."acorn-walk-8.2.0" 10254 10456 (sources."adal-node-0.2.3" // { 10255 10457 dependencies = [ ··· 10257 10459 sources."uuid-3.4.0" 10258 10460 ]; 10259 10461 }) 10260 - sources."address-1.2.1" 10261 10462 sources."adler-32-1.2.0" 10262 10463 sources."agent-base-6.0.2" 10263 10464 (sources."agentkeepalive-4.2.1" // { ··· 10321 10522 }) 10322 10523 sources."available-typed-arrays-1.0.5" 10323 10524 sources."avsc-5.7.6" 10324 - (sources."aws-sdk-2.1231.0" // { 10525 + (sources."aws-sdk-2.1242.0" // { 10325 10526 dependencies = [ 10326 10527 sources."buffer-4.9.2" 10327 10528 sources."events-1.1.1" ··· 10395 10596 sources."buffer-from-1.1.2" 10396 10597 sources."buffer-more-ints-1.0.0" 10397 10598 sources."buffer-writer-2.0.0" 10398 - sources."bufferutil-4.0.6" 10599 + sources."bufferutil-4.0.7" 10399 10600 sources."bull-3.29.3" 10400 10601 sources."busboy-1.6.0" 10401 10602 sources."byte-length-1.0.2" ··· 10504 10705 sources."cookie-parser-1.4.6" 10505 10706 sources."cookie-signature-1.0.6" 10506 10707 sources."copy-to-2.0.1" 10507 - sources."core-js-3.25.5" 10708 + sources."core-js-3.26.0" 10508 10709 sources."core-util-is-1.0.3" 10509 10710 sources."crc-32-1.2.2" 10711 + sources."crelt-1.0.5" 10510 10712 sources."cron-1.7.2" 10511 10713 sources."cron-parser-2.18.0" 10512 10714 (sources."cross-spawn-6.0.5" // { ··· 10520 10722 sources."css-select-4.3.0" 10521 10723 sources."css-what-6.1.0" 10522 10724 sources."cssfilter-0.0.10" 10725 + sources."csstype-3.1.1" 10523 10726 sources."curlconverter-3.21.0" 10524 10727 sources."currency-codes-2.1.0" 10525 10728 sources."dashdash-1.14.1" ··· 10552 10755 sources."detect-libc-2.0.1" 10553 10756 sources."diagnostics-1.1.1" 10554 10757 sources."difflib-0.2.4" 10555 - (sources."digest-header-0.0.1" // { 10556 - dependencies = [ 10557 - sources."utility-0.1.11" 10558 - ]; 10559 - }) 10758 + sources."digest-header-1.0.0" 10560 10759 sources."dir-glob-3.0.1" 10561 10760 sources."discontinuous-range-1.0.0" 10562 10761 sources."dom-iterator-1.0.0" ··· 10626 10825 sources."path-to-regexp-6.2.1" 10627 10826 ]; 10628 10827 }) 10828 + sources."express-unless-2.1.3" 10629 10829 sources."extend-3.0.2" 10630 10830 sources."extend-shallow-2.0.1" 10631 10831 (sources."external-editor-3.1.0" // { ··· 10766 10966 sources."humanize-ms-1.2.1" 10767 10967 sources."hyperlinker-1.0.0" 10768 10968 sources."iconv-lite-0.6.3" 10769 - sources."ics-2.40.0" 10969 + sources."ics-2.41.0" 10770 10970 sources."ieee754-1.2.1" 10771 10971 sources."ignore-5.2.0" 10772 10972 (sources."imap-0.8.19" // { ··· 10802 11002 sources."is-boolean-object-1.1.2" 10803 11003 sources."is-buffer-1.1.6" 10804 11004 sources."is-callable-1.2.7" 10805 - sources."is-core-module-2.10.0" 11005 + sources."is-core-module-2.11.0" 10806 11006 sources."is-date-object-1.0.5" 10807 11007 sources."is-docker-2.2.1" 10808 11008 sources."is-extendable-0.1.1" ··· 10837 11037 sources."is-windows-1.0.2" 10838 11038 sources."is-wsl-2.2.0" 10839 11039 sources."isarray-1.0.0" 10840 - sources."isbot-3.6.1" 11040 + sources."isbot-3.6.2" 10841 11041 sources."isexe-2.0.0" 10842 11042 sources."iso-639-1-2.1.15" 10843 11043 sources."isstream-0.1.2" ··· 10880 11080 sources."levn-0.3.0" 10881 11081 sources."libbase64-1.2.1" 10882 11082 sources."libmime-5.1.0" 10883 - sources."libphonenumber-js-1.10.13" 11083 + sources."libphonenumber-js-1.10.14" 10884 11084 sources."libpq-1.8.12" 10885 11085 sources."libqp-1.1.0" 10886 11086 sources."limiter-1.1.5" ··· 10934 11134 sources."yallist-2.1.2" 10935 11135 ]; 10936 11136 }) 10937 - sources."luxon-2.5.0" 11137 + sources."luxon-2.3.2" 10938 11138 (sources."mailparser-3.5.0" // { 10939 11139 dependencies = [ 10940 11140 sources."nodemailer-6.7.3" ··· 10973 11173 sources."brace-expansion-1.1.11" 10974 11174 ]; 10975 11175 }) 10976 - sources."minimist-1.2.6" 11176 + sources."minimist-1.2.7" 10977 11177 sources."minipass-3.3.5" 10978 11178 sources."minipass-collect-1.0.2" 10979 11179 sources."minipass-fetch-1.4.1" ··· 10990 11190 ]; 10991 11191 }) 10992 11192 sources."moment-2.29.4" 10993 - sources."moment-timezone-0.5.37" 11193 + sources."moment-timezone-0.5.38" 10994 11194 sources."monaco-editor-0.30.1" 10995 - (sources."mongodb-4.10.0" // { 11195 + (sources."mongodb-4.11.0" // { 10996 11196 dependencies = [ 10997 11197 sources."denque-2.1.0" 10998 11198 ]; ··· 11026 11226 ]; 11027 11227 }) 11028 11228 sources."mz-2.7.0" 11029 - sources."n8n-core-0.137.0" 11030 - sources."n8n-design-system-0.37.0" 11031 - sources."n8n-editor-ui-0.163.1" 11032 - (sources."n8n-nodes-base-0.195.1" // { 11229 + sources."n8n-core-0.140.1" 11230 + sources."n8n-design-system-0.40.0" 11231 + sources."n8n-editor-ui-0.166.1" 11232 + (sources."n8n-nodes-base-0.198.1" // { 11033 11233 dependencies = [ 11034 11234 sources."chokidar-3.5.2" 11035 11235 ]; 11036 11236 }) 11037 - sources."n8n-workflow-0.119.0" 11237 + sources."n8n-workflow-0.122.1" 11038 11238 (sources."named-placeholders-1.1.2" // { 11039 11239 dependencies = [ 11040 11240 sources."lru-cache-4.1.5" 11041 11241 sources."yallist-2.1.2" 11042 11242 ]; 11043 11243 }) 11044 - sources."nan-2.16.0" 11244 + sources."nan-2.17.0" 11045 11245 sources."nanoclone-0.2.1" 11046 11246 sources."nanoid-3.3.4" 11047 11247 sources."napi-build-utils-1.0.2" ··· 11061 11261 sources."tslib-2.4.0" 11062 11262 ]; 11063 11263 }) 11064 - sources."node-abi-3.26.0" 11264 + sources."node-abi-3.28.0" 11065 11265 sources."node-abort-controller-3.0.1" 11066 11266 sources."node-addon-api-4.3.0" 11067 11267 sources."node-ensure-0.0.0" ··· 11076 11276 ]; 11077 11277 }) 11078 11278 sources."node-gyp-build-4.5.0" 11079 - sources."node-html-markdown-1.2.0" 11080 - sources."node-html-parser-5.4.2" 11279 + sources."node-html-markdown-1.2.2" 11280 + (sources."node-html-parser-6.1.1" // { 11281 + dependencies = [ 11282 + sources."css-select-5.1.0" 11283 + sources."dom-serializer-2.0.0" 11284 + sources."domhandler-5.0.3" 11285 + sources."domutils-3.0.1" 11286 + sources."entities-4.4.0" 11287 + ]; 11288 + }) 11081 11289 sources."node-ssh-12.0.5" 11082 11290 sources."nodeify-1.0.1" 11083 11291 sources."nodemailer-6.8.0" ··· 11186 11394 ]; 11187 11395 }) 11188 11396 sources."pg-pool-3.5.2" 11189 - sources."pg-promise-10.12.0" 11397 + sources."pg-promise-10.12.1" 11190 11398 sources."pg-protocol-1.5.0" 11191 11399 sources."pg-query-stream-4.2.4" 11192 11400 sources."pg-types-2.2.0" ··· 11204 11412 sources."popsicle-transport-http-1.2.1" 11205 11413 sources."popsicle-transport-xhr-2.0.0" 11206 11414 sources."popsicle-user-agent-1.0.0" 11207 - sources."postcss-8.4.17" 11415 + sources."postcss-8.4.18" 11208 11416 sources."postgres-array-2.0.0" 11209 11417 sources."postgres-bytea-1.0.0" 11210 11418 sources."postgres-date-1.0.7" ··· 11293 11501 sources."redis-errors-1.2.0" 11294 11502 sources."redis-parser-3.0.0" 11295 11503 sources."reflect-metadata-0.1.13" 11296 - sources."regenerator-runtime-0.13.9" 11504 + sources."regenerator-runtime-0.13.10" 11297 11505 sources."regexp.prototype.flags-1.4.3" 11298 11506 sources."reinterval-1.1.0" 11299 11507 sources."remove-trailing-separator-1.1.0" ··· 11335 11543 sources."rxjs-6.6.7" 11336 11544 sources."safe-buffer-5.2.1" 11337 11545 sources."safe-regex-test-1.0.0" 11338 - sources."safe-stable-stringify-2.4.0" 11546 + sources."safe-stable-stringify-2.4.1" 11339 11547 sources."safer-buffer-2.1.2" 11340 11548 (sources."sanitize-html-2.7.0" // { 11341 11549 dependencies = [ ··· 11450 11658 sources."strip-ansi-6.0.1" 11451 11659 sources."strip-json-comments-2.0.1" 11452 11660 sources."strtok3-6.3.0" 11661 + sources."style-mod-4.0.0" 11453 11662 sources."supports-color-7.2.0" 11454 11663 sources."supports-hyperlinks-2.3.0" 11455 11664 sources."supports-preserve-symlinks-flag-1.0.0" 11456 - sources."swagger-ui-dist-4.14.2" 11665 + sources."swagger-ui-dist-4.15.2" 11457 11666 sources."swagger-ui-express-4.5.0" 11458 11667 (sources."tar-6.1.11" // { 11459 11668 dependencies = [ ··· 11474 11683 sources."tdigest-0.1.2" 11475 11684 (sources."tedious-14.7.0" // { 11476 11685 dependencies = [ 11477 - sources."bl-5.0.0" 11686 + sources."bl-5.1.0" 11478 11687 sources."buffer-6.0.3" 11479 11688 sources."readable-stream-3.6.0" 11480 11689 sources."sprintf-js-1.1.2" ··· 11569 11778 ]; 11570 11779 }) 11571 11780 sources."url-parse-1.5.10" 11572 - (sources."urllib-2.39.1" // { 11781 + (sources."urllib-2.40.0" // { 11573 11782 dependencies = [ 11574 11783 sources."debug-2.6.9" 11575 11784 sources."iconv-lite-0.4.24" ··· 11578 11787 sources."statuses-1.5.0" 11579 11788 ]; 11580 11789 }) 11581 - sources."utf-8-validate-5.0.9" 11790 + sources."utf-8-validate-5.0.10" 11582 11791 (sources."utf7-1.0.2" // { 11583 11792 dependencies = [ 11584 11793 sources."semver-5.3.0" 11585 11794 ]; 11586 11795 }) 11587 11796 sources."utf8-2.1.2" 11588 - sources."util-0.12.4" 11797 + sources."util-0.12.5" 11589 11798 sources."util-deprecate-1.0.2" 11590 11799 sources."util.promisify-1.1.1" 11591 11800 sources."utility-1.17.0" ··· 11601 11810 ]; 11602 11811 }) 11603 11812 sources."vm2-3.9.11" 11604 - sources."vue-2.6.14" 11813 + sources."vue-2.7.13" 11605 11814 sources."vue-agile-2.0.0" 11606 11815 sources."vue-color-2.8.1" 11607 11816 sources."vue-fragment-1.5.1" ··· 11609 11818 sources."vue-json-pretty-1.9.2" 11610 11819 sources."vue-prism-editor-0.3.0" 11611 11820 sources."vue-router-3.6.5" 11612 - sources."vue-template-compiler-2.6.14" 11821 + sources."vue-template-compiler-2.7.13" 11613 11822 sources."vue-typed-mixins-0.2.0" 11614 11823 sources."vue2-boring-avatars-0.3.4" 11615 11824 sources."vue2-teleport-1.0.1" 11616 11825 sources."vue2-touch-events-3.2.2" 11617 11826 sources."vuex-3.6.2" 11827 + sources."w3c-keyname-2.2.6" 11618 11828 sources."webidl-conversions-3.0.1" 11619 11829 sources."whatwg-url-5.0.0" 11620 11830 sources."which-1.3.1"
+2 -2
pkgs/applications/version-management/git-repo/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "git-repo"; 7 - version = "2.29.4"; 7 + version = "2.29.5"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "android"; 11 11 repo = "tools_repo"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-oUPY10B6JHixdfgi5BHzrg9nZ1DlFUhQyuXJj2fCSM4="; 13 + sha256 = "sha256-eMuQ0cVVbLvpDsGCob8s7D1Q+52Q2gOHTg7anP5KVAc="; 14 14 }; 15 15 16 16 # Fix 'NameError: name 'ssl' is not defined'
+5 -2
pkgs/development/interpreters/python/default.nix
··· 33 33 }: let 34 34 pythonPackages = let 35 35 ensurePythonModules = items: let 36 + exceptions = [ 37 + stdenv 38 + ]; 36 39 providesSetupHook = lib.attrByPath [ "provides" "setupHook"] false; 37 - notValid = value: (lib.isDerivation value) && !((pythonPackages.hasPythonModule value) || (providesSetupHook value)); 38 - func = name: value: if !(notValid value) then value else throw "${name} should use `buildPythonPackage` or `toPythonModule` if it is to be part of the Python packages set."; 40 + valid = value: !((lib.isDerivation value) && !((pythonPackages.hasPythonModule value) || (providesSetupHook value))) || (lib.elem value exceptions); 41 + func = name: value: if (valid value) then value else throw "${name} should use `buildPythonPackage` or `toPythonModule` if it is to be part of the Python packages set."; 39 42 in lib.mapAttrs func items; 40 43 in ensurePythonModules (callPackage 41 44 # Function that when called
+18 -7
pkgs/development/libraries/cxxtest/default.nix
··· 1 - { lib, buildPythonApplication, fetchFromGitHub }: 1 + { lib, python3Packages, fetchFromGitHub }: 2 2 3 - buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "cxxtest"; 5 5 version = "4.4"; 6 6 ··· 13 13 14 14 sourceRoot = "source/python"; 15 15 16 + checkInputs = [ python3Packages.ply ]; 17 + 18 + preCheck = '' 19 + cd ../ 20 + ''; 21 + 16 22 postCheck = '' 17 - python scripts/cxxtestgen --error-printer -o build/GoodSuite.cpp ../test/GoodSuite.h 18 - $CXX -I.. -o build/GoodSuite build/GoodSuite.cpp 23 + cd python3 24 + python scripts/cxxtestgen --error-printer -o build/GoodSuite.cpp ../../test/GoodSuite.h 25 + $CXX -I../../ -o build/GoodSuite build/GoodSuite.cpp 19 26 build/GoodSuite 27 + ''; 28 + 29 + preInstall = '' 30 + cd python3 20 31 ''; 21 32 22 33 postInstall = '' 23 34 mkdir -p "$out/include" 24 - cp -r ../cxxtest "$out/include" 35 + cp -r ../../cxxtest "$out/include" 25 36 ''; 26 37 27 38 dontWrapPythonPrograms = true; ··· 29 40 meta = with lib; { 30 41 homepage = "http://cxxtest.com"; 31 42 description = "Unit testing framework for C++"; 32 - platforms = platforms.unix; 33 43 license = licenses.lgpl3; 34 - maintainers = [ maintainers.juliendehos ]; 44 + platforms = platforms.unix; 45 + maintainers = with maintainers; [ juliendehos ]; 35 46 }; 36 47 }
+6
pkgs/development/node-packages/overrides.nix
··· 191 191 192 192 graphite-cli = prev."@withgraphite/graphite-cli".override { 193 193 name = "graphite-cli"; 194 + nativeBuildInputs = [ pkgs.installShellFiles ]; 195 + postInstall = '' 196 + installShellCompletion --cmd gt \ 197 + --bash <($out/bin/gt completion) \ 198 + --zsh <($out/bin/gt completion) 199 + ''; 194 200 }; 195 201 196 202 graphql-language-service-cli = prev.graphql-language-service-cli.override {
+2 -2
pkgs/development/python-modules/fastbencode/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "fastbencode"; 11 - version = "0.0.15"; 11 + version = "0.1"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-A1XfgjNV9k4iA3HYf0HlA1CvpwzFh52OaN7f6YLgU+I="; 18 + hash = "sha256-wal451pQSLuoM9kNbnSKVZUMqLWfEukXwqLI58p+tvU="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2
pkgs/development/python-modules/flask-testing/default.nix
··· 38 38 "test_assert_redirects" 39 39 "test_server_listening" 40 40 "test_server_process_is_spawned" 41 + # change in repr(template) in recent flask 42 + "test_assert_template_rendered_signal_sent" 41 43 ]; 42 44 43 45 disabledTestPaths = [
+12 -4
pkgs/development/python-modules/rpyc/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , hatchling 4 5 , plumbum 5 6 , pytestCheckHook 6 7 , pythonOlder ··· 8 9 9 10 buildPythonPackage rec { 10 11 pname = "rpyc"; 11 - version = "5.1.0"; 12 - format = "setuptools"; 12 + version = "5.2.3"; 13 + format = "pyproject"; 13 14 14 - disabled = pythonOlder "3.6"; 15 + disabled = pythonOlder "3.7"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "tomerfiliba"; 18 19 repo = pname; 19 20 rev = version; 20 - sha256 = "sha256-Xeot4QEgTZjvdO0ydmKjccp6zwC93Yp/HkRlSgyDf8k="; 21 + hash = "sha256-SDt6Oh+8qRIdM02FEFM+Xw1y/bBn66D6KbOrhGVs6ng="; 21 22 }; 23 + 24 + nativeBuildInputs = [ 25 + hatchling 26 + ]; 22 27 23 28 propagatedBuildInputs = [ 24 29 plumbum ··· 31 36 disabledTests = [ 32 37 # Disable tests that requires network access 33 38 "test_api" 39 + "test_close_timeout" 40 + "test_deploy" 41 + "test_listing" 34 42 "test_pruning" 35 43 "test_rpyc" 36 44 # Test is outdated
+4 -4
pkgs/development/python-modules/tubeup/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "tubeup"; 12 - version = "0.0.33"; 12 + version = "0.0.34"; 13 + format = "setuptools"; 13 14 14 15 disabled = isPy27; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - sha256 = "sha256-RFM0vZeA5PDXf9KzlJ8RTSfM7bz50bpwwszU0gjV1DY="; 19 + sha256 = "ae1e606b243fd70742f8b5871c497628d258ee9f416caa46544aca9a5fbfbca0"; 19 20 }; 20 21 21 22 postPatch = '' 22 23 substituteInPlace setup.py \ 23 - --replace "docopt==0.6.2" "docopt" \ 24 - --replace "internetarchive==2.0.3" "internetarchive" 24 + --replace "docopt==0.6.2" "docopt" 25 25 ''; 26 26 27 27 propagatedBuildInputs = [ internetarchive docopt yt-dlp ];
+2 -2
pkgs/development/tools/flyway/default.nix
··· 1 1 { lib, stdenv, fetchurl, jre_headless, makeWrapper }: 2 2 stdenv.mkDerivation rec{ 3 3 pname = "flyway"; 4 - version = "9.5.1"; 4 + version = "9.6.0"; 5 5 src = fetchurl { 6 6 url = "mirror://maven/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz"; 7 - sha256 = "sha256-ieGRP9SGI8w42f3BNcO5mv/DB3E4Hzxe0q1P5EaBxK8="; 7 + sha256 = "sha256-mf9u4FzKMBXoQ7PLUYZaYpVTuWNdSfplmzu+dKvABl8="; 8 8 }; 9 9 nativeBuildInputs = [ makeWrapper ]; 10 10 dontBuild = true;
+3 -3
pkgs/development/tools/just/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "just"; 13 - version = "1.6.0"; 13 + version = "1.7.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "casey"; 17 17 repo = pname; 18 18 rev = version; 19 - hash = "sha256-4ilq/ptDYjfXmkLqky8z8iwfvg9JgdP+uADcv/zeHWs="; 19 + hash = "sha256-W8ko9hzZmgF8XEqzbPtCJp5J38m0pAz5wTp3VRUmZOQ="; 20 20 }; 21 21 22 - cargoSha256 = "sha256-rugnbuzynQ4lBy977e04xAvueUbViIuFSzXlQkiwM00="; 22 + cargoSha256 = "sha256-rC+PcLQHjnaGSEELod6IF9NTCl0tnXvOOkHF0z77Lao="; 23 23 24 24 nativeBuildInputs = [ installShellFiles ]; 25 25 buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
+3 -3
pkgs/development/tools/millet/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "millet"; 5 - version = "0.5.6"; 5 + version = "0.5.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "azdavis"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-figP1PgM84jIbjuYzcklzYshedO5UXbxm9sbEXWkLzs="; 11 + sha256 = "sha256-AsI0n76ZWzW326/kpzP+6zjVA42WrhPqnid02OJ5fEo="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-PF1NxUypOBevGwj5bFySQluhNh7PD1NFXfJvYuKHixQ="; 14 + cargoSha256 = "sha256-tHa/DXcWLdOlMlauerSiLsLImYrbnslN6R991mSTyvs="; 15 15 16 16 postPatch = '' 17 17 rm .cargo/config.toml
+3 -3
pkgs/development/tools/rust/cargo-nextest/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-nextest"; 5 - version = "0.9.39"; 5 + version = "0.9.40"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "nextest-rs"; 9 9 repo = "nextest"; 10 10 rev = "cargo-nextest-${version}"; 11 - sha256 = "sha256-8BPKH5dfLALU1WaiinZx7IHVcUmL2wPckMDU+FVfgBs="; 11 + sha256 = "sha256-w6YTnd+v4kvv7e/Zdo4oa1AGfW86Lmjyk4jMeFs/wUE="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-GYryj+evMuDsridRD1GaeaTWyD5yQi6pRhpPOrW24nI="; 14 + cargoSha256 = "sha256-UhxC3Bv8wohO83k+ndhK9yOK2nQpeVYbc1CW5wpb2B4="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 17
+3 -3
pkgs/development/web/deno/default.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "deno"; 20 - version = "1.26.2"; 20 + version = "1.27.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "denoland"; 24 24 repo = pname; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-/t1UG8F5sWJ+Zf9+r8oiAFF4pS+tLmXMDlTeY7+2qDQ="; 26 + sha256 = "sha256-nvQimTCzcmTI37hFqf0aZvVUS01dy6alxkTTkY9nNPU="; 27 27 }; 28 - cargoSha256 = "sha256-8CauLXX/ARAyqtQLQKgxuQWcmjSzSindCLkVk+wV/Nk="; 28 + cargoSha256 = "sha256-1TrzF9h6OHfDzkKL+zQTf5dIMzB820WFtFi9pFQIgig="; 29 29 30 30 postPatch = '' 31 31 # upstream uses lld on aarch64-darwin for faster builds
+5 -5
pkgs/development/web/deno/librusty_v8.nix
··· 11 11 }; 12 12 in 13 13 fetch_librusty_v8 { 14 - version = "0.53.1"; 14 + version = "0.54.0"; 15 15 shas = { 16 - x86_64-linux = "sha256-jMOzvvjnmauVmyeBlTOeVpQB1TcQ0K8D7xXsgjLcp3M="; 17 - aarch64-linux = "sha256-aRcKpPlliO26xJe2zBym5/+hNmJUIrWu3qXJa9R3Irg="; 18 - x86_64-darwin = "sha256-JsEx2t8d33xRlh+pmJtk5jvDktfW6nFGdw6oqJ3uYSU="; 19 - aarch64-darwin = "sha256-ju/qr65m33IyXFL2VQXhvtL7PsxSpi8RrGteIb9dQTU="; 16 + x86_64-linux = "sha256-V7xBGdKtLZRRNoRyvY/8a3Cvw12zo8tz76ZR72xmG6U="; 17 + aarch64-linux = "sha256-/KIZ2Feli7VNdgFUU+MC5QZ8dQJ88TKfjz/SOoux1zg="; 18 + x86_64-darwin = "sha256-xBDMDvWFZPMwJb3alQe7ZuboTm2aFOh9F7memuHo180="; 19 + aarch64-darwin = "sha256-Z62rnm8X0cro7HBBv5pbkvQJd+AW+wF2tthH1+5a0nU="; 20 20 }; 21 21 }
+3 -4
pkgs/games/fheroes2/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub 2 2 , gettext, glibcLocalesUtf8, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, zlib 3 3 4 - # updater only 5 - , nix-update-script 4 + , gitUpdater 6 5 }: 7 6 8 7 stdenv.mkDerivation rec { ··· 43 42 ''; 44 43 45 44 passthru = { 46 - updateScript = nix-update-script { 47 - attrPath = pname; 45 + updateScript = gitUpdater { 46 + url = "https://github.com/ihhub/fheroes2.git"; 48 47 }; 49 48 }; 50 49
+2 -2
pkgs/games/sil-q/default.nix
··· 41 41 mkdir -p $out/bin 42 42 cp sil $out/bin/sil-q 43 43 wrapProgram $out/bin/sil-q \ 44 - --run "export ANGBAND_PATH=\$HOME/.sil" \ 44 + --run "export ANGBAND_PATH=\$HOME/.sil-q" \ 45 45 --run "${setup} ${src}/lib" 46 46 47 47 runHook postInstall ··· 50 50 passthru.tests = { 51 51 saveDirCreation = pkgs.runCommand "save-dir-creation" {} '' 52 52 HOME=$(pwd) ${lib.getExe pkgs.sil-q} --help 53 - test -d .sil && touch $out 53 + test -d .sil-q && touch $out 54 54 ''; 55 55 }; 56 56
+2 -2
pkgs/servers/jackett/default.nix
··· 9 9 10 10 buildDotnetModule rec { 11 11 pname = "jackett"; 12 - version = "0.20.2169"; 12 + version = "0.20.2171"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = pname; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "D1q2nzDxlsFrxZRmZJTiJSWQ/BihuEDUVirv2qKgsnI="; 18 + sha256 = "FW/3CkkLeHWw8KrBctAChRE9DMoooOmPkHZVBKp91Jk="; 19 19 }; 20 20 21 21 projectFile = "src/Jackett.Server/Jackett.Server.csproj";
+16 -18
pkgs/servers/roon-bridge/default.nix
··· 9 9 , stdenv 10 10 , zlib 11 11 }: 12 - stdenv.mkDerivation rec { 12 + let 13 + version = "1.8-1125"; 14 + urlVersion = builtins.replaceStrings [ "." "-" ] [ "00" "0" ] version; 15 + host = stdenv.hostPlatform.system; 16 + system = if host == "x86_64-linux" then "linuxx64" 17 + else if host == "aarch64-linux" then "linuxarmv8" 18 + else throw "Unsupported platform ${host}"; 19 + src = fetchurl { 20 + url = "https://download.roonlabs.com/updates/stable/RoonBridge_${system}_${urlVersion}.tar.bz2"; 21 + hash = if system == "linuxx64" then "sha256-DbtKPFEz2WIoKTxP+zoehzz+BjfsLZ2ZQk/FMh+zFBM=" 22 + else if system == "linuxarmv8" then "sha256-+przEj96R+f1z4ewETFarF4oY6tT2VW/ukSTgUBLiYk=" 23 + else throw "Unsupported platform ${host}"; 24 + }; 25 + in 26 + stdenv.mkDerivation { 13 27 pname = "roon-bridge"; 14 - version = "1.8-943"; 15 - 16 - src = 17 - let 18 - urlVersion = builtins.replaceStrings [ "." "-" ] [ "00" "00" ] version; 19 - inherit (stdenv.targetPlatform) system; 20 - in 21 - { 22 - x86_64-linux = fetchurl { 23 - url = "http://download.roonlabs.com/builds/RoonBridge_linuxx64_${urlVersion}.tar.bz2"; 24 - hash = "sha256-knmy2zlRh+ehvYKHC7UN60pMCt8bYPuo9kTz2m0pOW0"; 25 - }; 26 - aarch64-linux = fetchurl { 27 - url = "http://download.roonlabs.com/builds/RoonBridge_linuxarmv8_${urlVersion}.tar.bz2"; 28 - hash = "sha256-urMhtBUjP4HpV9EDZOLLnfnMqhmsWPx0M2+Xdvc8YnU="; 29 - }; 30 - }.${system} or (throw "Unsupposed system: ${system}"); 28 + inherit src version; 31 29 32 30 dontConfigure = true; 33 31 dontBuild = true;
+2 -2
pkgs/servers/roon-server/default.nix
··· 15 15 , stdenv 16 16 }: 17 17 let 18 - version = "2.0-1128"; 18 + version = "2.0-1143"; 19 19 urlVersion = builtins.replaceStrings [ "." "-" ] [ "00" "0" ] version; 20 20 in 21 21 stdenv.mkDerivation { ··· 24 24 25 25 src = fetchurl { 26 26 url = "https://download.roonlabs.com/updates/production/RoonServer_linuxx64_${urlVersion}.tar.bz2"; 27 - hash = "sha256-PR3LR7u9X6eUAyoAW1tXv3LzqoVz3RQ0MZwdF0iAXJ8="; 27 + hash = "sha256-qSqSiqO3SzVmRacbbAphVLp0ablQCjR4Zn2HIQaqSPs="; 28 28 }; 29 29 30 30 dontConfigure = true;
+18 -1
pkgs/tools/misc/android-tools/default.nix
··· 28 28 ./android-tools-kernel-headers-6.0.diff 29 29 ]; 30 30 31 + postPatch = lib.optionalString stdenv.isDarwin '' 32 + sed -i 's/usb_linux/usb_osx/g' vendor/CMakeLists.{adb,fastboot}.txt 33 + sed -i 's/libselinux libsepol/ /g;s#selinux/libselinux/include##g' vendor/CMakeLists.{fastboot,mke2fs}.txt 34 + sed -z -i 's/add_library(libselinux.*selinux\/libsepol\/include)//g' vendor/CMakeLists.fastboot.txt 35 + sed -i 's/e2fsdroid//g' vendor/CMakeLists.txt 36 + sed -z -i 's/add_executable(e2fsdroid.*e2fsprogs\/misc)//g' vendor/CMakeLists.mke2fs.txt 37 + ''; 38 + 31 39 nativeBuildInputs = [ cmake perl go ]; 32 40 buildInputs = [ protobuf zlib gtest brotli lz4 zstd libusb1 pcre2 fmt_7 ]; 33 41 propagatedBuildInputs = [ pythonEnv ]; 34 42 35 43 # Don't try to fetch any Go modules via the network: 36 44 GOFLAGS = [ "-mod=vendor" ]; 45 + 46 + NIX_CFLAGS_COMPILE = lib.optionals stdenv.isDarwin [ 47 + "-D_DARWIN_C_SOURCE" 48 + ]; 49 + 50 + NIX_LDFLAGS = lib.optionals stdenv.isDarwin [ 51 + "-framework CoreFoundation" 52 + "-framework IOKit" 53 + ]; 37 54 38 55 preConfigure = '' 39 56 export GOCACHE=$TMPDIR/go-cache ··· 63 80 # https://developer.android.com/studio/releases/platform-tools 64 81 homepage = "https://github.com/nmeum/android-tools"; 65 82 license = with licenses; [ asl20 unicode-dfs-2015 ]; 66 - platforms = platforms.linux; 83 + platforms = platforms.unix; 67 84 maintainers = with maintainers; [ primeos ]; 68 85 }; 69 86 }
+4 -4
pkgs/tools/nix/nix-store-gcs-proxy/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - buildGoPackage rec { 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + buildGoModule rec { 3 3 pname = "nix-store-gcs-proxy"; 4 4 version = "0.1.0"; 5 5 ··· 10 10 sha256 = "0804p65px4wd7gzxggpdxsazkd1hbz1p15zzaxf9ygc6sh26ncln"; 11 11 }; 12 12 13 - goPackagePath = "github.com/tweag/nix-store-gcs-proxy"; 13 + vendorSha256 = "sha256-Bm3yFzm2LXOPYWQDk/UBusV0lPfc/BCKIb3pPlWgDFo="; 14 14 15 - goDeps = ./deps.nix; 15 + ldflags = [ "-s" "-w" ]; 16 16 17 17 meta = { 18 18 description = "A HTTP nix store that proxies requests to Google Storage";
-813
pkgs/tools/nix/nix-store-gcs-proxy/deps.nix
··· 1 - # file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix) 2 - [ 3 - { 4 - goPackagePath = "cloud.google.com/go"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://code.googlesource.com/gocloud"; 8 - rev = "v0.37.2"; 9 - sha256 = "1w6crdxy9vzd8vm672hng22spwld6d60z58kbr28dkiiz694wqvs"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/BurntSushi/toml"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/BurntSushi/toml"; 17 - rev = "v0.3.1"; 18 - sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/Shopify/sarama"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/Shopify/sarama"; 26 - rev = "v1.19.0"; 27 - sha256 = "0q1z3pvcd011yprwzws2s293v4cjvsszhai6vnfrahjcbsz79q0z"; 28 - }; 29 - } 30 - { 31 - goPackagePath = "github.com/Shopify/toxiproxy"; 32 - fetch = { 33 - type = "git"; 34 - url = "https://github.com/Shopify/toxiproxy"; 35 - rev = "v2.1.4"; 36 - sha256 = "07yhsvscdv1qjfc2fyyh9qsrrdwrrw04wadk5gaq4qddcway7vig"; 37 - }; 38 - } 39 - { 40 - goPackagePath = "github.com/alecthomas/template"; 41 - fetch = { 42 - type = "git"; 43 - url = "https://github.com/alecthomas/template"; 44 - rev = "a0175ee3bccc"; 45 - sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; 46 - }; 47 - } 48 - { 49 - goPackagePath = "github.com/alecthomas/units"; 50 - fetch = { 51 - type = "git"; 52 - url = "https://github.com/alecthomas/units"; 53 - rev = "2efee857e7cf"; 54 - sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; 55 - }; 56 - } 57 - { 58 - goPackagePath = "github.com/anmitsu/go-shlex"; 59 - fetch = { 60 - type = "git"; 61 - url = "https://github.com/anmitsu/go-shlex"; 62 - rev = "648efa622239"; 63 - sha256 = "10rgdp5d106iisgz25ic8k6f44s9adh4sjh6fyxq9ccm21gw49b7"; 64 - }; 65 - } 66 - { 67 - goPackagePath = "github.com/apache/thrift"; 68 - fetch = { 69 - type = "git"; 70 - url = "https://github.com/apache/thrift"; 71 - rev = "v0.12.0"; 72 - sha256 = "0g2g61rs189nimg3631wxfwdx12dsdz70qvncczlyvn34pcj7yby"; 73 - }; 74 - } 75 - { 76 - goPackagePath = "github.com/beorn7/perks"; 77 - fetch = { 78 - type = "git"; 79 - url = "https://github.com/beorn7/perks"; 80 - rev = "3a771d992973"; 81 - sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; 82 - }; 83 - } 84 - { 85 - goPackagePath = "github.com/bradfitz/go-smtpd"; 86 - fetch = { 87 - type = "git"; 88 - url = "https://github.com/bradfitz/go-smtpd"; 89 - rev = "deb6d6237625"; 90 - sha256 = "1i33brqd44h0a9hbdnclka0hfg0f6qi5xy23f0ap9yixkhj4k9p6"; 91 - }; 92 - } 93 - { 94 - goPackagePath = "github.com/client9/misspell"; 95 - fetch = { 96 - type = "git"; 97 - url = "https://github.com/client9/misspell"; 98 - rev = "v0.3.4"; 99 - sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs"; 100 - }; 101 - } 102 - { 103 - goPackagePath = "github.com/coreos/go-systemd"; 104 - fetch = { 105 - type = "git"; 106 - url = "https://github.com/coreos/go-systemd"; 107 - rev = "c6f51f82210d"; 108 - sha256 = "1vnccmnkjl6n539l4cliz6sznpqn6igf5v7mbmsgahb838742clb"; 109 - }; 110 - } 111 - { 112 - goPackagePath = "github.com/davecgh/go-spew"; 113 - fetch = { 114 - type = "git"; 115 - url = "https://github.com/davecgh/go-spew"; 116 - rev = "v1.1.1"; 117 - sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"; 118 - }; 119 - } 120 - { 121 - goPackagePath = "github.com/eapache/go-resiliency"; 122 - fetch = { 123 - type = "git"; 124 - url = "https://github.com/eapache/go-resiliency"; 125 - rev = "v1.1.0"; 126 - sha256 = "1zmgw3c4w5r6m2r340n4jc5l5ll3m3nbszqrmrgbqc2xixxyk2gx"; 127 - }; 128 - } 129 - { 130 - goPackagePath = "github.com/eapache/go-xerial-snappy"; 131 - fetch = { 132 - type = "git"; 133 - url = "https://github.com/eapache/go-xerial-snappy"; 134 - rev = "776d5712da21"; 135 - sha256 = "0ncc41dv7xwb1znyzmzh7cvs6j5fzz0f1n8h1v3grl9ma6s1si9d"; 136 - }; 137 - } 138 - { 139 - goPackagePath = "github.com/eapache/queue"; 140 - fetch = { 141 - type = "git"; 142 - url = "https://github.com/eapache/queue"; 143 - rev = "v1.1.0"; 144 - sha256 = "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg"; 145 - }; 146 - } 147 - { 148 - goPackagePath = "github.com/flynn/go-shlex"; 149 - fetch = { 150 - type = "git"; 151 - url = "https://github.com/flynn/go-shlex"; 152 - rev = "3f9db97f8568"; 153 - sha256 = "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia"; 154 - }; 155 - } 156 - { 157 - goPackagePath = "github.com/fsnotify/fsnotify"; 158 - fetch = { 159 - type = "git"; 160 - url = "https://github.com/fsnotify/fsnotify"; 161 - rev = "v1.4.7"; 162 - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; 163 - }; 164 - } 165 - { 166 - goPackagePath = "github.com/gliderlabs/ssh"; 167 - fetch = { 168 - type = "git"; 169 - url = "https://github.com/gliderlabs/ssh"; 170 - rev = "v0.1.1"; 171 - sha256 = "0bylkc7yg8bxxffhchikcnzwli5n95cfmbji6v2a4mn1h5n36mdm"; 172 - }; 173 - } 174 - { 175 - goPackagePath = "github.com/go-kit/kit"; 176 - fetch = { 177 - type = "git"; 178 - url = "https://github.com/go-kit/kit"; 179 - rev = "v0.8.0"; 180 - sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0"; 181 - }; 182 - } 183 - { 184 - goPackagePath = "github.com/go-logfmt/logfmt"; 185 - fetch = { 186 - type = "git"; 187 - url = "https://github.com/go-logfmt/logfmt"; 188 - rev = "v0.3.0"; 189 - sha256 = "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9"; 190 - }; 191 - } 192 - { 193 - goPackagePath = "github.com/go-stack/stack"; 194 - fetch = { 195 - type = "git"; 196 - url = "https://github.com/go-stack/stack"; 197 - rev = "v1.8.0"; 198 - sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v"; 199 - }; 200 - } 201 - { 202 - goPackagePath = "github.com/gogo/protobuf"; 203 - fetch = { 204 - type = "git"; 205 - url = "https://github.com/gogo/protobuf"; 206 - rev = "v1.2.0"; 207 - sha256 = "1c3y5m08mvrgvlw0kb9pldh3kkqcj99pa8gqmk1g3hp8ih3b2dv0"; 208 - }; 209 - } 210 - { 211 - goPackagePath = "github.com/golang/glog"; 212 - fetch = { 213 - type = "git"; 214 - url = "https://github.com/golang/glog"; 215 - rev = "23def4e6c14b"; 216 - sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30"; 217 - }; 218 - } 219 - { 220 - goPackagePath = "github.com/golang/mock"; 221 - fetch = { 222 - type = "git"; 223 - url = "https://github.com/golang/mock"; 224 - rev = "v1.2.0"; 225 - sha256 = "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg"; 226 - }; 227 - } 228 - { 229 - goPackagePath = "github.com/golang/protobuf"; 230 - fetch = { 231 - type = "git"; 232 - url = "https://github.com/golang/protobuf"; 233 - rev = "v1.2.0"; 234 - sha256 = "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab"; 235 - }; 236 - } 237 - { 238 - goPackagePath = "github.com/golang/snappy"; 239 - fetch = { 240 - type = "git"; 241 - url = "https://github.com/golang/snappy"; 242 - rev = "2e65f85255db"; 243 - sha256 = "05w6mpc4qcy0pv8a2bzng8nf4s5rf5phfang4jwy9rgf808q0nxf"; 244 - }; 245 - } 246 - { 247 - goPackagePath = "github.com/google/btree"; 248 - fetch = { 249 - type = "git"; 250 - url = "https://github.com/google/btree"; 251 - rev = "4030bb1f1f0c"; 252 - sha256 = "0ba430m9fbnagacp57krgidsyrgp3ycw5r7dj71brgp5r52g82p6"; 253 - }; 254 - } 255 - { 256 - goPackagePath = "github.com/google/go-cmp"; 257 - fetch = { 258 - type = "git"; 259 - url = "https://github.com/google/go-cmp"; 260 - rev = "v0.2.0"; 261 - sha256 = "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds"; 262 - }; 263 - } 264 - { 265 - goPackagePath = "github.com/google/go-github"; 266 - fetch = { 267 - type = "git"; 268 - url = "https://github.com/google/go-github"; 269 - rev = "v17.0.0"; 270 - sha256 = "1kvw95l77a5n5rgal9n1xjh58zxb3a40ij1j722b1h4z8yg9jhg4"; 271 - }; 272 - } 273 - { 274 - goPackagePath = "github.com/google/go-querystring"; 275 - fetch = { 276 - type = "git"; 277 - url = "https://github.com/google/go-querystring"; 278 - rev = "v1.0.0"; 279 - sha256 = "0xl12bqyvmn4xcnf8p9ksj9rmnr7s40pvppsdmy8n9bzw1db0iwz"; 280 - }; 281 - } 282 - { 283 - goPackagePath = "github.com/google/martian"; 284 - fetch = { 285 - type = "git"; 286 - url = "https://github.com/google/martian"; 287 - rev = "v2.1.0"; 288 - sha256 = "197hil6vrjk50b9wvwyzf61csid83whsjj6ik8mc9r2lryxlyyrp"; 289 - }; 290 - } 291 - { 292 - goPackagePath = "github.com/google/pprof"; 293 - fetch = { 294 - type = "git"; 295 - url = "https://github.com/google/pprof"; 296 - rev = "3ea8567a2e57"; 297 - sha256 = "09rhjn3ms0a72dw0yzbp237p7yhqma772zspddn6mgkh3gi3kn4c"; 298 - }; 299 - } 300 - { 301 - goPackagePath = "github.com/googleapis/gax-go"; 302 - fetch = { 303 - type = "git"; 304 - url = "https://github.com/googleapis/gax-go"; 305 - rev = "v2.0.4"; 306 - sha256 = "1iwnm6ky1x53lgs44mw3hpdkjzrm5qd0kfs50m0qcq2ml5m1cwdm"; 307 - }; 308 - } 309 - { 310 - goPackagePath = "github.com/gorilla/context"; 311 - fetch = { 312 - type = "git"; 313 - url = "https://github.com/gorilla/context"; 314 - rev = "v1.1.1"; 315 - sha256 = "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4"; 316 - }; 317 - } 318 - { 319 - goPackagePath = "github.com/gorilla/mux"; 320 - fetch = { 321 - type = "git"; 322 - url = "https://github.com/gorilla/mux"; 323 - rev = "v1.6.2"; 324 - sha256 = "0pvzm23hklxysspnz52mih6h1q74vfrdhjfm1l3sa9r8hhqmmld2"; 325 - }; 326 - } 327 - { 328 - goPackagePath = "github.com/gregjones/httpcache"; 329 - fetch = { 330 - type = "git"; 331 - url = "https://github.com/gregjones/httpcache"; 332 - rev = "9cad4c3443a7"; 333 - sha256 = "0wjdwcwqqcx2d5y68qvhg6qyj977il5ijmnn9h9cd6wjbdy0ay6s"; 334 - }; 335 - } 336 - { 337 - goPackagePath = "github.com/hashicorp/golang-lru"; 338 - fetch = { 339 - type = "git"; 340 - url = "https://github.com/hashicorp/golang-lru"; 341 - rev = "v0.5.0"; 342 - sha256 = "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f"; 343 - }; 344 - } 345 - { 346 - goPackagePath = "github.com/hpcloud/tail"; 347 - fetch = { 348 - type = "git"; 349 - url = "https://github.com/hpcloud/tail"; 350 - rev = "v1.0.0"; 351 - sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0"; 352 - }; 353 - } 354 - { 355 - goPackagePath = "github.com/jellevandenhooff/dkim"; 356 - fetch = { 357 - type = "git"; 358 - url = "https://github.com/jellevandenhooff/dkim"; 359 - rev = "f50fe3d243e1"; 360 - sha256 = "0qf5pypxfpciivj0v728i24rfjwhnwm07945mj6p3cw4gdphqhm0"; 361 - }; 362 - } 363 - { 364 - goPackagePath = "github.com/jstemmer/go-junit-report"; 365 - fetch = { 366 - type = "git"; 367 - url = "https://github.com/jstemmer/go-junit-report"; 368 - rev = "af01ea7f8024"; 369 - sha256 = "1lp3n94ris12hac02wi31f3whs88lcrzwgdg43a5j6cafg9p1d0s"; 370 - }; 371 - } 372 - { 373 - goPackagePath = "github.com/julienschmidt/httprouter"; 374 - fetch = { 375 - type = "git"; 376 - url = "https://github.com/julienschmidt/httprouter"; 377 - rev = "v1.2.0"; 378 - sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666"; 379 - }; 380 - } 381 - { 382 - goPackagePath = "github.com/konsorten/go-windows-terminal-sequences"; 383 - fetch = { 384 - type = "git"; 385 - url = "https://github.com/konsorten/go-windows-terminal-sequences"; 386 - rev = "v1.0.1"; 387 - sha256 = "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip"; 388 - }; 389 - } 390 - { 391 - goPackagePath = "github.com/kr/logfmt"; 392 - fetch = { 393 - type = "git"; 394 - url = "https://github.com/kr/logfmt"; 395 - rev = "b84e30acd515"; 396 - sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9"; 397 - }; 398 - } 399 - { 400 - goPackagePath = "github.com/kr/pty"; 401 - fetch = { 402 - type = "git"; 403 - url = "https://github.com/kr/pty"; 404 - rev = "v1.1.3"; 405 - sha256 = "0knzlvndfgjm2k23vhp2xj1cv3fm31vbg5b20gdl1vnxk7rh549h"; 406 - }; 407 - } 408 - { 409 - goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 410 - fetch = { 411 - type = "git"; 412 - url = "https://github.com/matttproud/golang_protobuf_extensions"; 413 - rev = "v1.0.1"; 414 - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; 415 - }; 416 - } 417 - { 418 - goPackagePath = "github.com/mwitkow/go-conntrack"; 419 - fetch = { 420 - type = "git"; 421 - url = "https://github.com/mwitkow/go-conntrack"; 422 - rev = "cc309e4a2223"; 423 - sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf"; 424 - }; 425 - } 426 - { 427 - goPackagePath = "github.com/onsi/ginkgo"; 428 - fetch = { 429 - type = "git"; 430 - url = "https://github.com/onsi/ginkgo"; 431 - rev = "v1.7.0"; 432 - sha256 = "14wgpdrvpc35rdz3859bz53sc1g4vpr1fysy15wy3ff9gmqs14yg"; 433 - }; 434 - } 435 - { 436 - goPackagePath = "github.com/onsi/gomega"; 437 - fetch = { 438 - type = "git"; 439 - url = "https://github.com/onsi/gomega"; 440 - rev = "v1.4.3"; 441 - sha256 = "1c8rqg5i2hz3snmq7s41yar1zjnzilb0fyiyhkg83v97afcfx79v"; 442 - }; 443 - } 444 - { 445 - goPackagePath = "github.com/openzipkin/zipkin-go"; 446 - fetch = { 447 - type = "git"; 448 - url = "https://github.com/openzipkin/zipkin-go"; 449 - rev = "v0.1.6"; 450 - sha256 = "0fyf69w66khj3dxdpqydwjdhhhyhlh3caxa5ybnd1h2f6b5gbvvv"; 451 - }; 452 - } 453 - { 454 - goPackagePath = "github.com/pierrec/lz4"; 455 - fetch = { 456 - type = "git"; 457 - url = "https://github.com/pierrec/lz4"; 458 - rev = "v2.0.5"; 459 - sha256 = "0y5rh7z01zycd59nnjpkqq0ydyjmcg9j1xw15q1i600l9j9g617p"; 460 - }; 461 - } 462 - { 463 - goPackagePath = "github.com/pkg/errors"; 464 - fetch = { 465 - type = "git"; 466 - url = "https://github.com/pkg/errors"; 467 - rev = "v0.8.0"; 468 - sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5"; 469 - }; 470 - } 471 - { 472 - goPackagePath = "github.com/pmezard/go-difflib"; 473 - fetch = { 474 - type = "git"; 475 - url = "https://github.com/pmezard/go-difflib"; 476 - rev = "v1.0.0"; 477 - sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; 478 - }; 479 - } 480 - { 481 - goPackagePath = "github.com/prometheus/client_golang"; 482 - fetch = { 483 - type = "git"; 484 - url = "https://github.com/prometheus/client_golang"; 485 - rev = "3c4408c8b829"; 486 - sha256 = "06d9cxxxkglks8fpfg3spxscyrq4lw7fckm4p6f0wshq65am2lxw"; 487 - }; 488 - } 489 - { 490 - goPackagePath = "github.com/prometheus/client_model"; 491 - fetch = { 492 - type = "git"; 493 - url = "https://github.com/prometheus/client_model"; 494 - rev = "56726106282f"; 495 - sha256 = "19y4qs9mkxiiab5sh3b7cccjpl3xbp6sy8812ig9f1zg8vzkzj7j"; 496 - }; 497 - } 498 - { 499 - goPackagePath = "github.com/prometheus/common"; 500 - fetch = { 501 - type = "git"; 502 - url = "https://github.com/prometheus/common"; 503 - rev = "v0.2.0"; 504 - sha256 = "02kym6lcfnlq23qbv277jr0q1n7jj0r14gqg93c7wn7gc44jv3vp"; 505 - }; 506 - } 507 - { 508 - goPackagePath = "github.com/prometheus/procfs"; 509 - fetch = { 510 - type = "git"; 511 - url = "https://github.com/prometheus/procfs"; 512 - rev = "bf6a532e95b1"; 513 - sha256 = "0k65i2ikf3jp6863mpc1raf928i78r8jd7zn9djx6f4izls6l6j1"; 514 - }; 515 - } 516 - { 517 - goPackagePath = "github.com/rcrowley/go-metrics"; 518 - fetch = { 519 - type = "git"; 520 - url = "https://github.com/rcrowley/go-metrics"; 521 - rev = "3113b8401b8a"; 522 - sha256 = "1m5q5dsvkqz809aag6dyan74wdrp69g2mb9killbv7z4ls2mlfr3"; 523 - }; 524 - } 525 - { 526 - goPackagePath = "github.com/sirupsen/logrus"; 527 - fetch = { 528 - type = "git"; 529 - url = "https://github.com/sirupsen/logrus"; 530 - rev = "v1.2.0"; 531 - sha256 = "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg"; 532 - }; 533 - } 534 - { 535 - goPackagePath = "github.com/stretchr/objx"; 536 - fetch = { 537 - type = "git"; 538 - url = "https://github.com/stretchr/objx"; 539 - rev = "v0.1.1"; 540 - sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls"; 541 - }; 542 - } 543 - { 544 - goPackagePath = "github.com/stretchr/testify"; 545 - fetch = { 546 - type = "git"; 547 - url = "https://github.com/stretchr/testify"; 548 - rev = "v1.2.2"; 549 - sha256 = "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs"; 550 - }; 551 - } 552 - { 553 - goPackagePath = "github.com/tarm/serial"; 554 - fetch = { 555 - type = "git"; 556 - url = "https://github.com/tarm/serial"; 557 - rev = "98f6abe2eb07"; 558 - sha256 = "1yj4jiv2f3x3iawxdflrlmdan0k9xsbnccgc9yz658rmif1ag3pb"; 559 - }; 560 - } 561 - { 562 - goPackagePath = "github.com/urfave/cli"; 563 - fetch = { 564 - type = "git"; 565 - url = "https://github.com/urfave/cli"; 566 - rev = "v1.20.0"; 567 - sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj"; 568 - }; 569 - } 570 - { 571 - goPackagePath = "github.com/urfave/negroni"; 572 - fetch = { 573 - type = "git"; 574 - url = "https://github.com/urfave/negroni"; 575 - rev = "v1.0.0"; 576 - sha256 = "1gp6j74adi1cn8fq5v3wzlzhwl4zg43n2746m4fzdcdimihk3ccp"; 577 - }; 578 - } 579 - { 580 - goPackagePath = "go.opencensus.io"; 581 - fetch = { 582 - type = "git"; 583 - url = "https://github.com/census-instrumentation/opencensus-go"; 584 - rev = "v0.19.2"; 585 - sha256 = "1vlik5xwwrhcyy9yx2yc3y02y6hp9q80591hbhncv9c8wwfg9gjc"; 586 - }; 587 - } 588 - { 589 - goPackagePath = "go4.org"; 590 - fetch = { 591 - type = "git"; 592 - url = "https://github.com/go4org/go4"; 593 - rev = "417644f6feb5"; 594 - sha256 = "013cvdg4fj15l9xg84br0vkb2d99j04s5b4g7zssqhng8dkwgr37"; 595 - }; 596 - } 597 - { 598 - goPackagePath = "golang.org/x/build"; 599 - fetch = { 600 - type = "git"; 601 - url = "https://go.googlesource.com/build"; 602 - rev = "5284462c4bec"; 603 - sha256 = "0w649zbs4n64b6rjx92hy7vc1y9sv4khhk5igbz8w7sxvz8778ij"; 604 - }; 605 - } 606 - { 607 - goPackagePath = "golang.org/x/crypto"; 608 - fetch = { 609 - type = "git"; 610 - url = "https://go.googlesource.com/crypto"; 611 - rev = "c2843e01d9a2"; 612 - sha256 = "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r"; 613 - }; 614 - } 615 - { 616 - goPackagePath = "golang.org/x/exp"; 617 - fetch = { 618 - type = "git"; 619 - url = "https://go.googlesource.com/exp"; 620 - rev = "509febef88a4"; 621 - sha256 = "02isrh39z8znrp5znplzy0dip2gnrl3jm1355raliyvhnhg04j6q"; 622 - }; 623 - } 624 - { 625 - goPackagePath = "golang.org/x/lint"; 626 - fetch = { 627 - type = "git"; 628 - url = "https://go.googlesource.com/lint"; 629 - rev = "5614ed5bae6f"; 630 - sha256 = "0fzn0zjv0x92xvfdq3a0v9w5sgkhr7hxkfy9zaqi8i57807z8bnx"; 631 - }; 632 - } 633 - { 634 - goPackagePath = "golang.org/x/net"; 635 - fetch = { 636 - type = "git"; 637 - url = "https://go.googlesource.com/net"; 638 - rev = "d8887717615a"; 639 - sha256 = "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163"; 640 - }; 641 - } 642 - { 643 - goPackagePath = "golang.org/x/oauth2"; 644 - fetch = { 645 - type = "git"; 646 - url = "https://go.googlesource.com/oauth2"; 647 - rev = "e64efc72b421"; 648 - sha256 = "0djvwz2avx7knsjbl434vw1wqbrg53xp1kh599gfixn5icrggz4m"; 649 - }; 650 - } 651 - { 652 - goPackagePath = "golang.org/x/perf"; 653 - fetch = { 654 - type = "git"; 655 - url = "https://go.googlesource.com/perf"; 656 - rev = "6e6d33e29852"; 657 - sha256 = "1cyiy459bkjqnzgk051lsksz46hdkjc34q33zf946kiv3hilp1v2"; 658 - }; 659 - } 660 - { 661 - goPackagePath = "golang.org/x/sync"; 662 - fetch = { 663 - type = "git"; 664 - url = "https://go.googlesource.com/sync"; 665 - rev = "e225da77a7e6"; 666 - sha256 = "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p"; 667 - }; 668 - } 669 - { 670 - goPackagePath = "golang.org/x/sys"; 671 - fetch = { 672 - type = "git"; 673 - url = "https://go.googlesource.com/sys"; 674 - rev = "d0b11bdaac8a"; 675 - sha256 = "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl"; 676 - }; 677 - } 678 - { 679 - goPackagePath = "golang.org/x/text"; 680 - fetch = { 681 - type = "git"; 682 - url = "https://go.googlesource.com/text"; 683 - rev = "17ff2d5776d2"; 684 - sha256 = "1rrh2mnmyxr45nsvy42zq3w3ly6gw6rl993knwvf1w71kyv0jjnj"; 685 - }; 686 - } 687 - { 688 - goPackagePath = "golang.org/x/time"; 689 - fetch = { 690 - type = "git"; 691 - url = "https://go.googlesource.com/time"; 692 - rev = "85acf8d2951c"; 693 - sha256 = "0yqnxsrarjk4qkda8kcxzmk7y90kkkxzx9iwryzrk7bzs87ky3xc"; 694 - }; 695 - } 696 - { 697 - goPackagePath = "golang.org/x/tools"; 698 - fetch = { 699 - type = "git"; 700 - url = "https://go.googlesource.com/tools"; 701 - rev = "e65039ee4138"; 702 - sha256 = "0c094599cf70wdrms49a3879qkq122pqlp2av444gs2pvc8apdcx"; 703 - }; 704 - } 705 - { 706 - goPackagePath = "google.golang.org/api"; 707 - fetch = { 708 - type = "git"; 709 - url = "https://code.googlesource.com/google-api-go-client"; 710 - rev = "v0.3.0"; 711 - sha256 = "1vvrhiq2zs677iz2j6s9iv4q3j3nhxz5ci9y4zrak248lrdln0zk"; 712 - }; 713 - } 714 - { 715 - goPackagePath = "google.golang.org/appengine"; 716 - fetch = { 717 - type = "git"; 718 - url = "https://github.com/golang/appengine"; 719 - rev = "v1.4.0"; 720 - sha256 = "06zl7w4sxgdq2pl94wy9ncii6h0z3szl4xpqds0sv3b3wbdlhbnn"; 721 - }; 722 - } 723 - { 724 - goPackagePath = "google.golang.org/genproto"; 725 - fetch = { 726 - type = "git"; 727 - url = "https://github.com/google/go-genproto"; 728 - rev = "5fe7a883aa19"; 729 - sha256 = "0qjkwig0r42q0j2qv57s4ahsgmmp41dz3ih3rnaqg0619n5w7lbs"; 730 - }; 731 - } 732 - { 733 - goPackagePath = "google.golang.org/grpc"; 734 - fetch = { 735 - type = "git"; 736 - url = "https://github.com/grpc/grpc-go"; 737 - rev = "v1.19.0"; 738 - sha256 = "1znqwpj7ix3dpzx4zch0q70sdl3z5lvbb7v3q4i8sf8kas3yv71v"; 739 - }; 740 - } 741 - { 742 - goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; 743 - fetch = { 744 - type = "git"; 745 - url = "https://gopkg.in/alecthomas/kingpin.v2"; 746 - rev = "v2.2.6"; 747 - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; 748 - }; 749 - } 750 - { 751 - goPackagePath = "gopkg.in/check.v1"; 752 - fetch = { 753 - type = "git"; 754 - url = "https://gopkg.in/check.v1"; 755 - rev = "788fd7840127"; 756 - sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a"; 757 - }; 758 - } 759 - { 760 - goPackagePath = "gopkg.in/fsnotify.v1"; 761 - fetch = { 762 - type = "git"; 763 - url = "https://gopkg.in/fsnotify.v1"; 764 - rev = "v1.4.7"; 765 - sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; 766 - }; 767 - } 768 - { 769 - goPackagePath = "gopkg.in/inf.v0"; 770 - fetch = { 771 - type = "git"; 772 - url = "https://gopkg.in/inf.v0"; 773 - rev = "v0.9.1"; 774 - sha256 = "00k5iqjcp371fllqxncv7jkf80hn1zww92zm78cclbcn4ybigkng"; 775 - }; 776 - } 777 - { 778 - goPackagePath = "gopkg.in/tomb.v1"; 779 - fetch = { 780 - type = "git"; 781 - url = "https://gopkg.in/tomb.v1"; 782 - rev = "dd632973f1e7"; 783 - sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv"; 784 - }; 785 - } 786 - { 787 - goPackagePath = "gopkg.in/yaml.v2"; 788 - fetch = { 789 - type = "git"; 790 - url = "https://gopkg.in/yaml.v2"; 791 - rev = "v2.2.2"; 792 - sha256 = "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"; 793 - }; 794 - } 795 - { 796 - goPackagePath = "grpc.go4.org"; 797 - fetch = { 798 - type = "git"; 799 - url = "https://github.com/go4org/grpc"; 800 - rev = "11d0a25b4919"; 801 - sha256 = "1d6akp2b3aa2viwbikc3jndhiljgjj87r4z7mg5b03f97f2wmz4f"; 802 - }; 803 - } 804 - { 805 - goPackagePath = "honnef.co/go/tools"; 806 - fetch = { 807 - type = "git"; 808 - url = "https://github.com/dominikh/go-tools"; 809 - rev = "3f1c8253044a"; 810 - sha256 = "0d3vgh0fgfj1z7i648g1s6x2pwxd07sxfjwg1xn3yagr9h06jh3h"; 811 - }; 812 - } 813 - ]
+4 -5
pkgs/tools/security/cie-middleware-linux/default.nix
··· 20 20 21 21 let 22 22 pname = "cie-middleware-linux"; 23 - version = "1.4.3.3"; 23 + version = "1.4.4.0"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "M0rf30"; 27 27 repo = pname; 28 - # use the podofo-vanilla branch 29 - rev = "531acc54609eaeccbdd4ef881d7d7e7e0fe0af17"; 30 - sha256 = "sha256-hUpEkiEQu0R+aCo4bfZfVLLib0o6v2RQJVIte3n+IAk="; 28 + rev = "${version}-podofo"; 29 + sha256 = "sha256-Kyr9OTiY6roJ/wVJS/1aWfrrzDNQbuRTJQqo0akbMUU="; 31 30 }; 32 31 33 32 # Shared libraries needed by the Java application ··· 59 58 60 59 outputHashAlgo = "sha256"; 61 60 outputHashMode = "recursive"; 62 - outputHash = "sha256-gsb4aH/au7IDh1PX/qY+8o7CmjKJUHpmEa0vYhbAnP0="; 61 + outputHash = "sha256-WzT5vYF9yCMU2A7EkLZyjgWrN3gD7pnkPXc3hDFqpD8="; 63 62 }; 64 63 65 64 in
+46 -7
pkgs/tools/security/grype/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , buildGoModule 4 3 , fetchFromGitHub 5 4 , installShellFiles 5 + 6 + , openssl 6 7 }: 7 8 8 9 buildGoModule rec { 9 10 pname = "grype"; 10 - version = "0.49.0"; 11 + version = "0.51.0"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "anchore"; 14 15 repo = pname; 15 16 rev = "v${version}"; 16 - sha256 = "sha256-MShlKtrorqXRInQ01dEzVeLDRDua9PISkficF02PrBI="; 17 + sha256 = "sha256-WTDUkC+TFVkT/D36hDusqxwidy6O+iMInBpTumdCaw4="; 17 18 # populate values that require us to use git. By doing this in postFetch we 18 19 # can delete .git afterwards and maintain better reproducibility of the src. 19 20 leaveDotGit = true; ··· 25 26 find "$out" -name .git -print0 | xargs -0 rm -rf 26 27 ''; 27 28 }; 28 - 29 - vendorSha256 = "sha256-MusEvYNaMM0kqHSDdenPKo4IrIFmvPHSCRzciKMFiew="; 29 + vendorSha256 = "sha256-bpWUo6YA0TkIyDg27mv88X1fh+1Wal362Sqi7loo/Zs="; 30 30 31 31 nativeBuildInputs = [ 32 32 installShellFiles 33 33 ]; 34 + 35 + subPackages = [ "." ]; 36 + excludedPackages = "test/integration"; 34 37 35 38 ldflags = [ 36 39 "-s" ··· 49 52 ldflags+=" -X github.com/anchore/grype/internal/version.buildDate=$(cat SOURCE_DATE_EPOCH)" 50 53 ''; 51 54 52 - # Tests require a running Docker instance 53 - doCheck = false; 55 + checkInputs = [ openssl ]; 56 + preCheck = '' 57 + # test all dirs (except excluded) 58 + unset subPackages 59 + # test goldenfiles expect no version 60 + unset ldflags 61 + 62 + # patch utility script 63 + patchShebangs grype/db/test-fixtures/tls/generate-x509-cert-pair.sh 64 + 65 + # remove tests that depend on docker 66 + substituteInPlace test/cli/cmd_test.go \ 67 + --replace "TestCmd" "SkipCmd" 68 + substituteInPlace grype/pkg/provider_test.go \ 69 + --replace "TestSyftLocationExcludes" "SkipSyftLocationExcludes" 70 + substituteInPlace grype/presenter/cyclonedx/presenter_test.go \ 71 + --replace "TestCycloneDxPresenterImage" "SkipCycloneDxPresenterImage" 72 + substituteInPlace grype/presenter/cyclonedxvex/presenter_test.go \ 73 + --replace "TestCycloneDxPresenterImage" "SkipCycloneDxPresenterImage" 74 + substituteInPlace grype/presenter/sarif/presenter_test.go \ 75 + --replace "Test_imageToSarifReport" "Skip_imageToSarifReport" \ 76 + --replace "TestSarifPresenterImage" "SkipSarifPresenterImage" 77 + 78 + # remove tests that depend on git 79 + substituteInPlace test/cli/db_validations_test.go \ 80 + --replace "TestDBValidations" "SkipDBValidations" 81 + substituteInPlace test/cli/registry_auth_test.go \ 82 + --replace "TestRegistryAuth" "SkipRegistryAuth" 83 + substituteInPlace test/cli/sbom_input_test.go \ 84 + --replace "TestSBOMInput_FromStdin" "SkipSBOMInput_FromStdin" \ 85 + --replace "TestSBOMInput_AsArgument" "SkipSBOMInput_AsArgument" \ 86 + --replace "TestAttestationInput_AsArgument" "SkipAttestationInput_AsArgument" 87 + substituteInPlace test/cli/subprocess_test.go \ 88 + --replace "TestSubprocessStdin" "SkipSubprocessStdin" 89 + 90 + # segfault 91 + rm grype/db/v5/namespace/cpe/namespace_test.go 92 + ''; 54 93 55 94 postInstall = '' 56 95 installShellCompletion --cmd grype \
+5 -4
pkgs/top-level/all-packages.nix
··· 2029 2029 2030 2030 android-backup-extractor = callPackage ../tools/backup/android-backup-extractor {}; 2031 2031 2032 - android-tools = lowPrio (callPackage ../tools/misc/android-tools { 2033 - stdenv = if stdenv.targetPlatform.isAarch64 then gcc10Stdenv else stdenv; 2034 - }); 2032 + android-tools = lowPrio (darwin.apple_sdk_11_0.callPackage ../tools/misc/android-tools 2033 + (lib.optionalAttrs (stdenv.targetPlatform.isAarch64 && stdenv.targetPlatform.isLinux) { 2034 + stdenv = gcc10Stdenv; 2035 + })); 2035 2036 2036 2037 anewer = callPackage ../tools/text/anewer { }; 2037 2038 ··· 18377 18378 18378 18379 cxxopts = callPackage ../development/libraries/cxxopts { }; 18379 18380 18380 - cxxtest = python2Packages.callPackage ../development/libraries/cxxtest { }; 18381 + cxxtest = python3Packages.callPackage ../development/libraries/cxxtest { }; 18381 18382 18382 18383 cypress = callPackage ../development/web/cypress { }; 18383 18384