lol

Merge branch 'staging-next' into staging

+3269 -1871
+11
lib/modules.nix
··· 361 361 */ 362 362 byName = attr: f: modules: 363 363 foldl' (acc: module: 364 + if !(builtins.isAttrs module.${attr}) then 365 + throw '' 366 + You're trying to declare a value of type `${builtins.typeOf module.${attr}}' 367 + rather than an attribute-set for the option 368 + `${builtins.concatStringsSep "." prefix}'! 369 + 370 + This usually happens if `${builtins.concatStringsSep "." prefix}' has option 371 + definitions inside that are not matched. Please check how to properly define 372 + this option by e.g. referring to `man 5 configuration.nix'! 373 + '' 374 + else 364 375 acc // (mapAttrs (n: v: 365 376 (acc.${n} or []) ++ f module v 366 377 ) module.${attr}
+1 -1
lib/tests/modules.sh
··· 169 169 ## shorthandOnlyDefines config behaves as expected 170 170 checkConfigOutput "true" config.submodule.config ./declare-submoduleWith-shorthand.nix ./define-submoduleWith-shorthand.nix 171 171 checkConfigError 'is not of type `boolean' config.submodule.config ./declare-submoduleWith-shorthand.nix ./define-submoduleWith-noshorthand.nix 172 - checkConfigError 'value is a boolean while a set was expected' config.submodule.config ./declare-submoduleWith-noshorthand.nix ./define-submoduleWith-shorthand.nix 172 + checkConfigError "You're trying to declare a value of type \`bool'\nrather than an attribute-set for the option" config.submodule.config ./declare-submoduleWith-noshorthand.nix ./define-submoduleWith-shorthand.nix 173 173 checkConfigOutput "true" config.submodule.config ./declare-submoduleWith-noshorthand.nix ./define-submoduleWith-noshorthand.nix 174 174 175 175 ## submoduleWith should merge all modules in one swoop
+19 -1
maintainers/maintainer-list.nix
··· 2942 2942 name = "Adam Copp"; 2943 2943 }; 2944 2944 ethancedwards8 = { 2945 - email = "ethancarteredwards@gmail.com"; 2945 + email = "ethan@ethancedwards.com"; 2946 2946 github = "ethancedwards8"; 2947 2947 githubId = 60861925; 2948 2948 name = "Ethan Carter Edwards"; ··· 6905 6905 githubId = 16385648; 6906 6906 name = "Niko Pavlinek"; 6907 6907 }; 6908 + nixinator = { 6909 + email = "33lockdown33@protonmail.com"; 6910 + github = "nixinator"; 6911 + githubId = 66913205; 6912 + name = "Rick Sanchez"; 6913 + }; 6908 6914 nixy = { 6909 6915 email = "nixy@nixy.moe"; 6910 6916 github = "nixy"; ··· 10186 10192 email = "vq@erq.se"; 10187 10193 name = "Daniel Nilsson"; 10188 10194 }; 10195 + vrinek = { 10196 + email = "vrinek@hey.com"; 10197 + github = "vrinek"; 10198 + name = "Kostas Karachalios"; 10199 + githubId = 81346; 10200 + }; 10189 10201 vrthra = { 10190 10202 email = "rahul@gopinath.org"; 10191 10203 github = "vrthra"; ··· 10799 10811 github = "masaeedu"; 10800 10812 githubId = 3674056; 10801 10813 name = "Asad Saeeduddin"; 10814 + }; 10815 + matthewcroughan = { 10816 + email = "matt@croughan.sh"; 10817 + github = "matthewcroughan"; 10818 + githubId = 26458780; 10819 + name = "Matthew Croughan"; 10802 10820 }; 10803 10821 ngerstle = { 10804 10822 name = "Nicholas Gerstle";
+12
nixos/maintainers/scripts/gce/create-gce.sh
··· 17 17 img_path=$(echo gce/*.tar.gz) 18 18 img_name=${IMAGE_NAME:-$(basename "$img_path")} 19 19 img_id=$(echo "$img_name" | sed 's|.raw.tar.gz$||;s|\.|-|g;s|_|-|g') 20 + img_family=$(echo "$img_id" | cut -d - -f1-4) 21 + 20 22 if ! gsutil ls "gs://${BUCKET_NAME}/$img_name"; then 21 23 gsutil cp "$img_path" "gs://${BUCKET_NAME}/$img_name" 22 24 gsutil acl ch -u AllUsers:R "gs://${BUCKET_NAME}/$img_name" 25 + 26 + gcloud compute images create \ 27 + "$img_id" \ 28 + --source-uri "gs://${BUCKET_NAME}/$img_name" \ 29 + --family="$img_family" 30 + 31 + gcloud compute images add-iam-policy-binding \ 32 + "$img_id" \ 33 + --member='allAuthenticatedUsers' \ 34 + --role='roles/compute.imageUser' 23 35 fi
+11 -3
nixos/modules/services/networking/bird.nix
··· 1 1 { config, lib, pkgs, ... }: 2 2 3 3 let 4 - inherit (lib) mkEnableOption mkIf mkOption types; 4 + inherit (lib) mkEnableOption mkIf mkOption optionalString types; 5 5 6 6 generic = variant: 7 7 let ··· 26 26 <link xlink:href='http://bird.network.cz/'/> 27 27 ''; 28 28 }; 29 + checkConfig = mkOption { 30 + type = types.bool; 31 + default = true; 32 + description = '' 33 + Whether the config should be checked at build time. 34 + Disabling this might become necessary if the config includes files not present during build time. 35 + ''; 36 + }; 29 37 }; 30 38 }; 31 39 ··· 36 44 environment.etc."bird/${variant}.conf".source = pkgs.writeTextFile { 37 45 name = "${variant}.conf"; 38 46 text = cfg.config; 39 - checkPhase = '' 47 + checkPhase = optionalString cfg.checkConfig '' 40 48 ${pkg}/bin/${birdBin} -d -p -c $out 41 49 ''; 42 50 }; ··· 50 58 Type = "forking"; 51 59 Restart = "on-failure"; 52 60 ExecStart = "${pkg}/bin/${birdBin} -c /etc/bird/${variant}.conf -u ${variant} -g ${variant}"; 53 - ExecReload = "${pkg}/bin/${birdc} configure"; 61 + ExecReload = "/bin/sh -c '${pkg}/bin/${birdBin} -c /etc/bird/${variant}.conf -p && ${pkg}/bin/${birdc} configure'"; 54 62 ExecStop = "${pkg}/bin/${birdc} down"; 55 63 CapabilityBoundingSet = [ "CAP_CHOWN" "CAP_FOWNER" "CAP_DAC_OVERRIDE" "CAP_SETUID" "CAP_SETGID" 56 64 # see bird/sysdep/linux/syspriv.h
+9 -1
nixos/modules/virtualisation/gce-images.nix
··· 5 5 "17.03" = "gs://nixos-cloud-images/nixos-image-17.03.1082.4aab5c5798-x86_64-linux.raw.tar.gz"; 6 6 "18.03" = "gs://nixos-cloud-images/nixos-image-18.03.132536.fdb5ba4cdf9-x86_64-linux.raw.tar.gz"; 7 7 "18.09" = "gs://nixos-cloud-images/nixos-image-18.09.1228.a4c4cbb613c-x86_64-linux.raw.tar.gz"; 8 - latest = self."18.09"; 8 + 9 + # This format will be handled by the upcoming NixOPS 2.0 release. 10 + # The old images based on a GS object are deprecated. 11 + "20.09" = { 12 + project = "nixos-cloud"; 13 + name = "nixos-image-20-09-3531-3858fbc08e6-x86-64-linux"; 14 + }; 15 + 16 + latest = self."20.09"; 9 17 }; in self
+1 -1
pkgs/applications/audio/clementine/default.nix
··· 10 10 withCD = config.clementine.cd or true; 11 11 withCloud = config.clementine.cloud or true; 12 12 13 - # On the update after all 1.4rc, qt5.15 will be supported. 13 + # On the update after all 1.4rc, qt5.15 and protobuf 3.15 will be supported. 14 14 version = "1.4.0rc1"; 15 15 16 16 src = fetchFromGitHub {
+4 -2
pkgs/applications/audio/clerk/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, makeWrapper, rofi, mpc_cli, perl, 2 - util-linux, pythonPackages, libnotify }: 2 + util-linux, python3Packages, libnotify }: 3 3 4 4 stdenv.mkDerivation { 5 5 name = "clerk-2016-10-14"; ··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; 15 - buildInputs = [ pythonPackages.mpd2 ]; 15 + buildInputs = [ python3Packages.mpd2 ]; 16 16 17 17 dontBuild = true; 18 + 19 + strictDeps = true; 18 20 19 21 installPhase = '' 20 22 DESTDIR=$out PREFIX=/ make install
+3 -3
pkgs/applications/audio/jamulus/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, fetchpatch, pkg-config, qtscript, qmake, libjack2 1 + { mkDerivation, lib, fetchFromGitHub, pkg-config, qtscript, qmake, libjack2 2 2 }: 3 3 4 4 mkDerivation rec { 5 5 pname = "jamulus"; 6 6 version = "3.7.0"; 7 7 src = fetchFromGitHub { 8 - owner = "corrados"; 8 + owner = "jamulussoftware"; 9 9 repo = "jamulus"; 10 10 rev = "r${lib.replaceStrings [ "." ] [ "_" ] version}"; 11 11 sha256 = "sha256-8zCPT0jo4ExgmZWxGinumv3JauH4csM9DtuHmOiJQAM="; ··· 20 20 description = "Enables musicians to perform real-time jam sessions over the internet"; 21 21 longDescription = "You also need to enable JACK and should enable several real-time optimizations. See project website for details"; 22 22 homepage = "https://github.com/corrados/jamulus/wiki"; 23 - license = lib.licenses.gpl2; # linked in git repo, at least 23 + license = lib.licenses.gpl2Plus; 24 24 platforms = lib.platforms.linux; 25 25 maintainers = [ lib.maintainers.seb314 ]; 26 26 };
+8 -8
pkgs/applications/audio/spotify/default.nix
··· 1 1 { fetchurl, lib, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype 2 - , glib, pango, cairo, atk, gdk-pixbuf, gtk2, cups, nspr, nss, libpng, libnotify 2 + , glib, pango, cairo, atk, gdk-pixbuf, gtk3, cups, nspr, nss, libpng, libnotify 3 3 , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3 4 - , at-spi2-atk, at-spi2-core, libpulseaudio, libdrm, mesa 4 + , at-spi2-atk, at-spi2-core, libpulseaudio, libdrm, mesa, libxkbcommon 5 5 }: 6 6 7 7 let ··· 10 10 # If an update breaks things, one of those might have valuable info: 11 11 # https://aur.archlinux.org/packages/spotify/ 12 12 # https://community.spotify.com/t5/Desktop-Linux 13 - version = "1.1.46.916.g416cacf1"; 13 + version = "1.1.55.494.gca75f788"; 14 14 # To get the latest stable revision: 15 15 # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' 16 16 # To get general information: 17 17 # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' 18 18 # More examples of api usage: 19 19 # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py 20 - rev = "43"; 20 + rev = "45"; 21 21 22 22 deps = [ 23 23 alsaLib ··· 34 34 freetype 35 35 gdk-pixbuf 36 36 glib 37 - gtk2 37 + gtk3 38 38 libdrm 39 39 libgcrypt 40 40 libnotify 41 41 libpng 42 42 libpulseaudio 43 + libxkbcommon 43 44 mesa 44 45 nss 45 46 pango ··· 78 79 # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 79 80 src = fetchurl { 80 81 url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; 81 - sha512 = "5b3d5d1f52a554c8e775b8aed16ef84e96bf3b61a2b53266e10d3c47e341899310af13cc8513b04424fc14532e36543a6fae677f80a036e3f51c75166d8d53d1"; 82 + sha512 = "5d61a2d5b26be651620ab5d18d3a204d8d7b09dcec8a733ddc176c44cb43e9176c4350933ebe4498b065ba219113f3226c13bea9659da738fe635f41d01db303"; 82 83 }; 83 84 84 - nativeBuildInputs = [ makeWrapper ]; 85 - buildInputs = [ squashfsTools ]; 85 + nativeBuildInputs = [ makeWrapper squashfsTools ]; 86 86 87 87 dontStrip = true; 88 88 dontPatchELF = true;
+3 -3
pkgs/applications/blockchains/btcpayserver/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchurl, linkFarmFromDrvs, makeWrapper, 2 - dotnetPackages, dotnetCorePackages, writeScript, bash 2 + dotnetPackages, dotnetCorePackages 3 3 }: 4 4 5 5 let ··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "btcpayserver"; 18 - version = "1.0.6.8"; 18 + version = "1.0.7.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = pname; 22 22 repo = pname; 23 23 rev = "v${version}"; 24 - sha256 = "1znmix9w7ahzyb933lxzqv6j8j5qycknq3gmnkakj749ksshql1b"; 24 + sha256 = "1pbq0kik29sx1lwlic7fvhnjhrpnlk94w53wmywqnlpgjscx8x8a"; 25 25 }; 26 26 27 27 nativeBuildInputs = [ dotnetSdk dotnetPackages.Nuget makeWrapper ];
+32 -37
pkgs/applications/blockchains/btcpayserver/deps.nix
··· 20 20 sha256 = "1lf1hfbx792dpa1hxgn0a0jrrvldd16hgbxx229dk2qcz5qlnc38"; 21 21 }) 22 22 (fetchNuGet { 23 + name = "BIP78.Sender"; 24 + version = "0.2.0"; 25 + sha256 = "0gyynn15rc1x9p2703ffi4jnbpbd0k3wvg839xrk2skmaw8nxamf"; 26 + }) 27 + (fetchNuGet { 23 28 name = "BTCPayServer.Hwi"; 24 29 version = "1.1.3"; 25 30 sha256 = "1c8hfnrjh2ad8qh75d63gsl170q8czf3j1hk8sv8fnbgnxdnkm7a"; 26 31 }) 27 32 (fetchNuGet { 28 33 name = "BTCPayServer.Lightning.All"; 29 - version = "1.2.4"; 30 - sha256 = "1f4wgs8ijk1wmppz5lmas7l6m83szz57jyk6ak0dxhccdld9rdaj"; 34 + version = "1.2.7"; 35 + sha256 = "0jzmzvlpf6iba2fsc6cyi69vlaim9slqm2sapknmd7drl3gcn2zj"; 31 36 }) 32 37 (fetchNuGet { 33 38 name = "BTCPayServer.Lightning.Charge"; 34 - version = "1.2.1"; 35 - sha256 = "0iv9frbr6xfxif3pnfd7c87y8mv31nqkdrnhvnaswrx43nv6s272"; 39 + version = "1.2.3"; 40 + sha256 = "1rdrwmijx0v4z0xsq4acyvdcj7hv6arfh3hwjy89rqnkkznrzgwv"; 36 41 }) 37 42 (fetchNuGet { 38 43 name = "BTCPayServer.Lightning.CLightning"; 39 - version = "1.2.1"; 40 - sha256 = "14km69jzmnyqg19w27g6znml4z0xkm8l4j7rj0x36bw67cjmgahv"; 44 + version = "1.2.3"; 45 + sha256 = "02197rh03q8d0mv40zf67wp1rd2gbxi5l8krd2rzj84n267bcfvc"; 41 46 }) 42 47 (fetchNuGet { 43 48 name = "BTCPayServer.Lightning.Common"; ··· 45 50 sha256 = "17di8ndkw8z0ci0zk15mcrqpmganwkz9ys2snr2rqpw5mrlhpwa0"; 46 51 }) 47 52 (fetchNuGet { 53 + name = "BTCPayServer.Lightning.Common"; 54 + version = "1.2.2"; 55 + sha256 = "07xb7fsqvfjmcawxylriw60i73h0cvfb765aznhp9ffyrmjaql7z"; 56 + }) 57 + (fetchNuGet { 48 58 name = "BTCPayServer.Lightning.Eclair"; 49 - version = "1.2.0"; 50 - sha256 = "0w7nwsr0n2hrqak023xa294palsk3r96wlgw2ks8d3p5kxm8kskp"; 59 + version = "1.2.2"; 60 + sha256 = "03dymhwxb5s28kb187g5h4aysnz2xzml89p47nmwz9lkg2h4s73h"; 51 61 }) 52 62 (fetchNuGet { 53 63 name = "BTCPayServer.Lightning.LND"; 54 - version = "1.2.1"; 55 - sha256 = "0ql4qyvz0rms6ls46pi3bgak3r6hj2c5ivnzahiq6cb84pbl61cr"; 64 + version = "1.2.4"; 65 + sha256 = "0qnj5rsp6hnybsr58zny9dfbsxksg1674q0z9944jwkzm7pcqyg4"; 56 66 }) 57 67 (fetchNuGet { 58 68 name = "BTCPayServer.Lightning.Ptarmigan"; 59 - version = "1.2.0"; 60 - sha256 = "1yd6nhlssb9k08p5491knlwwjij9324ildir99sa9cp24rlq5nis"; 69 + version = "1.2.2"; 70 + sha256 = "17yl85vqfp7l12bv3f3w1b861hm41i7cfhs78gaq04s4drvcnj6k"; 61 71 }) 62 72 (fetchNuGet { 63 73 name = "BuildBundlerMinifier"; ··· 78 88 name = "CsvHelper"; 79 89 version = "15.0.5"; 80 90 sha256 = "01y8bhsnxghn3flz0pr11vj6wjrpmia8rpdrsp7kjfc1zmhqlgma"; 81 - }) 82 - (fetchNuGet { 83 - name = "DBriize"; 84 - version = "1.0.1.3"; 85 - sha256 = "0rsm68hwq2ky8i6mv3ckdjkj4vjygnkgk3disva0skl3apk833dc"; 86 91 }) 87 92 (fetchNuGet { 88 93 name = "DigitalRuby.ExchangeSharp"; ··· 666 671 }) 667 672 (fetchNuGet { 668 673 name = "NBitcoin.Altcoins"; 669 - version = "2.0.21"; 670 - sha256 = "0xmygiwjlia7fbxy63893jb15g6fxggxxr9bbm8znd9bs3jzp2g1"; 671 - }) 672 - (fetchNuGet { 673 - name = "NBitcoin"; 674 - version = "5.0.33"; 675 - sha256 = "030q609b9lhapq4wfl1w3impjw5m40kz2rg1s9jn3bn8yjfmsi4a"; 674 + version = "2.0.28"; 675 + sha256 = "1zfirfmhgigp733km9rqkgz560h5wg88bpba499x49h5j650cnn4"; 676 676 }) 677 677 (fetchNuGet { 678 678 name = "NBitcoin"; ··· 686 686 }) 687 687 (fetchNuGet { 688 688 name = "NBitcoin"; 689 - version = "5.0.60"; 690 - sha256 = "0pin4ldfz5lfxyd47mj1ypyp8lmj0v5nq5zvygdjna956vphd39v"; 689 + version = "5.0.67"; 690 + sha256 = "049marx1jwr7srlpqspimrqqgahh53gi2iyp7bpzn5npsbzh9v3h"; 691 691 }) 692 692 (fetchNuGet { 693 693 name = "NBitcoin"; 694 - version = "5.0.68"; 695 - sha256 = "0k275mbp9wannm10pqj4nv8agjc1f6hsrfhl0m6ax1apv81sfxcd"; 694 + version = "5.0.73"; 695 + sha256 = "0vqgcb0ws5fnkrdzqfkyh78041c6q4l22b93rr0006dd4bmqrmg1"; 696 696 }) 697 697 (fetchNuGet { 698 698 name = "NBitpayClient"; ··· 701 701 }) 702 702 (fetchNuGet { 703 703 name = "NBXplorer.Client"; 704 - version = "3.0.19"; 705 - sha256 = "0nahfxdsryf5snjy87770m51v2jcry02lmb10ilsg4h2ig4pjdk4"; 704 + version = "3.0.20"; 705 + sha256 = "1mwa6ncmg5r6q7yn6skm9dgqm631c7r7nadcg9mvbw81113h0xxy"; 706 706 }) 707 707 (fetchNuGet { 708 708 name = "NETStandard.Library"; ··· 728 728 name = "Newtonsoft.Json"; 729 729 version = "10.0.3"; 730 730 sha256 = "06vy67bkshclpz69kps4vgzc9h2cgg41c8vlqmdbwclfky7c4haq"; 731 - }) 732 - (fetchNuGet { 733 - name = "Newtonsoft.Json"; 734 - version = "11.0.1"; 735 - sha256 = "1z68j07if1xf71lbsrgbia52r812i2dv541sy44ph4dzjjp7pd4m"; 736 731 }) 737 732 (fetchNuGet { 738 733 name = "Newtonsoft.Json"; ··· 921 916 }) 922 917 (fetchNuGet { 923 918 name = "Selenium.WebDriver.ChromeDriver"; 924 - version = "87.0.4280.8800"; 925 - sha256 = "1zrizydlhjv81r1fa5g8wzxrx1cxly3ip7pargj48hdx419iblfr"; 919 + version = "88.0.4324.9600"; 920 + sha256 = "0jm8dpfp329xsrg69lzq2m6x9yin1m43qgrhs15cz2qx9f02pdx9"; 926 921 }) 927 922 (fetchNuGet { 928 923 name = "Selenium.WebDriver";
+2 -2
pkgs/applications/editors/bluefish/default.nix
··· 1 1 { lib, stdenv, fetchurl, intltool, wrapGAppsHook, pkg-config , gtk, libxml2 2 - , enchant, gucharmap, python, gnome3 2 + , enchant, gucharmap, python3, gnome3 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 12 12 13 13 nativeBuildInputs = [ intltool pkg-config wrapGAppsHook ]; 14 14 buildInputs = [ gnome3.adwaita-icon-theme gtk libxml2 15 - enchant gucharmap python ]; 15 + enchant gucharmap python3 ]; 16 16 17 17 meta = with lib; { 18 18 description = "A powerful editor targeted towards programmers and webdevelopers";
+5 -5
pkgs/applications/editors/vscode/vscode.nix
··· 13 13 archive_fmt = if system == "x86_64-darwin" then "zip" else "tar.gz"; 14 14 15 15 sha256 = { 16 - x86_64-linux = "1px6x99cv8nb8lcy3vgcicr4ar0bfj5rfnc5a1yw8rs5p1qnflgw"; 17 - x86_64-darwin = "0grzivqb2fyvwh0fjh9vr205fjcsrd1iqhkwk3mgv792zfrb7ksf"; 18 - aarch64-linux = "0p0msxgc13kqmpq7wk61igc1qbgmgg9463s44dp4ii3630iyr4lw"; 19 - armv7l-linux = "147lki1wr5nzsg1mq12jmdjq9qr6vbdpmzbpr5nrvq23cak94ff8"; 16 + x86_64-linux = "0fpa3b807hy3wrb98h5s0p6ljya279bikv2qwq30nvr0f4zn48bk"; 17 + x86_64-darwin = "0bw7pdzn0a0zr7x8fpwck7v73dq5vh71ja00z11mhjrkjnvmmd9k"; 18 + aarch64-linux = "04wrqcmyamhwiwcyay1z0q0dvf6g7k3pcs93x7hahy16l65w7s2c"; 19 + armv7l-linux = "1hkc9i4z021jwjn275w790bppfvi63g0cnwvkssqdh1c94939rhv"; 20 20 }.${system}; 21 21 in 22 22 callPackage ./generic.nix rec { ··· 25 25 26 26 # Please backport all compatible updates to the stable release. 27 27 # This is important for the extension ecosystem. 28 - version = "1.54.2"; 28 + version = "1.54.3"; 29 29 pname = "vscode"; 30 30 31 31 executableName = "code" + lib.optionalString isInsiders "-insiders";
+17 -8
pkgs/applications/gis/openorienteering-mapper/default.nix
··· 1 1 { lib, stdenv 2 2 , mkDerivation 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , substituteAll 5 6 , gdal 6 7 , cmake ··· 19 20 20 21 mkDerivation rec { 21 22 pname = "OpenOrienteering-Mapper"; 22 - version = "0.9.4"; 23 + version = "0.9.5"; 23 24 24 25 buildInputs = [ 25 26 gdal ··· 38 39 owner = "OpenOrienteering"; 39 40 repo = "mapper"; 40 41 rev = "v${version}"; 41 - sha256 = "13k9dirqm74lknhr8w121zr1hjd9gm1y73cj4rrj98rx44dzmk7b"; 42 + sha256 = "1w8ikqpgi0ksrzjal5ihfaik4grc5v3gdnnv79j20xkr2p4yn1h5"; 42 43 }; 43 44 44 - patches = (substituteAll { 45 - # See https://github.com/NixOS/nixpkgs/issues/86054 46 - src = ./fix-qttranslations-path.diff; 47 - inherit qttranslations; 48 - }); 45 + patches = [ 46 + # https://github.com/NixOS/nixpkgs/issues/86054 47 + (substituteAll { 48 + src = ./fix-qttranslations-path.diff; 49 + inherit qttranslations; 50 + }) 51 + # https://github.com/OpenOrienteering/mapper/pull/1907 52 + (fetchpatch { 53 + url = "https://github.com/OpenOrienteering/mapper/commit/bc52aa567e90a58d6963b44d5ae1909f3f841508.patch"; 54 + sha256 = "1bkckapzccn6k0ri6bgrr0nhis9498fnwj7b32s2ysym8zcg0355"; 55 + }) 56 + ]; 49 57 50 58 cmakeFlags = [ 51 59 # Building the manual and bundling licenses fails ··· 81 89 and provides a free alternative to the existing proprietary solution. 82 90 ''; 83 91 homepage = "https://www.openorienteering.org/apps/mapper/"; 84 - license = licenses.gpl3; 92 + changelog = "https://github.com/OpenOrienteering/mapper/releases/tag/v${version}"; 93 + license = licenses.gpl3Plus; 85 94 platforms = with platforms; linux ++ darwin; 86 95 maintainers = with maintainers; [ mpickering sikmir ]; 87 96 };
+2 -2
pkgs/applications/graphics/dia/default.nix
··· 1 1 { lib, stdenv, fetchgit, autoconf, automake, libtool, gtk2, pkg-config, perlPackages, 2 - libxml2, gettext, python, libxml2Python, docbook5, docbook_xsl, 2 + libxml2, gettext, python2, libxml2Python, docbook5, docbook_xsl, 3 3 libxslt, intltool, libart_lgpl, withGNOME ? false, libgnomeui, 4 4 gtk-mac-integration-gtk2 }: 5 5 ··· 18 18 ]; 19 19 20 20 buildInputs = 21 - [ gtk2 libxml2 gettext python libxml2Python docbook5 21 + [ gtk2 libxml2 gettext python2 libxml2Python docbook5 22 22 libxslt docbook_xsl libart_lgpl ] 23 23 ++ lib.optional withGNOME libgnomeui 24 24 ++ lib.optional stdenv.isDarwin gtk-mac-integration-gtk2;
+2 -2
pkgs/applications/misc/1password-gui/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "1password"; 11 - version = "8.0.28"; 11 + version = "8.0.30"; 12 12 13 13 src = fetchurl { 14 14 url = "https://onepassword.s3.amazonaws.com/linux/appimage/${pname}-${version}.AppImage"; 15 - hash = "sha256-okLeyok/5rihGXaQaUR06dGkpuqqW02qJ6q6VVLtZsE="; 15 + hash = "sha256-j+fp/f8nta+OOuOFU4mmUrGYlVmAqdaXO4rLJ0in+m8="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ makeWrapper ];
+5 -3
pkgs/applications/misc/bashSnippets/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, makeWrapper 2 - , curl, python, bind, iproute, bc, gitMinimal }: 2 + , curl, python3, bind, iproute, bc, gitMinimal }: 3 3 let 4 4 version = "1.23.0"; 5 5 deps = lib.makeBinPath [ 6 6 curl 7 - python 7 + python3 8 8 bind.dnsutils 9 9 iproute 10 10 bc ··· 24 24 25 25 nativeBuildInputs = [ makeWrapper ]; 26 26 27 - patchPhase = '' 27 + postPatch = '' 28 28 patchShebangs install.sh 29 29 substituteInPlace install.sh --replace /usr/local "$out" 30 30 ''; 31 + 32 + strictDeps = true; 31 33 32 34 dontBuild = true; 33 35
+3 -3
pkgs/applications/misc/cherrytree/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages, gettext }: 1 + { lib, fetchFromGitHub, python2Packages, gettext }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python2Packages.buildPythonApplication rec { 4 4 pname = "cherrytree"; 5 5 version = "0.39.4"; 6 6 ··· 14 14 15 15 nativeBuildInputs = [ gettext ]; 16 16 17 - propagatedBuildInputs = with pythonPackages; [ pygtk dbus-python pygtksourceview ]; 17 + propagatedBuildInputs = with python2Packages; [ pygtk dbus-python pygtksourceview ]; 18 18 19 19 patches = [ ./subprocess.patch ]; 20 20
+6 -4
pkgs/applications/misc/curabydagoma/default.nix
··· 1 - { stdenv, runtimeShell, lib, fetchurl, python, pythonPackages, unzip }: 1 + { stdenv, runtimeShell, lib, fetchurl, python2Packages, unzip }: 2 2 3 3 # This package uses a precompiled "binary" distribution of CuraByDagoma, 4 4 # distributed by the editor. ··· 13 13 # I guess people owning a 3D printer generally don't use i686. 14 14 # If, however, someone needs it, we certainly can find a solution. 15 15 16 - stdenv.mkDerivation rec { 16 + let 17 + pythonPackages = python2Packages; 18 + in stdenv.mkDerivation rec { 17 19 pname = "curabydagoma"; 18 20 # Version is the date, UNIX format 19 21 version = "1520506579"; ··· 26 28 }; 27 29 unpackCmd = "unzip $curSrc && tar zxf CuraByDagoma_amd64.tar.gz"; 28 30 nativeBuildInputs = [ unzip ]; 29 - buildInputs = [ python pythonPackages.pyopengl pythonPackages.wxPython pythonPackages.pyserial pythonPackages.numpy ]; 31 + buildInputs = [ pythonPackages.python pythonPackages.pyopengl pythonPackages.wxPython pythonPackages.pyserial pythonPackages.numpy ]; 30 32 31 33 # Compile all pyc files because the included pyc files may be older than the 32 34 # py files. However, Python doesn't realize that because the packages ··· 46 48 cat > $out/bin/curabydago <<EOF 47 49 #!${runtimeShell} 48 50 export PYTHONPATH=$PYTHONPATH 49 - ${python.out}/bin/python $out/curabydago/cura.py 51 + ${pythonPackages.python.interpreter} $out/curabydago/cura.py 50 52 EOF 51 53 chmod a+x $out/bin/curabydago 52 54
+3 -3
pkgs/applications/misc/dockbarx/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages, gnome2, keybinder }: 1 + { lib, fetchFromGitHub, python2Packages, gnome2, keybinder }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python2Packages.buildPythonApplication rec { 4 4 ver = "0.93"; 5 5 name = "dockbarx-${ver}"; 6 6 ··· 24 24 substituteInPlace dockx_applets/volume-control.py --replace /usr/share/ $out/share/ 25 25 ''; 26 26 27 - propagatedBuildInputs = (with pythonPackages; [ pygtk pyxdg dbus-python pillow xlib ]) 27 + propagatedBuildInputs = (with python2Packages; [ pygtk pyxdg dbus-python pillow xlib ]) 28 28 ++ (with gnome2; [ gnome_python gnome_python_desktop ]) 29 29 ++ [ keybinder ]; 30 30
+5 -5
pkgs/applications/misc/dotfiles/default.nix
··· 1 - { lib, pythonPackages }: 1 + { lib, python3Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "dotfiles"; 5 5 version = "0.6.4"; 6 6 7 - src = pythonPackages.fetchPypi { 7 + src = python3Packages.fetchPypi { 8 8 inherit version pname; 9 9 sha256 = "03qis6m9r2qh00sqbgwsm883s4bj1ibwpgk86yh4l235mdw8jywv"; 10 10 }; ··· 12 12 # No tests in archive 13 13 doCheck = false; 14 14 15 - checkInputs = with pythonPackages; [ pytest ]; 16 - propagatedBuildInputs = with pythonPackages; [ click ]; 15 + checkInputs = with python3Packages; [ pytest ]; 16 + propagatedBuildInputs = with python3Packages; [ click ]; 17 17 18 18 meta = with lib; { 19 19 description = "Easily manage your dotfiles";
+4 -2
pkgs/applications/misc/gammu/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, pkg-config, cmake, bluez, libusb1, curl 1 + { lib, stdenv, fetchFromGitHub, pkg-config, cmake, bluez, libusb1, curl 2 2 , libiconv, gettext, sqlite 3 3 , dbiSupport ? false, libdbi ? null, libdbiDrivers ? null 4 4 , postgresSupport ? false, postgresql ? null ··· 21 21 22 22 nativeBuildInputs = [ pkg-config cmake ]; 23 23 24 - buildInputs = [ python bluez libusb1 curl gettext sqlite libiconv ] 24 + strictDeps = true; 25 + 26 + buildInputs = [ bluez libusb1 curl gettext sqlite libiconv ] 25 27 ++ optionals dbiSupport [ libdbi libdbiDrivers ] 26 28 ++ optionals postgresSupport [ postgresql ]; 27 29
+2 -2
pkgs/applications/misc/gpxsee/default.nix
··· 2 2 3 3 mkDerivation rec { 4 4 pname = "gpxsee"; 5 - version = "8.8"; 5 + version = "8.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tumic0"; 9 9 repo = "GPXSee"; 10 10 rev = version; 11 - sha256 = "sha256-eAXMmjPcfnJA5w6w/SRc6T5KHss77t0JijTB6+ctjzo="; 11 + sha256 = "sha256-nl9iu8ezgMZ1wy2swDXYRDLlkSz1II+C65UUWNvGBxg="; 12 12 }; 13 13 14 14 patches = (substituteAll {
+11 -8
pkgs/applications/misc/pure-maps/default.nix
··· 1 - { lib, mkDerivation, fetchFromGitHub, wrapQtAppsHook 1 + { lib, mkDerivation, fetchFromGitHub 2 2 , qmake, qttools, kirigami2, qtquickcontrols2, qtlocation, qtsensors 3 3 , nemo-qml-plugin-dbus, mapbox-gl-qml, s2geometry 4 - , python3, pyotherside, python3Packages 4 + , python3, pyotherside 5 5 }: 6 6 7 7 mkDerivation rec { ··· 16 16 fetchSubmodules = true; 17 17 }; 18 18 19 - nativeBuildInputs = [ qmake python3 qttools wrapQtAppsHook ]; 19 + nativeBuildInputs = [ 20 + qmake python3 qttools python3.pkgs.wrapPython 21 + ]; 22 + 20 23 buildInputs = [ 21 24 kirigami2 qtquickcontrols2 qtlocation qtsensors 22 25 nemo-qml-plugin-dbus pyotherside mapbox-gl-qml s2geometry 23 26 ]; 24 - propagatedBuildInputs = with python3Packages; [ gpxpy pyxdg ]; 25 27 26 28 postPatch = '' 27 29 substituteInPlace pure-maps.pro \ ··· 30 32 31 33 qmakeFlags = [ "FLAVOR=kirigami" ]; 32 34 33 - dontWrapQtApps = true; 34 - postInstall = '' 35 - wrapQtApp $out/bin/pure-maps \ 36 - --prefix PYTHONPATH : "$out/share" 35 + pythonPath = with python3.pkgs; [ gpxpy ]; 36 + 37 + preInstall = '' 38 + buildPythonPath "$pythonPath" 39 + qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH") 37 40 ''; 38 41 39 42 meta = with lib; {
+10 -4
pkgs/applications/misc/zettlr/default.nix
··· 1 - { appimageTools, lib, fetchurl, gtk3, gsettings-desktop-schemas 2 - , texlive, pandoc, pandoc-citeproc 1 + { appimageTools 2 + , lib 3 + , fetchurl 4 + , gtk3 5 + , gsettings-desktop-schemas 6 + , texlive 7 + , pandoc 3 8 }: 4 9 5 10 # Based on https://gist.github.com/msteen/96cb7df66a359b827497c5269ccbbf94 and joplin-desktop nixpkgs. ··· 14 19 appimageContents = appimageTools.extractType2 { 15 20 inherit name src; 16 21 }; 17 - in appimageTools.wrapType2 rec { 22 + in 23 + appimageTools.wrapType2 rec { 18 24 inherit name src; 19 25 20 26 profile = '' ··· 22 28 ''; 23 29 24 30 multiPkgs = null; # no 32bit needed 25 - extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ texlive pandoc pandoc-citeproc ]; 31 + extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ texlive pandoc ]; 26 32 extraInstallCommands = '' 27 33 mv $out/bin/{${name},${pname}} 28 34 install -m 444 -D ${appimageContents}/Zettlr.desktop $out/share/applications/zettlr.desktop
+3 -3
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 18 18 } 19 19 }, 20 20 "beta": { 21 - "version": "90.0.4430.30", 22 - "sha256": "01b6naziii72pvw35wphfqz3inih75is038yf1mdp1847jbvxpwp", 23 - "sha256bin64": "0k48mfzmyjb0w75fkm2j7ll340qgmzvmskz12awc2l19hgnw1s8p", 21 + "version": "90.0.4430.40", 22 + "sha256": "0n7g4j981h3fn5wgpb3azpili9682nq0yikhd4z7dr7agvpnfr3k", 23 + "sha256bin64": "120rbh8bpcj3z5kqdaicqnsd2mh0xcr8y1411kl0zpwa6hfvgm3r", 24 24 "deps": { 25 25 "gn": { 26 26 "version": "2021-02-09",
+2 -2
pkgs/applications/networking/cluster/helmsman/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "helmsman"; 5 - version = "3.6.5"; 5 + version = "3.6.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Praqma"; 9 9 repo = "helmsman"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-FOBSGXVIb4mLDHMqOljZ04W0q/H/HOuFm9Cl2kK027s="; 11 + sha256 = "sha256-SGVch7mMtHi5GYFOrSss4dk29aRTQmBzkPYOetPdF88="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-mktq5Dnk1mBO2yy5SeMDxa/akXdO5i2WafMTGtH53H8=";
+22
pkgs/applications/networking/cluster/kube-score/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "kube-score"; 5 + version = "1.10.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "zegl"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-TYsuSPWTiIlPscul/QO59+lt6sbjJdt7pJuJYO5R9Tc="; 12 + }; 13 + 14 + vendorSha256 = "sha256-ob7mNheyeTcDWml4gi1SD3Pq+oWtJeySIUg2ZrCj0y0="; 15 + 16 + meta = with lib; { 17 + description = "Kubernetes object analysis with recommendations for improved reliability and security"; 18 + homepage = "https://github.com/zegl/kube-score"; 19 + license = licenses.mit; 20 + maintainers = [ maintainers.j4m3s ]; 21 + }; 22 + }
+2 -2
pkgs/applications/networking/instant-messengers/bitlbee/default.nix
··· 1 - { lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkg-config, check, libotr, python 1 + { lib, fetchurl, fetchpatch, stdenv, gnutls, glib, pkg-config, check, libotr, python2 2 2 , enableLibPurple ? false, pidgin ? null 3 3 , enablePam ? false, pam ? null 4 4 }: ··· 14 14 15 15 nativeBuildInputs = [ pkg-config ] ++ optional doCheck check; 16 16 17 - buildInputs = [ gnutls libotr python ] 17 + buildInputs = [ gnutls libotr python2 ] 18 18 ++ optional enableLibPurple pidgin 19 19 ++ optional enablePam pam; 20 20
+4 -4
pkgs/applications/networking/instant-messengers/blink/default.nix
··· 1 - { lib, fetchdarcs, pythonPackages, libvncserver, zlib 1 + { lib, fetchdarcs, python2Packages, libvncserver, zlib 2 2 , gnutls, libvpx, makeDesktopItem, mkDerivationWith }: 3 3 4 - mkDerivationWith pythonPackages.buildPythonApplication rec { 4 + mkDerivationWith python2Packages.buildPythonApplication rec { 5 5 6 6 pname = "blink"; 7 7 version = "3.2.0"; ··· 17 17 sed -i 's|@out@|'"''${out}"'|g' blink/resources.py 18 18 ''; 19 19 20 - propagatedBuildInputs = with pythonPackages; [ 20 + propagatedBuildInputs = with python2Packages; [ 21 21 pyqt5_with_qtwebkit 22 22 cjson 23 23 sipsimple ··· 26 26 ]; 27 27 28 28 buildInputs = [ 29 - pythonPackages.cython 29 + python2Packages.cython 30 30 zlib 31 31 libvncserver 32 32 libvpx
+3 -3
pkgs/applications/networking/instant-messengers/teamspeak/server.nix
··· 4 4 arch = if stdenv.is64bit then "amd64" else "x86"; 5 5 in stdenv.mkDerivation rec { 6 6 pname = "teamspeak-server"; 7 - version = "3.13.2"; 7 + version = "3.13.3"; 8 8 9 9 src = fetchurl { 10 10 url = "https://files.teamspeak-services.com/releases/server/${version}/teamspeak3-server_linux_${arch}-${version}.tar.bz2"; 11 11 sha256 = if stdenv.is64bit 12 - then "1l9i9667wppwxbbnf6kxamnqlbxzkz9ync4rsypfla124b6cidpz" 13 - else "0qhd05abiycsgc16r1p6y8bfdrl6zji21xaqwdizpr0jb01z335g"; 12 + then "sha256-+b9S0ekQmXF5KwvVcmHIDpp0iZRO2W1ls8eYhDzjUUw=" 13 + else "sha256-Qu6xPzbUdqO93j353cfQILlFYqmwFSnFWG9TjniX0+c="; 14 14 }; 15 15 16 16 buildInputs = [ stdenv.cc.cc postgresql.lib ];
+265 -265
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "78.8.1"; 2 + version = "78.9.0"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/af/thunderbird-78.8.1.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/af/thunderbird-78.9.0.tar.bz2"; 5 5 locale = "af"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "086a23b05a2baf8e8a1b44891017c6fef8c45d4e4802b519ceeda2bf62496649"; 7 + sha256 = "58bc04e46def73b3530323e56d143db324a5a80f426b37ff396e2e43cf8b0042"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ar/thunderbird-78.8.1.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ar/thunderbird-78.9.0.tar.bz2"; 10 10 locale = "ar"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "b5b643119f0d0336d61972d91f20764590d7453cb391165283e00dc980d3bdef"; 12 + sha256 = "9520899691eb7e4e7dad95ce643da5cb966c1058b3cc952b55bd66d7a09473ef"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ast/thunderbird-78.8.1.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ast/thunderbird-78.9.0.tar.bz2"; 15 15 locale = "ast"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "2e219961dc2b33f7680be0a6fbd03c0032fdbb557a3dedaf32773efb6cf7a061"; 17 + sha256 = "769e7cd3699577a1f69e62492c8058eca635ffaf6acab6ca3a4112301aab751f"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/be/thunderbird-78.8.1.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/be/thunderbird-78.9.0.tar.bz2"; 20 20 locale = "be"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "ce8a7e4f025b6064ff4eef01c634b2b7f52ec0ffa5eb7094f0483c7d6f31b939"; 22 + sha256 = "c1b35990af2731b52da57b4b6b0e4a7733ea2e8d499e95b3b086dde3bdccb657"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/bg/thunderbird-78.8.1.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/bg/thunderbird-78.9.0.tar.bz2"; 25 25 locale = "bg"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "a7dff0d43d11473d47df6672da8515b5d1393eea581193fdb8b334cfd8c780e8"; 27 + sha256 = "708709a3acb4689de7870d21c258ccbc03a1fdb92a43164841571e6643bf2988"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/br/thunderbird-78.8.1.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/br/thunderbird-78.9.0.tar.bz2"; 30 30 locale = "br"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "70b0a987b1677fe1b78b4105dc15aea80448e71cde8a2a31f32429111b07c92b"; 32 + sha256 = "e84f1dea6f550a1827399d0e7f658f376c816d3f7abe962ec58115d36c28c1c5"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ca/thunderbird-78.8.1.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ca/thunderbird-78.9.0.tar.bz2"; 35 35 locale = "ca"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "0e311309e7a9b03afd92fb3f38582ad318c10d3342238db42d30504123bca080"; 37 + sha256 = "8191514f74876406cf6f332a0063032206d1b6f29414941dee3082ce1bc6e711"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/cak/thunderbird-78.8.1.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/cak/thunderbird-78.9.0.tar.bz2"; 40 40 locale = "cak"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "86506acf4c23672469c6bc533019e0a2b4872efcad07468dd3c5a2f1b6ac7dd1"; 42 + sha256 = "9626ab3117cb4567ba65b24c5800f39fe7dc9c372c60f88ba0906eb72d63ffb0"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/cs/thunderbird-78.8.1.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/cs/thunderbird-78.9.0.tar.bz2"; 45 45 locale = "cs"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "6a63442f96a88c9b80b436eb280a5e67553751c946802bfe81db017eb1a11874"; 47 + sha256 = "294f60b4efa04fcc9bdea8c4107ac572613d63c742ae9492eb63f5eadcef1448"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/cy/thunderbird-78.8.1.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/cy/thunderbird-78.9.0.tar.bz2"; 50 50 locale = "cy"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "7b70af973f706976b87cac4e48623a3c3dad20538d2bc0bd4cdfd57bf1937f54"; 52 + sha256 = "865d631746754969d7dd59b096306aaacdb189b967e295676a3a7253a5af8ed3"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/da/thunderbird-78.8.1.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/da/thunderbird-78.9.0.tar.bz2"; 55 55 locale = "da"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "2b3eb2c351b4df91d2520ae4b93687eba47a6f7b6182086345cad0629ffc9538"; 57 + sha256 = "cb8b05cf1938326a4246f670bc324d83179f3ce1f3d4f3d8de57599da031ec9b"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/de/thunderbird-78.8.1.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/de/thunderbird-78.9.0.tar.bz2"; 60 60 locale = "de"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "ecd00d0713704e323acd7a1a0da88bfc3c92a85a99611f6af1b5425387428af0"; 62 + sha256 = "9dfc5b4490c8ba926ce30605e3575cf3b471fae1f1808fb5054667c2751956c2"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/dsb/thunderbird-78.8.1.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/dsb/thunderbird-78.9.0.tar.bz2"; 65 65 locale = "dsb"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "8808ff0c67014db313413aea3e8dbe7c0e0501c878572f2db1765d4b8c6ebe3b"; 67 + sha256 = "1752031e919fc1604c1d70ff5a9036d8752a0de78c0d0539860c45390b09e13f"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/el/thunderbird-78.8.1.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/el/thunderbird-78.9.0.tar.bz2"; 70 70 locale = "el"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "f83554e57ccf5a3c56b6111a928e2e983c07bac131ba8a74e9449250b644fafa"; 72 + sha256 = "bc2c7b093dd00c352874c7ae6e3d88e455fe9b357caa0e358d51dde120398f41"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/en-CA/thunderbird-78.8.1.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/en-CA/thunderbird-78.9.0.tar.bz2"; 75 75 locale = "en-CA"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "138384402cfedf4d725b5e74f1c3150d078fd422d5440246e841b9ee5c458128"; 77 + sha256 = "5605286eb97815d5acfadc0a93888a1e8d08e9b8bb5e7b28328c9650f6a9d065"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/en-GB/thunderbird-78.8.1.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/en-GB/thunderbird-78.9.0.tar.bz2"; 80 80 locale = "en-GB"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "9058897455dad34af97f1f3e1ccd517244de9c2f9a51ff3a8d222d8439b5865c"; 82 + sha256 = "bc0a4c15cb3d4f1891e91a7bc5cde53065cca95fe5c72c18bd39e0bc618b5d01"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/en-US/thunderbird-78.8.1.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/en-US/thunderbird-78.9.0.tar.bz2"; 85 85 locale = "en-US"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "7ab2fdf949a7cfd7abbba7bb2307bad08fdebed24a0446514be89c308af587b7"; 87 + sha256 = "65e1539602d206cfb78cb7bdf864d251670242d775f62aad25a1a52dcf1e9e55"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/es-AR/thunderbird-78.8.1.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/es-AR/thunderbird-78.9.0.tar.bz2"; 90 90 locale = "es-AR"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "71396deb4b1148a20af83bf7bf62dca00ec43b8cb64b5902f8bf52d861dd861b"; 92 + sha256 = "e246d1f0fda4091888dcac7c5e8d5367688d86e6f65237e942baee0c2c82136b"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/es-ES/thunderbird-78.8.1.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/es-ES/thunderbird-78.9.0.tar.bz2"; 95 95 locale = "es-ES"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "6dd479e524e4bfa7ab1488d808bfde041c34d2a13de1003f1c2a2ee0db0fc772"; 97 + sha256 = "a24902cdd4eb9f70b435f52c9244769bc674fc16194a908976c28c8de3d94674"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/et/thunderbird-78.8.1.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/et/thunderbird-78.9.0.tar.bz2"; 100 100 locale = "et"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "259ee045328d21c877ca67223f91e438496e6675cb97d825482a8213b3bbb161"; 102 + sha256 = "891fb76d3f9044ea44230d72c6b8bd4db63c63c71dc83506e91b31329e1b0c11"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/eu/thunderbird-78.8.1.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/eu/thunderbird-78.9.0.tar.bz2"; 105 105 locale = "eu"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "18a4fadc4a8d167489924042510c06d58c599997e28f652eacc3e4c85841a932"; 107 + sha256 = "cfe8c0e314dffd57e653204aa5aebe790147f3a1060cc1f95da0045d1c188cd6"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/fa/thunderbird-78.8.1.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/fa/thunderbird-78.9.0.tar.bz2"; 110 110 locale = "fa"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "0b397cd272cd386dc4d0cca7999198098a8cf4dc9088b93b05a7de75de9a9397"; 112 + sha256 = "66aba0dbc241d954b18da9c94c6c8d7b33dbc8721560a23def882cde249d17ef"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/fi/thunderbird-78.8.1.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/fi/thunderbird-78.9.0.tar.bz2"; 115 115 locale = "fi"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "9f1b5bed03fcf37f0e3a5155c36a691766ab88cb9604821b4f07ee9f25cfbc9c"; 117 + sha256 = "e05b5be90b40dd61a3686d3fb011745431f915a0d74e08a157668cfa1633d5f2"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/fr/thunderbird-78.8.1.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/fr/thunderbird-78.9.0.tar.bz2"; 120 120 locale = "fr"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "ff806999956ffe547bd987870a804942462276a10f1334df00797e56482dc4a5"; 122 + sha256 = "f4c80650f755a65c1371aa9bc35da6e1fc54f6c44dd6e6bed1f3ce8ce883656c"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/fy-NL/thunderbird-78.8.1.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/fy-NL/thunderbird-78.9.0.tar.bz2"; 125 125 locale = "fy-NL"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "50f7343fa2fa61fa46e7a05f86479743271bde3021efa27ba948923467fb0170"; 127 + sha256 = "4ada1d224c11081bc7cf7fec51e6cbef695650cdb9b860320da9a070d01bcaed"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ga-IE/thunderbird-78.8.1.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ga-IE/thunderbird-78.9.0.tar.bz2"; 130 130 locale = "ga-IE"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "e2912457c0e390f84f375fde8946c1eca15b036fb4016ca7cd608a9c61eb5060"; 132 + sha256 = "e2b6437b4b10a636d585dd591c933df370a5b70bc0a447564ab8dbb4df5c22b9"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/gd/thunderbird-78.8.1.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/gd/thunderbird-78.9.0.tar.bz2"; 135 135 locale = "gd"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "c5b2f349c98fa51f5b6dc57cc9d16f408d9659fa979c4ee86b5c51f2c163f8a5"; 137 + sha256 = "034b5dd31ac4df1ea8f19b52739fa632a53d063a6ca07e4d36194c55452aaef5"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/gl/thunderbird-78.8.1.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/gl/thunderbird-78.9.0.tar.bz2"; 140 140 locale = "gl"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "0580beef930019c5312ba4ed38e6570f4d4b85857d4c002461b07f705e261b3e"; 142 + sha256 = "1afb41188de30c672d3a15e7b8e8b0690ac8358069824edf7215f99f73333d32"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/he/thunderbird-78.8.1.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/he/thunderbird-78.9.0.tar.bz2"; 145 145 locale = "he"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "d7ddfedb469437e7df9b0ef967e578047ca70b5d45dc5175ca08f5d1b920d5c1"; 147 + sha256 = "492f33bbc7f6d6e53aaaa3587d22156afb32d0753609818eeefe7ea53bea788b"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/hr/thunderbird-78.8.1.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/hr/thunderbird-78.9.0.tar.bz2"; 150 150 locale = "hr"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "5c9c1535488e987113f356a94ffea5e5005f1eea92fb9eaa530793006d2df8cd"; 152 + sha256 = "a61743f3661eb8ce93cc58dc80ce5950534dd7c89e067a3460daa4502761e3b2"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/hsb/thunderbird-78.8.1.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/hsb/thunderbird-78.9.0.tar.bz2"; 155 155 locale = "hsb"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "3dfc77687f2ad8f9bd9a452d519172953a44b3574057f871e466d3dfc2e78cc2"; 157 + sha256 = "cb1d4f8da3071ecd4ce4f9ae43d1e4d7dcd8edbc6dbf4917bcd1730cc5a0477d"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/hu/thunderbird-78.8.1.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/hu/thunderbird-78.9.0.tar.bz2"; 160 160 locale = "hu"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "f043129670231c41cdeb8d742e50873306e34860fb702876105c88a80aef0629"; 162 + sha256 = "a4ae0452d90d3c5c7778732811d97243b9b4767208239c8a24d4b4d368630d22"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/hy-AM/thunderbird-78.8.1.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/hy-AM/thunderbird-78.9.0.tar.bz2"; 165 165 locale = "hy-AM"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "7c4e3df3c4115e3de684970d68c5a3aad8a5ac1151ce802d4adbb381f5d76529"; 167 + sha256 = "cab2129d4c4e99592ce6f22d676a03ff1cc5d5bf579a2426d0079e0f86215ade"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/id/thunderbird-78.8.1.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/id/thunderbird-78.9.0.tar.bz2"; 170 170 locale = "id"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "95776b92e84b5f1183129b3a7576542e807f701afbafd6e811522f709b30e933"; 172 + sha256 = "a1df4c7e0c359cab8b10692bfee5161d3bd44696ee06774985642604304f9b93"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/is/thunderbird-78.8.1.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/is/thunderbird-78.9.0.tar.bz2"; 175 175 locale = "is"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "ac74b9ecc8312aa833ba9db2ff7d017c0891105da5e64580b9af8797fb77ca84"; 177 + sha256 = "bf6ec8c88f65d565f7dcecb1f3177a5a1e476da62d8aec82d3419e3ed1794798"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/it/thunderbird-78.8.1.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/it/thunderbird-78.9.0.tar.bz2"; 180 180 locale = "it"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "d3409725adfb192951a14569bf1d3c779162fbb1f33c7be944345e3df191ebe3"; 182 + sha256 = "e028a6fa97dd9d37945137602d45230108fa30d63edea8df8531089724646e19"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ja/thunderbird-78.8.1.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ja/thunderbird-78.9.0.tar.bz2"; 185 185 locale = "ja"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "9c7bbe228994d06397cd4490b0e6c667b8ab14b94398ef9b0a0bc135d3c6c392"; 187 + sha256 = "6435637e0582123c1b941b1c6209aa1bfdec471d3ce76a861c82e876b7637fee"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ka/thunderbird-78.8.1.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ka/thunderbird-78.9.0.tar.bz2"; 190 190 locale = "ka"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "39681dd197986b4535b6f08904aa140f5517b3663dd16f055d514be509bea217"; 192 + sha256 = "8d00d918c42450ac7a451a0a5a7407ecb334b51bd20c3f33871a29c82f338175"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/kab/thunderbird-78.8.1.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/kab/thunderbird-78.9.0.tar.bz2"; 195 195 locale = "kab"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "30f473c45c5d2d60271469ee60174ce10989edea02bfe61503dca4be04f783c6"; 197 + sha256 = "59af5f436ccf0d0914f800ff6cb31fb341d3d905d3d450ed43a09d8810e50bae"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/kk/thunderbird-78.8.1.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/kk/thunderbird-78.9.0.tar.bz2"; 200 200 locale = "kk"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "b5dc4df14dd5de27a32332af867c233089081d43514d36a6955fb34dc46b0955"; 202 + sha256 = "70588dd395158e87bdf651a9ed2b1d92cc5792ed6c85160c2b1c2109d52a3ca2"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ko/thunderbird-78.8.1.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ko/thunderbird-78.9.0.tar.bz2"; 205 205 locale = "ko"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "b151223ca74a4624912941ca5a33ea620ffadc4840a6b58b0459abc4b9fbcccf"; 207 + sha256 = "7a3473a4bd51f6931326c30c387546d4b900fd70a837e8d45380afd4597c10e2"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/lt/thunderbird-78.8.1.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/lt/thunderbird-78.9.0.tar.bz2"; 210 210 locale = "lt"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "9405ddf255265811d274bb1c5d05fa5066976d36f1a7e5687a9c4930488ec269"; 212 + sha256 = "1e36db5d910184872af4e7623c59c79f8e522955c5dd5cba4a689a5bc2d857b0"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ms/thunderbird-78.8.1.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ms/thunderbird-78.9.0.tar.bz2"; 215 215 locale = "ms"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "63daf0a4f33b6e04ca92b1b6df187c0fa52fad97863e66356fe6fc592610be0e"; 217 + sha256 = "058f825e44c24e837081bb05241c1ff47b390132dbd3cdb5b5d4ef51056bb2ab"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/nb-NO/thunderbird-78.8.1.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/nb-NO/thunderbird-78.9.0.tar.bz2"; 220 220 locale = "nb-NO"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "94e855d4d4c7724cae5060f595ddc5c6afbbcce95a47544c4e13131fc5e6fed5"; 222 + sha256 = "7f6335ff85c29aa634b7909e4b7a2da007f333648a98ad9f3bd8833d00f2f0da"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/nl/thunderbird-78.8.1.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/nl/thunderbird-78.9.0.tar.bz2"; 225 225 locale = "nl"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "d3fef411d76b25d4791814bc2c867df1ff4d6388514026a243715c0b01eb6cc8"; 227 + sha256 = "0056c1250401f89ab8d9423f23d3148bcf34801b34247d4bc44b89e8edd0552f"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/nn-NO/thunderbird-78.8.1.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/nn-NO/thunderbird-78.9.0.tar.bz2"; 230 230 locale = "nn-NO"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "b144ebaa2ec9a7596c671de0b00a2040b64681cbc92e6ede6f93b8dc85039f73"; 232 + sha256 = "f63e4305ba814a46edc4316af6ad02acd479306f2f1c02c1b04065ea20baf59f"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/pa-IN/thunderbird-78.8.1.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/pa-IN/thunderbird-78.9.0.tar.bz2"; 235 235 locale = "pa-IN"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "5231448246edb5051015c7f8f6f9c8b2d4373746d5a6dde94a9ebf4c672c60e8"; 237 + sha256 = "654902d560df0648cd2e9b7b1271d3606071865dd1cc4490741a5777be2c72c3"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/pl/thunderbird-78.8.1.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/pl/thunderbird-78.9.0.tar.bz2"; 240 240 locale = "pl"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "8250c42c98c9f5c8c2b071b0eb31b7b27e019513585bf0154bd9ea5c901a2aa9"; 242 + sha256 = "62c4352b987bef61f69bb0300c9cc37b95ca5e6fde57a06646b14bef6e58dd78"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/pt-BR/thunderbird-78.8.1.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/pt-BR/thunderbird-78.9.0.tar.bz2"; 245 245 locale = "pt-BR"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "625c7d2d6620c045b153866ee310d8d04fd9998cfc51f5f458de19d7fd7452b7"; 247 + sha256 = "139606374df552562100c01e8a330fc1f4f9e6dcbc6a39396137d2f069ad0fcd"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/pt-PT/thunderbird-78.8.1.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/pt-PT/thunderbird-78.9.0.tar.bz2"; 250 250 locale = "pt-PT"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "2ead9fe00dd88dbf7245275f2cee002cf3205dd3256303f582635ca33b3aa60e"; 252 + sha256 = "eb6526b6ee0f768949489ca587c321ed8aabd258296c58e596b7a5413b458ed7"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/rm/thunderbird-78.8.1.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/rm/thunderbird-78.9.0.tar.bz2"; 255 255 locale = "rm"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "b4b40e417a4bb52aed6bbb7f042d5e164ea2e9f4acf8cde680d4f19f37862e1f"; 257 + sha256 = "36a22f1c8eb1a5c7fb0e9323a3c3eb03f8a63b2b6c62430780bf4508a7236c41"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ro/thunderbird-78.8.1.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ro/thunderbird-78.9.0.tar.bz2"; 260 260 locale = "ro"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "cd0e8aa8e6b02cd7a432e2e943e1a61a65f152bdb9902a1f948e514c46cb8304"; 262 + sha256 = "92ae47ebf2ab176d46e04172206241aeae8a6eebf72b5f32d021782aa1675be8"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/ru/thunderbird-78.8.1.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/ru/thunderbird-78.9.0.tar.bz2"; 265 265 locale = "ru"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "00602137ac0d86bbc08ddac08cb2805daed3d8c2b78b2408b34107bbd61c4e32"; 267 + sha256 = "97680d44fae135e90368adb75ac27b4f23f1186d1435ba265a80027334f320ec"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/si/thunderbird-78.8.1.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/si/thunderbird-78.9.0.tar.bz2"; 270 270 locale = "si"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "f1ad95430fcba364c0741c03fbbdbad602ad521959685ace7f3056fa801188af"; 272 + sha256 = "6ddf49c8696deb3ab9ac55453b93116c923ad0025c9c8463b56bdc81e6d00bb9"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/sk/thunderbird-78.8.1.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/sk/thunderbird-78.9.0.tar.bz2"; 275 275 locale = "sk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "30ebe0eaac08884d10f8cffa77d145600154b6969a212873bb189aea91187d54"; 277 + sha256 = "5e2be4cab9101a67c61eee16c8c84513b196dd19f6d0dfee3559796a8a031138"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/sl/thunderbird-78.8.1.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/sl/thunderbird-78.9.0.tar.bz2"; 280 280 locale = "sl"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "3f38b1934f6fd66efb97b83c83f76f09c649ef09108fe1a92515752b2d79c890"; 282 + sha256 = "ab9293a2a5caf948bf2e4b4680b9cf7440e7a272f9f028568e260c40d5a031ce"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/sq/thunderbird-78.8.1.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/sq/thunderbird-78.9.0.tar.bz2"; 285 285 locale = "sq"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "79780bad07999285a3ad37d85b82d7037fe4784b3a83f79f6907c73ad1a7ee55"; 287 + sha256 = "113171842441b9553e6da58c7ce3e3382fb9aa780892b8ee4436ff9b2bf3dc59"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/sr/thunderbird-78.8.1.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/sr/thunderbird-78.9.0.tar.bz2"; 290 290 locale = "sr"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "68430529f488d89730864a267a20c5f86b1ffa0b473bdf153c43e06a95a81c5d"; 292 + sha256 = "1b46f1597ab5aec2bca98adf9664cafd72ff51db23722108cbd4c0c89a1a8e70"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/sv-SE/thunderbird-78.8.1.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/sv-SE/thunderbird-78.9.0.tar.bz2"; 295 295 locale = "sv-SE"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "3e2a8112b2da35af3402d0974a70c00ca6cde4cbf43f07141ff7b184d373d444"; 297 + sha256 = "41284557a6ae1b267eb3c2fdcc4a547834e833f55b5c1ad9c8bd9121c9d39dc1"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/th/thunderbird-78.8.1.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/th/thunderbird-78.9.0.tar.bz2"; 300 300 locale = "th"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "9b94b35004bec519e8bc8fa152c677189fc37e78a3bdedc0d77afb81bffb0c58"; 302 + sha256 = "99a342f303c3a890ee68514841d563fe493e2459a4d6f6769c42f986e122b7ba"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/tr/thunderbird-78.8.1.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/tr/thunderbird-78.9.0.tar.bz2"; 305 305 locale = "tr"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "b1f0281f5a1a2454a38ccc66510b4de44c19f4300a990f994d5c0ac76b002782"; 307 + sha256 = "f827b3d8fb60540d00d20d4ec50dbd9e28af3798863fa4ccc1a862a08ebdd18d"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/uk/thunderbird-78.8.1.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/uk/thunderbird-78.9.0.tar.bz2"; 310 310 locale = "uk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "ae53f162d9016a3f2b3e104c86aefb34ed9e96ce14cc3feb1584ce61617c3b49"; 312 + sha256 = "d8e30faa9f43308c31504437ae2187d5c1ce00c16cd430f31eaacf8dbed71604"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/uz/thunderbird-78.8.1.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/uz/thunderbird-78.9.0.tar.bz2"; 315 315 locale = "uz"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "6d43cbdac67084253eda88d0cd58440229def6d03904b4e1a8c9b9133ed7bb55"; 317 + sha256 = "00e3e3a43519fa8136d3cde8527f3e9c44732ef6d5aac9cc2e1f28feaf940a50"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/vi/thunderbird-78.8.1.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/vi/thunderbird-78.9.0.tar.bz2"; 320 320 locale = "vi"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "f29e5e685c3b072ece7ef6cd645b2596025848e9b72b00fbb49378b8f25ef3a9"; 322 + sha256 = "f16b0fca32c85e648be8c8d4c9ddb6d8fde726f1386d0dd29ec050b39d827fe2"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/zh-CN/thunderbird-78.8.1.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/zh-CN/thunderbird-78.9.0.tar.bz2"; 325 325 locale = "zh-CN"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "e4789a8b85555be1fab438e694562bec0b2022a6955ad098b837c48d3954452c"; 327 + sha256 = "51007e8318fbf673eb63bf20be8daa35ef8e2d6fee9fd9356dbba98d843dc813"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-x86_64/zh-TW/thunderbird-78.8.1.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-x86_64/zh-TW/thunderbird-78.9.0.tar.bz2"; 330 330 locale = "zh-TW"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "7d4246056adf297ac1bf3c7de20d067453e41350b089841d617e2ac6ecaab0ac"; 332 + sha256 = "ef7a5507b47725ba7bca853c1f5bf20eb36d31fbbc8c912596a5993f7dca57ac"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/af/thunderbird-78.8.1.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/af/thunderbird-78.9.0.tar.bz2"; 335 335 locale = "af"; 336 336 arch = "linux-i686"; 337 - sha256 = "1c09247e43ebfd2cd10995e76ff791b6c78d4545ebcfa37959b154e5307e17a7"; 337 + sha256 = "435ba6c5a5901fe1daa1b19c36f1071086d21e2f321a52afe1db0c03a0044635"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ar/thunderbird-78.8.1.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ar/thunderbird-78.9.0.tar.bz2"; 340 340 locale = "ar"; 341 341 arch = "linux-i686"; 342 - sha256 = "bd7a46b42a8200f0515be9798bda145f398e2db32357ae8c46c1dc89cc823dd5"; 342 + sha256 = "4ac307dbe93e69e6dbb629756363900256ec735c1927cad74acb0c5f8e255b92"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ast/thunderbird-78.8.1.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ast/thunderbird-78.9.0.tar.bz2"; 345 345 locale = "ast"; 346 346 arch = "linux-i686"; 347 - sha256 = "418fc4d19a9d4ce982e534c7be95b79dd2c15311040e2c50e5644f3a5e3cf245"; 347 + sha256 = "3d9a01438e82350e5a60ee7944226d9a0f46384673ddae01f8f8fe445df40312"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/be/thunderbird-78.8.1.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/be/thunderbird-78.9.0.tar.bz2"; 350 350 locale = "be"; 351 351 arch = "linux-i686"; 352 - sha256 = "27b9271c984eb739cc4782050bf5f896da01ced7803dae8e81181ac4a8c0df86"; 352 + sha256 = "9a5b22648d8c7c05d5f0be0d1f450baadccf791353a23bc1b6889e8911d90c5a"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/bg/thunderbird-78.8.1.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/bg/thunderbird-78.9.0.tar.bz2"; 355 355 locale = "bg"; 356 356 arch = "linux-i686"; 357 - sha256 = "b63ca81e05c4a16497339374f297ced5033daa275fd48fe9884d4945f216771a"; 357 + sha256 = "77cf8d4912c2b5b34fa0235ddbb95cd90bcf83d1d528275b23de08dad59116c5"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/br/thunderbird-78.8.1.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/br/thunderbird-78.9.0.tar.bz2"; 360 360 locale = "br"; 361 361 arch = "linux-i686"; 362 - sha256 = "f213c17427b907a21a3c4eb2976eccca91423a1400260b22ea59c588a2e1e9d1"; 362 + sha256 = "9e7bcb749e0d88efd60e6bed2fc77e39deaf8a82db56c304529d44843657842d"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ca/thunderbird-78.8.1.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ca/thunderbird-78.9.0.tar.bz2"; 365 365 locale = "ca"; 366 366 arch = "linux-i686"; 367 - sha256 = "8bd818f98c17b8e954883c462064994c469fa805aadf74b6e0915824e1ad929a"; 367 + sha256 = "0206a127cbf5f9b1c4c4711d4d05591d175c9e96c2354790c220e9587c356aba"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/cak/thunderbird-78.8.1.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/cak/thunderbird-78.9.0.tar.bz2"; 370 370 locale = "cak"; 371 371 arch = "linux-i686"; 372 - sha256 = "6213c8b217db157f40e008af10780edef5a02ffdc2442240597a00252f4f58ea"; 372 + sha256 = "e47d892a90c3b9ec29365cc0173066234e21cd989c4b588e43fecb61b10d1f80"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/cs/thunderbird-78.8.1.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/cs/thunderbird-78.9.0.tar.bz2"; 375 375 locale = "cs"; 376 376 arch = "linux-i686"; 377 - sha256 = "22491715bd72408d7c15d8fc137ccc496a0ea075217485a8e31abf73ca09bad7"; 377 + sha256 = "bdcfb9cf6e3207a41634eb54c472117c33b0df981d900c4dd0dbff0463ebe57a"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/cy/thunderbird-78.8.1.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/cy/thunderbird-78.9.0.tar.bz2"; 380 380 locale = "cy"; 381 381 arch = "linux-i686"; 382 - sha256 = "3d4f07b0055d92dcbaaafa139959de7071b2b3d74c49452bbb2556b1ed3ae82e"; 382 + sha256 = "5b0def675213d882ea653ffd7b5aa62f96000d4aaee8e06ad1fd5984ac99c8c7"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/da/thunderbird-78.8.1.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/da/thunderbird-78.9.0.tar.bz2"; 385 385 locale = "da"; 386 386 arch = "linux-i686"; 387 - sha256 = "409779e136c0efb3dff667e50b9ba318937d3e96ac918b8272741ea004ec3f5c"; 387 + sha256 = "617579da2580a0d9a5a6e64ef7c4b028fde31f82dcf8139104c380e51ec50227"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/de/thunderbird-78.8.1.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/de/thunderbird-78.9.0.tar.bz2"; 390 390 locale = "de"; 391 391 arch = "linux-i686"; 392 - sha256 = "ac5ca1fe2247cd4d05862c00592c86dda480108b7a40e284ccc67718a1762f78"; 392 + sha256 = "5cdee984aa63595fbcb00303f14fd19d124ef9b267d490d5263c7554f4ea0dc7"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/dsb/thunderbird-78.8.1.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/dsb/thunderbird-78.9.0.tar.bz2"; 395 395 locale = "dsb"; 396 396 arch = "linux-i686"; 397 - sha256 = "769d47c388ef4dfced4ba770f78eeedcafdc834dc4fa4175eaa92710ddc2e0de"; 397 + sha256 = "fa05969bcc025056b8ba9c056af0051fed91a967ebf9e21ccab7654aaaa6ba1f"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/el/thunderbird-78.8.1.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/el/thunderbird-78.9.0.tar.bz2"; 400 400 locale = "el"; 401 401 arch = "linux-i686"; 402 - sha256 = "1a2daf5b0ccc36acae027da2281998b4333ea4e9981c7106243c68188517f482"; 402 + sha256 = "03b58dbcabb41c0140c18f1ff31dd32e4d2d006c85af75d73bcd656587e787ed"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/en-CA/thunderbird-78.8.1.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/en-CA/thunderbird-78.9.0.tar.bz2"; 405 405 locale = "en-CA"; 406 406 arch = "linux-i686"; 407 - sha256 = "3a55772b7bec93bec83de289b5b36129e8e0d988d54db3d66ffcaf8326786ae3"; 407 + sha256 = "6cd222aacb8eba184dc3eef308fe7b564c70da2ba6c38e6e4e328e999b7229a4"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/en-GB/thunderbird-78.8.1.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/en-GB/thunderbird-78.9.0.tar.bz2"; 410 410 locale = "en-GB"; 411 411 arch = "linux-i686"; 412 - sha256 = "f41b610c6a3f4f5d3e2c648d05ca210cf9bdbb998b94f298f81dd84601c00be9"; 412 + sha256 = "9d3ca50977bd5c6f8a5bd998549db0dc2ccc6aa5d33c914e93d42e2ae69e8cbd"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/en-US/thunderbird-78.8.1.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/en-US/thunderbird-78.9.0.tar.bz2"; 415 415 locale = "en-US"; 416 416 arch = "linux-i686"; 417 - sha256 = "9598fd9175cc0d641387f6ac7f475d970b4f0864872b5d875d170039d6c97b39"; 417 + sha256 = "84721e190b6b95733a47a16853e1fe1e0c7b0e4693d3b7752aa59583fba92f97"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/es-AR/thunderbird-78.8.1.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/es-AR/thunderbird-78.9.0.tar.bz2"; 420 420 locale = "es-AR"; 421 421 arch = "linux-i686"; 422 - sha256 = "603106740e8db3a7c9220897b9146ef53937bd57a60258a04548e1afb41d983c"; 422 + sha256 = "dcadcd68506406f718871d7576b47086d59ca159a5bc6d878d022141029df2db"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/es-ES/thunderbird-78.8.1.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/es-ES/thunderbird-78.9.0.tar.bz2"; 425 425 locale = "es-ES"; 426 426 arch = "linux-i686"; 427 - sha256 = "e0f5f3d6aed26310bfee54099c73a13417be36eb737f6123526e94a5286f6336"; 427 + sha256 = "46526dd5b4bb123e774d3a3fa8fd88a8982cfb36a252b09fa98aa6cb773ff0d2"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/et/thunderbird-78.8.1.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/et/thunderbird-78.9.0.tar.bz2"; 430 430 locale = "et"; 431 431 arch = "linux-i686"; 432 - sha256 = "bc4a1dc96e8ba31d0817f369af4e3e10b672aa854538093ef1d02126bcff24bb"; 432 + sha256 = "de0b695be00721244ff20b2046bb376342fba7c422980443b217f5d4cfa83d48"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/eu/thunderbird-78.8.1.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/eu/thunderbird-78.9.0.tar.bz2"; 435 435 locale = "eu"; 436 436 arch = "linux-i686"; 437 - sha256 = "2c61d117e5fa23d62197f9b2c0512547356b65098eee5fd72285317caca6b51a"; 437 + sha256 = "543d45e256951cbf21bc61359e99daf2c80789a88641ae2231c1eb0ade133198"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/fa/thunderbird-78.8.1.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/fa/thunderbird-78.9.0.tar.bz2"; 440 440 locale = "fa"; 441 441 arch = "linux-i686"; 442 - sha256 = "6b93377b457ec1e0dd343bc4d2193c6bb3030450e76757ac042c67e353075310"; 442 + sha256 = "6b95ebccf7ccca90c3310923f020ba6f05fa715d64c79acd770a491e15a9938f"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/fi/thunderbird-78.8.1.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/fi/thunderbird-78.9.0.tar.bz2"; 445 445 locale = "fi"; 446 446 arch = "linux-i686"; 447 - sha256 = "9e07a2060b821047c494e03d9ab74b8f3aeea322aa1e1bdde080637187f89e05"; 447 + sha256 = "145c2479a73955f9ffe6ebd2d41eced848770729f218381735aafe5c3cc0b3a6"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/fr/thunderbird-78.8.1.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/fr/thunderbird-78.9.0.tar.bz2"; 450 450 locale = "fr"; 451 451 arch = "linux-i686"; 452 - sha256 = "d4ea501f5a42effdb758ca24f2da7bd4ca1d83a8ea6da467fd63cbef96f8b373"; 452 + sha256 = "9178d90f346d62b6aa0bb4b081b6bebc214d333d6a042c46ee1af7661ffc3b03"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/fy-NL/thunderbird-78.8.1.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/fy-NL/thunderbird-78.9.0.tar.bz2"; 455 455 locale = "fy-NL"; 456 456 arch = "linux-i686"; 457 - sha256 = "9aa11144cf22a5db5200628ac5e55a55b83ffda35306cf1909aabac9fe4878c2"; 457 + sha256 = "fe3574999f0d1fff276fdfd7d432859d495c2b64137d33ee418ef1e4329b1b72"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ga-IE/thunderbird-78.8.1.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ga-IE/thunderbird-78.9.0.tar.bz2"; 460 460 locale = "ga-IE"; 461 461 arch = "linux-i686"; 462 - sha256 = "15af980b46c8cf80b60a999e2ca3b30c92719638af51d9e82133f58de61d7ed5"; 462 + sha256 = "1570882cd8345f86de38179713a7f7acb94768c4874e571a20314fb01154e1bf"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/gd/thunderbird-78.8.1.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/gd/thunderbird-78.9.0.tar.bz2"; 465 465 locale = "gd"; 466 466 arch = "linux-i686"; 467 - sha256 = "cdeb93b31a1a9521dd7f91081f28c1a64e0e6a218f1c0015ae9c54d73cc91f0d"; 467 + sha256 = "9405a2a7ce52a48292bf4b6b20f3b1e96c12460a1e44a90ccdc31cdb21acda5e"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/gl/thunderbird-78.8.1.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/gl/thunderbird-78.9.0.tar.bz2"; 470 470 locale = "gl"; 471 471 arch = "linux-i686"; 472 - sha256 = "48d973991c0cbb9988339c185d1ea8fda4c6cea6f0667cfaf8f2bdeec4c55a23"; 472 + sha256 = "930a9a3e06bc28ede54ec43e8bb92cc30329d7f0271629b37ac3753191f7e133"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/he/thunderbird-78.8.1.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/he/thunderbird-78.9.0.tar.bz2"; 475 475 locale = "he"; 476 476 arch = "linux-i686"; 477 - sha256 = "c2f50a1fb3e877e3c08927eef96f104f5f970cb7629af21de3344e539617422b"; 477 + sha256 = "eb08c16b7df47fd501f61049b19f3f8f827870c8681b9230564276bc0cc9ada8"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/hr/thunderbird-78.8.1.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/hr/thunderbird-78.9.0.tar.bz2"; 480 480 locale = "hr"; 481 481 arch = "linux-i686"; 482 - sha256 = "ec3596067c8245cd5cef8fc649c3d1fd6d38bb802e2a05947ab9e62b8d393b91"; 482 + sha256 = "c866290def37d2e16274820d5846bec52afc7c7da1f8df812df930f0c68c6b56"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/hsb/thunderbird-78.8.1.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/hsb/thunderbird-78.9.0.tar.bz2"; 485 485 locale = "hsb"; 486 486 arch = "linux-i686"; 487 - sha256 = "0209d678b9353513bcab3c647100c35d772d25b1969bb9970266c09f2db01e05"; 487 + sha256 = "0df5dc60047e68aadc7a96e194468d42e977c7a90d9faa8c4684f650763825f8"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/hu/thunderbird-78.8.1.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/hu/thunderbird-78.9.0.tar.bz2"; 490 490 locale = "hu"; 491 491 arch = "linux-i686"; 492 - sha256 = "817cef3a34c40ed31a59421f89a94de5b7be165cd1bd93fca7b2560cad3e05eb"; 492 + sha256 = "e76e78c1c77b59eb7a3ffad0da149dcc7f64d6b0305f5a5a607ad2745d224e17"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/hy-AM/thunderbird-78.8.1.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/hy-AM/thunderbird-78.9.0.tar.bz2"; 495 495 locale = "hy-AM"; 496 496 arch = "linux-i686"; 497 - sha256 = "ca49953791109563cdc81a3458a5b3dd15ebb49a255752052e927daad199b0fa"; 497 + sha256 = "0dde11bb6c6ba186925010cee97b59d3c64890b108ef478be5578218954a39cb"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/id/thunderbird-78.8.1.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/id/thunderbird-78.9.0.tar.bz2"; 500 500 locale = "id"; 501 501 arch = "linux-i686"; 502 - sha256 = "33fb9d6c721f79e4808f077573828c26b671434b0308db9c33386dbd975c4a53"; 502 + sha256 = "ceea16b87a7d8b44b187d950f4c9fc5326ed7a550c38e0f41645004a324669a0"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/is/thunderbird-78.8.1.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/is/thunderbird-78.9.0.tar.bz2"; 505 505 locale = "is"; 506 506 arch = "linux-i686"; 507 - sha256 = "d498ac95c289612a253962d1988ac9d1526864926c9a4b9cc2985fe1d84ae03d"; 507 + sha256 = "a98177d8f62b1ffe056ba3c1f2ec9d7b3f47ad8d47459328692e9bee5e1d02d2"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/it/thunderbird-78.8.1.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/it/thunderbird-78.9.0.tar.bz2"; 510 510 locale = "it"; 511 511 arch = "linux-i686"; 512 - sha256 = "cff73b132740bf3854977f62afe8076c7c660559cc8a96fbc36c4ffadd46d50e"; 512 + sha256 = "259b8e4e08828b544ba61541629025d4a711f44dc4c476b3e3971a633301b298"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ja/thunderbird-78.8.1.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ja/thunderbird-78.9.0.tar.bz2"; 515 515 locale = "ja"; 516 516 arch = "linux-i686"; 517 - sha256 = "d8ffe86ccbc4de40a0909f55b750380454a2f51f450b4c8b49886612a49997fc"; 517 + sha256 = "6f2511dab5530e58664f386cb65b26d82fe581faee01b1a76cdd29e3ee3a1955"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ka/thunderbird-78.8.1.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ka/thunderbird-78.9.0.tar.bz2"; 520 520 locale = "ka"; 521 521 arch = "linux-i686"; 522 - sha256 = "1bf02cd11b554b597b6f5facdd07b6ae7826ad24a2f1ceb432bca6fcd0396749"; 522 + sha256 = "368a85fcb387703df7422d1ce199a499d0e4796f4fdd4775aef27c5b36272fa7"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/kab/thunderbird-78.8.1.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/kab/thunderbird-78.9.0.tar.bz2"; 525 525 locale = "kab"; 526 526 arch = "linux-i686"; 527 - sha256 = "aa0295643ee24b0e76d5567c4f43f94ddf4a820cde2bd5be5a6dbc0b2f1c7271"; 527 + sha256 = "33bfd965c79bd6935516729f3eedd65be2b3f754c9225d6ffdb4af201b0d13a2"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/kk/thunderbird-78.8.1.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/kk/thunderbird-78.9.0.tar.bz2"; 530 530 locale = "kk"; 531 531 arch = "linux-i686"; 532 - sha256 = "265e5000114d7f3d204885a5c4eb5ef71780699f185f570da90737001023d4b5"; 532 + sha256 = "20dfc052f78a58d4fd96a0df22b55559ca43d8792dfda372dfede1cb49c6b185"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ko/thunderbird-78.8.1.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ko/thunderbird-78.9.0.tar.bz2"; 535 535 locale = "ko"; 536 536 arch = "linux-i686"; 537 - sha256 = "a1622a295ab259400d61e9487f40b7e34c143b81afb1f354647a48cb56425d13"; 537 + sha256 = "63479eb7fcaea17ea29c98b624c36ac20ff2ab9e42bae1a355c78f05d5f9e313"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/lt/thunderbird-78.8.1.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/lt/thunderbird-78.9.0.tar.bz2"; 540 540 locale = "lt"; 541 541 arch = "linux-i686"; 542 - sha256 = "423926d31fac238ec493de6f48d14530cf58bf0829b73505f7ea4138f6bdeb56"; 542 + sha256 = "2d50db9e0698c991e10a6ec6e627b02d0aca9e18b857aa290e4aab926e8ee88b"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ms/thunderbird-78.8.1.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ms/thunderbird-78.9.0.tar.bz2"; 545 545 locale = "ms"; 546 546 arch = "linux-i686"; 547 - sha256 = "acdfdeecc6c5ff04c1428185bbe63a6e38b1545daa9e69888b78e2b5ba3b9194"; 547 + sha256 = "66969627bd536d9a8e8d8717bab010ceb16350425d31ea114bc7e012ba1f0922"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/nb-NO/thunderbird-78.8.1.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/nb-NO/thunderbird-78.9.0.tar.bz2"; 550 550 locale = "nb-NO"; 551 551 arch = "linux-i686"; 552 - sha256 = "f62a4f2d2c8e93b58f3a0c35e6885c1e46a8b6ed1fd0414e719c480f99fa2cf8"; 552 + sha256 = "1db46ff207d356adaf761db2fac7961b20633dc6578ce562154a1bdb308256e3"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/nl/thunderbird-78.8.1.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/nl/thunderbird-78.9.0.tar.bz2"; 555 555 locale = "nl"; 556 556 arch = "linux-i686"; 557 - sha256 = "c2dda812534a9155f79fc2249cafd8e77e572cc20bdaf1bbf637bea4daf5e612"; 557 + sha256 = "0259c04b35bd30b5feb44da31b639938504f1402879205263eb63f7a59153f11"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/nn-NO/thunderbird-78.8.1.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/nn-NO/thunderbird-78.9.0.tar.bz2"; 560 560 locale = "nn-NO"; 561 561 arch = "linux-i686"; 562 - sha256 = "84fae5d60ec7223c0404033ad2e2b776c4a9353b55e0256c7ca7122aebc031a2"; 562 + sha256 = "1de52759f96302447829e0de40319394ac0b1802ec60c0c242cf85c0ca5110c6"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/pa-IN/thunderbird-78.8.1.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/pa-IN/thunderbird-78.9.0.tar.bz2"; 565 565 locale = "pa-IN"; 566 566 arch = "linux-i686"; 567 - sha256 = "0fa48cf1ab0d1e23e4d230fb6f78e7f6d07d99360e341c239ea572c201204870"; 567 + sha256 = "39e0f5794e508dbf02c6aaedaead4173f5ae55d350aa3caeb7a1ad300a69e4e8"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/pl/thunderbird-78.8.1.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/pl/thunderbird-78.9.0.tar.bz2"; 570 570 locale = "pl"; 571 571 arch = "linux-i686"; 572 - sha256 = "90fa65f13718539a899dfae11aaaec05b9c1a4f56c8b835436f9401d7c453b01"; 572 + sha256 = "25bc49f2225c8aca7ea467a240234fa9ec2c7ec34f751537a199f6cbb30b390b"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/pt-BR/thunderbird-78.8.1.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/pt-BR/thunderbird-78.9.0.tar.bz2"; 575 575 locale = "pt-BR"; 576 576 arch = "linux-i686"; 577 - sha256 = "f203c40580edbe2fc8645af1477bd1b750a64241702fda3bd0747efb7c44510b"; 577 + sha256 = "6091c0e84d89312db11a3714027881243db708ce3f28187e86076351786a3d70"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/pt-PT/thunderbird-78.8.1.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/pt-PT/thunderbird-78.9.0.tar.bz2"; 580 580 locale = "pt-PT"; 581 581 arch = "linux-i686"; 582 - sha256 = "42b5b7f39b75550e39accb221d0728cf6181e4251d130859c85a139bc4b2267c"; 582 + sha256 = "45fae3c271d226dee2410f8f97eadb62783291c570bf12cd9f5fe5ab23acae23"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/rm/thunderbird-78.8.1.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/rm/thunderbird-78.9.0.tar.bz2"; 585 585 locale = "rm"; 586 586 arch = "linux-i686"; 587 - sha256 = "15165421181470218c152da68adea6e1f8a2abef4c7fd70f19d210620d29dab6"; 587 + sha256 = "56387dea25d3bc4742c297e0609be55a2db938d10a5e94db192018c706e7f398"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ro/thunderbird-78.8.1.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ro/thunderbird-78.9.0.tar.bz2"; 590 590 locale = "ro"; 591 591 arch = "linux-i686"; 592 - sha256 = "974f8139cf98576a588088fef03788f513e6e45fa054d4d53cc2131254e0b794"; 592 + sha256 = "7e84c211675cbd59e805ffa499663b3c02dbc2075f2b734eaa9f41862e59c59f"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/ru/thunderbird-78.8.1.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/ru/thunderbird-78.9.0.tar.bz2"; 595 595 locale = "ru"; 596 596 arch = "linux-i686"; 597 - sha256 = "eae2f2f1e5bfcf389f34b9635c838cfcbfbc0d93e9daf6635c0faffea2df1d7f"; 597 + sha256 = "c9374d0b813baa7aa837e2283d75c9c47d75fca7bfc640be4782d90b480fa145"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/si/thunderbird-78.8.1.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/si/thunderbird-78.9.0.tar.bz2"; 600 600 locale = "si"; 601 601 arch = "linux-i686"; 602 - sha256 = "cac0bdfbbc3b5cb21e38473aae44e4f8d2ebf192b6c35d7e075c47e25684da48"; 602 + sha256 = "ac8ff38bf196886f8b95c34a07ed701416c58b78758517377f6d8eefc85050ad"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/sk/thunderbird-78.8.1.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/sk/thunderbird-78.9.0.tar.bz2"; 605 605 locale = "sk"; 606 606 arch = "linux-i686"; 607 - sha256 = "6a30b2b648b24e3cd4e2c3b668e73802796f296a2f81aa8e470ec0909f8dbc87"; 607 + sha256 = "dd44494bec41af06317266ee7d8f8f16ac6c648728636aa68c93f57ca9594231"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/sl/thunderbird-78.8.1.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/sl/thunderbird-78.9.0.tar.bz2"; 610 610 locale = "sl"; 611 611 arch = "linux-i686"; 612 - sha256 = "0d4e597db5264bef212cdc3e86564acad1ed4cad3cae9eb61e583025b401bfa2"; 612 + sha256 = "2be1af23f71b22812a90ab2be33649ad53bf2d14acbbcc9540b835eade0fd9bf"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/sq/thunderbird-78.8.1.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/sq/thunderbird-78.9.0.tar.bz2"; 615 615 locale = "sq"; 616 616 arch = "linux-i686"; 617 - sha256 = "8a4dd36ac981c89924755526fae8634f20d0d7dbdbb6fc9c324a5badbf7394db"; 617 + sha256 = "5c65db4fcc190408aa8a1c5f0170ede3f86f1c9f07dacc6fd7a9aa54bff533d1"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/sr/thunderbird-78.8.1.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/sr/thunderbird-78.9.0.tar.bz2"; 620 620 locale = "sr"; 621 621 arch = "linux-i686"; 622 - sha256 = "6002d49812cbba0289db444e84b8a139c0784056a26e3a0592fd1806ce865cbe"; 622 + sha256 = "7a42279c8a4352c18d583503b2324f5dd98b6c927582fa1d5e8cd72a5b1ca782"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/sv-SE/thunderbird-78.8.1.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/sv-SE/thunderbird-78.9.0.tar.bz2"; 625 625 locale = "sv-SE"; 626 626 arch = "linux-i686"; 627 - sha256 = "498303591a0d28ce2bbb59693fd55bdbf292c7feba8002c9cacdce7ec08b50d0"; 627 + sha256 = "3f508f801f1f4afc477ee1a0bd81d49d957429360b9691b5945a88b609dc9a21"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/th/thunderbird-78.8.1.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/th/thunderbird-78.9.0.tar.bz2"; 630 630 locale = "th"; 631 631 arch = "linux-i686"; 632 - sha256 = "6c31f40537ba39bdba93eb46f480f8a1a446a6b028834f6886934b102ce1b861"; 632 + sha256 = "bd50cac75236ee9e1ad7226c605b37cc2f4aa57eafc4978af9f2563aff7dda0c"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/tr/thunderbird-78.8.1.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/tr/thunderbird-78.9.0.tar.bz2"; 635 635 locale = "tr"; 636 636 arch = "linux-i686"; 637 - sha256 = "b8f5a0be988b89dc7e8b14750d6aa0ccbdbf2c1a1c3abee376b94b1443223757"; 637 + sha256 = "af134487b9c2d6f84df56e2da1fcbc7b4abd3960fa3d11a366281768812fd9e6"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/uk/thunderbird-78.8.1.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/uk/thunderbird-78.9.0.tar.bz2"; 640 640 locale = "uk"; 641 641 arch = "linux-i686"; 642 - sha256 = "036065e1fc91907370ffe75883b1d1e8fd1a416a9a726583c758d7a0765b84ad"; 642 + sha256 = "a094a6fe935b002805252ad4694a15231587a66c31cff3064c2842332f1e82ae"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/uz/thunderbird-78.8.1.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/uz/thunderbird-78.9.0.tar.bz2"; 645 645 locale = "uz"; 646 646 arch = "linux-i686"; 647 - sha256 = "3b5d683b237a88018e5b1999aee497d766007a3c1743517ab0b54e43f37e52b1"; 647 + sha256 = "6b8b7622374c92036828990db1de3042e1a7cebf12974d30d73dcdd0e564d707"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/vi/thunderbird-78.8.1.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/vi/thunderbird-78.9.0.tar.bz2"; 650 650 locale = "vi"; 651 651 arch = "linux-i686"; 652 - sha256 = "0d31b2bd82161ec51314e57405345a9a004b268371c16de06fa4d2160eda0230"; 652 + sha256 = "4ffcd1d5f21145f857ee525169fe59ee8a1cdef6a1c4f3cc1918be1fc7c66e6a"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/zh-CN/thunderbird-78.8.1.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/zh-CN/thunderbird-78.9.0.tar.bz2"; 655 655 locale = "zh-CN"; 656 656 arch = "linux-i686"; 657 - sha256 = "3994c114510a6c7457c78d3755518b1332bcf1b48371d2b88c000f977b5bb3a0"; 657 + sha256 = "8cd65c054b6fefcbd0ac9a057e277009c732af6baef08ccb3f57bee73b75ae20"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.8.1/linux-i686/zh-TW/thunderbird-78.8.1.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/78.9.0/linux-i686/zh-TW/thunderbird-78.9.0.tar.bz2"; 660 660 locale = "zh-TW"; 661 661 arch = "linux-i686"; 662 - sha256 = "c38e5b2378bd0af57945e0e172e49b30fed491b91ffa79a946cce8f2bccf96f8"; 662 + sha256 = "1e39b1e38bfcc1735801dcd6c073ba1eeb344b23d9e859495947a37d95a4b3b8"; 663 663 } 664 664 ]; 665 665 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/default.nix
··· 73 73 74 74 stdenv.mkDerivation rec { 75 75 pname = "thunderbird"; 76 - version = "78.8.1"; 76 + version = "78.9.0"; 77 77 78 78 src = fetchurl { 79 79 url = 80 80 "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 81 81 sha512 = 82 - "08dnjqcdd5bs7wpl5imir0nsmvaqkri67cas1sn7ab4nb1f61lfdz4xg4x5v6f39sm5yxw2cy6rg5fc5lbiqza5bgs00gfg79kgfn2i"; 82 + "35n9l1kjx52davwf1k5gdx2y81hws3mfb5755464z9db48n0vfj756jlg9d8f2m2s29js27bdswl64mralw4j085dl11661g7p9ypzs"; 83 83 }; 84 84 85 85 nativeBuildInputs = [
+3 -3
pkgs/applications/office/trilium/default.nix
··· 19 19 maintainers = with maintainers; [ fliegendewurst ]; 20 20 }; 21 21 22 - version = "0.46.5"; 22 + version = "0.46.6"; 23 23 24 24 desktopSource = { 25 25 url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.tar.xz"; 26 - sha256 = "157yp8375aviy77i42s7wdzc5igs7ll3v6vjzy30l8i5zis7hry2"; 26 + sha256 = "0nxlph23gkxrn10gnm0ncsy54fzcmbqcrrk492ygfgw8a8pl4ah1"; 27 27 }; 28 28 29 29 serverSource = { 30 30 url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-server-${version}.tar.xz"; 31 - sha256 = "0bc1p99hr12pj94z48wwdbiw4cwpq3sanxaadbc8vxiyb4mcv706"; 31 + sha256 = "0z9wg84sdbpk8zhljydm05z7cqqv2ly9s921cli7rs8hcpl175cz"; 32 32 }; 33 33 34 34 in {
+4 -2
pkgs/applications/radio/direwolf/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, alsaLib, espeak, glibc, gpsd 2 - , hamlib, perl, python, udev }: 2 + , hamlib, perl, python3, udev }: 3 3 4 4 with lib; 5 5 ··· 16 16 17 17 nativeBuildInputs = [ cmake ]; 18 18 19 + strictDeps = true; 20 + 19 21 buildInputs = [ 20 - espeak gpsd hamlib perl python 22 + espeak gpsd hamlib perl python3 21 23 ] ++ (optionals stdenv.isLinux [alsaLib udev]); 22 24 23 25 patches = [
+9 -2
pkgs/applications/science/biology/bcftools/default.nix
··· 1 - { lib, stdenv, fetchurl, htslib, zlib, bzip2, lzma, curl, perl, python, bash }: 1 + { lib, stdenv, fetchurl, htslib, zlib, bzip2, lzma, curl, perl, python3, bash }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bcftools"; ··· 9 9 sha256 = "0r508mp15pqzf8r1269kb4v5naw9zsvbwd3cz8s1yj7carsf9viw"; 10 10 }; 11 11 12 - buildInputs = [ htslib zlib bzip2 lzma curl perl python ]; 12 + nativeBuildInputs = [ 13 + perl 14 + python3 15 + ]; 16 + 17 + buildInputs = [ htslib zlib bzip2 lzma curl ]; 18 + 19 + strictDeps = true; 13 20 14 21 makeFlags = [ 15 22 "HSTDIR=${htslib}"
+8 -2
pkgs/applications/science/biology/bedtools/default.nix
··· 1 - {lib, stdenv, fetchFromGitHub, zlib, python, bzip2, lzma}: 1 + {lib, stdenv, fetchFromGitHub, zlib, python3, bzip2, lzma}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bedtools"; ··· 11 11 sha256 = "sha256-NqKldF7ePJn3pT+AkESIQghBKSFFOEBBsTaKEbU+oaQ="; 12 12 }; 13 13 14 - buildInputs = [ zlib python bzip2 lzma ]; 14 + strictDeps = true; 15 + 16 + nativeBuildInputs = [ 17 + python3 18 + ]; 19 + 20 + buildInputs = [ zlib bzip2 lzma ]; 15 21 cxx = if stdenv.cc.isClang then "clang++" else "g++"; 16 22 cc = if stdenv.cc.isClang then "clang" else "gcc"; 17 23 buildPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cxx} CC=${cc} -j $NIX_BUILD_CORES";
+2 -2
pkgs/applications/science/logic/lean/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lean"; 5 - version = "3.27.0"; 5 + version = "3.28.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "leanprover-community"; 9 9 repo = "lean"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-DSIWuMlweu9dsah5EdVCNQ9ADjYoEZongfw/Yh7/N/A="; 11 + sha256 = "sha256-IzoFE92F559WeSUCiYZ/fx2hrsyRzgOACr3/pzJ4OOY="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+36
pkgs/applications/science/medicine/xmedcon/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchurl 4 + , gtk3 5 + , glib 6 + , pkg-config 7 + , libpng 8 + , zlib 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + pname = "xmedcon"; 13 + version = "0.21.0"; 14 + 15 + src = fetchurl { 16 + url = "https://prdownloads.sourceforge.net/${pname}/${pname}-${version}.tar.bz2"; 17 + sha256 = "0yfnbrcil5i76z1wbg308pb1mnjbcxy6nih46qpqs038v1lhh4q8"; 18 + }; 19 + 20 + buildInputs = [ 21 + gtk3 22 + glib 23 + libpng 24 + zlib 25 + ]; 26 + 27 + nativeBuildInputs = [ pkg-config ]; 28 + 29 + meta = with lib; { 30 + description = "An open source toolkit for medical image conversion "; 31 + homepage = "https://xmedcon.sourceforge.io/Main/HomePage"; 32 + license = licenses.lgpl2Plus; 33 + maintainers = with maintainers; [ arianvp flokli ]; 34 + platforms = with platforms; [ darwin linux ]; 35 + }; 36 + }
+41
pkgs/applications/science/physics/professor/default.nix
··· 1 + { lib, stdenv, fetchurl, eigen, makeWrapper, python3 }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "professor"; 5 + version = "2.3.3"; 6 + 7 + src = fetchurl { 8 + name = "Professor-${version}.tar.gz"; 9 + url = "https://professor.hepforge.org/downloads/?f=Professor-${version}.tar.gz"; 10 + sha256 = "17q026r2fpfxzf74d1013ksy3a9m57rcr2q164n9x02ci40bmib0"; 11 + }; 12 + 13 + postPatch = lib.optionalString stdenv.isDarwin '' 14 + substituteInPlace Makefile \ 15 + --replace '-shared -o' '-shared -install_name "$(out)/$@" -o' 16 + ''; 17 + 18 + nativeBuildInputs = [ python3.pkgs.cython makeWrapper ]; 19 + buildInputs = [ python3 eigen ]; 20 + propagatedBuildInputs = with python3.pkgs; [ iminuit numpy matplotlib yoda ]; 21 + 22 + CPPFLAGS = [ "-I${eigen}/include/eigen3" ]; 23 + PREFIX = placeholder "out"; 24 + 25 + postInstall = '' 26 + for prog in "$out"/bin/*; do 27 + wrapProgram "$prog" --set PYTHONPATH "$PYTHONPATH:$(toPythonPath "$out")" 28 + done 29 + ''; 30 + 31 + doInstallCheck = true; 32 + installCheckTarget = "check"; 33 + 34 + meta = with lib; { 35 + description = "A tuning tool for Monte Carlo event generators"; 36 + homepage = "https://professor.hepforge.org/"; 37 + license = licenses.unfree; # no license specified 38 + maintainers = [ maintainers.veprbl ]; 39 + platforms = platforms.unix; 40 + }; 41 + }
+71 -32
pkgs/applications/video/jellyfin-mpv-shim/default.nix
··· 1 - { lib, buildPythonApplication, fetchFromGitHub, callPackage 2 - , mpv, python-mpv-jsonipc, jellyfin-apiclient-python 3 - , pillow, tkinter, pystray, jinja2, pywebview }: 1 + { lib 2 + , buildPythonApplication 3 + , copyDesktopItems 4 + , fetchPypi 5 + , makeDesktopItem 6 + , flask 7 + , jellyfin-apiclient-python 8 + , jinja2 9 + , mpv 10 + , pillow 11 + , pydantic 12 + , pyqtwebengine 13 + , pystray 14 + , python-mpv-jsonipc 15 + , pywebview 16 + , qt5 17 + , tkinter 18 + , werkzeug 19 + }: 4 20 5 - let 6 - shaderPack = callPackage ./shader-pack.nix {}; 7 - in 8 21 buildPythonApplication rec { 9 22 pname = "jellyfin-mpv-shim"; 10 - version = "1.7.1"; 23 + version = "1.10.1"; 11 24 12 - src = fetchFromGitHub { 13 - owner = "iwalton3"; 14 - repo = pname; 15 - rev = "v${version}"; 16 - sha256 = "0alrh5h3f8pq9mrq09jmpqa0yslxsjqwij6kwn24ggbwc10zkq75"; 17 - fetchSubmodules = true; # needed for display_mirror css file 25 + src = fetchPypi { 26 + inherit pname version; 27 + sha256 = "sha256-bcTCp2K1zRgobBAi7A62VPogM6km+DixRERWEOm9Yu4="; 18 28 }; 19 29 20 - patches = [ 21 - ./disable-desktop-client.patch 22 - ./disable-update-check.patch 30 + propagatedBuildInputs = [ 31 + jellyfin-apiclient-python 32 + mpv 33 + pillow 34 + pydantic 35 + python-mpv-jsonipc 36 + 37 + # gui dependencies 38 + pystray 39 + tkinter 40 + 41 + # display_mirror dependencies 42 + jinja2 43 + pywebview 44 + 45 + # desktop dependencies 46 + flask 47 + pyqtwebengine 48 + werkzeug 49 + ]; 50 + 51 + nativeBuildInputs = [ 52 + copyDesktopItems 53 + qt5.wrapQtAppsHook 54 + ]; 55 + 56 + desktopItems = [ 57 + (makeDesktopItem { 58 + name = "Jellyfin Desktop"; 59 + exec = "jellyfin-desktop"; 60 + icon = "jellyfin-desktop"; 61 + desktopName = "jellyfin-desktop"; 62 + comment = "MPV-based desktop and cast client for Jellyfin"; 63 + genericName = "MPV-based desktop and cast client for Jellyfin"; 64 + categories = "Video;AudioVideo;TV;Player"; 65 + }) 23 66 ]; 24 67 25 68 # override $HOME directory: ··· 34 77 ''; 35 78 36 79 postPatch = '' 37 - # link the default shader pack 38 - ln -s ${shaderPack} jellyfin_mpv_shim/default_shader_pack 80 + substituteInPlace jellyfin_mpv_shim/conf.py \ 81 + --replace "check_updates: bool = True" "check_updates: bool = False" \ 82 + --replace "notify_updates: bool = True" "notify_updates: bool = False" 39 83 ''; 40 84 41 - propagatedBuildInputs = [ 42 - jellyfin-apiclient-python 43 - mpv 44 - pillow 45 - python-mpv-jsonipc 85 + postInstall = '' 86 + mkdir -p $out/share/pixmaps 87 + cp jellyfin_mpv_shim/integration/jellyfin-256.png $out/share/pixmaps/jellyfin-desktop.png 88 + ''; 46 89 47 - # gui dependencies 48 - pystray 49 - tkinter 50 - 51 - # display_mirror dependencies 52 - jinja2 53 - pywebview 54 - ]; 90 + postFixup = '' 91 + wrapQtApp $out/bin/jellyfin-desktop 92 + wrapQtApp $out/bin/jellyfin-mpv-desktop 93 + ''; 55 94 56 95 # no tests 57 96 doCheck = false; 58 97 pythonImportsCheck = [ "jellyfin_mpv_shim" ]; 59 98 60 99 meta = with lib; { 61 - homepage = "https://github.com/iwalton3/jellyfin-mpv-shim"; 100 + homepage = "https://github.com/jellyfin/jellyfin-desktop"; 62 101 description = "Allows casting of videos to MPV via the jellyfin mobile and web app"; 63 102 license = licenses.gpl3; 64 103 maintainers = with maintainers; [ jojosch ];
-12
pkgs/applications/video/jellyfin-mpv-shim/disable-desktop-client.patch
··· 1 - diff --git a/setup.py b/setup.py 2 - index a831959..2206e6e 100644 3 - --- a/setup.py 4 - +++ b/setup.py 5 - @@ -25,7 +25,6 @@ setup( 6 - entry_points={ 7 - 'console_scripts': [ 8 - 'jellyfin-mpv-shim=jellyfin_mpv_shim.mpv_shim:main', 9 - - 'jellyfin-mpv-desktop=jellyfin_mpv_shim.mpv_shim:main_desktop', 10 - ] 11 - }, 12 - classifiers=[
-15
pkgs/applications/video/jellyfin-mpv-shim/disable-update-check.patch
··· 1 - diff --git a/jellyfin_mpv_shim/conf.py b/jellyfin_mpv_shim/conf.py 2 - index 0ab9326..ccedc17 100644 3 - --- a/jellyfin_mpv_shim/conf.py 4 - +++ b/jellyfin_mpv_shim/conf.py 5 - @@ -88,8 +88,8 @@ class Settings(object): 6 - "sync_revert_seek": True, 7 - "sync_osd_message": True, 8 - "screenshot_menu": True, 9 - - "check_updates": True, 10 - - "notify_updates": True, 11 - + "check_updates": False, 12 - + "notify_updates": False, 13 - "lang": None, 14 - "desktop_scale": 1.0, 15 - }
-25
pkgs/applications/video/jellyfin-mpv-shim/shader-pack.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "jellyfin-mpv-shim-shader-pack"; 5 - version = "1.0.0"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "iwalton3"; 9 - repo = "default-shader-pack"; 10 - rev = "v${version}"; 11 - sha256 = "04y8gvjy4v3773b1kyan4dxqcf86b56x7v33m2k246jbn0rl2pgr"; 12 - }; 13 - 14 - installPhase = '' 15 - mkdir -p $out 16 - cp -a . $out 17 - ''; 18 - 19 - meta = with lib; { 20 - homepage = "https://github.com/iwalton3/default-shader-pack"; 21 - description = "Preconfigured set of MPV shaders and configurations for MPV Shim media clients"; 22 - license = with licenses; [ mit lgpl3Plus unlicense ]; 23 - maintainers = with maintainers; [ jojosch ]; 24 - }; 25 - }
+6 -2
pkgs/applications/virtualization/seabios/default.nix
··· 1 - { lib, stdenv, fetchurl, iasl, python }: 1 + { lib, stdenv, fetchurl, iasl, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 ··· 10 10 sha256 = "1zc1brgafbbf5hmdr1qc1p859cabpz73l8sklq83xa4sn9icqw7b"; 11 11 }; 12 12 13 - buildInputs = [ iasl python ]; 13 + nativeBuildInputs = [ python3 ]; 14 + 15 + buildInputs = [ iasl ]; 16 + 17 + strictDeps = true; 14 18 15 19 hardeningDisable = [ "pic" "stackprotector" "fortify" ]; 16 20
+2 -2
pkgs/data/documentation/man-pages/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "man-pages"; 5 - version = "5.10"; 5 + version = "5.11"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kernel/linux/docs/man-pages/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-dRAlNboRny8iP2dNhOHc2uvwpf/WObPC5ssKDjR2h2I="; 9 + sha256 = "sha256-PtpdzlGEWZ7Dfa40lM+WTFUDYumkH7ckeS2mEL2xPKo="; 10 10 }; 11 11 12 12 makeFlags = [ "MANDIR=$(out)/share/man" ];
+2 -2
pkgs/data/misc/conway_polynomials/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 - , python 3 + , python2 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "conway_polynomials"; 8 8 version = "0.5"; 9 9 10 - pythonEnv = python.withPackages (ps: with ps; [ six ]); 10 + pythonEnv = python2.withPackages (ps: with ps; [ six ]); 11 11 12 12 src = fetchurl { 13 13 url = "mirror://sageupstream/conway_polynomials/conway_polynomials-${version}.tar.bz2";
+2 -2
pkgs/data/misc/elliptic_curves/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 - , python 3 + , python2 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { ··· 30 30 export SAGE_SHARE="$out/share" 31 31 export PYTHONPATH=$PWD 32 32 33 - ${python.interpreter} ${spkg-install} 33 + ${python2.interpreter} ${spkg-install} 34 34 ''; 35 35 36 36 meta = with lib; {
+4 -2
pkgs/data/misc/libkkc-data/default.nix
··· 1 - { lib, stdenv, fetchurl, marisa, libkkc }: 1 + { lib, stdenv, fetchurl, python2, libkkc }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libkkc-data"; ··· 9 9 sha256 = "16avb50jasq2f1n9xyziky39dhlnlad0991pisk3s11hl1aqfrwy"; 10 10 }; 11 11 12 - nativeBuildInputs = [ marisa ]; 12 + nativeBuildInputs = [ python2.pkgs.marisa ]; 13 + 14 + strictDeps = true; 13 15 14 16 meta = with lib; { 15 17 description = "Language model data package for libkkc";
+3 -3
pkgs/desktops/gnome-3/extensions/unite/default.nix
··· 1 - { lib, stdenv, gnome3, fetchFromGitHub, xprop, glib, coreutils }: 1 + { lib, stdenv, gnome3, fetchFromGitHub, xprop, glib }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "gnome-shell-extension-unite"; 4 - version = "45"; 4 + version = "47"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "hardpixel"; 8 8 repo = "unite-shell"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-ghmCnzlPvxHEy2ro1AL+T2yiavJVrPhRfIKbMBwMjac="; 10 + sha256 = "1ia8x5mqwsd5gv7sg981h2ngcr3jdr60947iqvnp6xqcw4rc72lr"; 11 11 }; 12 12 13 13 uuid = "unite@hardpixel.eu";
+2 -2
pkgs/desktops/gnome-3/misc/gnome-autoar/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "gnome-autoar"; 14 - version = "0.3.0"; 14 + version = "0.3.1"; 15 15 16 16 outputs = [ "out" "dev" ]; 17 17 18 18 src = fetchurl { 19 19 url = "mirror://gnome/sources/gnome-autoar/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 20 - sha256 = "0ssqckfkyldwld88zizy446y2359rg40lnrcm3sjpjhc2b015hgj"; 20 + sha256 = "1y6hh5dldhdq7mpbmd571zl0yadfackvifhnxvykkqqddwz72y0f"; 21 21 }; 22 22 23 23 passthru = {
+57
pkgs/desktops/plasma-5/kwin/0001-NixOS-Unwrap-executable-name-for-.desktop-search.patch
··· 1 + From 29ec6fada935ef966e5859082435ed57daa9522d Mon Sep 17 00:00:00 2001 2 + From: Samuel Dionne-Riel <samuel@dionne-riel.com> 3 + Date: Tue, 16 Mar 2021 15:03:59 -0400 4 + Subject: [PATCH] [NixOS] Unwrap executable name for .desktop search 5 + 6 + Why is this necessary even though -a "$0" is used in the wrapper? 7 + Because it's completely bypassing argv0! This looks at the executable 8 + file in-use according to the kernel! 9 + 10 + Wrappers cannot affect the `/proc/.../exe` symlink! 11 + --- 12 + service_utils.h | 28 +++++++++++++++++++++++++++- 13 + 1 file changed, 27 insertions(+), 1 deletion(-) 14 + 15 + diff --git a/service_utils.h b/service_utils.h 16 + index 8a70c1fad..6674f553b 100644 17 + --- a/service_utils.h 18 + +++ b/service_utils.h 19 + @@ -26,8 +26,34 @@ namespace KWin 20 + const static QString s_waylandInterfaceName = QStringLiteral("X-KDE-Wayland-Interfaces"); 21 + const static QString s_dbusRestrictedInterfaceName = QStringLiteral("X-KDE-DBUS-Restricted-Interfaces"); 22 + 23 + -static QStringList fetchProcessServiceField(const QString &executablePath, const QString &fieldName) 24 + +static QStringList fetchProcessServiceField(const QString &in_executablePath, const QString &fieldName) 25 + { 26 + + // !! Start NixOS fix 27 + + // NixOS fixes many packaging issues through "wrapper" scripts that manipulates the environment or does 28 + + // miscellaneous trickeries and mischievous things to make the programs work. 29 + + // In turn, programs often employs different mischievous schemes and trickeries to do *other things. 30 + + // It often happens that they conflict. 31 + + // Here, `kwin` tries to detect the .desktop file for a given process. 32 + + // `kwin` followed the process `/proc/.../exe` up to the actual binary running. 33 + + // It normally would be fine, e.g. /usr/bin/foobar is what's in the desktop file. 34 + + // But it's not the truth here! It's extremely likely the resolved path is /nix/store/.../bin/.foobar-wrapped 35 + + // rather than what the desktop file points to, something like /nix/store/.../bin/foobar !! 36 + + // Since the wrappers for Nixpkgs *always* prepend a dot and append -wrapped, we assume here that we can keep 37 + + // `/^(.*)\/\.([^/]*)-wrapped/` until the (equivalent) regex does not match. 38 + + // This should canonicalize the wrapper name to the expected name to look for in the desktop file. 39 + + 40 + + // Use a copy of the const string 41 + + QString executablePath(in_executablePath); 42 + + 43 + + // While the parts needed are present, "unwrap" one layer of wrapper names. 44 + + while (executablePath.endsWith("-wrapped") && executablePath[executablePath.lastIndexOf("/")+1] == QChar('.')) { 45 + + // Approximately equivalent to s/-wrapped$// 46 + + executablePath.remove(executablePath.length() - 8, 8); 47 + + // Approximately equivalent to s;/\.;/; 48 + + executablePath.remove(executablePath.lastIndexOf("/")+1, 1); 49 + + } 50 + + // !! End NixOS fix 51 + + 52 + // needed to be able to use the logging category in a header static function 53 + static QLoggingCategory KWIN_UTILS ("KWIN_UTILS", QtWarningMsg); 54 + const auto servicesFound = KApplicationTrader::query([&executablePath] (const KService::Ptr &service) { 55 + -- 56 + 2.28.0 57 +
+1
pkgs/desktops/plasma-5/kwin/default.nix
··· 38 38 ./0001-follow-symlinks.patch 39 39 ./0002-xwayland.patch 40 40 ./0003-plugins-qpa-allow-using-nixos-wrapper.patch 41 + ./0001-NixOS-Unwrap-executable-name-for-.desktop-search.patch 41 42 ]; 42 43 CXXFLAGS = [ 43 44 ''-DNIXPKGS_XWAYLAND=\"${lib.getBin xwayland}/bin/Xwayland\"''
+1 -1
pkgs/development/compilers/adoptopenjdk-bin/generate-sources.py
··· 6 6 import requests 7 7 import sys 8 8 9 - releases = ("openjdk8", "openjdk11", "openjdk13", "openjdk14", "openjdk15") 9 + releases = ("openjdk8", "openjdk11", "openjdk13", "openjdk14", "openjdk15", "openjdk16") 10 10 oses = ("mac", "linux") 11 11 types = ("jre", "jdk") 12 12 impls = ("hotspot", "openj9")
+9
pkgs/development/compilers/adoptopenjdk-bin/jdk16-darwin.nix
··· 1 + let 2 + sources = builtins.fromJSON (builtins.readFile ./sources.json); 3 + in 4 + { 5 + jdk-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jdk.hotspot; }; 6 + jre-hotspot = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jre.hotspot; }; 7 + jdk-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jdk.openj9; }; 8 + jre-openj9 = import ./jdk-darwin-base.nix { sourcePerArch = sources.openjdk16.mac.jre.openj9; }; 9 + }
+9
pkgs/development/compilers/adoptopenjdk-bin/jdk16-linux.nix
··· 1 + let 2 + sources = builtins.fromJSON (builtins.readFile ./sources.json); 3 + in 4 + { 5 + jdk-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jdk.hotspot; }; 6 + jre-hotspot = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jre.hotspot; }; 7 + jdk-openj9 = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jdk.openj9; }; 8 + jre-openj9 = import ./jdk-linux-base.nix { sourcePerArch = sources.openjdk16.linux.jre.openj9; }; 9 + }
+142
pkgs/development/compilers/adoptopenjdk-bin/sources.json
··· 531 531 } 532 532 } 533 533 }, 534 + "openjdk16": { 535 + "linux": { 536 + "jdk": { 537 + "hotspot": { 538 + "aarch64": { 539 + "build": "36", 540 + "sha256": "7217a9f9be3b0c8dfc78538f95fd2deb493eb651152d975062920566492b2574", 541 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_aarch64_linux_hotspot_16_36.tar.gz", 542 + "version": "16.0.0" 543 + }, 544 + "armv6l": { 545 + "build": "36", 546 + "sha256": "f1d32ba01a40c98889f31368c0e987d6bbda65a7c50b8c088623b48e3a90104a", 547 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_arm_linux_hotspot_16_36.tar.gz", 548 + "version": "16.0.0" 549 + }, 550 + "armv7l": { 551 + "build": "36", 552 + "sha256": "f1d32ba01a40c98889f31368c0e987d6bbda65a7c50b8c088623b48e3a90104a", 553 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_arm_linux_hotspot_16_36.tar.gz", 554 + "version": "16.0.0" 555 + }, 556 + "packageType": "jdk", 557 + "vmType": "hotspot", 558 + "x86_64": { 559 + "build": "36", 560 + "sha256": "2e031cf37018161c9e59b45fa4b98ff2ce4ce9297b824c512989d579a70f8422", 561 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_x64_linux_hotspot_16_36.tar.gz", 562 + "version": "16.0.0" 563 + } 564 + }, 565 + "openj9": { 566 + "aarch64": { 567 + "build": "36", 568 + "sha256": "f4d4e0c0e9e0a4d0f14172878cee5e1a0ae73170058e1c183a452f8d97331ac0", 569 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36_openj9-0.25.0/OpenJDK16-jdk_aarch64_linux_openj9_16_36_openj9-0.25.0.tar.gz", 570 + "version": "16.0.0-ea" 571 + }, 572 + "packageType": "jdk", 573 + "vmType": "openj9", 574 + "x86_64": { 575 + "build": "36", 576 + "sha256": "9f9b327d08cbc71b32f28004ae9d9c2c84ff9bc335cac3068c5a5737bfa4606f", 577 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36_openj9-0.25.0/OpenJDK16-jdk_x64_linux_openj9_16_36_openj9-0.25.0.tar.gz", 578 + "version": "16.0.0" 579 + } 580 + } 581 + }, 582 + "jre": { 583 + "hotspot": { 584 + "aarch64": { 585 + "build": "36", 586 + "sha256": "947b02342513b085946b2e7c376cc1f1cfe89600bc3d30455160f88d41da3509", 587 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jre_aarch64_linux_hotspot_16_36.tar.gz", 588 + "version": "16.0.0" 589 + }, 590 + "armv6l": { 591 + "build": "36", 592 + "sha256": "4d3f351a161792779417ee2730413a976258c4cc5f323526f1fbc0cca82aca6e", 593 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jre_arm_linux_hotspot_16_36.tar.gz", 594 + "version": "16.0.0" 595 + }, 596 + "armv7l": { 597 + "build": "36", 598 + "sha256": "4d3f351a161792779417ee2730413a976258c4cc5f323526f1fbc0cca82aca6e", 599 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jre_arm_linux_hotspot_16_36.tar.gz", 600 + "version": "16.0.0" 601 + }, 602 + "packageType": "jre", 603 + "vmType": "hotspot", 604 + "x86_64": { 605 + "build": "36", 606 + "sha256": "4aa99cbe5a6838c3ed29fa7aa7bee95c39ddd41e3f7544178dcd257b15a9359e", 607 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jre_x64_linux_hotspot_16_36.tar.gz", 608 + "version": "16.0.0" 609 + } 610 + }, 611 + "openj9": { 612 + "aarch64": { 613 + "build": "36", 614 + "sha256": "13ae42f5040d4e5d97b8809e27ebfdf8f7326604771963d85b2c1385abe13742", 615 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36_openj9-0.25.0/OpenJDK16-jre_aarch64_linux_openj9_16_36_openj9-0.25.0.tar.gz", 616 + "version": "16.0.0-ea" 617 + }, 618 + "packageType": "jre", 619 + "vmType": "openj9", 620 + "x86_64": { 621 + "build": "36", 622 + "sha256": "302b8b9bba4f51d0a9ac087ed91929dbd3ae52cf5a5b6c150373563012db60d9", 623 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36_openj9-0.25.0/OpenJDK16-jre_x64_linux_openj9_16_36_openj9-0.25.0.tar.gz", 624 + "version": "16.0.0" 625 + } 626 + } 627 + } 628 + }, 629 + "mac": { 630 + "jdk": { 631 + "hotspot": { 632 + "packageType": "jdk", 633 + "vmType": "hotspot", 634 + "x86_64": { 635 + "build": "36", 636 + "sha256": "b66761b55fd493ed2a5f4df35a32b338ec34a9e0a1244439e3156561ab27c511", 637 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jdk_x64_mac_hotspot_16_36.tar.gz", 638 + "version": "16.0.0" 639 + } 640 + }, 641 + "openj9": { 642 + "packageType": "jdk", 643 + "vmType": "openj9", 644 + "x86_64": { 645 + "build": "36", 646 + "sha256": "e6075cbe939b4de165cc8b4b91352f8885d549873f5cd419e75eba737502542e", 647 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36_openj9-0.25.0/OpenJDK16-jdk_x64_mac_openj9_16_36_openj9-0.25.0.tar.gz", 648 + "version": "16.0.0" 649 + } 650 + } 651 + }, 652 + "jre": { 653 + "hotspot": { 654 + "packageType": "jre", 655 + "vmType": "hotspot", 656 + "x86_64": { 657 + "build": "36", 658 + "sha256": "92cb07e9e9d075996d1a9e0ccfc1d35e6f97f7e188e9bb78088ee1066062a428", 659 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36/OpenJDK16-jre_x64_mac_hotspot_16_36.tar.gz", 660 + "version": "16.0.0" 661 + } 662 + }, 663 + "openj9": { 664 + "packageType": "jre", 665 + "vmType": "openj9", 666 + "x86_64": { 667 + "build": "36", 668 + "sha256": "9e5c31582778ca5c08fc221e185dc0f4dbce2091cbc69966a1e2617344b722f1", 669 + "url": "https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk-16%2B36_openj9-0.25.0/OpenJDK16-jre_x64_mac_openj9_16_36_openj9-0.25.0.tar.gz", 670 + "version": "16.0.0" 671 + } 672 + } 673 + } 674 + } 675 + }, 534 676 "openjdk8": { 535 677 "linux": { 536 678 "jdk": {
+2 -2
pkgs/development/compilers/cmdstan/default.nix
··· 1 - { lib, stdenv, fetchurl, python, runtimeShell }: 1 + { lib, stdenv, fetchurl, python3, runtimeShell }: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "cmdstan-2.17.1"; ··· 12 12 enableParallelBuilding = true; 13 13 14 14 doCheck = true; 15 - checkInputs = [ python ]; 15 + checkInputs = [ python3 ]; 16 16 checkPhase = "python ./runCmdStanTests.py src/test/interface"; # see #5368 17 17 18 18 installPhase = ''
+3 -1
pkgs/development/compilers/dtc/default.nix
··· 1 1 { stdenv, lib, fetchgit, flex, bison, pkg-config, which 2 - , pythonSupport ? false, python, swig 2 + , pythonSupport ? false, python ? null, swig 3 3 }: 4 + 5 + assert pythonSupport -> python != null; 4 6 5 7 stdenv.mkDerivation rec { 6 8 pname = "dtc";
+42 -13
pkgs/development/compilers/haxe/default.nix
··· 1 - { lib, stdenv, fetchgit, coreutils, ocamlPackages, zlib, pcre, neko }: 2 - 3 - let inherit (ocamlPackages) ocaml camlp4; in 1 + { lib, stdenv, fetchFromGitHub, coreutils, ocaml-ng, zlib, pcre, neko, mbedtls }: 4 2 5 3 let 6 - generic = { version, sha256, prePatch }: 4 + ocamlDependencies = version: 5 + if lib.versionAtLeast version "4.0" 6 + then with ocaml-ng.ocamlPackages; [ 7 + ocaml 8 + findlib 9 + sedlex_2 10 + xml-light 11 + ptmap 12 + camlp5 13 + sha 14 + dune_2 15 + luv 16 + ocaml_extlib 17 + ] else with ocaml-ng.ocamlPackages_4_05; [ 18 + ocaml 19 + camlp4 20 + ]; 21 + 22 + defaultPatch = '' 23 + substituteInPlace extra/haxelib_src/src/haxelib/client/Main.hx \ 24 + --replace '"neko"' '"${neko}/bin/neko"' 25 + ''; 26 + 27 + generic = { sha256, version, prePatch ? defaultPatch }: 7 28 stdenv.mkDerivation { 8 29 pname = "haxe"; 9 30 inherit version; 10 31 11 - buildInputs = [ocaml zlib pcre neko camlp4]; 32 + buildInputs = [ zlib pcre neko ] 33 + ++ lib.optional (lib.versionAtLeast version "4.1") [ mbedtls ] 34 + ++ ocamlDependencies version; 12 35 13 - src = fetchgit { 14 - url = "https://github.com/HaxeFoundation/haxe.git"; 15 - inherit sha256; 36 + src = fetchFromGitHub { 37 + owner = "HaxeFoundation"; 38 + repo = "haxe"; 39 + rev = version; 16 40 fetchSubmodules = true; 17 - rev = "refs/tags/${version}"; 41 + inherit sha256; 18 42 }; 19 43 20 44 inherit prePatch; ··· 77 101 meta = with lib; { 78 102 description = "Programming language targeting JavaScript, Flash, NekoVM, PHP, C++"; 79 103 homepage = "https://haxe.org"; 80 - license = with licenses; [ gpl2 bsd2 /*?*/ ]; # -> docs/license.txt 81 - maintainers = [ maintainers.marcweber ]; 104 + license = with licenses; [ gpl2Plus mit ]; # based on upstream opam file 105 + maintainers = [ maintainers.marcweber maintainers.locallycompact ]; 82 106 platforms = platforms.linux ++ platforms.darwin; 83 107 }; 84 108 }; ··· 89 113 sha256 = "1x9ay5a2llq46fww3k07jxx8h1vfpyxb522snc6702a050ki5vz3"; 90 114 prePatch = '' 91 115 sed -i -e 's|"/usr/lib/haxe/std/";|"'"$out/lib/haxe/std/"'";\n&|g' main.ml 92 - sed -i -e 's|"neko"|"${neko}/bin/neko"|g' extra/haxelib_src/src/tools/haxelib/Main.hx 116 + substituteInPlace extra/haxelib_src/src/tools/haxelib/Main.hx \ 117 + --replace '"neko"' '"${neko}/bin/neko"' 93 118 ''; 94 119 }; 95 120 haxe_3_4 = generic { 96 121 version = "3.4.6"; 97 122 sha256 = "1myc4b8fwp0f9vky17wv45n34a583f5sjvajsc93f5gm1wanp4if"; 98 123 prePatch = '' 124 + ${defaultPatch} 99 125 sed -i -re 's!(let +prefix_path += +).*( +in)!\1"'"$out/"'"\2!' src/main.ml 100 - sed -i -e 's|"neko"|"${neko}/bin/neko"|g' extra/haxelib_src/src/haxelib/client/Main.hx 101 126 ''; 127 + }; 128 + haxe_4_2 = generic { 129 + version = "4.2.1"; 130 + sha256 = "sha256-0j6M21dh8DB1gC/bPYNJrVuDbJyqQbP+61ItO5RBUcA="; 102 131 }; 103 132 }
+8 -9
pkgs/development/compilers/julia/1.5.nix
··· 1 - { lib, stdenv, fetchurl, fetchzip, fetchFromGitHub 1 + { lib, stdenv, fetchzip 2 2 # build tools 3 - , gfortran, m4, makeWrapper, patchelf, perl, which, python2 4 - , cmake 3 + , gfortran, m4, makeWrapper, patchelf, perl, which, python2, cmake 5 4 # libjulia dependencies 6 5 , libunwind, readline, utf8proc, zlib 7 6 # standard library dependencies ··· 19 18 let 20 19 majorVersion = "1"; 21 20 minorVersion = "5"; 22 - maintenanceVersion = "3"; 23 - src_sha256 = "sha256:0jds8lrhk4hfdv7dg5p2ibzin9ivga7wrx7zwcmz6dqp3x792n1i"; 21 + maintenanceVersion = "4"; 22 + src_sha256 = "1ba1v7hakgj95xvhyff0zcp0574qv6vailjl48wl1f8w5k54lsw2"; 24 23 version = "${majorVersion}.${minorVersion}.${maintenanceVersion}"; 25 24 in 26 25 ··· 28 27 pname = "julia"; 29 28 inherit version; 30 29 31 - src = fetchzip { 32 - url = "https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz"; 33 - sha256 = src_sha256; 34 - }; 30 + src = fetchzip { 31 + url = "https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz"; 32 + sha256 = src_sha256; 33 + }; 35 34 36 35 patches = [ 37 36 ./use-system-utf8proc-julia-1.3.patch
+22
pkgs/development/compilers/julia/update-1.5.py
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i python3 -p python3 python3Packages.requests 3 + 4 + import os 5 + import re 6 + import requests 7 + import subprocess 8 + 9 + latest = requests.get("https://api.github.com/repos/JuliaLang/julia/releases/latest").json()["tag_name"] 10 + assert latest[0] == "v" 11 + major, minor, patch = latest[1:].split(".") 12 + assert major == "1" 13 + # When a new minor version comes out we'll have to refactor/copy this update script. 14 + assert minor == "5" 15 + 16 + sha256 = subprocess.check_output(["nix-prefetch-url", "--unpack", f"https://github.com/JuliaLang/julia/releases/download/v{major}.{minor}.{patch}/julia-{major}.{minor}.{patch}-full.tar.gz"], text=True).strip() 17 + 18 + nix_path = os.path.join(os.path.dirname(__file__), "1.5.nix") 19 + nix0 = open(nix_path, "r").read() 20 + nix1 = re.sub("maintenanceVersion = \".*\";", f"maintenanceVersion = \"{patch}\";", nix0) 21 + nix2 = re.sub("src_sha256 = \".*\";", f"src_sha256 = \"{sha256}\";", nix1) 22 + open(nix_path, "w").write(nix2)
+2 -2
pkgs/development/compilers/llvm/rocm/default.nix
··· 1 1 { lib, fetchFromGitHub, callPackage, wrapCCWith }: 2 2 3 3 let 4 - version = "4.0.1"; 4 + version = "4.1.0"; 5 5 src = fetchFromGitHub { 6 6 owner = "RadeonOpenCompute"; 7 7 repo = "llvm-project"; 8 8 rev = "rocm-${version}"; 9 - hash = "sha256-5mQ8tN7A045JCF7tHKgAZAbyVmXOd6Wf0CVUiPA80YM="; 9 + hash = "sha256-DlId/dF5r0ULl2omYPCyu1Ic3XKlLL7ndiCA0RaF264="; 10 10 }; 11 11 in rec { 12 12 clang = wrapCCWith rec {
+2
pkgs/development/compilers/llvm/rocm/lld/default.nix
··· 18 18 19 19 outputs = [ "out" "dev" ]; 20 20 21 + cmakeFlags = [ "-DLLVM_MAIN_SRC_DIR=${llvm.src}" ]; 22 + 21 23 postInstall = '' 22 24 moveToOutput include "$dev" 23 25 moveToOutput lib "$dev"
+18 -7
pkgs/development/compilers/neko/default.nix
··· 1 - { lib, stdenv, fetchurl, boehmgc, zlib, sqlite, pcre, cmake, pkg-config 1 + { lib, stdenv, fetchFromGitHub, boehmgc, zlib, sqlite, pcre, cmake, pkg-config 2 2 , git, apacheHttpd, apr, aprutil, libmysqlclient, mbedtls, openssl, pkgs, gtk2, libpthreadstubs 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "neko"; 7 - version = "2.2.0"; 7 + version = "2.3.0"; 8 8 9 - src = fetchurl { 10 - url = "https://nekovm.org/media/neko-${version}-src.tar.gz"; 11 - sha256 = "1qv47zaa0vzhjlq5wb71627n7dbsxpc1gqpg0hsngjxnbnh1q46g"; 9 + src = fetchFromGitHub { 10 + owner = "HaxeFoundation"; 11 + repo = "neko"; 12 + rev = "v${lib.replaceStrings [ "." ] [ "-" ] version}"; 13 + sha256 = "19rc59cx7qqhcqlb0znwbnwbg04c1yq6xmvrwm1xi46k3vxa957g"; 12 14 }; 13 15 14 16 nativeBuildInputs = [ cmake pkg-config git ]; ··· 31 33 meta = with lib; { 32 34 description = "A high-level dynamically typed programming language"; 33 35 homepage = "https://nekovm.org"; 34 - license = licenses.lgpl21; 35 - maintainers = [ maintainers.marcweber ]; 36 + license = [ 37 + # list based on https://github.com/HaxeFoundation/neko/blob/v2-3-0/LICENSE 38 + licenses.gpl2Plus # nekoc, nekoml 39 + licenses.lgpl21Plus # mysql.ndll 40 + licenses.bsd3 # regexp.ndll 41 + licenses.zlib # zlib.ndll 42 + licenses.asl20 # mod_neko, mod_tora, mbedTLS 43 + licenses.mit # overall, other libs 44 + "https://github.com/HaxeFoundation/neko/blob/v2-3-0/LICENSE#L24-L40" # boehm gc 45 + ]; 46 + maintainers = [ maintainers.marcweber maintainers.locallycompact ]; 36 47 platforms = platforms.linux ++ platforms.darwin; 37 48 }; 38 49 }
+4 -2
pkgs/development/interpreters/cling/default.nix
··· 1 1 { lib, stdenv 2 - , python 2 + , python3 3 3 , libffi 4 4 , git 5 5 , cmake ··· 38 38 chmod -R a+w ./tools/cling 39 39 ''; 40 40 41 - nativeBuildInputs = [ python git cmake ]; 41 + nativeBuildInputs = [ python3 git cmake ]; 42 42 buildInputs = [ libffi llvmPackages_5.llvm zlib ]; 43 + 44 + strictDeps = true; 43 45 44 46 cmakeFlags = [ 45 47 "-DLLVM_TARGETS_TO_BUILD=host;NVPTX"
+4 -2
pkgs/development/libraries/arrayfire/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkg-config 2 2 , opencl-clhpp, ocl-icd, fftw, fftwFloat 3 3 , blas, lapack, boost, mesa, libGLU, libGL 4 - , freeimage, python, clfft, clblas 4 + , freeimage, python3, clfft, clblas 5 5 , doxygen, buildDocs ? false 6 6 , cudaSupport ? false, cudatoolkit 7 7 }: ··· 39 39 nativeBuildInputs = [ 40 40 cmake 41 41 pkg-config 42 - python 42 + python3 43 43 ]; 44 + 45 + strictDeps = true; 44 46 45 47 buildInputs = [ 46 48 opencl-clhpp fftw fftwFloat
+4 -2
pkgs/development/libraries/aubio/default.nix
··· 1 1 { lib, stdenv, fetchurl, alsaLib, fftw, libjack2, libsamplerate 2 - , libsndfile, pkg-config, python, wafHook 2 + , libsndfile, pkg-config, python3, wafHook 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 10 10 sha256 = "1npks71ljc48w6858l9bq30kaf5nph8z0v61jkfb70xb9np850nl"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkg-config python wafHook ]; 13 + nativeBuildInputs = [ pkg-config python3 wafHook ]; 14 14 buildInputs = [ alsaLib fftw libjack2 libsamplerate libsndfile ]; 15 + 16 + strictDeps = true; 15 17 16 18 meta = with lib; { 17 19 description = "Library for audio labelling";
+2 -2
pkgs/development/libraries/botan/generic.nix
··· 1 - { lib, stdenv, fetchurl, python, bzip2, zlib, gmp, openssl, boost 1 + { lib, stdenv, fetchurl, python3, bzip2, zlib, gmp, openssl, boost 2 2 # Passed by version specific builders 3 3 , baseVersion, revision, sha256 4 4 , sourceExtension ? "tar.xz" ··· 23 23 }; 24 24 inherit postPatch; 25 25 26 - buildInputs = [ python bzip2 zlib gmp openssl boost ] 26 + buildInputs = [ python3 bzip2 zlib gmp openssl boost ] 27 27 ++ lib.optionals stdenv.isDarwin [ CoreServices Security ]; 28 28 29 29 configurePhase = ''
+4 -4
pkgs/development/libraries/clearsilver/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, python }: 1 + { lib, stdenv, fetchurl, fetchpatch, python2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "clearsilver-0.10.5"; ··· 8 8 sha256 = "1046m1dpq3nkgxbis2dr2x7hynmy51n64465q78d7pdgvqwa178y"; 9 9 }; 10 10 11 - PYTHON_SITE = "$(out)/site-packages"; 11 + PYTHON_SITE = "${placeholder "out"}/${python2.sitePackages}"; 12 12 13 13 configureFlags = [ 14 - "--with-python=${python}/bin/python" 14 + "--with-python=${python2.interpreter}" 15 15 "--disable-apache" 16 16 "--disable-perl" 17 17 "--disable-ruby" ··· 21 21 22 22 preInstall = '' 23 23 mkdir -p $out 24 - mkdir -p $out/site-packages 24 + mkdir -p $out/${python2.sitePackages} 25 25 ''; 26 26 27 27 patches = [
+4 -2
pkgs/development/libraries/cppcms/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake, pcre, zlib, python, openssl }: 1 + { lib, stdenv, fetchurl, cmake, pcre, zlib, python2, openssl }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cppcms"; ··· 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake ]; 13 - buildInputs = [ pcre zlib python openssl ]; 13 + buildInputs = [ pcre zlib python2 openssl ]; 14 + 15 + strictDeps = true; 14 16 15 17 cmakeFlags = [ 16 18 "--no-warn-unused-cli"
+4 -2
pkgs/development/libraries/docopt_cpp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, python }: 1 + { lib, stdenv, fetchFromGitHub, cmake, python2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "0.6.3"; ··· 11 11 sha256 = "0cz3vv7g5snfbsqcf3q8bmd6kv5qp84gj3avwkn4vl00krw13bl7"; 12 12 }; 13 13 14 - nativeBuildInputs = [ cmake python ]; 14 + nativeBuildInputs = [ cmake python2 ]; 15 15 16 16 cmakeFlags = ["-DWITH_TESTS=ON"]; 17 + 18 + strictDeps = true; 17 19 18 20 doCheck = true; 19 21
+1 -1
pkgs/development/libraries/gaia/default.nix
··· 9 9 , wafHook 10 10 , makeWrapper 11 11 , qt4 12 - , pythonPackages 12 + , pythonPackages ? null 13 13 , pythonSupport ? false 14 14 # Default to false since it breaks the build, see https://github.com/MTG/gaia/issues/11 15 15 , stlfacadeSupport ? false
+1 -1
pkgs/development/libraries/galario/default.nix
··· 5 5 , fftw 6 6 , fftwFloat 7 7 , enablePython ? false 8 - , pythonPackages 8 + , pythonPackages ? null 9 9 , llvmPackages 10 10 }: 11 11 let
+5 -3
pkgs/development/libraries/ganv/default.nix
··· 1 - { lib, stdenv, fetchgit, graphviz, gtk2, gtkmm2, pkg-config, python, wafHook }: 1 + { lib, stdenv, fetchgit, graphviz, gtk2, gtkmm2, pkg-config, python3, wafHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ganv"; ··· 11 11 sha256 = "01znnalirbqxpz62fbw2c14c8xn117jc92xv6dhb3hln92k9x37f"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkg-config wafHook ]; 15 - buildInputs = [ graphviz gtk2 gtkmm2 python ]; 14 + nativeBuildInputs = [ pkg-config wafHook python3 gtk2 ]; 15 + buildInputs = [ graphviz gtkmm2 ]; 16 + 17 + strictDeps = true; 16 18 17 19 meta = with lib; { 18 20 description = "An interactive Gtk canvas widget for graph-based interfaces";
+11 -2
pkgs/development/libraries/gtksourceview/4.x.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, atk, cairo, glib, gtk3, pango, fribidi, vala 1 + { lib, stdenv, fetchurl, fetchpatch, pkg-config, atk, cairo, glib, gtk3, pango, fribidi, vala 2 2 , libxml2, perl, gettext, gnome3, gobject-introspection, dbus, xvfb_run, shared-mime-info 3 3 , meson, ninja }: 4 4 ··· 26 26 27 27 buildInputs = [ atk cairo glib pango fribidi libxml2 ]; 28 28 29 - patches = [ ./4.x-nix_share_path.patch ]; 29 + patches = [ 30 + ./4.x-nix_share_path.patch 31 + 32 + # fixes intermittent "gtksourceview-gresources.h: no such file" errors 33 + (fetchpatch { 34 + name = "ensure-access-to-resources-in-corelib-build.patch"; 35 + url = "https://gitlab.gnome.org/GNOME/gtksourceview/-/commit/9bea9d1c4a56310701717bb106c52a5324ee392a.patch"; 36 + sha256 = "sha256-rSB6lOFEyz58HfOSj7ZM48/tHxhqbtWWbh60JuySAZ0="; 37 + }) 38 + ]; 30 39 31 40 enableParallelBuilding = true; 32 41
+4 -2
pkgs/development/libraries/jxrlib/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python }: 1 + { lib, stdenv, fetchFromGitHub, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jxrlib"; ··· 19 19 --replace '.so' '.dylib' 20 20 ''; 21 21 22 - nativeBuildInputs = [ python ]; 22 + nativeBuildInputs = [ python3 ]; 23 + 24 + strictDeps = true; 23 25 24 26 makeFlags = [ "DIR_INSTALL=$(out)" "SHARED=1" ]; 25 27
+16 -13
pkgs/development/libraries/leveldb/default.nix
··· 13 13 14 14 buildInputs = [ snappy ]; 15 15 16 - nativeBuildInputs = [] 17 - ++ lib.optional stdenv.isDarwin fixDarwinDylibNames; 16 + nativeBuildInputs = lib.optional stdenv.isDarwin fixDarwinDylibNames; 18 17 19 - buildPhase = '' 20 - make all 18 + doCheck = true; 19 + 20 + buildFlags = [ "all" ]; 21 + 22 + postPatch = lib.optionalString stdenv.hostPlatform.isStatic '' 23 + # remove shared objects from "all" target 24 + sed -i '/^all:/ s/$(SHARED_LIBS) $(SHARED_PROGRAMS)//' Makefile 21 25 ''; 22 26 23 - installPhase = " 24 - mkdir -p $out/{bin,lib,include} 27 + installPhase = '' 28 + runHook preInstall 25 29 26 - cp -r include $out 27 - mkdir -p $out/include/leveldb/helpers 28 - cp helpers/memenv/memenv.h $out/include/leveldb/helpers 30 + install -D -t $out/include/leveldb include/leveldb/* 31 + install -D helpers/memenv/memenv.h $out/include/leveldb/helpers 29 32 30 - cp out-shared/lib* $out/lib 31 - cp out-static/lib* $out/lib 33 + install -D -t $out/lib out-{static,shared}/lib* 34 + install -D -t $out/bin out-static/{leveldbutil,db_bench} 32 35 33 - cp out-static/leveldbutil $out/bin 34 - "; 36 + runHook postInstall 37 + ''; 35 38 36 39 meta = with lib; { 37 40 homepage = "https://github.com/google/leveldb";
+4 -2
pkgs/development/libraries/opencl-clhpp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, python, opencl-headers }: 1 + { lib, stdenv, fetchFromGitHub, cmake, python3, opencl-headers }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "opencl-clhpp"; ··· 11 11 sha256 = "04g3mg2cpbi048fxxkghra81bpxzqr4r3gspx5mvqipx1lzypsci"; 12 12 }; 13 13 14 - nativeBuildInputs = [ cmake python ]; 14 + nativeBuildInputs = [ cmake python3 ]; 15 15 16 16 propagatedBuildInputs = [ opencl-headers ]; 17 + 18 + strictDeps = true; 17 19 18 20 cmakeFlags = [ 19 21 "-DBUILD_EXAMPLES=OFF"
+3 -1
pkgs/development/libraries/opencv/3.x.nix
··· 18 18 19 19 , enableUnfree ? false 20 20 , enableIpp ? false 21 - , enablePython ? false, pythonPackages 21 + , enablePython ? false, pythonPackages ? null 22 22 , enableGtk2 ? false, gtk2 23 23 , enableGtk3 ? false, gtk3 24 24 , enableVtk ? false, vtk ··· 35 35 }: 36 36 37 37 assert blas.implementation == "openblas" && lapack.implementation == "openblas"; 38 + 39 + assert enablePython -> pythonPackages != null; 38 40 39 41 let 40 42 version = "3.4.8";
+2 -2
pkgs/development/libraries/openssl/default.nix
··· 180 180 }; 181 181 182 182 openssl_1_1 = common { 183 - version = "1.1.1j"; 184 - sha256 = "1gw17520vh13izy1xf5q0a2fqgcayymjjj5bk0dlkxndfnszrwma"; 183 + version = "1.1.1k"; 184 + sha256 = "1rdfzcrxy9y38wqdw5942vmdax9hjhgrprzxm42csal7p5shhal9"; 185 185 patches = [ 186 186 ./1.1/nix-ssl-cert-file.patch 187 187
+4 -2
pkgs/development/libraries/partio/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, unzip, cmake, freeglut, libGLU, libGL, zlib, swig, python, doxygen, xorg }: 1 + { lib, stdenv, fetchFromGitHub, unzip, cmake, freeglut, libGLU, libGL, zlib, swig, doxygen, xorg }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "partio"; ··· 14 14 outputs = [ "dev" "out" "lib" ]; 15 15 16 16 nativeBuildInputs = [ unzip cmake doxygen ]; 17 - buildInputs = [ freeglut libGLU libGL zlib swig python xorg.libXi xorg.libXmu ]; 17 + buildInputs = [ freeglut libGLU libGL zlib swig xorg.libXi xorg.libXmu ]; 18 18 19 19 buildPhase = '' 20 20 make partio ··· 31 31 mkdir $dev/include/partio 32 32 mv $dev/include/*.h $dev/include/partio 33 33 ''; 34 + 35 + strictDeps = true; 34 36 35 37 meta = with lib; { 36 38 description = "C++ (with python bindings) library for easily reading/writing/manipulating common animation particle formats such as PDB, BGEO, PTC";
+2 -2
pkgs/development/libraries/rocclr/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "rocclr"; 18 - version = "4.0.0"; 18 + version = "4.1.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "ROCm-Developer-Tools"; 22 22 repo = "ROCclr"; 23 23 rev = "rocm-${version}"; 24 - hash = "sha256-B27ff1b9JRhxFUsBt7CGuYaR87hvKbVSCERWD45d8tM="; 24 + hash = "sha256-2DI/PL29aiZcxOrGZBzXwAnNgZQpSDjyyGKgl+vDErk="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ cmake rocm-cmake ];
+2 -2
pkgs/development/libraries/rocm-comgr/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rocm-comgr"; 5 - version = "4.0.0"; 5 + version = "4.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "RadeonOpenCompute"; 9 9 repo = "ROCm-CompilerSupport"; 10 10 rev = "rocm-${version}"; 11 - hash = "sha256-JMzXg1Hw0iWcTnKu/NgW7rD8iagp724F01GaJbrJj9M="; 11 + hash = "sha256-LbQqyJxRqb6vpXiYSkRlF1FeqXJJXktPafGmYDDK02U="; 12 12 }; 13 13 14 14 sourceRoot = "source/lib/comgr";
+2 -2
pkgs/development/libraries/rocm-device-libs/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "rocm-device-libs"; 12 - version = "4.0.0"; 12 + version = "4.1.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "RadeonOpenCompute"; 16 16 repo = "ROCm-Device-Libs"; 17 17 rev = "rocm-${version}"; 18 - hash = "sha256-IAE8T/gmotXO/ADH3bxTjrpxWd2lRoj3o/rrSaEFNNo="; 18 + hash = "sha256-9p6PIXdHFIgHgNWZzqVz5O9i2Np0z/iyxodG2cLrpGs="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/rocm-opencl-runtime/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "rocm-opencl-runtime"; 24 - version = "4.0.0"; 24 + version = "4.1.0"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "RadeonOpenCompute"; 28 28 repo = "ROCm-OpenCL-Runtime"; 29 29 rev = "rocm-${version}"; 30 - hash = "sha256-kW5jTDlQtXQ0i4ADJEnmESxjcLCt4QZCYJ1ouIsk4YE="; 30 + hash = "sha256-+6h1E5uWNKjjaeO5ZIi854CWYi0QGQ5mVUHdi9+4vX4="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ cmake rocm-cmake ];
+2 -2
pkgs/development/libraries/rocm-runtime/default.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "rocm-runtime"; 14 - version = "4.0.0"; 14 + version = "4.1.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "RadeonOpenCompute"; 18 18 repo = "ROCR-Runtime"; 19 19 rev = "rocm-${version}"; 20 - hash = "sha256-8hNb0Yo9ApedOG7xrUr5rwiA/YsqDTcyr6dBRg8lXro="; 20 + hash = "sha256-Jxg3n203tV0L+UrmeQEuzX0TKpFu5An2cnuEA/F/SNY="; 21 21 }; 22 22 23 23 sourceRoot = "source/src";
+2 -2
pkgs/development/libraries/rocm-thunk/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "rocm-thunk"; 10 - version = "4.0.0"; 10 + version = "4.1.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "RadeonOpenCompute"; 14 14 repo = "ROCT-Thunk-Interface"; 15 15 rev = "rocm-${version}"; 16 - hash = "sha256-2kLSlGwX3pD8I5pXwV5L0k9l8OzJRkUvnAqv5E+gcd4="; 16 + hash = "sha256-gdto7BbrSRa3UiRNvTW1KLkHyjrcxdah4+L+1Gdm0wA="; 17 17 }; 18 18 19 19 preConfigure = ''
+12 -9
pkgs/development/libraries/science/math/amd-blis/default.nix
··· 6 6 # Enable BLAS interface with 64-bit integer width. 7 7 , blas64 ? false 8 8 9 - # Target architecture, use "zen" or "zen2", optimization for Zen and 10 - # other families is pretty much mutually exclusive in the AMD fork of 11 - # BLIS. 12 - , withArchitecture ? "zen" 9 + # Target architecture. "amd64" compiles kernels for all Zen 10 + # generations. To build kernels for specific Zen generations, 11 + # use "zen", "zen2", or "zen3". 12 + , withArchitecture ? "amd64" 13 13 14 14 # Enable OpenMP-based threading. 15 15 , withOpenMP ? true ··· 20 20 blasIntSize = if blas64 then "64" else "32"; 21 21 in stdenv.mkDerivation rec { 22 22 pname = "amd-blis"; 23 - version = "2.2"; 23 + version = "3.0"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "amd"; 27 27 repo = "blis"; 28 28 rev = version; 29 - sha256 = "1b2f5bwi0gkw2ih2rb7wfzn3m9hgg7k270kg43rmzpr2acpy86xa"; 29 + hash = "sha256-bbbeo1yOKse9pzbsB6lQ7pULKdzu3G7zJzTUgPXiMZY="; 30 30 }; 31 31 32 32 inherit blas64; ··· 36 36 python3 37 37 ]; 38 38 39 - doCheck = true; 39 + # Tests currently fail with non-Zen CPUs due to a floating point 40 + # exception in one of the generic kernels. Try to re-enable the 41 + # next release. 42 + doCheck = false; 40 43 41 44 enableParallelBuilding = true; 42 45 ··· 51 54 ''; 52 55 53 56 postInstall = '' 54 - ln -s $out/lib/libblis${threadingSuffix}.so.2 $out/lib/libblas.so.3 55 - ln -s $out/lib/libblis${threadingSuffix}.so.2 $out/lib/libcblas.so.3 57 + ln -s $out/lib/libblis${threadingSuffix}.so.3 $out/lib/libblas.so.3 58 + ln -s $out/lib/libblis${threadingSuffix}.so.3 $out/lib/libcblas.so.3 56 59 ln -s $out/lib/libblas.so.3 $out/lib/libblas.so 57 60 ln -s $out/lib/libcblas.so.3 $out/lib/libcblas.so 58 61 '';
+4 -2
pkgs/development/libraries/science/math/clblas/default.nix
··· 4 4 , gfortran 5 5 , blas 6 6 , boost 7 - , python 7 + , python3 8 8 , ocl-icd 9 9 , opencl-headers 10 10 , Accelerate, CoreGraphics, CoreVideo, OpenCL ··· 39 39 buildInputs = [ 40 40 gfortran 41 41 blas 42 - python 42 + python3 43 43 boost 44 44 ] ++ lib.optionals (!stdenv.isDarwin) [ 45 45 ocl-icd ··· 52 52 propagatedBuildInputs = lib.optionals stdenv.isDarwin [ 53 53 OpenCL 54 54 ]; 55 + 56 + strictDeps = true; 55 57 56 58 meta = with lib; { 57 59 homepage = "https://github.com/clMathLibraries/clBLAS";
+1 -2
pkgs/development/libraries/silgraphite/graphite2.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, freetype, cmake, python }: 1 + { lib, stdenv, fetchurl, pkg-config, freetype, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "1.3.14"; ··· 15 15 16 16 patches = lib.optionals stdenv.isDarwin [ ./macosx.patch ]; 17 17 18 - checkInputs = [ python ]; 19 18 doCheck = false; # fails, probably missing something 20 19 21 20 meta = with lib; {
+1
pkgs/development/node-packages/node-packages.json
··· 135 135 , "json-refs" 136 136 , "json-server" 137 137 , "jsonlint" 138 + , "kaput-cli" 138 139 , "karma" 139 140 , "lcov-result-merger" 140 141 , "leetcode-cli"
+1162 -811
pkgs/development/node-packages/node-packages.nix
··· 49 49 sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; 50 50 }; 51 51 }; 52 - "@angular-devkit/architect-0.1102.5" = { 52 + "@angular-devkit/architect-0.1102.6" = { 53 53 name = "_at_angular-devkit_slash_architect"; 54 54 packageName = "@angular-devkit/architect"; 55 - version = "0.1102.5"; 55 + version = "0.1102.6"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1102.5.tgz"; 58 - sha512 = "lVc6NmEAZZPzvc18GzMFLoxqKKvPlNOg4vEtFsFldZmrydLJJGFi4KAs2WaJd8qVR1XuY4el841cjDQAJSq6sQ=="; 57 + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1102.6.tgz"; 58 + sha512 = "27+5tjoUOAcm2pzo6EJhQn3lK4s9Gk0RfZFc2ygVu8PHnukXZAd4ntclGi33aPgJmt4zA2qbWq4Ytn2a/G6FMg=="; 59 59 }; 60 60 }; 61 61 "@angular-devkit/core-11.2.0" = { ··· 76 76 sha512 = "2JEGXzFqjTqVls2uIZEE0sk4VY9a/alxBAq8BFYIVbvzKsL9gAY71Ztf21zrhQrZop9qeuLJtOAbp00QyYUaQA=="; 77 77 }; 78 78 }; 79 - "@angular-devkit/core-11.2.5" = { 79 + "@angular-devkit/core-11.2.6" = { 80 80 name = "_at_angular-devkit_slash_core"; 81 81 packageName = "@angular-devkit/core"; 82 - version = "11.2.5"; 82 + version = "11.2.6"; 83 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.2.5.tgz"; 85 - sha512 = "DRFvEHRKoC+hTwcOAJqLe6UQa+bpXc/1IGCMHWEbuply0KIFIGQOlmaYwFZKixz3HdFZlmoCMcAVkAXvyaWVsQ=="; 84 + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.2.6.tgz"; 85 + sha512 = "3dA0Z6sIIxCDjZS/DucgmIKti7EZ/LgHoHgCO72Q50H5ZXbUSNBz5wGl5hVq2+gzrnFgU/0u40MIs6eptk30ZA=="; 86 86 }; 87 87 }; 88 88 "@angular-devkit/schematics-11.2.0" = { ··· 103 103 sha512 = "x/IKgZDn6z/MzQ28WF2GTP2N+n78iySQhLu6n6bpmdrFp9noi9QASzN+mAFiqSNO8XpO9oyIB5y2ERl8KBrU1g=="; 104 104 }; 105 105 }; 106 - "@angular-devkit/schematics-11.2.5" = { 106 + "@angular-devkit/schematics-11.2.6" = { 107 107 name = "_at_angular-devkit_slash_schematics"; 108 108 packageName = "@angular-devkit/schematics"; 109 - version = "11.2.5"; 109 + version = "11.2.6"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.2.5.tgz"; 112 - sha512 = "7RoWgpMvhljPhW9CMz1EtqkwNnGpnsPyy0N29ClHPUq+o8wLR0hvbLBDz1fKSF7j1AwRccaQSNTj8KWsjzQJLQ=="; 111 + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.2.6.tgz"; 112 + sha512 = "bhi2+5xtVAjtr3bsXKT8pnoBamQrArd/Y20ueA4Od7cd38YT97nzTA1wyHBFG0vWd0HMyg42ZS0aycNBuOebaA=="; 113 113 }; 114 114 }; 115 115 "@angular-devkit/schematics-cli-0.1102.0" = { ··· 328 328 sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="; 329 329 }; 330 330 }; 331 - "@babel/compat-data-7.13.11" = { 331 + "@babel/compat-data-7.13.12" = { 332 332 name = "_at_babel_slash_compat-data"; 333 333 packageName = "@babel/compat-data"; 334 - version = "7.13.11"; 334 + version = "7.13.12"; 335 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.11.tgz"; 337 - sha512 = "BwKEkO+2a67DcFeS3RLl0Z3Gs2OvdXewuWjc1Hfokhb5eQWP9YRYH1/+VrVZvql2CfjOiNGqSAFOYt4lsqTHzg=="; 336 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz"; 337 + sha512 = "3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ=="; 338 338 }; 339 339 }; 340 340 "@babel/core-7.13.10" = { ··· 454 454 sha512 = "0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g=="; 455 455 }; 456 456 }; 457 - "@babel/helper-member-expression-to-functions-7.13.0" = { 457 + "@babel/helper-member-expression-to-functions-7.13.12" = { 458 458 name = "_at_babel_slash_helper-member-expression-to-functions"; 459 459 packageName = "@babel/helper-member-expression-to-functions"; 460 - version = "7.13.0"; 460 + version = "7.13.12"; 461 461 src = fetchurl { 462 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz"; 463 - sha512 = "yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ=="; 462 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"; 463 + sha512 = "48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw=="; 464 464 }; 465 465 }; 466 - "@babel/helper-module-imports-7.12.13" = { 466 + "@babel/helper-module-imports-7.13.12" = { 467 467 name = "_at_babel_slash_helper-module-imports"; 468 468 packageName = "@babel/helper-module-imports"; 469 - version = "7.12.13"; 469 + version = "7.13.12"; 470 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz"; 472 - sha512 = "NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g=="; 471 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"; 472 + sha512 = "4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="; 473 473 }; 474 474 }; 475 - "@babel/helper-module-transforms-7.13.0" = { 475 + "@babel/helper-module-transforms-7.13.12" = { 476 476 name = "_at_babel_slash_helper-module-transforms"; 477 477 packageName = "@babel/helper-module-transforms"; 478 - version = "7.13.0"; 478 + version = "7.13.12"; 479 479 src = fetchurl { 480 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz"; 481 - sha512 = "Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw=="; 480 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.12.tgz"; 481 + sha512 = "7zVQqMO3V+K4JOOj40kxiCrMf6xlQAkewBB0eu2b03OO/Q21ZutOzjpfD79A5gtE/2OWi1nv625MrDlGlkbknQ=="; 482 482 }; 483 483 }; 484 484 "@babel/helper-optimise-call-expression-7.12.13" = { ··· 508 508 sha512 = "pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg=="; 509 509 }; 510 510 }; 511 - "@babel/helper-replace-supers-7.13.0" = { 511 + "@babel/helper-replace-supers-7.13.12" = { 512 512 name = "_at_babel_slash_helper-replace-supers"; 513 513 packageName = "@babel/helper-replace-supers"; 514 - version = "7.13.0"; 514 + version = "7.13.12"; 515 515 src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz"; 517 - sha512 = "Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw=="; 516 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"; 517 + sha512 = "Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw=="; 518 518 }; 519 519 }; 520 - "@babel/helper-simple-access-7.12.13" = { 520 + "@babel/helper-simple-access-7.13.12" = { 521 521 name = "_at_babel_slash_helper-simple-access"; 522 522 packageName = "@babel/helper-simple-access"; 523 - version = "7.12.13"; 523 + version = "7.13.12"; 524 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz"; 526 - sha512 = "0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA=="; 525 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"; 526 + sha512 = "7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA=="; 527 527 }; 528 528 }; 529 529 "@babel/helper-skip-transparent-expression-wrappers-7.12.1" = { ··· 589 589 sha512 = "5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg=="; 590 590 }; 591 591 }; 592 - "@babel/parser-7.13.11" = { 592 + "@babel/parser-7.13.12" = { 593 593 name = "_at_babel_slash_parser"; 594 594 packageName = "@babel/parser"; 595 - version = "7.13.11"; 595 + version = "7.13.12"; 596 + src = fetchurl { 597 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.12.tgz"; 598 + sha512 = "4T7Pb244rxH24yR116LAuJ+adxXXnHhZaLJjegJVKSdoNCe4x1eDBaud5YIcQFcqzsaD5BHvJw5BQ0AZapdCRw=="; 599 + }; 600 + }; 601 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" = { 602 + name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 603 + packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 604 + version = "7.13.12"; 596 605 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.11.tgz"; 598 - sha512 = "PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q=="; 606 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz"; 607 + sha512 = "d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ=="; 599 608 }; 600 609 }; 601 610 "@babel/plugin-external-helpers-7.8.3" = { ··· 715 724 sha512 = "0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA=="; 716 725 }; 717 726 }; 718 - "@babel/plugin-proposal-optional-chaining-7.13.8" = { 727 + "@babel/plugin-proposal-optional-chaining-7.13.12" = { 719 728 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 720 729 packageName = "@babel/plugin-proposal-optional-chaining"; 721 - version = "7.13.8"; 730 + version = "7.13.12"; 722 731 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz"; 724 - sha512 = "hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ=="; 732 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz"; 733 + sha512 = "fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ=="; 725 734 }; 726 735 }; 727 736 "@babel/plugin-proposal-private-methods-7.13.0" = { ··· 1138 1147 sha512 = "MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA=="; 1139 1148 }; 1140 1149 }; 1141 - "@babel/plugin-transform-react-jsx-7.12.17" = { 1150 + "@babel/plugin-transform-react-jsx-7.13.12" = { 1142 1151 name = "_at_babel_slash_plugin-transform-react-jsx"; 1143 1152 packageName = "@babel/plugin-transform-react-jsx"; 1144 - version = "7.12.17"; 1153 + version = "7.13.12"; 1145 1154 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz"; 1147 - sha512 = "mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw=="; 1155 + url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz"; 1156 + sha512 = "jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA=="; 1148 1157 }; 1149 1158 }; 1150 1159 "@babel/plugin-transform-react-jsx-self-7.12.13" = { ··· 1273 1282 sha512 = "9PMijx8zFbCwTHrd2P4PJR5nWGH3zWebx2OcpTjqQrHhCiL2ssSR2Sc9ko2BsI2VmVBfoaQmPrlMTCui4LmXQg=="; 1274 1283 }; 1275 1284 }; 1276 - "@babel/preset-env-7.13.10" = { 1285 + "@babel/preset-env-7.13.12" = { 1277 1286 name = "_at_babel_slash_preset-env"; 1278 1287 packageName = "@babel/preset-env"; 1279 - version = "7.13.10"; 1288 + version = "7.13.12"; 1280 1289 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.10.tgz"; 1282 - sha512 = "nOsTScuoRghRtUsRr/c69d042ysfPHcu+KOB4A9aAO9eJYqrkat+LF8G1yp1HD18QiwixT2CisZTr/0b3YZPXQ=="; 1290 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.12.tgz"; 1291 + sha512 = "JzElc6jk3Ko6zuZgBtjOd01pf9yYDEIH8BcqVuYIuOkzOwDesoa/Nz4gIo4lBG6K861KTV9TvIgmFuT6ytOaAA=="; 1283 1292 }; 1284 1293 }; 1285 1294 "@babel/preset-flow-7.12.13" = { ··· 1381 1390 sha512 = "xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ=="; 1382 1391 }; 1383 1392 }; 1384 - "@babel/types-7.13.0" = { 1393 + "@babel/types-7.13.12" = { 1385 1394 name = "_at_babel_slash_types"; 1386 1395 packageName = "@babel/types"; 1387 - version = "7.13.0"; 1396 + version = "7.13.12"; 1388 1397 src = fetchurl { 1389 - url = "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz"; 1390 - sha512 = "hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA=="; 1398 + url = "https://registry.npmjs.org/@babel/types/-/types-7.13.12.tgz"; 1399 + sha512 = "K4nY2xFN4QMvQwkQ+zmBDp6ANMbVNw6BbxWmYA4qNjhR9W+Lj/8ky5MEY2Me5r+B2c6/v6F53oMndG+f9s3IiA=="; 1391 1400 }; 1392 1401 }; 1393 1402 "@braintree/sanitize-url-3.1.0" = { ··· 1786 1795 sha512 = "6nr9DbJPUR9Xujw6zD3y+rS95TyItEVM0NVjt1EehY2vUWfIgPiIPVHxCvaTS0xr2B+DRxovYVKbuOWqC35kjg=="; 1787 1796 }; 1788 1797 }; 1789 - "@emmetio/abbreviation-2.2.1" = { 1798 + "@emmetio/abbreviation-2.2.2" = { 1790 1799 name = "_at_emmetio_slash_abbreviation"; 1791 1800 packageName = "@emmetio/abbreviation"; 1792 - version = "2.2.1"; 1801 + version = "2.2.2"; 1793 1802 src = fetchurl { 1794 - url = "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.1.tgz"; 1795 - sha512 = "uUNwNgbH0JPlrdXhy8VQbNPLLG7abMvOaLVMblx22i68Rl9r+2N235ALgIYFUty1yXC9DkVw6xMbz/D4QVARcQ=="; 1803 + url = "https://registry.npmjs.org/@emmetio/abbreviation/-/abbreviation-2.2.2.tgz"; 1804 + sha512 = "TtE/dBnkTCct8+LntkqVrwqQao6EnPAs1YN3cUgxOxTaBlesBCY37ROUAVZrRlG64GNnVShdl/b70RfAI3w5lw=="; 1796 1805 }; 1797 1806 }; 1798 - "@emmetio/css-abbreviation-2.1.2" = { 1807 + "@emmetio/css-abbreviation-2.1.4" = { 1799 1808 name = "_at_emmetio_slash_css-abbreviation"; 1800 1809 packageName = "@emmetio/css-abbreviation"; 1801 - version = "2.1.2"; 1810 + version = "2.1.4"; 1802 1811 src = fetchurl { 1803 - url = "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.2.tgz"; 1804 - sha512 = "CvYTzJltVpLqJaCZ1Qn97LVAKsl2Uwl2fzir1EX/WuMY3xWxgc3BWRCheL6k65km6GyDrLVl6RhrrNb/pxOiAQ=="; 1812 + url = "https://registry.npmjs.org/@emmetio/css-abbreviation/-/css-abbreviation-2.1.4.tgz"; 1813 + sha512 = "qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw=="; 1805 1814 }; 1806 1815 }; 1807 1816 "@emmetio/extract-abbreviation-0.1.6" = { ··· 2101 2110 sha512 = "SMyoMFCPRNoDeHB5MMIi8W3loDxjXsSBeQfQaaKqmph7gVN48DCky6K/xBHHDJDeqJjcmEgwPTRP8qsuuLWnqw=="; 2102 2111 }; 2103 2112 }; 2104 - "@fluentui/react-7.165.0" = { 2113 + "@fluentui/react-7.165.1" = { 2105 2114 name = "_at_fluentui_slash_react"; 2106 2115 packageName = "@fluentui/react"; 2107 - version = "7.165.0"; 2116 + version = "7.165.1"; 2108 2117 src = fetchurl { 2109 - url = "https://registry.npmjs.org/@fluentui/react/-/react-7.165.0.tgz"; 2110 - sha512 = "fztahwnYIVB6hvb0VV11DKQK4jO4WJiTx2o3IFcxSPcOtZmjYtGDU8X0MXGadWRnzldfNLgkW+5NzqxZrwRD1w=="; 2118 + url = "https://registry.npmjs.org/@fluentui/react/-/react-7.165.1.tgz"; 2119 + sha512 = "2l/481URLxucUxQBKsXgHXPKBkhQEpJCCpGjfWf3uWwPz3X5PNMy+pujyYN6Di2LLPOfdpLf5sWTNw+DJjy2jA=="; 2111 2120 }; 2112 2121 }; 2113 2122 "@fluentui/react-focus-7.17.6" = { ··· 2209 2218 sha512 = "RNhQk0jMz6fZB4Ilu37PZj6YUQgSEZJrppXlaHpw/xYyDelcjYKZg/z9eMvYo6rxQPR2mGXjoj6by+zew1WgOw=="; 2210 2219 }; 2211 2220 }; 2212 - "@graphql-tools/batch-execute-7.0.0" = { 2221 + "@graphql-tools/batch-execute-7.1.0" = { 2213 2222 name = "_at_graphql-tools_slash_batch-execute"; 2214 2223 packageName = "@graphql-tools/batch-execute"; 2215 - version = "7.0.0"; 2224 + version = "7.1.0"; 2216 2225 src = fetchurl { 2217 - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.0.0.tgz"; 2218 - sha512 = "+ywPfK6N2Ddna6oOa5Qb1Mv7EA8LOwRNOAPP9dL37FEhksJM9pYqPSceUcqMqg7S9b0+Cgr78s408rgvurV3/Q=="; 2226 + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.1.0.tgz"; 2227 + sha512 = "Yb4QRpHZqDk24+T4K3ARk/KFU26Dyl30XcbYeVvIrgIKcmeON/p3DfSeiB0+MaxYlsv+liQKvlxNbeC2hD31pA=="; 2219 2228 }; 2220 2229 }; 2221 - "@graphql-tools/delegate-7.0.10" = { 2230 + "@graphql-tools/delegate-7.1.1" = { 2222 2231 name = "_at_graphql-tools_slash_delegate"; 2223 2232 packageName = "@graphql-tools/delegate"; 2224 - version = "7.0.10"; 2233 + version = "7.1.1"; 2225 2234 src = fetchurl { 2226 - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.10.tgz"; 2227 - sha512 = "6Di9ia5ohoDvrHuhj2cak1nJGhIefJmUsd3WKZcJ2nu2yZAFawWMxGvQImqv3N7iyaWKiVhrrK8Roi/JrYhdKg=="; 2235 + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.1.1.tgz"; 2236 + sha512 = "+uV0KZPI070sEykf3uxy+AhirHOqZnqbVqTqcfhH8/97+vdoLPE5oVceCTvMQsC7bDapbcbNiwcpYd8T6OQ4KQ=="; 2228 2237 }; 2229 2238 }; 2230 2239 "@graphql-tools/graphql-file-loader-6.2.7" = { ··· 2263 2272 sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; 2264 2273 }; 2265 2274 }; 2266 - "@graphql-tools/merge-6.2.10" = { 2275 + "@graphql-tools/merge-6.2.11" = { 2267 2276 name = "_at_graphql-tools_slash_merge"; 2268 2277 packageName = "@graphql-tools/merge"; 2269 - version = "6.2.10"; 2278 + version = "6.2.11"; 2270 2279 src = fetchurl { 2271 - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.10.tgz"; 2272 - sha512 = "dM3n37PcslvhOAkCz7Cwk0BfoiSVKXGmCX+VMZkATbXk/0vlxUfNEpVfA5yF4IkP27F04SzFQSaNrbD0W2Rszw=="; 2280 + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.11.tgz"; 2281 + sha512 = "temQABWkDTZb/qJwcIdrEbyJ5WkhaWZQeYxiuxGqZWlIOoFkYfqzfAP2qKl2Ry+ZkN+Q/Yozr1/ap//xjpwAlA=="; 2273 2282 }; 2274 2283 }; 2275 2284 "@graphql-tools/schema-7.1.3" = { ··· 2299 2308 sha512 = "ybgZ9EIJE3JMOtTrTd2VcIpTXtDrn2q6eiYkeYMKRVh3K41+LZa6YnR2zKERTXqTWqhobROwLt4BZbw2O3Aeeg=="; 2300 2309 }; 2301 2310 }; 2302 - "@graphql-tools/utils-7.6.0" = { 2311 + "@graphql-tools/utils-7.7.1" = { 2303 2312 name = "_at_graphql-tools_slash_utils"; 2304 2313 packageName = "@graphql-tools/utils"; 2305 - version = "7.6.0"; 2314 + version = "7.7.1"; 2306 2315 src = fetchurl { 2307 - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.6.0.tgz"; 2308 - sha512 = "YCZDDdhfb4Yhie0IH031eGdvQG8C73apDuNg6lqBNbauNw45OG/b8wi3+vuMiDnJTJN32GQUb1Gt9gxDKoRDKw=="; 2316 + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.7.1.tgz"; 2317 + sha512 = "SFT4/dTfrwWer1wSOLU+jqgv3oa/xTR8q+MiNbE9nCH2FXyMsqIOaXKm9wHfKIWFWHozqBdcnwFkQZrdD7H2TQ=="; 2309 2318 }; 2310 2319 }; 2311 2320 "@graphql-tools/wrap-7.0.5" = { ··· 2326 2335 sha512 = "wj6GkNiorWYaPiIZ767xImmw7avMMVUweTvPFg4mJWOxz2180DKwfuxhJJZ7rpc1+7D3mX/v8vJdxTuIo71Ieg=="; 2327 2336 }; 2328 2337 }; 2329 - "@grpc/grpc-js-1.2.11" = { 2338 + "@grpc/grpc-js-1.2.12" = { 2330 2339 name = "_at_grpc_slash_grpc-js"; 2331 2340 packageName = "@grpc/grpc-js"; 2332 - version = "1.2.11"; 2341 + version = "1.2.12"; 2333 2342 src = fetchurl { 2334 - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.2.11.tgz"; 2335 - sha512 = "DZqx3nHBm2OGY7NKq4sppDEfx4nBAsQH/d/H/yxo/+BwpVLWLGs+OorpwQ+Fqd6EgpDEoi4MhqndjGUeLl/5GA=="; 2343 + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.2.12.tgz"; 2344 + sha512 = "+gPCklP1eqIgrNPyzddYQdt9+GvZqPlLpIjIo+TveE+gbtp74VV1A2ju8ExeO8ma8f7MbpaGZx/KJPYVWL9eDw=="; 2336 2345 }; 2337 2346 }; 2338 2347 "@grpc/proto-loader-0.5.6" = { ··· 2974 2983 sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 2975 2984 }; 2976 2985 }; 2977 - "@jsii/spec-1.25.0" = { 2986 + "@jsii/spec-1.26.0" = { 2978 2987 name = "_at_jsii_slash_spec"; 2979 2988 packageName = "@jsii/spec"; 2980 - version = "1.25.0"; 2989 + version = "1.26.0"; 2981 2990 src = fetchurl { 2982 - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.25.0.tgz"; 2983 - sha512 = "Zr56+uqZLoxI8qxIZZEweZdYBo0KqWf+q25m/okgwcKV4njCZuh0APXzeT/ebSkSOHQ3tneEE+g2EP/8IPP2og=="; 2991 + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.26.0.tgz"; 2992 + sha512 = "wh9Z/wfQYcWE5IgUfKNBYQ9Lhye9Xh/lsRsxMQluqEsgObNqb/8JreenWviqzHzBBcvTcHHyl+G30mpmyO1PWQ=="; 2984 2993 }; 2985 2994 }; 2986 2995 "@kwsites/file-exists-1.1.1" = { ··· 3649 3658 sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; 3650 3659 }; 3651 3660 }; 3652 - "@netlify/build-9.11.2" = { 3661 + "@netlify/build-9.13.2" = { 3653 3662 name = "_at_netlify_slash_build"; 3654 3663 packageName = "@netlify/build"; 3655 - version = "9.11.2"; 3664 + version = "9.13.2"; 3656 3665 src = fetchurl { 3657 - url = "https://registry.npmjs.org/@netlify/build/-/build-9.11.2.tgz"; 3658 - sha512 = "hnKDssHUnTSNibvK67lJ2hqZHutsUVSCWvLDV2ExEbSlqws0GdGjTunas39Vx6Vq/YKLEg/bLI+SXSsVyPKWxQ=="; 3666 + url = "https://registry.npmjs.org/@netlify/build/-/build-9.13.2.tgz"; 3667 + sha512 = "XhTk7Wm/l+GpE+bw7zZQpPBKV3Jsxjo1k3qCkMO3sWufN+pKmm+Z4DFRLhAKE+Vbev0wMf52HGhXEheroM5M1w=="; 3659 3668 }; 3660 3669 }; 3661 3670 "@netlify/cache-utils-1.0.7" = { ··· 3667 3676 sha512 = "yrdrnQkzg/qMovoFYwQ24UVt/OyHtP+t0KpQFd7eBl6gnuuGGgxFocaFFv6eKpMVwzHTsOwx/y9B/FcC3/6cfA=="; 3668 3677 }; 3669 3678 }; 3670 - "@netlify/config-4.2.0" = { 3679 + "@netlify/config-4.3.0" = { 3671 3680 name = "_at_netlify_slash_config"; 3672 3681 packageName = "@netlify/config"; 3673 - version = "4.2.0"; 3682 + version = "4.3.0"; 3674 3683 src = fetchurl { 3675 - url = "https://registry.npmjs.org/@netlify/config/-/config-4.2.0.tgz"; 3676 - sha512 = "z145O9ZOklq6+C02wxS+NZanJAyHHmGS1v9OQ3uTtoE6U0H1W1y7lalxEBNTaVg4/TQTj1X7xOX81KfNuuQ0MA=="; 3684 + url = "https://registry.npmjs.org/@netlify/config/-/config-4.3.0.tgz"; 3685 + sha512 = "jS6u5Dm3asg8zF6cYNYWfvyH3+XB3dMMm0UpC/BOLrYuXKVjP6uiIoUoUI6IjIN7gxAcotTN6RKCA5jU2Ahy5w=="; 3677 3686 }; 3678 3687 }; 3679 3688 "@netlify/framework-info-3.2.0" = { ··· 3712 3721 sha512 = "GcCPXIWI8VDBsLN4nPvb6sKS9tbi4lrHLhex90hT27nwTDeu4HgGE93YilcsgZ1LLODJNxC5LdfTNLtvEHMKVg=="; 3713 3722 }; 3714 3723 }; 3715 - "@netlify/plugin-edge-handlers-1.11.5" = { 3724 + "@netlify/plugin-edge-handlers-1.11.6" = { 3716 3725 name = "_at_netlify_slash_plugin-edge-handlers"; 3717 3726 packageName = "@netlify/plugin-edge-handlers"; 3718 - version = "1.11.5"; 3727 + version = "1.11.6"; 3719 3728 src = fetchurl { 3720 - url = "https://registry.npmjs.org/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-1.11.5.tgz"; 3721 - sha512 = "R7oEvYjLOrvO8uSy484c4TrZeD5A1M2TN4dIM7dAdd2iHgpC+i3+RhlM9XFHFOqc8lsim+A+BcKMQYZ19z+j6A=="; 3729 + url = "https://registry.npmjs.org/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-1.11.6.tgz"; 3730 + sha512 = "7L5pkXlwPfyUrmm9cu2+nOQYW1FMx6waMbl2Uj5SmxjLz5Dvt2zkUYbNU2ImNmJ10mxziv3LABSFn2k2qy2nLw=="; 3722 3731 }; 3723 3732 }; 3724 - "@netlify/plugins-list-2.4.3" = { 3733 + "@netlify/plugins-list-2.5.0" = { 3725 3734 name = "_at_netlify_slash_plugins-list"; 3726 3735 packageName = "@netlify/plugins-list"; 3727 - version = "2.4.3"; 3736 + version = "2.5.0"; 3728 3737 src = fetchurl { 3729 - url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-2.4.3.tgz"; 3730 - sha512 = "xJ4o8IRwjjWrsFw/Ii4VSWQgmoBe/GFyWTj1q+ShOpC0BJUTZ22g7+rMwlEZXkisOT+Y/niPkikkrXcU9FCzZg=="; 3738 + url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-2.5.0.tgz"; 3739 + sha512 = "45BG3E6A+540BZDG4Dul5KmoOwzw+TwiwqQSP08bKiywWtyl3IDDFoozZRp+GjhRo1+CnNVN0L9FxdxvU82UDw=="; 3731 3740 }; 3732 3741 }; 3733 3742 "@netlify/run-utils-1.0.7" = { ··· 4108 4117 sha512 = "2lYlvf4YTDgZCTXTW4+OX+9WTLFtEUc6hGm4qM1nlZjzxj+arizM4aHWzBVBCxY9glh7GIs0WEuiSgbVzv8cmA=="; 4109 4118 }; 4110 4119 }; 4111 - "@octokit/openapi-types-5.3.2" = { 4120 + "@octokit/openapi-types-6.0.0" = { 4112 4121 name = "_at_octokit_slash_openapi-types"; 4113 4122 packageName = "@octokit/openapi-types"; 4114 - version = "5.3.2"; 4123 + version = "6.0.0"; 4115 4124 src = fetchurl { 4116 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-5.3.2.tgz"; 4117 - sha512 = "NxF1yfYOUO92rCx3dwvA2onF30Vdlg7YUkMVXkeptqpzA3tRLplThhFleV/UKWFgh7rpKu1yYRbvNDUtzSopKA=="; 4125 + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-6.0.0.tgz"; 4126 + sha512 = "CnDdK7ivHkBtJYzWzZm7gEkanA7gKH6a09Eguz7flHw//GacPJLmkHA3f3N++MJmlxD1Fl+mB7B32EEpSCwztQ=="; 4118 4127 }; 4119 4128 }; 4120 4129 "@octokit/plugin-enterprise-rest-6.0.1" = { ··· 4162 4171 sha512 = "EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ=="; 4163 4172 }; 4164 4173 }; 4165 - "@octokit/plugin-rest-endpoint-methods-4.13.5" = { 4174 + "@octokit/plugin-rest-endpoint-methods-4.14.0" = { 4166 4175 name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 4167 4176 packageName = "@octokit/plugin-rest-endpoint-methods"; 4168 - version = "4.13.5"; 4177 + version = "4.14.0"; 4169 4178 src = fetchurl { 4170 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-4.13.5.tgz"; 4171 - sha512 = "kYKcWkFm4Ldk8bZai2RVEP1z97k1C/Ay2FN9FNTBg7JIyKoiiJjks4OtT6cuKeZX39tqa+C3J9xeYc6G+6g8uQ=="; 4179 + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-4.14.0.tgz"; 4180 + sha512 = "QoZ469GDvFALHuxhcRA4KFGTaPeu5Z0MILGPa7irTGfYE0WfL+LFqWmULm9tuFKaKNlTcEQ7c5uJ0p4k5uvmNQ=="; 4172 4181 }; 4173 4182 }; 4174 4183 "@octokit/request-5.4.14" = { ··· 4207 4216 sha512 = "ngDBevLbBTFfrHZeiS7SAMAZ6ssuVmXuya+F/7RaVvlysgGa1JKJkKWY+jV6TCJYcW0OALfJ7nTIGXcBXzycfQ=="; 4208 4217 }; 4209 4218 }; 4210 - "@octokit/rest-18.3.5" = { 4219 + "@octokit/rest-18.4.0" = { 4211 4220 name = "_at_octokit_slash_rest"; 4212 4221 packageName = "@octokit/rest"; 4213 - version = "18.3.5"; 4222 + version = "18.4.0"; 4214 4223 src = fetchurl { 4215 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.3.5.tgz"; 4216 - sha512 = "ZPeRms3WhWxQBEvoIh0zzf8xdU2FX0Capa7+lTca8YHmRsO3QNJzf1H3PcuKKsfgp91/xVDRtX91sTe1kexlbw=="; 4224 + url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.4.0.tgz"; 4225 + sha512 = "3bFg0vyD3O+6EukYzLTu4tUapMofSR4nYgMEOJc25sefippsatiWfNoOnx0QNj3PIXVJdW0riUjQnDwgS0JNWA=="; 4217 4226 }; 4218 4227 }; 4219 4228 "@octokit/types-2.16.2" = { ··· 4225 4234 sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q=="; 4226 4235 }; 4227 4236 }; 4228 - "@octokit/types-6.12.2" = { 4237 + "@octokit/types-6.13.0" = { 4229 4238 name = "_at_octokit_slash_types"; 4230 4239 packageName = "@octokit/types"; 4231 - version = "6.12.2"; 4240 + version = "6.13.0"; 4232 4241 src = fetchurl { 4233 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.12.2.tgz"; 4234 - sha512 = "kCkiN8scbCmSq+gwdJV0iLgHc0O/GTPY1/cffo9kECu1MvatLPh9E+qFhfRIktKfHEA6ZYvv6S1B4Wnv3bi3pA=="; 4242 + url = "https://registry.npmjs.org/@octokit/types/-/types-6.13.0.tgz"; 4243 + sha512 = "W2J9qlVIU11jMwKHUp5/rbVUeErqelCsO5vW5PKNb7wAXQVUz87Rc+imjlEvpvbH8yUb+KHmv8NEjVZdsdpyxA=="; 4235 4244 }; 4236 4245 }; 4237 4246 "@open-policy-agent/opa-wasm-1.2.0" = { ··· 4828 4837 sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570"; 4829 4838 }; 4830 4839 }; 4840 + "@putdotio/api-client-8.15.1" = { 4841 + name = "_at_putdotio_slash_api-client"; 4842 + packageName = "@putdotio/api-client"; 4843 + version = "8.15.1"; 4844 + src = fetchurl { 4845 + url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.15.1.tgz"; 4846 + sha512 = "1ODxgqJJTWe+Sb6XL05oJWmHKt81nDerLtfbJH16LY5Z8dkzg9FS9K0DWrzPR8e9TmGg8rdnF4MBCDGzOJRgCA=="; 4847 + }; 4848 + }; 4831 4849 "@react-native-community/cli-debugger-ui-4.13.1" = { 4832 4850 name = "_at_react-native-community_slash_cli-debugger-ui"; 4833 4851 packageName = "@react-native-community/cli-debugger-ui"; ··· 4945 4963 sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; 4946 4964 }; 4947 4965 }; 4948 - "@schematics/angular-11.2.5" = { 4966 + "@schematics/angular-11.2.6" = { 4949 4967 name = "_at_schematics_slash_angular"; 4950 4968 packageName = "@schematics/angular"; 4951 - version = "11.2.5"; 4969 + version = "11.2.6"; 4952 4970 src = fetchurl { 4953 - url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.2.5.tgz"; 4954 - sha512 = "pjaK0gZyqhzgAVxMKElG6cDpAvNZ3adVCTA8dhEixpH+JaQdoczl59hMn7rH75yQW0PApe+8g7HMwVK6bLRmxQ=="; 4971 + url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.2.6.tgz"; 4972 + sha512 = "NUtoX6Dfo2mUWVHt2zXEtlBsz88mo9N9fIPFAEpSY6U9x/jGSs+4rZ6sGRpkqm5UgVtYHzRyQINH7608HuGUuA=="; 4955 4973 }; 4956 4974 }; 4957 4975 "@schematics/schematics-0.1102.0" = { ··· 4963 4981 sha512 = "0mN6qGnI31GVNYAKDdZ6ISiJMtN8Z0rekpJ/xNHK/lDNl/QkoJVBHDf68oEcNE8dvWMq86ULpznCdT1IBQ7YFA=="; 4964 4982 }; 4965 4983 }; 4966 - "@schematics/update-0.1102.5" = { 4984 + "@schematics/update-0.1102.6" = { 4967 4985 name = "_at_schematics_slash_update"; 4968 4986 packageName = "@schematics/update"; 4969 - version = "0.1102.5"; 4987 + version = "0.1102.6"; 4970 4988 src = fetchurl { 4971 - url = "https://registry.npmjs.org/@schematics/update/-/update-0.1102.5.tgz"; 4972 - sha512 = "iz9pM8mabieqQnPZjrqP5jfRFvPm81/uIg46kY3KjtDtSBi4GAF2dnFyX1dC2mG1rq+e+8zeQLvOvhdLifYlEA=="; 4989 + url = "https://registry.npmjs.org/@schematics/update/-/update-0.1102.6.tgz"; 4990 + sha512 = "JJ9pwGWI5NfwK7d09uQ6zHV63Ms+8r0NsvJHjZlHFlolY04J6yFe0X7TF7/mcjKsaVKCjYIpe5VuTeam/wk5QQ=="; 4973 4991 }; 4974 4992 }; 4975 4993 "@segment/loosely-validate-event-2.0.0" = { ··· 4999 5017 sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang=="; 5000 5018 }; 5001 5019 }; 5002 - "@serverless/components-3.7.5" = { 5020 + "@serverless/components-3.7.7" = { 5003 5021 name = "_at_serverless_slash_components"; 5004 5022 packageName = "@serverless/components"; 5005 - version = "3.7.5"; 5023 + version = "3.7.7"; 5006 5024 src = fetchurl { 5007 - url = "https://registry.npmjs.org/@serverless/components/-/components-3.7.5.tgz"; 5008 - sha512 = "fD2Yxaxqt4WmlJquSu5AmWUqJxDTY7d1+u58hFIZyB5mwbFX3cTsHkEVMaLDlZtS6bWveSgGg14pFchLq+AV5A=="; 5025 + url = "https://registry.npmjs.org/@serverless/components/-/components-3.7.7.tgz"; 5026 + sha512 = "GMo0wOyrfMiekRKZuOI046bxinM/cSsAkLivaT6J0rAG6DV+C8yZHLis5090kya50XndidiSdfshlaP0lv21lQ=="; 5009 5027 }; 5010 5028 }; 5011 5029 "@serverless/core-1.1.2" = { ··· 5017 5035 sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ=="; 5018 5036 }; 5019 5037 }; 5020 - "@serverless/enterprise-plugin-4.5.1" = { 5038 + "@serverless/enterprise-plugin-4.5.2" = { 5021 5039 name = "_at_serverless_slash_enterprise-plugin"; 5022 5040 packageName = "@serverless/enterprise-plugin"; 5023 - version = "4.5.1"; 5041 + version = "4.5.2"; 5024 5042 src = fetchurl { 5025 - url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-4.5.1.tgz"; 5026 - sha512 = "wDZ/Ulu6PZ30gfiwCZ+CxDDt7fZHgH1wbU3pkBOIWtXpksm2edv+eN4irWwVe93OVUqN3uWEtLZJVZH5YQzf1g=="; 5043 + url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-4.5.2.tgz"; 5044 + sha512 = "Y/7WK0BAL7oVK3QDV9nL1qUKTC4p/gKWI8W1Ozp+P4RA9RPIqDHmdqmu8Uhc/rUS0nD64LijfLlapeXq2qITVg=="; 5027 5045 }; 5028 5046 }; 5029 5047 "@serverless/event-mocks-1.1.1" = { ··· 5035 5053 sha512 = "YAV5V/y+XIOfd+HEVeXfPWZb8C6QLruFk9tBivoX2roQLWVq145s4uxf8D0QioCueuRzkukHUS4JIj+KVoS34A=="; 5036 5054 }; 5037 5055 }; 5038 - "@serverless/platform-client-4.2.1" = { 5056 + "@serverless/platform-client-4.2.2" = { 5039 5057 name = "_at_serverless_slash_platform-client"; 5040 5058 packageName = "@serverless/platform-client"; 5041 - version = "4.2.1"; 5059 + version = "4.2.2"; 5042 5060 src = fetchurl { 5043 - url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-4.2.1.tgz"; 5044 - sha512 = "Mb68YdkhKUs4LFsrluabE00ng08fLCslf07Ufy/kwN7LfFZKTpNTnuvc/pR59zk7v3s5XWBTlnGWKbID3IWLlQ=="; 5061 + url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-4.2.2.tgz"; 5062 + sha512 = "8jP72e0POFGEW7HKtDzK0qt1amYtvlB7bYSal8JUCXbeY2qk3xRJZuLWCZBBKRGz4ha4eBNjlz7iniACb9biLg=="; 5045 5063 }; 5046 5064 }; 5047 5065 "@serverless/platform-client-china-2.1.9" = { ··· 5206 5224 sha512 = "ca2JKOnSRzYHJkhOB9gYmdRZHmd02b/uBd/S0D5W+L9nIMS7sUBV5jfhKwVgrYPIpVNIc0XCI9rxK4TfkQRpiA=="; 5207 5225 }; 5208 5226 }; 5209 - "@snyk/code-client-3.1.4" = { 5227 + "@snyk/code-client-3.1.5" = { 5210 5228 name = "_at_snyk_slash_code-client"; 5211 5229 packageName = "@snyk/code-client"; 5212 - version = "3.1.4"; 5230 + version = "3.1.5"; 5213 5231 src = fetchurl { 5214 - url = "https://registry.npmjs.org/@snyk/code-client/-/code-client-3.1.4.tgz"; 5215 - sha512 = "ZZWPWAaKgNii/HYtyO9guFDVpi5T/SoCWQIo/B/RbLbXLrdZ5VIHsn0E4ztY7Y69GjQCyrus5pu7adlYrwQtEQ=="; 5232 + url = "https://registry.npmjs.org/@snyk/code-client/-/code-client-3.1.5.tgz"; 5233 + sha512 = "bJb00zZ7956MzIjW/4DPaMolk2/r7eox+5Bvq0bpcu1NFUFYYQPZeEPsPgh5YzK4te2v6W5hZBtjUUNIY+AQYg=="; 5216 5234 }; 5217 5235 }; 5218 5236 "@snyk/composer-lockfile-parser-1.4.1" = { ··· 5953 5971 sha512 = "laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg=="; 5954 5972 }; 5955 5973 }; 5974 + "@types/estree-0.0.47" = { 5975 + name = "_at_types_slash_estree"; 5976 + packageName = "@types/estree"; 5977 + version = "0.0.47"; 5978 + src = fetchurl { 5979 + url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz"; 5980 + sha512 = "c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg=="; 5981 + }; 5982 + }; 5956 5983 "@types/express-4.17.11" = { 5957 5984 name = "_at_types_slash_express"; 5958 5985 packageName = "@types/express"; ··· 6349 6376 sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 6350 6377 }; 6351 6378 }; 6352 - "@types/minimatch-3.0.3" = { 6379 + "@types/minimatch-3.0.4" = { 6353 6380 name = "_at_types_slash_minimatch"; 6354 6381 packageName = "@types/minimatch"; 6355 - version = "3.0.3"; 6382 + version = "3.0.4"; 6356 6383 src = fetchurl { 6357 - url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz"; 6358 - sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="; 6384 + url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.4.tgz"; 6385 + sha512 = "1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA=="; 6359 6386 }; 6360 6387 }; 6361 6388 "@types/minimist-1.2.0" = { ··· 6952 6979 sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw=="; 6953 6980 }; 6954 6981 }; 6955 - "@typescript-eslint/eslint-plugin-4.18.0" = { 6982 + "@typescript-eslint/eslint-plugin-4.19.0" = { 6956 6983 name = "_at_typescript-eslint_slash_eslint-plugin"; 6957 6984 packageName = "@typescript-eslint/eslint-plugin"; 6958 - version = "4.18.0"; 6985 + version = "4.19.0"; 6959 6986 src = fetchurl { 6960 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz"; 6961 - sha512 = "Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ=="; 6987 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.19.0.tgz"; 6988 + sha512 = "CRQNQ0mC2Pa7VLwKFbrGVTArfdVDdefS+gTw0oC98vSI98IX5A8EVH4BzJ2FOB0YlCmm8Im36Elad/Jgtvveaw=="; 6962 6989 }; 6963 6990 }; 6964 6991 "@typescript-eslint/experimental-utils-3.10.1" = { ··· 6970 6997 sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw=="; 6971 6998 }; 6972 6999 }; 6973 - "@typescript-eslint/experimental-utils-4.18.0" = { 7000 + "@typescript-eslint/experimental-utils-4.19.0" = { 6974 7001 name = "_at_typescript-eslint_slash_experimental-utils"; 6975 7002 packageName = "@typescript-eslint/experimental-utils"; 6976 - version = "4.18.0"; 7003 + version = "4.19.0"; 6977 7004 src = fetchurl { 6978 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.18.0.tgz"; 6979 - sha512 = "92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A=="; 7005 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.19.0.tgz"; 7006 + sha512 = "9/23F1nnyzbHKuoTqFN1iXwN3bvOm/PRIXSBR3qFAYotK/0LveEOHr5JT1WZSzcD6BESl8kPOG3OoDRKO84bHA=="; 6980 7007 }; 6981 7008 }; 6982 7009 "@typescript-eslint/parser-3.10.1" = { ··· 6988 7015 sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw=="; 6989 7016 }; 6990 7017 }; 6991 - "@typescript-eslint/parser-4.18.0" = { 7018 + "@typescript-eslint/parser-4.19.0" = { 6992 7019 name = "_at_typescript-eslint_slash_parser"; 6993 7020 packageName = "@typescript-eslint/parser"; 6994 - version = "4.18.0"; 7021 + version = "4.19.0"; 6995 7022 src = fetchurl { 6996 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.18.0.tgz"; 6997 - sha512 = "W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA=="; 7023 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.19.0.tgz"; 7024 + sha512 = "/uabZjo2ZZhm66rdAu21HA8nQebl3lAIDcybUoOxoI7VbZBYavLIwtOOmykKCJy+Xq6Vw6ugkiwn8Js7D6wieA=="; 6998 7025 }; 6999 7026 }; 7000 - "@typescript-eslint/scope-manager-4.18.0" = { 7027 + "@typescript-eslint/scope-manager-4.19.0" = { 7001 7028 name = "_at_typescript-eslint_slash_scope-manager"; 7002 7029 packageName = "@typescript-eslint/scope-manager"; 7003 - version = "4.18.0"; 7030 + version = "4.19.0"; 7004 7031 src = fetchurl { 7005 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.18.0.tgz"; 7006 - sha512 = "olX4yN6rvHR2eyFOcb6E4vmhDPsfdMyfQ3qR+oQNkAv8emKKlfxTWUXU5Mqxs2Fwe3Pf1BoPvrwZtwngxDzYzQ=="; 7032 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.19.0.tgz"; 7033 + sha512 = "GGy4Ba/hLXwJXygkXqMzduqOMc+Na6LrJTZXJWVhRrSuZeXmu8TAnniQVKgj8uTRKe4igO2ysYzH+Np879G75g=="; 7007 7034 }; 7008 7035 }; 7009 7036 "@typescript-eslint/types-3.10.1" = { ··· 7015 7042 sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ=="; 7016 7043 }; 7017 7044 }; 7018 - "@typescript-eslint/types-4.18.0" = { 7045 + "@typescript-eslint/types-4.19.0" = { 7019 7046 name = "_at_typescript-eslint_slash_types"; 7020 7047 packageName = "@typescript-eslint/types"; 7021 - version = "4.18.0"; 7048 + version = "4.19.0"; 7022 7049 src = fetchurl { 7023 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.18.0.tgz"; 7024 - sha512 = "/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A=="; 7050 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.19.0.tgz"; 7051 + sha512 = "A4iAlexVvd4IBsSTNxdvdepW0D4uR/fwxDrKUa+iEY9UWvGREu2ZyB8ylTENM1SH8F7bVC9ac9+si3LWNxcBuA=="; 7025 7052 }; 7026 7053 }; 7027 7054 "@typescript-eslint/typescript-estree-2.34.0" = { ··· 7042 7069 sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w=="; 7043 7070 }; 7044 7071 }; 7045 - "@typescript-eslint/typescript-estree-4.18.0" = { 7072 + "@typescript-eslint/typescript-estree-4.19.0" = { 7046 7073 name = "_at_typescript-eslint_slash_typescript-estree"; 7047 7074 packageName = "@typescript-eslint/typescript-estree"; 7048 - version = "4.18.0"; 7075 + version = "4.19.0"; 7049 7076 src = fetchurl { 7050 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz"; 7051 - sha512 = "wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg=="; 7077 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.19.0.tgz"; 7078 + sha512 = "3xqArJ/A62smaQYRv2ZFyTA+XxGGWmlDYrsfZG68zJeNbeqRScnhf81rUVa6QG4UgzHnXw5VnMT5cg75dQGDkA=="; 7052 7079 }; 7053 7080 }; 7054 7081 "@typescript-eslint/visitor-keys-3.10.1" = { ··· 7060 7087 sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ=="; 7061 7088 }; 7062 7089 }; 7063 - "@typescript-eslint/visitor-keys-4.18.0" = { 7090 + "@typescript-eslint/visitor-keys-4.19.0" = { 7064 7091 name = "_at_typescript-eslint_slash_visitor-keys"; 7065 7092 packageName = "@typescript-eslint/visitor-keys"; 7066 - version = "4.18.0"; 7093 + version = "4.19.0"; 7067 7094 src = fetchurl { 7068 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.18.0.tgz"; 7069 - sha512 = "Q9t90JCvfYaN0OfFUgaLqByOfz8yPeTAdotn/XYNm5q9eHax90gzdb+RJ6E9T5s97Kv/UHWKERTmqA0jTKAEHw=="; 7095 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.19.0.tgz"; 7096 + sha512 = "aGPS6kz//j7XLSlgpzU2SeTqHPsmRYxFztj2vPuMMFJXZudpRSehE3WCV+BaxwZFvfAqMoSd86TEuM0PQ59E/A=="; 7070 7097 }; 7071 7098 }; 7072 7099 "@uifabric/foundation-7.9.26" = { ··· 8815 8842 sha512 = "cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="; 8816 8843 }; 8817 8844 }; 8818 - "ansi-escapes-4.3.1" = { 8845 + "ansi-escapes-4.3.2" = { 8819 8846 name = "ansi-escapes"; 8820 8847 packageName = "ansi-escapes"; 8821 - version = "4.3.1"; 8848 + version = "4.3.2"; 8822 8849 src = fetchurl { 8823 - url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz"; 8824 - sha512 = "JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="; 8850 + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"; 8851 + sha512 = "gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="; 8825 8852 }; 8826 8853 }; 8827 8854 "ansi-gray-0.1.1" = { ··· 10543 10570 sha512 = "+KBkqH7t/XE91Fqn8eyJeNIWsnhSWL8bSUqFD7TfE3FN07MTlC0nprGYp+2WfcYNz5i8Bus1vY2DHNVhtTImnw=="; 10544 10571 }; 10545 10572 }; 10546 - "aws-sdk-2.868.0" = { 10573 + "aws-sdk-2.871.0" = { 10547 10574 name = "aws-sdk"; 10548 10575 packageName = "aws-sdk"; 10549 - version = "2.868.0"; 10576 + version = "2.871.0"; 10550 10577 src = fetchurl { 10551 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.868.0.tgz"; 10552 - sha512 = "ZayPsA/ycaAXqqa2oDyf8iUpl1WOLODZS8ZdvYj77L5owMQm0XC7yqiD+WHj9nToUECF9VAD+AKQMIN6695tVQ=="; 10578 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.871.0.tgz"; 10579 + sha512 = "rFd2shGgYfCzQQQeqqgZRiLuPFUm3uUlHqM40nMtbqM1y7abuOUyuOMxTHsKsbY+Bu7gRESngPTf7Iknxq9/uQ=="; 10553 10580 }; 10554 10581 }; 10555 10582 "aws-sign2-0.6.0" = { ··· 10586 10613 src = fetchurl { 10587 10614 url = "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz"; 10588 10615 sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="; 10616 + }; 10617 + }; 10618 + "axios-0.19.2" = { 10619 + name = "axios"; 10620 + packageName = "axios"; 10621 + version = "0.19.2"; 10622 + src = fetchurl { 10623 + url = "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz"; 10624 + sha512 = "fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA=="; 10589 10625 }; 10590 10626 }; 10591 10627 "axios-0.21.1" = { ··· 13432 13468 sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ=="; 13433 13469 }; 13434 13470 }; 13435 - "cacache-15.0.5" = { 13471 + "cacache-15.0.6" = { 13436 13472 name = "cacache"; 13437 13473 packageName = "cacache"; 13438 - version = "15.0.5"; 13474 + version = "15.0.6"; 13439 13475 src = fetchurl { 13440 - url = "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz"; 13441 - sha512 = "lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A=="; 13476 + url = "https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz"; 13477 + sha512 = "g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w=="; 13442 13478 }; 13443 13479 }; 13444 13480 "cache-base-1.0.1" = { ··· 13747 13783 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 13748 13784 }; 13749 13785 }; 13750 - "caniuse-lite-1.0.30001203" = { 13786 + "caniuse-lite-1.0.30001204" = { 13751 13787 name = "caniuse-lite"; 13752 13788 packageName = "caniuse-lite"; 13753 - version = "1.0.30001203"; 13789 + version = "1.0.30001204"; 13754 13790 src = fetchurl { 13755 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001203.tgz"; 13756 - sha512 = "/I9tvnzU/PHMH7wBPrfDMSuecDeUKerjCPX7D0xBbaJZPxoT9m+yYxt0zCTkcijCkjTdim3H56Zm0i5Adxch4w=="; 13791 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001204.tgz"; 13792 + sha512 = "JUdjWpcxfJ9IPamy2f5JaRDCaqJOxDzOSKtbdx4rH9VivMd1vIzoPumsJa9LoMIi4Fx2BV2KZOxWhNkBjaYivQ=="; 13757 13793 }; 13758 13794 }; 13759 13795 "canvas-2.7.0" = { ··· 15331 15367 sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; 15332 15368 }; 15333 15369 }; 15334 - "codemaker-1.25.0" = { 15370 + "codemaker-1.26.0" = { 15335 15371 name = "codemaker"; 15336 15372 packageName = "codemaker"; 15337 - version = "1.25.0"; 15373 + version = "1.26.0"; 15338 15374 src = fetchurl { 15339 - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.25.0.tgz"; 15340 - sha512 = "54qCHs6X6llXIAztHCo2IyzzvuH9GrEecwxxTU925M3EJV4z+7PMiI1AollZxSeyY2pGO5TjNlAQAyLXETI3NQ=="; 15375 + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.26.0.tgz"; 15376 + sha512 = "oK0SdWi3CUHL7hVcDpXVBQc2xm31RCJSqg7I1wviMifD89zbvu3boAz/s5aoXbcVDKKxLOZn2w55WlGCih9HOw=="; 15341 15377 }; 15342 15378 }; 15343 15379 "codepage-1.4.0" = { ··· 15853 15889 sha512 = "pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg=="; 15854 15890 }; 15855 15891 }; 15892 + "commander-7.2.0" = { 15893 + name = "commander"; 15894 + packageName = "commander"; 15895 + version = "7.2.0"; 15896 + src = fetchurl { 15897 + url = "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"; 15898 + sha512 = "QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="; 15899 + }; 15900 + }; 15856 15901 "commandpost-1.4.0" = { 15857 15902 name = "commandpost"; 15858 15903 packageName = "commandpost"; ··· 16132 16177 sha512 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg=="; 16133 16178 }; 16134 16179 }; 16180 + "conf-6.2.4" = { 16181 + name = "conf"; 16182 + packageName = "conf"; 16183 + version = "6.2.4"; 16184 + src = fetchurl { 16185 + url = "https://registry.npmjs.org/conf/-/conf-6.2.4.tgz"; 16186 + sha512 = "GjgyPRLo1qK1LR9RWAdUagqo+DP18f5HWCFk4va7GS+wpxQTOzfuKTwKOvGW2c01/YXNicAyyoyuSddmdkBzZQ=="; 16187 + }; 16188 + }; 16135 16189 "conf-7.1.2" = { 16136 16190 name = "conf"; 16137 16191 packageName = "conf"; ··· 16357 16411 sha512 = "5AKrTtmiioQWloJ3WRFZb0/uR1lrRboaVE9go++XZltvRnZkN2/kQjaZ0gtFxynU5u5k9mWVtk8mNcgJ9yoRbQ=="; 16358 16412 }; 16359 16413 }; 16360 - "constructs-3.3.68" = { 16414 + "constructs-3.3.71" = { 16361 16415 name = "constructs"; 16362 16416 packageName = "constructs"; 16363 - version = "3.3.68"; 16417 + version = "3.3.71"; 16364 16418 src = fetchurl { 16365 - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.68.tgz"; 16366 - sha512 = "Fq029KuZo16NdYqlSuK1loIDiR1P2WwxsihZjjeK9hM5qoFXjcAAzMI7i5Z1LxZwWl9cUoutBNXSvhF7xHUG7Q=="; 16419 + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.71.tgz"; 16420 + sha512 = "3KFtTsA7OV27m/+pJhN4iJkKzHbPIPvyvEX5BQ/JCAWjfCHOQEVpIgxHLpT4i8L1OFta+pJrzcEVAHo6UitwqA=="; 16367 16421 }; 16368 16422 }; 16369 16423 "consume-http-header-1.0.0" = { ··· 17861 17915 sha512 = "KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw=="; 17862 17916 }; 17863 17917 }; 17864 - "d3-array-2.12.0" = { 17918 + "d3-array-2.12.1" = { 17865 17919 name = "d3-array"; 17866 17920 packageName = "d3-array"; 17867 - version = "2.12.0"; 17921 + version = "2.12.1"; 17868 17922 src = fetchurl { 17869 - url = "https://registry.npmjs.org/d3-array/-/d3-array-2.12.0.tgz"; 17870 - sha512 = "T6H/qNldyD/1OlRkJbonb3u3MPhNwju8OPxYv0YSjDb/B2RUeeBEHzIpNrYiinwpmz8+am+puMrpcrDWgY9wRg=="; 17923 + url = "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz"; 17924 + sha512 = "B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ=="; 17871 17925 }; 17872 17926 }; 17873 17927 "d3-axis-1.0.12" = { ··· 18651 18705 src = fetchurl { 18652 18706 url = "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"; 18653 18707 sha512 = "XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug=="; 18708 + }; 18709 + }; 18710 + "debounce-fn-3.0.1" = { 18711 + name = "debounce-fn"; 18712 + packageName = "debounce-fn"; 18713 + version = "3.0.1"; 18714 + src = fetchurl { 18715 + url = "https://registry.npmjs.org/debounce-fn/-/debounce-fn-3.0.1.tgz"; 18716 + sha512 = "aBoJh5AhpqlRoHZjHmOzZlRx+wz2xVwGL9rjs+Kj0EWUrL4/h4K7OD176thl2Tdoqui/AaA4xhHrNArGLAaI3Q=="; 18654 18717 }; 18655 18718 }; 18656 18719 "debounce-fn-4.0.0" = { ··· 20075 20138 sha512 = "qKftHMVoMliYBaYLkgttm+NXhRISVNkIMfAL4ecmXjiWRElfdfY+xNgITiehG0LpUEDbFUa/UDCByYq/2UZIpQ=="; 20076 20139 }; 20077 20140 }; 20141 + "dockerfile-ast-0.2.0" = { 20142 + name = "dockerfile-ast"; 20143 + packageName = "dockerfile-ast"; 20144 + version = "0.2.0"; 20145 + src = fetchurl { 20146 + url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.2.0.tgz"; 20147 + sha512 = "iQyp12k1A4tF3sEfLAq2wfFPKdpoiGTJeuiu2Y1bdEqIZu0DfSSL2zm0fk7a/UHeQkngnYaRRGuON+C+2LO1Fw=="; 20148 + }; 20149 + }; 20078 20150 "dockerfile-language-service-0.2.0" = { 20079 20151 name = "dockerfile-language-service"; 20080 20152 packageName = "dockerfile-language-service"; ··· 20831 20903 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 20832 20904 }; 20833 20905 }; 20834 - "electron-to-chromium-1.3.693" = { 20906 + "electron-to-chromium-1.3.699" = { 20835 20907 name = "electron-to-chromium"; 20836 20908 packageName = "electron-to-chromium"; 20837 - version = "1.3.693"; 20909 + version = "1.3.699"; 20838 20910 src = fetchurl { 20839 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.693.tgz"; 20840 - sha512 = "vUdsE8yyeu30RecppQtI+XTz2++LWLVEIYmzeCaCRLSdtKZ2eXqdJcrs85KwLiPOPVc6PELgWyXBsfqIvzGZag=="; 20911 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.699.tgz"; 20912 + sha512 = "fjt43CPXdPYwD9ybmKbNeLwZBmCVdLY2J5fGZub7/eMPuiqQznOGNXv/wurnpXIlE7ScHnvG9Zi+H4/i6uMKmw=="; 20841 20913 }; 20842 20914 }; 20843 20915 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 20932 21004 sha512 = "Bt1sBAGFHY9DKY+4/2cV6izcKJUf5T7/gkdmkxzX/qv9CcGH8xSwVRW5mtX03SWJtRTWSOpzCuWN9rBFYZepZQ=="; 20933 21005 }; 20934 21006 }; 20935 - "emmet-2.3.2" = { 21007 + "emmet-2.3.4" = { 20936 21008 name = "emmet"; 20937 21009 packageName = "emmet"; 20938 - version = "2.3.2"; 21010 + version = "2.3.4"; 20939 21011 src = fetchurl { 20940 - url = "https://registry.npmjs.org/emmet/-/emmet-2.3.2.tgz"; 20941 - sha512 = "PRHGy5RfLp7+WBgoNq0QYtjSbbG1g28PtnN8McPhlEMoPwZWBDftVIz4vDNUNvQFSBtekuYZxB7J0vLgodZxFw=="; 21012 + url = "https://registry.npmjs.org/emmet/-/emmet-2.3.4.tgz"; 21013 + sha512 = "3IqSwmO+N2ZGeuhDyhV/TIOJFUbkChi53bcasSNRE7Yd+4eorbbYz4e53TpMECt38NtYkZNupQCZRlwdAYA42A=="; 20942 21014 }; 20943 21015 }; 20944 21016 "emoji-named-characters-1.0.2" = { ··· 21697 21769 sha512 = "j02SFrUwFTRUqiY0Kjplwjm1psuzO1d6AjaXKuOR9hrY0HuPsT6sV42B6myW34h1q4CRy+Y3g4RU/cGJeI/nNA=="; 21698 21770 }; 21699 21771 }; 21700 - "esbuild-0.9.6" = { 21772 + "esbuild-0.9.7" = { 21701 21773 name = "esbuild"; 21702 21774 packageName = "esbuild"; 21703 - version = "0.9.6"; 21775 + version = "0.9.7"; 21704 21776 src = fetchurl { 21705 - url = "https://registry.npmjs.org/esbuild/-/esbuild-0.9.6.tgz"; 21706 - sha512 = "F6vASxU0wT/Davt9aj2qtDwDNSkQxh9VbyO56M7PDWD+D/Vgq/rmUDGDQo7te76W5auauVojjnQr/wTu3vpaUA=="; 21777 + url = "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz"; 21778 + sha512 = "VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg=="; 21707 21779 }; 21708 21780 }; 21709 21781 "esc-exit-2.0.2" = { ··· 21922 21994 sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ=="; 21923 21995 }; 21924 21996 }; 21925 - "eslint-plugin-vue-7.7.0" = { 21997 + "eslint-plugin-vue-7.8.0" = { 21926 21998 name = "eslint-plugin-vue"; 21927 21999 packageName = "eslint-plugin-vue"; 21928 - version = "7.7.0"; 22000 + version = "7.8.0"; 21929 22001 src = fetchurl { 21930 - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.7.0.tgz"; 21931 - sha512 = "mYz4bpLGv5jx6YG/GvKkqbGSfV7uma2u1P3mLA41Q5vQl8W1MeuTneB8tfsLq6xxxesFubcrOC0BZBJ5R+eaCQ=="; 22002 + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.8.0.tgz"; 22003 + sha512 = "OGrnPz+PuYL2HmVyBHxm4mRjxW2kfFCQE6Hw9G6qOHs/Pcu0srOlCCW0FMa8SLzIEqxl8WuKoBSPcMnrjUG2vw=="; 21932 22004 }; 21933 22005 }; 21934 22006 "eslint-scope-3.7.3" = { ··· 22516 22588 sha512 = "FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw=="; 22517 22589 }; 22518 22590 }; 22519 - "exec-sh-0.3.4" = { 22591 + "exec-sh-0.3.6" = { 22520 22592 name = "exec-sh"; 22521 22593 packageName = "exec-sh"; 22522 - version = "0.3.4"; 22594 + version = "0.3.6"; 22523 22595 src = fetchurl { 22524 - url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz"; 22525 - sha512 = "sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A=="; 22596 + url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz"; 22597 + sha512 = "nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w=="; 22526 22598 }; 22527 22599 }; 22528 22600 "execa-0.1.1" = { ··· 23389 23461 sha512 = "483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ=="; 23390 23462 }; 23391 23463 }; 23392 - "fastpriorityqueue-0.6.3" = { 23464 + "fastpriorityqueue-0.7.0" = { 23393 23465 name = "fastpriorityqueue"; 23394 23466 packageName = "fastpriorityqueue"; 23395 - version = "0.6.3"; 23467 + version = "0.7.0"; 23396 23468 src = fetchurl { 23397 - url = "https://registry.npmjs.org/fastpriorityqueue/-/fastpriorityqueue-0.6.3.tgz"; 23398 - sha512 = "l4Whw9/MDkl/0XuqZEzGE/sw9T7dIxuUnxqq4ZJDLt8AE45j8wkx4/nBRZm50aQ9kN71NB9mwQzglLsvQGROsw=="; 23469 + url = "https://registry.npmjs.org/fastpriorityqueue/-/fastpriorityqueue-0.7.0.tgz"; 23470 + sha512 = "L5Je6LktYDK5aRJIAHO4NEyQXsihwe/+VEaI2qwyoxvuTPcyooLi9+MeLJnOzvEDwijxAXrrqqkV4cNgW55Rog=="; 23399 23471 }; 23400 23472 }; 23401 23473 "fastq-1.11.0" = { ··· 24406 24478 sha512 = "DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA=="; 24407 24479 }; 24408 24480 }; 24481 + "follow-redirects-1.5.10" = { 24482 + name = "follow-redirects"; 24483 + packageName = "follow-redirects"; 24484 + version = "1.5.10"; 24485 + src = fetchurl { 24486 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz"; 24487 + sha512 = "0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ=="; 24488 + }; 24489 + }; 24409 24490 "font-awesome-filetypes-2.1.0" = { 24410 24491 name = "font-awesome-filetypes"; 24411 24492 packageName = "font-awesome-filetypes"; ··· 26180 26261 sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ=="; 26181 26262 }; 26182 26263 }; 26183 - "globby-11.0.2" = { 26264 + "globby-11.0.3" = { 26184 26265 name = "globby"; 26185 26266 packageName = "globby"; 26186 - version = "11.0.2"; 26267 + version = "11.0.3"; 26187 26268 src = fetchurl { 26188 - url = "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz"; 26189 - sha512 = "2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og=="; 26269 + url = "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"; 26270 + sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="; 26190 26271 }; 26191 26272 }; 26192 26273 "globby-4.1.0" = { ··· 26315 26396 sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ=="; 26316 26397 }; 26317 26398 }; 26318 - "google-auth-library-7.0.2" = { 26399 + "google-auth-library-7.0.3" = { 26319 26400 name = "google-auth-library"; 26320 26401 packageName = "google-auth-library"; 26321 - version = "7.0.2"; 26402 + version = "7.0.3"; 26322 26403 src = fetchurl { 26323 - url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.0.2.tgz"; 26324 - sha512 = "vjyNZR3pDLC0u7GHLfj+Hw9tGprrJwoMwkYGqURCXYITjCrP9HprOyxVV+KekdLgATtWGuDkQG2MTh0qpUPUgg=="; 26404 + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.0.3.tgz"; 26405 + sha512 = "6wJNYqY1QUr5I2lWaUkkzOT2b9OCNhNQrdFOt/bsBbGb7T7NCdEvrBsXraUm+KTUGk2xGlQ7m9RgUd4Llcw8NQ=="; 26325 26406 }; 26326 26407 }; 26327 26408 "google-closure-compiler-js-20170910.0.1" = { ··· 27665 27746 sha512 = "aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw=="; 27666 27747 }; 27667 27748 }; 27668 - "hosted-git-info-4.0.1" = { 27749 + "hosted-git-info-4.0.2" = { 27669 27750 name = "hosted-git-info"; 27670 27751 packageName = "hosted-git-info"; 27671 - version = "4.0.1"; 27752 + version = "4.0.2"; 27672 27753 src = fetchurl { 27673 - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.1.tgz"; 27674 - sha512 = "eT7NrxAsppPRQEBSwKSosReE+v8OzABwEScQYk5d4uxaEPlzxTIku7LINXtBGalthkLhJnq5lBI89PfK43zAKg=="; 27754 + url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz"; 27755 + sha512 = "c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg=="; 27675 27756 }; 27676 27757 }; 27677 27758 "hot-formula-parser-4.0.0" = { ··· 31239 31320 sha512 = "0soPJif+yjmzmOF+4cF2hyhxUWWpXpQntsm2joJXFFoRcQiPzsG4dbLKYqYPT3Fc6PjZ8MaLtCkDqqckVSfmRw=="; 31240 31321 }; 31241 31322 }; 31242 - "jitdb-2.3.3" = { 31323 + "jitdb-2.3.4" = { 31243 31324 name = "jitdb"; 31244 31325 packageName = "jitdb"; 31245 - version = "2.3.3"; 31326 + version = "2.3.4"; 31246 31327 src = fetchurl { 31247 - url = "https://registry.npmjs.org/jitdb/-/jitdb-2.3.3.tgz"; 31248 - sha512 = "wSB+iNzPm/Qcp1lKg8olKL0zeZdAhDVXLpWLKLWtqWN/vpHeu7vKmYxClsxhmV4YhZ/Hjzzi0oXBY8hVqKHQTA=="; 31328 + url = "https://registry.npmjs.org/jitdb/-/jitdb-2.3.4.tgz"; 31329 + sha512 = "KK20bNiuzIekY7KzH4DvKDMGOu4yGAfiPFLE6GbFZUWurXOQJAbfjvbqKmNHOTE6FA5o8pPg2dz8OvJyjByWEQ=="; 31249 31330 }; 31250 31331 }; 31251 31332 "jju-1.4.0" = { ··· 31635 31716 sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 31636 31717 }; 31637 31718 }; 31638 - "jsii-1.25.0" = { 31719 + "jsii-1.26.0" = { 31639 31720 name = "jsii"; 31640 31721 packageName = "jsii"; 31641 - version = "1.25.0"; 31722 + version = "1.26.0"; 31642 31723 src = fetchurl { 31643 - url = "https://registry.npmjs.org/jsii/-/jsii-1.25.0.tgz"; 31644 - sha512 = "5dchUvG+RTc48v8euUUNvxKxAlPMIaE9rG8BFp4RiXQiB3EFDTJeeM89cXK4w/vAhjgDlAxMDx3EJr7k6e461A=="; 31724 + url = "https://registry.npmjs.org/jsii/-/jsii-1.26.0.tgz"; 31725 + sha512 = "ZUu5N8+u12VyNkPgSgvVzIhZ+aEAd531zDZK4qkth7UsGNhSy4zBz9BJMSSKnaVV0oR6Pvehhg5DJ3dCu8qJrw=="; 31645 31726 }; 31646 31727 }; 31647 - "jsii-pacmak-1.25.0" = { 31728 + "jsii-pacmak-1.26.0" = { 31648 31729 name = "jsii-pacmak"; 31649 31730 packageName = "jsii-pacmak"; 31650 - version = "1.25.0"; 31731 + version = "1.26.0"; 31651 31732 src = fetchurl { 31652 - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.25.0.tgz"; 31653 - sha512 = "GEVdCYvnwYVnVNdcLDrvStaHqWIXBiZCpM9i4LS2rpA+qSsyXJUF8FV4cj2YFjdHsolUdY1EKY7njSs8XQ+1gg=="; 31733 + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.26.0.tgz"; 31734 + sha512 = "KOKOIazxddh8CuyuLMoBURW2bj3prhzyT0qF5ojUhHrbZeuH3eulF/Sn5PaIAadmQdmCiu69DYJe2JIwY/zwjw=="; 31654 31735 }; 31655 31736 }; 31656 - "jsii-reflect-1.25.0" = { 31737 + "jsii-reflect-1.26.0" = { 31657 31738 name = "jsii-reflect"; 31658 31739 packageName = "jsii-reflect"; 31659 - version = "1.25.0"; 31740 + version = "1.26.0"; 31660 31741 src = fetchurl { 31661 - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.25.0.tgz"; 31662 - sha512 = "ufBgOeGe6WVmx0CO7ABraEYOzhzxvmx6gJuUvOz/8XMe1dIIU2USLW3O1ArkEtIWchN4F2gITdd7I7jhdzzN1A=="; 31742 + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.26.0.tgz"; 31743 + sha512 = "mlu97Xs2M+YCq3Z8z2vzLYOe3XVC3T0YBabvJjkKoNYdH6F/S5zQMVdGwfHEXv1asFv7PrrVu46Zf/dKnqULcw=="; 31663 31744 }; 31664 31745 }; 31665 - "jsii-rosetta-1.25.0" = { 31746 + "jsii-rosetta-1.26.0" = { 31666 31747 name = "jsii-rosetta"; 31667 31748 packageName = "jsii-rosetta"; 31668 - version = "1.25.0"; 31749 + version = "1.26.0"; 31669 31750 src = fetchurl { 31670 - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.25.0.tgz"; 31671 - sha512 = "2g+O5mkXrcsJPrHs71WPvLhcV4JERYUUzfG4rArZQ+YsGYSlpP2K6FdYlAk8haeCeEgyaedNgsbcW9NbxV8p3A=="; 31751 + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.26.0.tgz"; 31752 + sha512 = "J/VQR8j/mD4Q5qGF0JmfvOJeNWIx0I158nvo6FsnC8aYmHyIpBPmlpKWZzUGC8fHxoD3mC8oeiFLp2Yv8BNtvQ=="; 31672 31753 }; 31673 31754 }; 31674 31755 "jsii-srcmak-0.1.255" = { ··· 36262 36343 sha512 = "SoO8y1B9NjMOYlNdwXMchuTVvqSTlUmXm1P5QvZNPv7OH7aa8qJV+3aA+vl1DHK9Vk1uZAlgwokjvDQhS6bINA=="; 36263 36344 }; 36264 36345 }; 36265 - "mdast-util-mdx-jsx-0.1.3" = { 36346 + "mdast-util-mdx-jsx-0.1.4" = { 36266 36347 name = "mdast-util-mdx-jsx"; 36267 36348 packageName = "mdast-util-mdx-jsx"; 36268 - version = "0.1.3"; 36349 + version = "0.1.4"; 36269 36350 src = fetchurl { 36270 - url = "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-0.1.3.tgz"; 36271 - sha512 = "MIAop4fMALAAVMpXIZqSq2T9/3d/hiiSTdPTJ9AOIZL1td2JBbUOBSnBSMfEk4GOyiQSsla+NFziJbNBwBH1sw=="; 36351 + url = "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-0.1.4.tgz"; 36352 + sha512 = "67KOAvCmypBSpr+AJEAVQg1Obig5Wnguo4ETTxASe5WVP4TLt57bZjDX/9EW5sWYQsO4gPqLxkUOlypVn5rkhg=="; 36272 36353 }; 36273 36354 }; 36274 36355 "mdast-util-mdxjs-esm-0.1.1" = { ··· 39188 39269 sha1 = "5f5665d93351335caabef8f1c554516cf5f1e4e5"; 39189 39270 }; 39190 39271 }; 39272 + "node-downloader-helper-1.0.17" = { 39273 + name = "node-downloader-helper"; 39274 + packageName = "node-downloader-helper"; 39275 + version = "1.0.17"; 39276 + src = fetchurl { 39277 + url = "https://registry.npmjs.org/node-downloader-helper/-/node-downloader-helper-1.0.17.tgz"; 39278 + sha512 = "EnaY0uBSdVo4kYfSmkDlTJG8GqmS8fbfoOau/OsTnikCwt9vsU0w8REVxwWbVz7DzNtHSEBKpU6jV1hmtlx0Dg=="; 39279 + }; 39280 + }; 39191 39281 "node-emoji-1.10.0" = { 39192 39282 name = "node-emoji"; 39193 39283 packageName = "node-emoji"; ··· 40657 40747 sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ=="; 40658 40748 }; 40659 40749 }; 40660 - "office-ui-fabric-react-7.165.0" = { 40750 + "office-ui-fabric-react-7.165.1" = { 40661 40751 name = "office-ui-fabric-react"; 40662 40752 packageName = "office-ui-fabric-react"; 40663 - version = "7.165.0"; 40753 + version = "7.165.1"; 40664 40754 src = fetchurl { 40665 - url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.165.0.tgz"; 40666 - sha512 = "alOv6F8ZRPaLkM9nEKSiuyAEE4y2OJLqCu9iadkjQykjypcAhDQSA6mrBN0nzS6helb1hxakNLkQja6rrVwjtg=="; 40755 + url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.165.1.tgz"; 40756 + sha512 = "a8H0KGwhfEps7v0Ia+kU9kQyRtj3qVMWbkDmMhZ2iTnPXcMs6gF1X+1x3xuMQblJXpp/fqyCLpuU1DUSOMbmhw=="; 40667 40757 }; 40668 40758 }; 40669 40759 "omggif-1.0.10" = { ··· 40837 40927 sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; 40838 40928 }; 40839 40929 }; 40840 - "oo-ascii-tree-1.25.0" = { 40930 + "oo-ascii-tree-1.26.0" = { 40841 40931 name = "oo-ascii-tree"; 40842 40932 packageName = "oo-ascii-tree"; 40843 - version = "1.25.0"; 40933 + version = "1.26.0"; 40844 40934 src = fetchurl { 40845 - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.25.0.tgz"; 40846 - sha512 = "bV3aHhVkSc862VMMj1JV9y8yBqzhXCMNE9UFt8w9NwkM7tvw94O8niGlvmFzNx2Hf4+qhO4gYdtRAYQqUaH+1w=="; 40935 + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.26.0.tgz"; 40936 + sha512 = "JcRUxvHG+QAheXnxx9cwtgDJY6aXc70UAvgoFxKtRz+KfWEU47z/X2HHb81O/aZ3mN4fRnnnnwQhaTUuQRw2Ag=="; 40847 40937 }; 40848 40938 }; 40849 40939 "opal-runtime-1.0.11" = { ··· 42088 42178 sha512 = "GfTeVQGJ6WyBQbQD4t3ocHbyOmTQLmWjkCKSZPmKiGFKYKNUaM5U2gbLzUW8WG1XmS9yQFnsTFA0k3o1+q4klQ=="; 42089 42179 }; 42090 42180 }; 42091 - "pacote-11.3.0" = { 42181 + "pacote-11.3.1" = { 42092 42182 name = "pacote"; 42093 42183 packageName = "pacote"; 42094 - version = "11.3.0"; 42184 + version = "11.3.1"; 42095 42185 src = fetchurl { 42096 - url = "https://registry.npmjs.org/pacote/-/pacote-11.3.0.tgz"; 42097 - sha512 = "cygprcGpEVqvDzpuPMkGVXW/ooc2ibpoosuJ4YHcUXozDs9VJP7Vha+41pYppG2MVNis4t1BB8IygIBh7vVr2Q=="; 42186 + url = "https://registry.npmjs.org/pacote/-/pacote-11.3.1.tgz"; 42187 + sha512 = "TymtwoAG12cczsJIrwI/euOQKtjrQHlD0k0oyt9QSmZGpqa+KdlxKdWR/YUjYizkixaVyztxt/Wsfo8bL3A6Fg=="; 42098 42188 }; 42099 42189 }; 42100 42190 "pad-0.0.5" = { ··· 46175 46265 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 46176 46266 }; 46177 46267 }; 46178 - "pyright-1.1.123" = { 46268 + "pyright-1.1.125" = { 46179 46269 name = "pyright"; 46180 46270 packageName = "pyright"; 46181 - version = "1.1.123"; 46271 + version = "1.1.125"; 46182 46272 src = fetchurl { 46183 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.123.tgz"; 46184 - sha512 = "EYjELbm4G4icuIki6PfpzYrxNeGH78vNbXNmsbb/9XnnVQISdFcbc9oOBc2mU77enUwZctwZ6Nj2mZUMD9VibQ=="; 46273 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.125.tgz"; 46274 + sha512 = "MPaMGCnMR0i0VePXUPpXMHr23A2mkbW1Su+aTAWsqHho1rhQcxBtjeyhR0xqiwTxcC+c9eK9VwFHbd+OMGC6fQ=="; 46185 46275 }; 46186 46276 }; 46187 46277 "q-0.9.7" = { ··· 46310 46400 sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607"; 46311 46401 }; 46312 46402 }; 46313 - "qs-6.10.0" = { 46403 + "qs-6.10.1" = { 46314 46404 name = "qs"; 46315 46405 packageName = "qs"; 46316 - version = "6.10.0"; 46406 + version = "6.10.1"; 46317 46407 src = fetchurl { 46318 - url = "https://registry.npmjs.org/qs/-/qs-6.10.0.tgz"; 46319 - sha512 = "yjACOWijC6L/kmPZZAsVBNY2zfHSIbpdpL977quseu56/8BZ2LoF5axK2bGhbzhVKt7V9xgWTtpyLbxwIoER0Q=="; 46408 + url = "https://registry.npmjs.org/qs/-/qs-6.10.1.tgz"; 46409 + sha512 = "M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg=="; 46320 46410 }; 46321 46411 }; 46322 46412 "qs-6.3.2" = { ··· 46454 46544 sha512 = "iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA=="; 46455 46545 }; 46456 46546 }; 46457 - "queue-microtask-1.2.2" = { 46547 + "queue-microtask-1.2.3" = { 46458 46548 name = "queue-microtask"; 46459 46549 packageName = "queue-microtask"; 46460 - version = "1.2.2"; 46550 + version = "1.2.3"; 46461 46551 src = fetchurl { 46462 - url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz"; 46463 - sha512 = "dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg=="; 46552 + url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"; 46553 + sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 46464 46554 }; 46465 46555 }; 46466 46556 "quick-format-unescaped-4.0.3" = { ··· 47615 47705 sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; 47616 47706 }; 47617 47707 }; 47618 - "regenerator-runtime-0.13.7" = { 47708 + "regenerator-runtime-0.13.8" = { 47619 47709 name = "regenerator-runtime"; 47620 47710 packageName = "regenerator-runtime"; 47621 - version = "0.13.7"; 47711 + version = "0.13.8"; 47622 47712 src = fetchurl { 47623 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz"; 47624 - sha512 = "a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew=="; 47713 + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.8.tgz"; 47714 + sha512 = "o/ASGwgZ6UiVjspr4YnzHKF1NbBdX+mCPkSeymofk/d7I+csCYn3ZgZMMVtXeecpT8DBiI2nAlYkHd+xNCqu4A=="; 47625 47715 }; 47626 47716 }; 47627 47717 "regenerator-transform-0.14.5" = { ··· 47750 47840 sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; 47751 47841 }; 47752 47842 }; 47753 - "regjsparser-0.6.7" = { 47843 + "regjsparser-0.6.9" = { 47754 47844 name = "regjsparser"; 47755 47845 packageName = "regjsparser"; 47756 - version = "0.6.7"; 47846 + version = "0.6.9"; 47757 47847 src = fetchurl { 47758 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz"; 47759 - sha512 = "ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ=="; 47848 + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz"; 47849 + sha512 = "ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ=="; 47760 47850 }; 47761 47851 }; 47762 47852 "rehype-parse-7.0.1" = { ··· 48911 49001 sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; 48912 49002 }; 48913 49003 }; 48914 - "rollup-2.42.1" = { 49004 + "rollup-2.42.4" = { 48915 49005 name = "rollup"; 48916 49006 packageName = "rollup"; 48917 - version = "2.42.1"; 49007 + version = "2.42.4"; 48918 49008 src = fetchurl { 48919 - url = "https://registry.npmjs.org/rollup/-/rollup-2.42.1.tgz"; 48920 - sha512 = "/y7M2ULg06JOXmMpPzhTeQroJSchy8lX8q6qrjqil0jmLz6ejCWbQzVnWTsdmMQRhfU0QcwtiW8iZlmrGXWV4g=="; 49009 + url = "https://registry.npmjs.org/rollup/-/rollup-2.42.4.tgz"; 49010 + sha512 = "Zqv3EvNfcllBHyyEUM754npqsZw82VIjK34cDQMwrQ1d6aqxzeYu5yFb7smGkPU4C1Bj7HupIMeT6WU7uIdnMw=="; 48921 49011 }; 48922 49012 }; 48923 49013 "rollup-plugin-babel-4.4.0" = { ··· 49791 49881 src = fetchurl { 49792 49882 url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"; 49793 49883 sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 49884 + }; 49885 + }; 49886 + "semver-7.3.5" = { 49887 + name = "semver"; 49888 + packageName = "semver"; 49889 + version = "7.3.5"; 49890 + src = fetchurl { 49891 + url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 49892 + sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 49794 49893 }; 49795 49894 }; 49796 49895 "semver-compare-1.0.0" = { ··· 50927 51026 sha512 = "NFwVLMCqKTocY66gcim0ukF6e31VRDJqDapg5sy3vCHqlD1OCNUXSK/aI4VQEEndDrsnFmQepsL5KpEU0dDRIQ=="; 50928 51027 }; 50929 51028 }; 50930 - "snyk-docker-plugin-4.17.3" = { 51029 + "snyk-docker-plugin-4.19.3" = { 50931 51030 name = "snyk-docker-plugin"; 50932 51031 packageName = "snyk-docker-plugin"; 50933 - version = "4.17.3"; 51032 + version = "4.19.3"; 50934 51033 src = fetchurl { 50935 - url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-4.17.3.tgz"; 50936 - sha512 = "Egqkad3YTP41Dlu19/3A2gQfqf4nxa7C36USQGSXIC5JodPvptObiSLmyQssjxVJ7iCRpw6IxytZVf412KKJCg=="; 51034 + url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-4.19.3.tgz"; 51035 + sha512 = "5WkXyT7uY5NrTOvEqxeMqb6dDcskT3c/gbHUTOyPuvE6tMut+OOYK8RRXbwZFeLzpS8asq4e1R7U7syYG3VXwg=="; 50937 51036 }; 50938 51037 }; 50939 51038 "snyk-go-parser-1.4.1" = { ··· 51044 51143 sha512 = "XYjhOTRPFA7NfDUsH6uH1fbML2OgSFsqdUPbud7x01urNP9CHXgUgAD4NhKMi3dVQK+7IdYadWt0wrFWw4y+qg=="; 51045 51144 }; 51046 51145 }; 51047 - "snyk-python-plugin-1.19.5" = { 51146 + "snyk-python-plugin-1.19.7" = { 51048 51147 name = "snyk-python-plugin"; 51049 51148 packageName = "snyk-python-plugin"; 51050 - version = "1.19.5"; 51149 + version = "1.19.7"; 51051 51150 src = fetchurl { 51052 - url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.5.tgz"; 51053 - sha512 = "wgfhloo6PZ8V+6eIUU7pLcVfHx4yo5LQPPQX6rLfTSZ6p9uRYazIvw/NoUmIjb8Qrn9GdD3zUJY9/83TyTgKLw=="; 51151 + url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.7.tgz"; 51152 + sha512 = "twAGoIgJVSLVzMkuT/n5l9ZDvhMbWH7De6flWiHQB/grthfl3vJDzLCxiTa+6H/IEEYNSv6F/nSrfNh9UbW5/A=="; 51054 51153 }; 51055 51154 }; 51056 51155 "snyk-resolve-1.1.0" = { ··· 51899 51998 sha1 = "6c83aff3692fa61256e0cd197e05e9de157691a6"; 51900 51999 }; 51901 52000 }; 51902 - "split-lines-2.0.0" = { 52001 + "split-lines-2.1.0" = { 51903 52002 name = "split-lines"; 51904 52003 packageName = "split-lines"; 51905 - version = "2.0.0"; 52004 + version = "2.1.0"; 51906 52005 src = fetchurl { 51907 - url = "https://registry.npmjs.org/split-lines/-/split-lines-2.0.0.tgz"; 51908 - sha512 = "gaIdhbqxkB5/VflPXsJwZvEzh/kdwiRPF9iqpkxX4us+lzB8INedFwjCyo6vwuz5x2Ddlnav2zh270CEjCG8mA=="; 52006 + url = "https://registry.npmjs.org/split-lines/-/split-lines-2.1.0.tgz"; 52007 + sha512 = "8dv+1zKgTpfTkOy8XZLFyWrfxO0NV/bj/3EaQ+hBrBxGv2DwiroljPjU8NlCr+59nLnsVm9WYT7lXKwe4TC6bw=="; 51909 52008 }; 51910 52009 }; 51911 52010 "split-on-first-1.1.0" = { ··· 54023 54122 sha512 = "SROWH0rB0DJ+0Ii264cprmNu/NJyZacs5wFD71ya93Cg/oA2lKHgQm4F6j0EWA4ktFMzeuJJm/eX6fka39hEHA=="; 54024 54123 }; 54025 54124 }; 54026 - "svelte2tsx-0.1.182" = { 54125 + "svelte2tsx-0.1.184" = { 54027 54126 name = "svelte2tsx"; 54028 54127 packageName = "svelte2tsx"; 54029 - version = "0.1.182"; 54128 + version = "0.1.184"; 54030 54129 src = fetchurl { 54031 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.1.182.tgz"; 54032 - sha512 = "c0Qnc8sebPt940boE4CvRcmwLu+XRyhQsm89ZPXlxvZ3ea7VQmtWOhWkReSVyxnEFRm7VnrKCrTitZHKGNCptA=="; 54130 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.1.184.tgz"; 54131 + sha512 = "VhmzqF8p5LL390td9mngJ2l1BrlZCY5/4SgYu9NxgYWLo54gyamrC2VNe+y5ZxAC59oxjw6byKbPlIFx0acXjg=="; 54033 54132 }; 54034 54133 }; 54035 54134 "sver-compat-1.5.0" = { ··· 56472 56571 sha512 = "EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw=="; 56473 56572 }; 56474 56573 }; 56475 - "type-fest-0.11.0" = { 56476 - name = "type-fest"; 56477 - packageName = "type-fest"; 56478 - version = "0.11.0"; 56479 - src = fetchurl { 56480 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz"; 56481 - sha512 = "OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ=="; 56482 - }; 56483 - }; 56484 56574 "type-fest-0.12.0" = { 56485 56575 name = "type-fest"; 56486 56576 packageName = "type-fest"; ··· 56533 56623 src = fetchurl { 56534 56624 url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 56535 56625 sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 56626 + }; 56627 + }; 56628 + "type-fest-0.21.3" = { 56629 + name = "type-fest"; 56630 + packageName = "type-fest"; 56631 + version = "0.21.3"; 56632 + src = fetchurl { 56633 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"; 56634 + sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; 56536 56635 }; 56537 56636 }; 56538 56637 "type-fest-0.3.1" = { ··· 56643 56742 sha512 = "7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g=="; 56644 56743 }; 56645 56744 }; 56646 - "typegram-3.2.2" = { 56745 + "typegram-3.2.3" = { 56647 56746 name = "typegram"; 56648 56747 packageName = "typegram"; 56649 - version = "3.2.2"; 56748 + version = "3.2.3"; 56650 56749 src = fetchurl { 56651 - url = "https://registry.npmjs.org/typegram/-/typegram-3.2.2.tgz"; 56652 - sha512 = "PC7MclSZcLnCEnflubX61/YEwZph98EHbCsrL9tFhU5bZYz3uXm3Mc6iseKjiS3VyKOCCyoT3A4ZDtPkoYyucg=="; 56750 + url = "https://registry.npmjs.org/typegram/-/typegram-3.2.3.tgz"; 56751 + sha512 = "zlkY7vNTLcwQhLUyYXAUzRelzH752LBFl8m4u04d5g5P7lM9bGegeIRwzd3mVCHJH6R3s48pKeFTVSdVlN+omg=="; 56653 56752 }; 56654 56753 }; 56655 56754 "typescript-2.9.2" = { ··· 56778 56877 sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ=="; 56779 56878 }; 56780 56879 }; 56781 - "ua-parser-js-0.7.24" = { 56880 + "ua-parser-js-0.7.25" = { 56782 56881 name = "ua-parser-js"; 56783 56882 packageName = "ua-parser-js"; 56784 - version = "0.7.24"; 56883 + version = "0.7.25"; 56785 56884 src = fetchurl { 56786 - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.24.tgz"; 56787 - sha512 = "yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw=="; 56885 + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.25.tgz"; 56886 + sha512 = "8NFExdfI24Ny8R3Vc6+uUytP/I7dpqk3JERlvxPWlrtx5YboqCgxAXYKPAifbPLV2zKbgmmPL53ufW7mUC/VOQ=="; 56788 56887 }; 56789 56888 }; 56790 56889 "uc.micro-1.0.6" = { ··· 56814 56913 sha512 = "L5i5jg/SHkEqzN18gQMTWsZk3KelRsfD1wUVNqtq0kzqWQqcJjyL8yc1o8hJgRrWqrAl2mUFbhfznEIoi7zi2A=="; 56815 56914 }; 56816 56915 }; 56817 - "uglify-js-3.13.1" = { 56916 + "uglify-js-3.13.2" = { 56818 56917 name = "uglify-js"; 56819 56918 packageName = "uglify-js"; 56820 - version = "3.13.1"; 56919 + version = "3.13.2"; 56821 56920 src = fetchurl { 56822 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.1.tgz"; 56823 - sha512 = "EWhx3fHy3M9JbaeTnO+rEqzCe1wtyQClv6q3YWq0voOj4E+bMZBErVS1GAHPDiRGONYq34M1/d8KuQMgvi6Gjw=="; 56921 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.2.tgz"; 56922 + sha512 = "SbMu4D2Vo95LMC/MetNaso1194M1htEA+JrqE9Hk+G2DhI+itfS9TRu9ZKeCahLDNa/J3n4MqUJ/fOHMzQpRWw=="; 56824 56923 }; 56825 56924 }; 56826 56925 "uglify-js-3.4.10" = { ··· 59308 59407 sha512 = "DTMa8QbVmujFPvD3NxoC5jjIXCyCG+cvn3hNzwQRhvhsk8LblNymBZBwzfcDdgEtqsi4O/2AB5HnMIRzxhzEzg=="; 59309 59408 }; 59310 59409 }; 59311 - "vscode-debugadapter-testsupport-1.45.0" = { 59410 + "vscode-debugadapter-testsupport-1.46.0" = { 59312 59411 name = "vscode-debugadapter-testsupport"; 59313 59412 packageName = "vscode-debugadapter-testsupport"; 59314 - version = "1.45.0"; 59413 + version = "1.46.0"; 59315 59414 src = fetchurl { 59316 - url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.45.0.tgz"; 59317 - sha512 = "/5q/F2K1mNLfJWxXStG9pO86mgOeK73PoMJpOBZaniToplrzM7LgFEdXUPlzNH07//XZwzRsCFn7Eq3brqYk6Q=="; 59415 + url = "https://registry.npmjs.org/vscode-debugadapter-testsupport/-/vscode-debugadapter-testsupport-1.46.0.tgz"; 59416 + sha512 = "6n+uu4+Q5sZvN2FgFLNJkyaE6AECYzFh+Hfv+IeJoVKA7KNiQ1SNd3yTsvSFxkS00LmVU6V00XGaqZRlwM15Jg=="; 59318 59417 }; 59319 59418 }; 59320 - "vscode-debugprotocol-1.45.0" = { 59419 + "vscode-debugprotocol-1.46.0" = { 59321 59420 name = "vscode-debugprotocol"; 59322 59421 packageName = "vscode-debugprotocol"; 59323 - version = "1.45.0"; 59422 + version = "1.46.0"; 59324 59423 src = fetchurl { 59325 - url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.45.0.tgz"; 59326 - sha512 = "xU6XtdKJ0waWIt79Zt4WVyIQ3oDkhilku9Shbv7Vc4KXEr/npsf8dhinyIZXSIlH2lzJiE3imp1xbYpyRTIrhg=="; 59424 + url = "https://registry.npmjs.org/vscode-debugprotocol/-/vscode-debugprotocol-1.46.0.tgz"; 59425 + sha512 = "V10u1L679DJZfOtQXhKylJPMqNbhazav4mRxPrBE8/Jpznow1b1j1EGDDvJ4prQ623CLAnvpFfVkVQ+CX3xdtg=="; 59327 59426 }; 59328 59427 }; 59329 59428 "vscode-emmet-helper-1.2.17" = { ··· 60244 60343 sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; 60245 60344 }; 60246 60345 }; 60247 - "webtorrent-0.115.4" = { 60346 + "webtorrent-0.116.0" = { 60248 60347 name = "webtorrent"; 60249 60348 packageName = "webtorrent"; 60250 - version = "0.115.4"; 60349 + version = "0.116.0"; 60251 60350 src = fetchurl { 60252 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.115.4.tgz"; 60253 - sha512 = "JJ3kZKZjM+3n0R0zyHZJARnqBLDfQHbMVarYieQFnZE4a2Ec/RpDP7c/NYeoKyBChsDOwrpxitk6FOmHdZkqyA=="; 60351 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.116.0.tgz"; 60352 + sha512 = "jpptAAME7miPpoaywK+WZgn6CSLEvtqv9/7RUdr+M5vp1HbkVQDf5nX21funEWl955EIDdgzYvegU5JOm9W7cw=="; 60254 60353 }; 60255 60354 }; 60256 60355 "well-known-symbols-2.0.0" = { ··· 60307 60406 sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="; 60308 60407 }; 60309 60408 }; 60310 - "whatwg-url-8.4.0" = { 60409 + "whatwg-url-8.5.0" = { 60311 60410 name = "whatwg-url"; 60312 60411 packageName = "whatwg-url"; 60313 - version = "8.4.0"; 60412 + version = "8.5.0"; 60314 60413 src = fetchurl { 60315 - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz"; 60316 - sha512 = "vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw=="; 60414 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz"; 60415 + sha512 = "fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg=="; 60317 60416 }; 60318 60417 }; 60319 60418 "whatwg-url-compat-0.6.5" = { ··· 62276 62375 "@angular/cli" = nodeEnv.buildNodePackage { 62277 62376 name = "_at_angular_slash_cli"; 62278 62377 packageName = "@angular/cli"; 62279 - version = "11.2.5"; 62378 + version = "11.2.6"; 62280 62379 src = fetchurl { 62281 - url = "https://registry.npmjs.org/@angular/cli/-/cli-11.2.5.tgz"; 62282 - sha512 = "GIwK8l6wtg/++8aDYW++LSf7v1uqDtB6so2rPjNlOm7oYk5iqM73KaorQb/1A52oxWE3IRSJLNQaSyUlWvHvSA=="; 62380 + url = "https://registry.npmjs.org/@angular/cli/-/cli-11.2.6.tgz"; 62381 + sha512 = "67XH3wJgs1YuM4xW5PoouclT57AsfMhiOup2VPfGQn8GNINB4zauJfBotGyb3jQtRSFdwz+bXif6V9MSAw4oHA=="; 62283 62382 }; 62284 62383 dependencies = [ 62285 - sources."@angular-devkit/architect-0.1102.5" 62286 - sources."@angular-devkit/core-11.2.5" 62287 - sources."@angular-devkit/schematics-11.2.5" 62384 + sources."@angular-devkit/architect-0.1102.6" 62385 + sources."@angular-devkit/core-11.2.6" 62386 + sources."@angular-devkit/schematics-11.2.6" 62288 62387 sources."@npmcli/ci-detect-1.3.0" 62289 62388 (sources."@npmcli/git-2.0.6" // { 62290 62389 dependencies = [ ··· 62300 62399 sources."read-package-json-fast-2.0.2" 62301 62400 ]; 62302 62401 }) 62303 - sources."@schematics/angular-11.2.5" 62304 - sources."@schematics/update-0.1102.5" 62402 + sources."@schematics/angular-11.2.6" 62403 + sources."@schematics/update-0.1102.6" 62305 62404 sources."@tootallnate/once-1.1.2" 62306 62405 sources."@yarnpkg/lockfile-1.1.0" 62307 62406 sources."abbrev-1.1.1" ··· 62310 62409 sources."aggregate-error-3.1.0" 62311 62410 sources."ajv-6.12.6" 62312 62411 sources."ansi-colors-4.1.1" 62313 - sources."ansi-escapes-4.3.1" 62412 + sources."ansi-escapes-4.3.2" 62314 62413 sources."ansi-regex-5.0.0" 62315 62414 sources."ansi-styles-4.3.0" 62316 62415 sources."aproba-1.2.0" ··· 62333 62432 sources."brace-expansion-1.1.11" 62334 62433 sources."buffer-5.7.1" 62335 62434 sources."builtins-1.0.3" 62336 - sources."cacache-15.0.5" 62435 + sources."cacache-15.0.6" 62337 62436 sources."caseless-0.12.0" 62338 62437 sources."chalk-4.1.0" 62339 62438 sources."chardet-0.7.0" ··· 62529 62628 sources."tslib-1.14.1" 62530 62629 sources."tunnel-agent-0.6.0" 62531 62630 sources."tweetnacl-0.14.5" 62532 - sources."type-fest-0.11.0" 62631 + sources."type-fest-0.21.3" 62533 62632 sources."unique-filename-1.1.1" 62534 62633 sources."unique-slug-2.0.2" 62535 62634 (sources."universal-analytics-0.4.23" // { ··· 62881 62980 ]; 62882 62981 }) 62883 62982 sources."to-utf8-0.0.1" 62884 - sources."uglify-js-3.13.1" 62983 + sources."uglify-js-3.13.2" 62885 62984 sources."unc-path-regex-0.1.2" 62886 62985 sources."unique-stream-2.3.1" 62887 62986 sources."universalify-0.1.2" ··· 63161 63260 sources."ajv-6.12.6" 63162 63261 sources."ajv-keywords-3.5.2" 63163 63262 sources."ansi-colors-4.1.1" 63164 - sources."ansi-escapes-4.3.1" 63263 + sources."ansi-escapes-4.3.2" 63165 63264 sources."ansi-regex-3.0.0" 63166 63265 sources."ansi-styles-4.3.0" 63167 63266 sources."anymatch-3.1.1" ··· 63176 63275 sources."buffer-5.7.1" 63177 63276 sources."buffer-from-1.1.1" 63178 63277 sources."callsites-3.1.0" 63179 - sources."caniuse-lite-1.0.30001203" 63278 + sources."caniuse-lite-1.0.30001204" 63180 63279 sources."chalk-3.0.0" 63181 63280 sources."chardet-0.7.0" 63182 63281 sources."chokidar-3.5.1" ··· 63197 63296 sources."cross-spawn-7.0.3" 63198 63297 sources."deepmerge-4.2.2" 63199 63298 sources."defaults-1.0.3" 63200 - sources."electron-to-chromium-1.3.693" 63299 + sources."electron-to-chromium-1.3.699" 63201 63300 sources."emoji-regex-8.0.0" 63202 63301 sources."end-of-stream-1.4.4" 63203 63302 sources."enhanced-resolve-4.5.0" ··· 63347 63446 sources."safe-buffer-5.2.1" 63348 63447 sources."safer-buffer-2.1.2" 63349 63448 sources."schema-utils-2.7.0" 63350 - sources."semver-7.3.4" 63449 + sources."semver-7.3.5" 63351 63450 sources."serialize-javascript-5.0.1" 63352 63451 sources."shebang-command-2.0.0" 63353 63452 sources."shebang-regex-3.0.0" ··· 63396 63495 ]; 63397 63496 }) 63398 63497 sources."tslib-1.14.1" 63399 - sources."type-fest-0.11.0" 63498 + sources."type-fest-0.21.3" 63400 63499 sources."typescript-4.1.5" 63401 63500 sources."universalify-2.0.0" 63402 63501 sources."uri-js-4.4.1" ··· 63452 63551 sources."@apollographql/graphql-playground-html-1.6.27" 63453 63552 sources."@apollographql/graphql-upload-8-fork-8.1.3" 63454 63553 sources."@babel/code-frame-7.12.13" 63455 - sources."@babel/compat-data-7.13.11" 63554 + sources."@babel/compat-data-7.13.12" 63456 63555 sources."@babel/core-7.13.10" 63457 63556 sources."@babel/generator-7.13.9" 63458 63557 sources."@babel/helper-annotate-as-pure-7.12.13" ··· 63465 63564 sources."@babel/helper-function-name-7.12.13" 63466 63565 sources."@babel/helper-get-function-arity-7.12.13" 63467 63566 sources."@babel/helper-hoist-variables-7.13.0" 63468 - sources."@babel/helper-member-expression-to-functions-7.13.0" 63469 - sources."@babel/helper-module-imports-7.12.13" 63470 - sources."@babel/helper-module-transforms-7.13.0" 63567 + sources."@babel/helper-member-expression-to-functions-7.13.12" 63568 + sources."@babel/helper-module-imports-7.13.12" 63569 + sources."@babel/helper-module-transforms-7.13.12" 63471 63570 sources."@babel/helper-optimise-call-expression-7.12.13" 63472 63571 sources."@babel/helper-plugin-utils-7.13.0" 63473 63572 sources."@babel/helper-remap-async-to-generator-7.13.0" 63474 - sources."@babel/helper-replace-supers-7.13.0" 63475 - sources."@babel/helper-simple-access-7.12.13" 63573 + sources."@babel/helper-replace-supers-7.13.12" 63574 + sources."@babel/helper-simple-access-7.13.12" 63476 63575 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 63477 63576 sources."@babel/helper-split-export-declaration-7.12.13" 63478 63577 sources."@babel/helper-validator-identifier-7.12.11" ··· 63480 63579 sources."@babel/helper-wrap-function-7.13.0" 63481 63580 sources."@babel/helpers-7.13.10" 63482 63581 sources."@babel/highlight-7.13.10" 63483 - sources."@babel/parser-7.13.11" 63582 + sources."@babel/parser-7.13.12" 63583 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" 63484 63584 sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 63485 63585 sources."@babel/plugin-proposal-class-properties-7.13.0" 63486 63586 sources."@babel/plugin-proposal-dynamic-import-7.13.8" ··· 63491 63591 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 63492 63592 sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 63493 63593 sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 63494 - sources."@babel/plugin-proposal-optional-chaining-7.13.8" 63594 + sources."@babel/plugin-proposal-optional-chaining-7.13.12" 63495 63595 sources."@babel/plugin-proposal-private-methods-7.13.0" 63496 63596 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 63497 63597 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 63542 63642 sources."@babel/plugin-transform-typescript-7.13.0" 63543 63643 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 63544 63644 sources."@babel/plugin-transform-unicode-regex-7.12.13" 63545 - sources."@babel/preset-env-7.13.10" 63645 + sources."@babel/preset-env-7.13.12" 63546 63646 sources."@babel/preset-flow-7.12.13" 63547 63647 sources."@babel/preset-modules-0.1.4" 63548 63648 sources."@babel/preset-typescript-7.13.0" ··· 63556 63656 sources."@babel/runtime-7.13.10" 63557 63657 sources."@babel/template-7.12.13" 63558 63658 sources."@babel/traverse-7.13.0" 63559 - sources."@babel/types-7.13.0" 63659 + sources."@babel/types-7.13.12" 63560 63660 sources."@hapi/address-2.1.4" 63561 63661 sources."@hapi/bourne-1.3.2" 63562 63662 sources."@hapi/hoek-8.5.1" ··· 63607 63707 sources."@types/koa-compose-3.2.5" 63608 63708 sources."@types/long-4.0.1" 63609 63709 sources."@types/mime-1.3.2" 63610 - sources."@types/minimatch-3.0.3" 63710 + sources."@types/minimatch-3.0.4" 63611 63711 sources."@types/node-14.14.35" 63612 63712 (sources."@types/node-fetch-2.5.7" // { 63613 63713 dependencies = [ ··· 63645 63745 sources."strip-ansi-5.2.0" 63646 63746 ]; 63647 63747 }) 63648 - (sources."ansi-escapes-4.3.1" // { 63748 + (sources."ansi-escapes-4.3.2" // { 63649 63749 dependencies = [ 63650 - sources."type-fest-0.11.0" 63750 + sources."type-fest-0.21.3" 63651 63751 ]; 63652 63752 }) 63653 63753 sources."ansi-regex-4.1.0" ··· 63758 63858 sources."call-bind-1.0.2" 63759 63859 sources."call-me-maybe-1.0.1" 63760 63860 sources."camelcase-5.3.1" 63761 - sources."caniuse-lite-1.0.30001203" 63861 + sources."caniuse-lite-1.0.30001204" 63762 63862 sources."caseless-0.12.0" 63763 63863 sources."caw-2.0.1" 63764 63864 sources."chalk-2.4.2" ··· 63887 63987 sources."ecc-jsbn-0.1.2" 63888 63988 sources."ee-first-1.1.1" 63889 63989 sources."ejs-2.7.4" 63890 - sources."electron-to-chromium-1.3.693" 63990 + sources."electron-to-chromium-1.3.699" 63891 63991 sources."emoji-regex-7.0.3" 63892 63992 sources."encodeurl-1.0.2" 63893 63993 sources."end-of-stream-1.4.4" ··· 64217 64317 dependencies = [ 64218 64318 sources."is-wsl-2.2.0" 64219 64319 sources."lru-cache-6.0.0" 64220 - sources."semver-7.3.4" 64320 + sources."semver-7.3.5" 64221 64321 sources."uuid-8.3.2" 64222 64322 sources."which-2.0.2" 64223 64323 ]; ··· 64325 64425 sources."punycode-2.1.1" 64326 64426 sources."qs-6.5.2" 64327 64427 sources."query-string-5.1.1" 64328 - sources."queue-microtask-1.2.2" 64428 + sources."queue-microtask-1.2.3" 64329 64429 sources."range-parser-1.2.1" 64330 64430 (sources."raw-body-2.4.0" // { 64331 64431 dependencies = [ ··· 64347 64447 }) 64348 64448 sources."regenerate-1.4.2" 64349 64449 sources."regenerate-unicode-properties-8.2.0" 64350 - sources."regenerator-runtime-0.13.7" 64450 + sources."regenerator-runtime-0.13.8" 64351 64451 sources."regenerator-transform-0.14.5" 64352 64452 (sources."regex-not-1.0.2" // { 64353 64453 dependencies = [ ··· 64357 64457 }) 64358 64458 sources."regexpu-core-4.7.1" 64359 64459 sources."regjsgen-0.5.2" 64360 - (sources."regjsparser-0.6.7" // { 64460 + (sources."regjsparser-0.6.9" // { 64361 64461 dependencies = [ 64362 64462 sources."jsesc-0.5.0" 64363 64463 ]; ··· 64609 64709 sources."fast-glob-3.2.5" 64610 64710 sources."fill-range-7.0.1" 64611 64711 sources."glob-parent-5.1.2" 64612 - sources."globby-11.0.2" 64712 + sources."globby-11.0.3" 64613 64713 sources."ignore-5.1.8" 64614 64714 sources."is-number-7.0.0" 64615 64715 sources."lru-cache-6.0.0" ··· 64789 64889 sources."@babel/generator-7.13.9" 64790 64890 sources."@babel/helper-validator-identifier-7.12.11" 64791 64891 sources."@babel/highlight-7.13.10" 64792 - sources."@babel/parser-7.13.11" 64892 + sources."@babel/parser-7.13.12" 64793 64893 sources."@babel/template-7.12.13" 64794 - sources."@babel/types-7.13.0" 64894 + sources."@babel/types-7.13.12" 64795 64895 sources."@webassemblyjs/ast-1.11.0" 64796 64896 sources."@webassemblyjs/floating-point-hex-parser-1.11.0" 64797 64897 sources."@webassemblyjs/helper-api-error-1.11.0" ··· 64867 64967 }; 64868 64968 dependencies = [ 64869 64969 sources."@babel/code-frame-7.12.13" 64870 - sources."@babel/compat-data-7.13.11" 64970 + sources."@babel/compat-data-7.13.12" 64871 64971 (sources."@babel/core-7.13.10" // { 64872 64972 dependencies = [ 64873 64973 sources."source-map-0.5.7" ··· 64881 64981 sources."@babel/helper-compilation-targets-7.13.10" 64882 64982 sources."@babel/helper-function-name-7.12.13" 64883 64983 sources."@babel/helper-get-function-arity-7.12.13" 64884 - sources."@babel/helper-member-expression-to-functions-7.13.0" 64885 - sources."@babel/helper-module-imports-7.12.13" 64886 - sources."@babel/helper-module-transforms-7.13.0" 64984 + sources."@babel/helper-member-expression-to-functions-7.13.12" 64985 + sources."@babel/helper-module-imports-7.13.12" 64986 + sources."@babel/helper-module-transforms-7.13.12" 64887 64987 sources."@babel/helper-optimise-call-expression-7.12.13" 64888 - sources."@babel/helper-replace-supers-7.13.0" 64889 - sources."@babel/helper-simple-access-7.12.13" 64988 + sources."@babel/helper-replace-supers-7.13.12" 64989 + sources."@babel/helper-simple-access-7.13.12" 64890 64990 sources."@babel/helper-split-export-declaration-7.12.13" 64891 64991 sources."@babel/helper-validator-identifier-7.12.11" 64892 64992 sources."@babel/helper-validator-option-7.12.17" 64893 64993 sources."@babel/helpers-7.13.10" 64894 64994 sources."@babel/highlight-7.13.10" 64895 - sources."@babel/parser-7.13.11" 64995 + sources."@babel/parser-7.13.12" 64896 64996 sources."@babel/template-7.12.13" 64897 64997 sources."@babel/traverse-7.13.0" 64898 - sources."@babel/types-7.13.0" 64998 + sources."@babel/types-7.13.12" 64899 64999 sources."JSV-4.0.2" 64900 65000 sources."ansi-styles-3.2.1" 64901 65001 sources."array-unique-0.3.2" ··· 64903 65003 sources."balanced-match-1.0.0" 64904 65004 sources."brace-expansion-1.1.11" 64905 65005 sources."browserslist-4.16.3" 64906 - sources."caniuse-lite-1.0.30001203" 65006 + sources."caniuse-lite-1.0.30001204" 64907 65007 sources."chalk-2.4.2" 64908 65008 sources."color-convert-1.9.3" 64909 65009 sources."color-name-1.1.3" ··· 64914 65014 sources."convert-source-map-1.7.0" 64915 65015 sources."debug-4.3.2" 64916 65016 sources."ejs-3.1.6" 64917 - sources."electron-to-chromium-1.3.693" 65017 + sources."electron-to-chromium-1.3.699" 64918 65018 sources."ensure-posix-path-1.1.1" 64919 65019 sources."escalade-3.1.1" 64920 65020 sources."escape-string-regexp-1.0.5" ··· 65007 65107 }; 65008 65108 dependencies = [ 65009 65109 sources."@types/glob-7.1.3" 65010 - sources."@types/minimatch-3.0.3" 65110 + sources."@types/minimatch-3.0.4" 65011 65111 sources."@types/node-14.14.35" 65012 65112 sources."balanced-match-1.0.0" 65013 65113 sources."brace-expansion-1.1.11" ··· 65334 65434 sources."ini-2.0.0" 65335 65435 (sources."inquirer-8.0.0" // { 65336 65436 dependencies = [ 65337 - sources."ansi-escapes-4.3.1" 65437 + sources."ansi-escapes-4.3.2" 65338 65438 sources."ansi-regex-5.0.0" 65339 65439 sources."ansi-styles-4.3.0" 65340 65440 sources."chalk-4.1.0" ··· 65584 65684 sources."tunnel-agent-0.6.0" 65585 65685 sources."tweetnacl-0.14.5" 65586 65686 sources."tweetnacl-util-0.15.1" 65587 - sources."type-fest-0.11.0" 65687 + sources."type-fest-0.21.3" 65588 65688 sources."type-is-1.6.18" 65589 65689 sources."typedarray-0.0.6" 65590 65690 sources."typedarray-to-buffer-3.1.5" 65591 65691 sources."typeforce-1.18.0" 65592 - sources."typegram-3.2.2" 65692 + sources."typegram-3.2.3" 65593 65693 sources."unique-string-2.0.0" 65594 65694 sources."unpipe-1.0.0" 65595 65695 (sources."update-notifier-5.1.0" // { ··· 65597 65697 sources."ansi-styles-4.3.0" 65598 65698 sources."chalk-4.1.0" 65599 65699 sources."import-lazy-2.1.0" 65600 - sources."semver-7.3.4" 65700 + sources."semver-7.3.5" 65601 65701 sources."supports-color-7.2.0" 65602 65702 ]; 65603 65703 }) ··· 66533 66633 sources."safe-buffer-5.1.2" 66534 66634 sources."safe-json-stringify-1.2.0" 66535 66635 sources."safer-buffer-2.1.2" 66536 - (sources."semver-7.3.4" // { 66636 + (sources."semver-7.3.5" // { 66537 66637 dependencies = [ 66538 66638 sources."lru-cache-6.0.0" 66539 66639 sources."yallist-4.0.0" ··· 66716 66816 sources."co-3.1.0" 66717 66817 sources."codepage-1.4.0" 66718 66818 sources."combined-stream-1.0.8" 66719 - sources."commander-7.1.0" 66819 + sources."commander-7.2.0" 66720 66820 sources."compact2string-1.4.1" 66721 66821 sources."concat-map-0.0.1" 66722 66822 (sources."concat-stream-2.0.0" // { ··· 66910 67010 sources."qap-3.3.1" 66911 67011 sources."qs-6.5.2" 66912 67012 sources."query-string-1.0.1" 66913 - sources."queue-microtask-1.2.2" 67013 + sources."queue-microtask-1.2.3" 66914 67014 sources."random-access-file-2.2.0" 66915 67015 sources."random-access-storage-1.4.1" 66916 67016 sources."random-iterate-1.0.1" ··· 67066 67166 sha512 = "9PI2OLv8PmnnZSNP3PN16gr/yMxBJinh/LMgjk66PBfVmAduojFzJ1pTYPE/vb4qBxHYP4BkEbR8Auxa+qyEvw=="; 67067 67167 }; 67068 67168 dependencies = [ 67069 - sources."@jsii/spec-1.25.0" 67169 + sources."@jsii/spec-1.26.0" 67070 67170 sources."@types/node-10.17.55" 67071 67171 sources."ansi-regex-5.0.0" 67072 67172 sources."ansi-styles-4.3.0" ··· 67079 67179 sources."cdk8s-1.0.0-beta.10" 67080 67180 sources."cliui-7.0.4" 67081 67181 sources."clone-2.1.2" 67082 - (sources."codemaker-1.25.0" // { 67182 + (sources."codemaker-1.26.0" // { 67083 67183 dependencies = [ 67084 67184 sources."fs-extra-9.1.0" 67085 67185 ]; ··· 67137 67237 sources."is-weakmap-2.0.1" 67138 67238 sources."is-weakset-2.0.1" 67139 67239 sources."isarray-2.0.5" 67140 - (sources."jsii-1.25.0" // { 67240 + (sources."jsii-1.26.0" // { 67141 67241 dependencies = [ 67142 67242 sources."fs-extra-9.1.0" 67143 67243 sources."yargs-16.2.0" 67144 67244 ]; 67145 67245 }) 67146 - (sources."jsii-pacmak-1.25.0" // { 67246 + (sources."jsii-pacmak-1.26.0" // { 67147 67247 dependencies = [ 67148 67248 sources."fs-extra-9.1.0" 67149 67249 sources."yargs-16.2.0" 67150 67250 ]; 67151 67251 }) 67152 - (sources."jsii-reflect-1.25.0" // { 67252 + (sources."jsii-reflect-1.26.0" // { 67153 67253 dependencies = [ 67154 67254 sources."fs-extra-9.1.0" 67155 67255 sources."yargs-16.2.0" 67156 67256 ]; 67157 67257 }) 67158 - (sources."jsii-rosetta-1.25.0" // { 67258 + (sources."jsii-rosetta-1.26.0" // { 67159 67259 dependencies = [ 67160 67260 sources."fs-extra-9.1.0" 67161 67261 sources."yargs-16.2.0" ··· 67183 67283 sources."object-is-1.1.5" 67184 67284 sources."object-keys-1.1.1" 67185 67285 sources."object.assign-4.1.2" 67186 - sources."oo-ascii-tree-1.25.0" 67286 + sources."oo-ascii-tree-1.26.0" 67187 67287 sources."p-limit-2.3.0" 67188 67288 sources."p-locate-4.1.0" 67189 67289 sources."p-try-2.2.0" ··· 67192 67292 sources."require-directory-2.1.1" 67193 67293 sources."require-main-filename-2.0.0" 67194 67294 sources."rfdc-1.3.0" 67195 - sources."semver-7.3.4" 67295 + sources."semver-7.3.5" 67196 67296 (sources."semver-intersect-1.4.0" // { 67197 67297 dependencies = [ 67198 67298 sources."semver-5.7.1" ··· 67260 67360 }; 67261 67361 dependencies = [ 67262 67362 sources."@cdktf/hcl2json-0.2.0" 67263 - sources."@jsii/spec-1.25.0" 67363 + sources."@jsii/spec-1.26.0" 67264 67364 sources."@skorfmann/ink-confirm-input-3.0.0" 67265 67365 sources."@skorfmann/terraform-cloud-1.9.1" 67266 67366 sources."@types/node-14.14.35" 67267 67367 sources."@types/node-fetch-2.5.8" 67268 67368 sources."@types/yoga-layout-1.9.2" 67269 - (sources."ansi-escapes-4.3.1" // { 67369 + (sources."ansi-escapes-4.3.2" // { 67270 67370 dependencies = [ 67271 - sources."type-fest-0.11.0" 67371 + sources."type-fest-0.21.3" 67272 67372 ]; 67273 67373 }) 67274 67374 sources."ansi-regex-4.1.0" ··· 67319 67419 sources."commonmark-0.29.3" 67320 67420 sources."compress-commons-4.1.0" 67321 67421 sources."concat-map-0.0.1" 67322 - sources."constructs-3.3.68" 67422 + sources."constructs-3.3.71" 67323 67423 sources."convert-to-spaces-1.0.2" 67324 67424 sources."core-util-is-1.0.2" 67325 67425 sources."crc-32-1.2.0" ··· 67399 67499 sources."is-wsl-2.2.0" 67400 67500 sources."isarray-1.0.0" 67401 67501 sources."js-tokens-4.0.0" 67402 - (sources."jsii-1.25.0" // { 67502 + (sources."jsii-1.26.0" // { 67403 67503 dependencies = [ 67404 67504 sources."fs-extra-9.1.0" 67405 67505 sources."jsonfile-6.1.0" ··· 67407 67507 sources."yargs-16.2.0" 67408 67508 ]; 67409 67509 }) 67410 - (sources."jsii-pacmak-1.25.0" // { 67510 + (sources."jsii-pacmak-1.26.0" // { 67411 67511 dependencies = [ 67412 67512 sources."camelcase-6.2.0" 67413 - sources."codemaker-1.25.0" 67513 + sources."codemaker-1.26.0" 67414 67514 sources."decamelize-5.0.0" 67415 67515 sources."escape-string-regexp-4.0.0" 67416 67516 sources."fs-extra-9.1.0" ··· 67419 67519 sources."yargs-16.2.0" 67420 67520 ]; 67421 67521 }) 67422 - (sources."jsii-reflect-1.25.0" // { 67522 + (sources."jsii-reflect-1.26.0" // { 67423 67523 dependencies = [ 67424 67524 sources."fs-extra-9.1.0" 67425 67525 sources."jsonfile-6.1.0" ··· 67427 67527 sources."yargs-16.2.0" 67428 67528 ]; 67429 67529 }) 67430 - (sources."jsii-rosetta-1.25.0" // { 67530 + (sources."jsii-rosetta-1.26.0" // { 67431 67531 dependencies = [ 67432 67532 sources."fs-extra-9.1.0" 67433 67533 sources."jsonfile-6.1.0" ··· 67477 67577 sources."object.assign-4.1.2" 67478 67578 sources."once-1.4.0" 67479 67579 sources."onetime-5.1.2" 67480 - sources."oo-ascii-tree-1.25.0" 67580 + sources."oo-ascii-tree-1.26.0" 67481 67581 sources."open-7.4.2" 67482 67582 sources."p-limit-2.3.0" 67483 67583 sources."p-locate-4.1.0" ··· 67503 67603 sources."rfdc-1.3.0" 67504 67604 sources."safe-buffer-5.1.2" 67505 67605 sources."scheduler-0.18.0" 67506 - sources."semver-7.3.4" 67606 + sources."semver-7.3.5" 67507 67607 (sources."semver-intersect-1.4.0" // { 67508 67608 dependencies = [ 67509 67609 sources."semver-5.7.1" ··· 67594 67694 sources."balanced-match-1.0.0" 67595 67695 sources."brace-expansion-1.1.11" 67596 67696 sources."clean-css-5.1.2" 67597 - sources."commander-7.1.0" 67697 + sources."commander-7.2.0" 67598 67698 sources."concat-map-0.0.1" 67599 67699 sources."fs.realpath-1.0.0" 67600 67700 sources."glob-7.1.6" ··· 68141 68241 sources."rfdc-1.3.0" 68142 68242 sources."rimraf-3.0.2" 68143 68243 sources."safe-buffer-5.1.2" 68144 - sources."semver-7.3.4" 68244 + sources."semver-7.3.5" 68145 68245 sources."setimmediate-1.0.5" 68146 68246 sources."shebang-command-1.2.0" 68147 68247 sources."shebang-regex-1.0.0" ··· 68295 68395 sources."callsites-3.1.0" 68296 68396 sources."camelcase-2.1.1" 68297 68397 sources."camelcase-keys-2.1.0" 68298 - sources."caniuse-lite-1.0.30001203" 68398 + sources."caniuse-lite-1.0.30001204" 68299 68399 sources."capture-stack-trace-1.0.1" 68300 68400 sources."ccount-1.1.0" 68301 68401 (sources."chalk-4.1.0" // { ··· 68393 68493 sources."domutils-1.7.0" 68394 68494 sources."dot-prop-5.3.0" 68395 68495 sources."duplexer3-0.1.4" 68396 - sources."electron-to-chromium-1.3.693" 68496 + sources."electron-to-chromium-1.3.699" 68397 68497 sources."emoji-regex-8.0.0" 68398 68498 sources."end-of-stream-1.4.4" 68399 68499 sources."enquirer-2.3.6" ··· 68927 69027 sources."rimraf-3.0.2" 68928 69028 sources."safe-buffer-5.2.1" 68929 69029 sources."safe-regex-1.1.0" 68930 - sources."semver-7.3.4" 69030 + sources."semver-7.3.5" 68931 69031 (sources."semver-diff-2.1.0" // { 68932 69032 dependencies = [ 68933 69033 sources."semver-5.7.1" ··· 69185 69285 coc-pyright = nodeEnv.buildNodePackage { 69186 69286 name = "coc-pyright"; 69187 69287 packageName = "coc-pyright"; 69188 - version = "1.1.122"; 69288 + version = "1.1.123"; 69189 69289 src = fetchurl { 69190 - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.122.tgz"; 69191 - sha512 = "On0ZR74g6wXH7BjSlfZdG35RYzIRHp7KF0V9gQG5f1cTlfy2T+pjzF5d9gO/cu0P6F1+i2RQ39anJ+FQ5P0wYA=="; 69290 + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.123.tgz"; 69291 + sha512 = "ebNooa4Wg94/jCNpiBi/+a6Kaci6hKUpcht2Ws548LSoI0a/rCAF+UMKfXQi5kVjIdTc8SNUC1pL6GYfna+y8Q=="; 69192 69292 }; 69193 69293 dependencies = [ 69194 - sources."pyright-1.1.123" 69294 + sources."pyright-1.1.125" 69195 69295 ]; 69196 69296 buildInputs = globalBuildInputs; 69197 69297 meta = { ··· 69342 69442 }; 69343 69443 dependencies = [ 69344 69444 sources."@babel/code-frame-7.12.13" 69345 - sources."@babel/compat-data-7.13.11" 69445 + sources."@babel/compat-data-7.13.12" 69346 69446 sources."@babel/core-7.13.10" 69347 69447 sources."@babel/generator-7.13.9" 69348 69448 sources."@babel/helper-compilation-targets-7.13.10" 69349 69449 sources."@babel/helper-function-name-7.12.13" 69350 69450 sources."@babel/helper-get-function-arity-7.12.13" 69351 - sources."@babel/helper-member-expression-to-functions-7.13.0" 69352 - sources."@babel/helper-module-imports-7.12.13" 69353 - sources."@babel/helper-module-transforms-7.13.0" 69451 + sources."@babel/helper-member-expression-to-functions-7.13.12" 69452 + sources."@babel/helper-module-imports-7.13.12" 69453 + sources."@babel/helper-module-transforms-7.13.12" 69354 69454 sources."@babel/helper-optimise-call-expression-7.12.13" 69355 - sources."@babel/helper-replace-supers-7.13.0" 69356 - sources."@babel/helper-simple-access-7.12.13" 69455 + sources."@babel/helper-replace-supers-7.13.12" 69456 + sources."@babel/helper-simple-access-7.13.12" 69357 69457 sources."@babel/helper-split-export-declaration-7.12.13" 69358 69458 sources."@babel/helper-validator-identifier-7.12.11" 69359 69459 sources."@babel/helper-validator-option-7.12.17" ··· 69363 69463 sources."chalk-2.4.2" 69364 69464 ]; 69365 69465 }) 69366 - sources."@babel/parser-7.13.11" 69466 + sources."@babel/parser-7.13.12" 69367 69467 sources."@babel/template-7.12.13" 69368 69468 sources."@babel/traverse-7.13.0" 69369 - sources."@babel/types-7.13.0" 69469 + sources."@babel/types-7.13.12" 69370 69470 sources."@nodelib/fs.scandir-2.1.4" 69371 69471 sources."@nodelib/fs.stat-2.0.4" 69372 69472 sources."@nodelib/fs.walk-1.2.6" ··· 69392 69492 sources."callsites-3.1.0" 69393 69493 sources."camelcase-5.3.1" 69394 69494 sources."camelcase-keys-6.2.2" 69395 - sources."caniuse-lite-1.0.30001203" 69495 + sources."caniuse-lite-1.0.30001204" 69396 69496 (sources."chalk-4.1.0" // { 69397 69497 dependencies = [ 69398 69498 sources."ansi-styles-4.3.0" ··· 69430 69530 sources."domelementtype-1.3.1" 69431 69531 sources."domhandler-2.4.2" 69432 69532 sources."domutils-1.7.0" 69433 - sources."electron-to-chromium-1.3.693" 69533 + sources."electron-to-chromium-1.3.699" 69434 69534 sources."emoji-regex-8.0.0" 69435 69535 sources."entities-1.1.2" 69436 69536 sources."error-ex-1.3.2" ··· 69457 69557 sources."global-modules-2.0.0" 69458 69558 sources."global-prefix-3.0.0" 69459 69559 sources."globals-11.12.0" 69460 - sources."globby-11.0.2" 69560 + sources."globby-11.0.3" 69461 69561 sources."globjoin-0.1.4" 69462 69562 sources."gonzales-pe-4.3.0" 69463 69563 sources."hard-rejection-2.1.0" 69464 69564 sources."has-1.0.3" 69465 69565 sources."has-flag-3.0.0" 69466 - sources."hosted-git-info-4.0.1" 69566 + sources."hosted-git-info-4.0.2" 69467 69567 sources."html-tags-3.1.0" 69468 69568 sources."htmlparser2-3.10.1" 69469 69569 sources."ignore-5.1.8" ··· 69529 69629 sources."node-releases-1.1.71" 69530 69630 (sources."normalize-package-data-3.0.2" // { 69531 69631 dependencies = [ 69532 - sources."semver-7.3.4" 69632 + sources."semver-7.3.5" 69533 69633 ]; 69534 69634 }) 69535 69635 sources."normalize-range-0.1.2" ··· 69570 69670 sources."postcss-syntax-0.36.2" 69571 69671 sources."postcss-value-parser-4.1.0" 69572 69672 sources."punycode-2.1.1" 69573 - sources."queue-microtask-1.2.2" 69673 + sources."queue-microtask-1.2.3" 69574 69674 sources."quick-lru-4.0.1" 69575 69675 (sources."read-pkg-5.2.0" // { 69576 69676 dependencies = [ ··· 69877 69977 sources."enquirer-2.3.6" 69878 69978 sources."escape-string-regexp-1.0.5" 69879 69979 sources."eslint-7.22.0" 69880 - sources."eslint-plugin-vue-7.7.0" 69980 + sources."eslint-plugin-vue-7.8.0" 69881 69981 sources."eslint-scope-5.1.1" 69882 69982 (sources."eslint-utils-2.1.0" // { 69883 69983 dependencies = [ ··· 69958 70058 sources."resolve-1.20.0" 69959 70059 sources."resolve-from-4.0.0" 69960 70060 sources."rimraf-3.0.2" 69961 - sources."semver-7.3.4" 70061 + sources."semver-7.3.5" 69962 70062 sources."shebang-command-2.0.0" 69963 70063 sources."shebang-regex-3.0.0" 69964 70064 (sources."slice-ansi-4.0.0" // { ··· 70352 70452 sources."braces-3.0.2" 70353 70453 sources."builtins-1.0.3" 70354 70454 sources."bytes-3.0.0" 70355 - sources."cacache-15.0.5" 70455 + sources."cacache-15.0.6" 70356 70456 (sources."cacheable-request-6.1.0" // { 70357 70457 dependencies = [ 70358 70458 sources."lowercase-keys-2.0.0" ··· 70495 70595 sources."glob-7.1.6" 70496 70596 sources."glob-parent-5.1.2" 70497 70597 sources."global-dirs-2.1.0" 70498 - sources."globby-11.0.2" 70598 + sources."globby-11.0.3" 70499 70599 (sources."got-9.6.0" // { 70500 70600 dependencies = [ 70501 70601 sources."get-stream-4.1.0" ··· 70508 70608 sources."has-flag-4.0.0" 70509 70609 sources."has-unicode-2.0.1" 70510 70610 sources."has-yarn-2.1.0" 70511 - sources."hosted-git-info-4.0.1" 70611 + sources."hosted-git-info-4.0.2" 70512 70612 sources."http-cache-semantics-4.1.0" 70513 70613 (sources."http-errors-1.7.2" // { 70514 70614 dependencies = [ ··· 70700 70800 sources."semver-6.3.0" 70701 70801 ]; 70702 70802 }) 70703 - sources."pacote-11.3.0" 70803 + sources."pacote-11.3.1" 70704 70804 sources."parent-module-1.0.1" 70705 70805 sources."parseurl-1.3.3" 70706 70806 sources."path-exists-3.0.0" ··· 70727 70827 sources."pupa-2.1.1" 70728 70828 sources."q-1.5.1" 70729 70829 sources."qs-6.5.2" 70730 - sources."queue-microtask-1.2.2" 70830 + sources."queue-microtask-1.2.3" 70731 70831 sources."range-parser-1.2.1" 70732 70832 (sources."raw-body-2.4.0" // { 70733 70833 dependencies = [ ··· 70762 70862 sources."safe-buffer-5.1.2" 70763 70863 sources."safer-buffer-2.1.2" 70764 70864 sources."sax-1.1.4" 70765 - sources."semver-7.3.4" 70865 + sources."semver-7.3.5" 70766 70866 (sources."semver-diff-3.1.1" // { 70767 70867 dependencies = [ 70768 70868 sources."semver-6.3.0" ··· 70894 70994 sources."@mrmlnc/readdir-enhanced-2.2.1" 70895 70995 sources."@nodelib/fs.stat-1.1.3" 70896 70996 sources."@types/glob-7.1.3" 70897 - sources."@types/minimatch-3.0.3" 70997 + sources."@types/minimatch-3.0.4" 70898 70998 sources."@types/minimist-1.2.1" 70899 70999 sources."@types/node-14.14.35" 70900 71000 sources."@types/normalize-package-data-2.4.0" ··· 71363 71463 sources."performance-now-2.1.0" 71364 71464 sources."process-nextick-args-2.0.1" 71365 71465 sources."pseudomap-1.0.2" 71366 - sources."qs-6.10.0" 71466 + sources."qs-6.10.1" 71367 71467 sources."quicktask-1.1.0" 71368 71468 sources."raf-3.3.2" 71369 71469 sources."readable-stream-2.3.7" ··· 72261 72361 sources."fs.realpath-1.0.0" 72262 72362 sources."glob-7.1.6" 72263 72363 sources."glob-parent-5.1.2" 72264 - sources."globby-11.0.2" 72364 + sources."globby-11.0.3" 72265 72365 sources."graceful-fs-4.2.6" 72266 72366 sources."ignore-5.1.8" 72267 72367 sources."indent-string-4.0.0" ··· 72287 72387 sources."path-is-absolute-1.0.1" 72288 72388 sources."path-type-4.0.0" 72289 72389 sources."picomatch-2.2.2" 72290 - sources."queue-microtask-1.2.2" 72390 + sources."queue-microtask-1.2.3" 72291 72391 sources."reusify-1.0.4" 72292 72392 sources."rimraf-3.0.2" 72293 72393 sources."run-parallel-1.2.0" ··· 72347 72447 elasticdump = nodeEnv.buildNodePackage { 72348 72448 name = "elasticdump"; 72349 72449 packageName = "elasticdump"; 72350 - version = "6.66.1"; 72450 + version = "6.66.2"; 72351 72451 src = fetchurl { 72352 - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.66.1.tgz"; 72353 - sha512 = "Bz3addITPTKoIpVP7UVFlszh5JkqeuA7+6zIT9odBD5sJ/bHF3ZN5zQJ73WiY2nyifp0q2HzEwa1u1+ULDITAg=="; 72452 + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.66.2.tgz"; 72453 + sha512 = "9vWIUjRfuuOKu+qEgE1taqxx6yXX2OuD3yxxiwnCmiCTk+kq1QAu24rbDe5pdFvsBXzgTa6NT4dZ6i76uXgd6Q=="; 72354 72454 }; 72355 72455 dependencies = [ 72356 72456 sources."@fast-csv/format-4.3.5" ··· 72547 72647 sources."@types/glob-7.1.3" 72548 72648 sources."@types/http-cache-semantics-4.0.0" 72549 72649 sources."@types/keyv-3.1.1" 72550 - sources."@types/minimatch-3.0.3" 72650 + sources."@types/minimatch-3.0.4" 72551 72651 sources."@types/node-14.14.35" 72552 72652 sources."@types/responselike-1.0.0" 72553 72653 sources."@types/yauzl-2.9.1" 72554 72654 sources."abbrev-1.1.1" 72555 72655 sources."ajv-6.12.6" 72556 - (sources."ansi-escapes-4.3.1" // { 72656 + (sources."ansi-escapes-4.3.2" // { 72557 72657 dependencies = [ 72558 - sources."type-fest-0.11.0" 72658 + sources."type-fest-0.21.3" 72559 72659 ]; 72560 72660 }) 72561 72661 sources."ansi-regex-5.0.0" ··· 72981 73081 sources."safe-buffer-5.2.1" 72982 73082 sources."safer-buffer-2.1.2" 72983 73083 sources."sax-1.2.4" 72984 - sources."semver-7.3.4" 73084 + sources."semver-7.3.5" 72985 73085 sources."semver-compare-1.0.0" 72986 73086 sources."serialize-error-7.0.1" 72987 73087 sources."set-blocking-2.0.0" ··· 73124 73224 }; 73125 73225 dependencies = [ 73126 73226 sources."@babel/code-frame-7.12.13" 73127 - sources."@babel/compat-data-7.13.11" 73227 + sources."@babel/compat-data-7.13.12" 73128 73228 (sources."@babel/core-7.13.10" // { 73129 73229 dependencies = [ 73130 73230 sources."semver-6.3.0" ··· 73139 73239 }) 73140 73240 sources."@babel/helper-function-name-7.12.13" 73141 73241 sources."@babel/helper-get-function-arity-7.12.13" 73142 - sources."@babel/helper-member-expression-to-functions-7.13.0" 73143 - sources."@babel/helper-module-imports-7.12.13" 73144 - sources."@babel/helper-module-transforms-7.13.0" 73242 + sources."@babel/helper-member-expression-to-functions-7.13.12" 73243 + sources."@babel/helper-module-imports-7.13.12" 73244 + sources."@babel/helper-module-transforms-7.13.12" 73145 73245 sources."@babel/helper-optimise-call-expression-7.12.13" 73146 73246 sources."@babel/helper-plugin-utils-7.13.0" 73147 - sources."@babel/helper-replace-supers-7.13.0" 73148 - sources."@babel/helper-simple-access-7.12.13" 73247 + sources."@babel/helper-replace-supers-7.13.12" 73248 + sources."@babel/helper-simple-access-7.13.12" 73149 73249 sources."@babel/helper-split-export-declaration-7.12.13" 73150 73250 sources."@babel/helper-validator-identifier-7.12.11" 73151 73251 sources."@babel/helper-validator-option-7.12.17" 73152 73252 sources."@babel/helpers-7.13.10" 73153 73253 sources."@babel/highlight-7.13.10" 73154 - sources."@babel/parser-7.13.11" 73254 + sources."@babel/parser-7.13.12" 73155 73255 sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 73156 73256 sources."@babel/plugin-syntax-jsx-7.12.13" 73157 73257 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 73158 73258 sources."@babel/plugin-transform-destructuring-7.13.0" 73159 73259 sources."@babel/plugin-transform-parameters-7.13.0" 73160 - sources."@babel/plugin-transform-react-jsx-7.12.17" 73260 + sources."@babel/plugin-transform-react-jsx-7.13.12" 73161 73261 sources."@babel/template-7.12.13" 73162 73262 sources."@babel/traverse-7.13.0" 73163 - sources."@babel/types-7.13.0" 73263 + sources."@babel/types-7.13.12" 73164 73264 sources."@sindresorhus/is-4.0.0" 73165 73265 sources."@szmarczak/http-timer-4.0.5" 73166 73266 sources."@types/cacheable-request-6.0.1" ··· 73172 73272 sources."@types/responselike-1.0.0" 73173 73273 sources."@types/yoga-layout-1.9.2" 73174 73274 sources."ajv-6.12.6" 73175 - (sources."ansi-escapes-4.3.1" // { 73275 + (sources."ansi-escapes-4.3.2" // { 73176 73276 dependencies = [ 73177 - sources."type-fest-0.11.0" 73277 + sources."type-fest-0.21.3" 73178 73278 ]; 73179 73279 }) 73180 73280 sources."ansi-regex-5.0.0" ··· 73202 73302 sources."quick-lru-4.0.1" 73203 73303 ]; 73204 73304 }) 73205 - sources."caniuse-lite-1.0.30001203" 73305 + sources."caniuse-lite-1.0.30001204" 73206 73306 sources."chalk-2.4.2" 73207 73307 sources."ci-info-2.0.0" 73208 73308 sources."cli-boxes-2.2.1" ··· 73218 73318 sources."concat-map-0.0.1" 73219 73319 (sources."conf-7.1.2" // { 73220 73320 dependencies = [ 73221 - sources."semver-7.3.4" 73321 + sources."semver-7.3.5" 73222 73322 ]; 73223 73323 }) 73224 73324 sources."convert-source-map-1.7.0" ··· 73239 73339 }) 73240 73340 sources."defer-to-connect-2.0.1" 73241 73341 sources."dot-prop-5.3.0" 73242 - sources."electron-to-chromium-1.3.693" 73342 + sources."electron-to-chromium-1.3.699" 73243 73343 sources."emoji-regex-8.0.0" 73244 73344 sources."emojilib-2.4.0" 73245 73345 sources."end-of-stream-1.4.4" ··· 73500 73600 sources."@fluentui/date-time-utilities-7.9.1" 73501 73601 sources."@fluentui/dom-utilities-1.1.2" 73502 73602 sources."@fluentui/keyboard-key-0.2.14" 73503 - sources."@fluentui/react-7.165.0" 73603 + sources."@fluentui/react-7.165.1" 73504 73604 sources."@fluentui/react-focus-7.17.6" 73505 73605 sources."@fluentui/react-window-provider-1.0.2" 73506 73606 sources."@fluentui/theme-1.7.4" ··· 73541 73641 sources."@types/lodash-4.14.161" 73542 73642 sources."@types/material-design-lite-1.1.16" 73543 73643 sources."@types/mime-1.3.2" 73544 - sources."@types/minimatch-3.0.3" 73644 + sources."@types/minimatch-3.0.4" 73545 73645 sources."@types/minimist-1.2.0" 73546 73646 sources."@types/mithril-2.0.3" 73547 73647 sources."@types/mkdirp-1.0.1" ··· 73748 73848 ]; 73749 73849 }) 73750 73850 sources."bytes-3.1.0" 73751 - (sources."cacache-15.0.5" // { 73851 + (sources."cacache-15.0.6" // { 73752 73852 dependencies = [ 73753 73853 sources."chownr-2.0.0" 73754 73854 sources."fs-minipass-2.1.0" ··· 74541 74641 sources."object.map-1.0.1" 74542 74642 sources."object.pick-1.3.0" 74543 74643 sources."object.reduce-1.0.1" 74544 - sources."office-ui-fabric-react-7.165.0" 74644 + sources."office-ui-fabric-react-7.165.1" 74545 74645 sources."on-finished-2.3.0" 74546 74646 sources."on-headers-1.0.2" 74547 74647 sources."once-1.4.0" ··· 74701 74801 sources."qs-6.7.0" 74702 74802 sources."querystring-0.2.0" 74703 74803 sources."querystring-es3-0.2.1" 74704 - sources."queue-microtask-1.2.2" 74804 + sources."queue-microtask-1.2.3" 74705 74805 sources."randombytes-2.1.0" 74706 74806 sources."randomfill-1.0.4" 74707 74807 sources."range-parser-1.2.1" ··· 74772 74872 sources."sax-1.2.4" 74773 74873 sources."scheduler-0.19.1" 74774 74874 sources."schema-utils-2.7.1" 74775 - sources."semver-7.3.4" 74875 + sources."semver-7.3.5" 74776 74876 sources."semver-greatest-satisfied-range-1.1.0" 74777 74877 (sources."send-0.17.1" // { 74778 74878 dependencies = [ ··· 75295 75395 sources."require-from-string-2.0.2" 75296 75396 sources."resolve-from-4.0.0" 75297 75397 sources."rimraf-3.0.2" 75298 - sources."semver-7.3.4" 75398 + sources."semver-7.3.5" 75299 75399 sources."shebang-command-2.0.0" 75300 75400 sources."shebang-regex-3.0.0" 75301 75401 (sources."slice-ansi-4.0.0" // { ··· 75463 75563 sources."require-from-string-2.0.2" 75464 75564 sources."resolve-from-4.0.0" 75465 75565 sources."rimraf-3.0.2" 75466 - sources."semver-7.3.4" 75566 + sources."semver-7.3.5" 75467 75567 sources."shebang-command-2.0.0" 75468 75568 sources."shebang-regex-3.0.0" 75469 75569 (sources."slice-ansi-4.0.0" // { ··· 75531 75631 }; 75532 75632 dependencies = [ 75533 75633 sources."@babel/code-frame-7.12.13" 75534 - sources."@babel/compat-data-7.13.11" 75634 + sources."@babel/compat-data-7.13.12" 75535 75635 (sources."@babel/core-7.9.0" // { 75536 75636 dependencies = [ 75537 75637 sources."semver-5.7.1" ··· 75556 75656 sources."@babel/helper-function-name-7.12.13" 75557 75657 sources."@babel/helper-get-function-arity-7.12.13" 75558 75658 sources."@babel/helper-hoist-variables-7.13.0" 75559 - sources."@babel/helper-member-expression-to-functions-7.13.0" 75560 - sources."@babel/helper-module-imports-7.12.13" 75561 - sources."@babel/helper-module-transforms-7.13.0" 75659 + sources."@babel/helper-member-expression-to-functions-7.13.12" 75660 + sources."@babel/helper-module-imports-7.13.12" 75661 + sources."@babel/helper-module-transforms-7.13.12" 75562 75662 sources."@babel/helper-optimise-call-expression-7.12.13" 75563 75663 sources."@babel/helper-plugin-utils-7.13.0" 75564 75664 sources."@babel/helper-remap-async-to-generator-7.13.0" 75565 - sources."@babel/helper-replace-supers-7.13.0" 75566 - sources."@babel/helper-simple-access-7.12.13" 75665 + sources."@babel/helper-replace-supers-7.13.12" 75666 + sources."@babel/helper-simple-access-7.13.12" 75567 75667 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 75568 75668 sources."@babel/helper-split-export-declaration-7.12.13" 75569 75669 sources."@babel/helper-validator-identifier-7.12.11" ··· 75575 75675 sources."chalk-2.4.2" 75576 75676 ]; 75577 75677 }) 75578 - sources."@babel/parser-7.13.11" 75678 + sources."@babel/parser-7.13.12" 75579 75679 sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 75580 75680 sources."@babel/plugin-proposal-class-properties-7.12.13" 75581 75681 sources."@babel/plugin-proposal-dynamic-import-7.13.8" ··· 75587 75687 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 75588 75688 sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 75589 75689 sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 75590 - sources."@babel/plugin-proposal-optional-chaining-7.13.8" 75690 + sources."@babel/plugin-proposal-optional-chaining-7.13.12" 75591 75691 sources."@babel/plugin-proposal-private-methods-7.13.0" 75592 75692 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 75593 75693 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 75632 75732 sources."@babel/plugin-transform-parameters-7.13.0" 75633 75733 sources."@babel/plugin-transform-property-literals-7.12.13" 75634 75734 sources."@babel/plugin-transform-react-display-name-7.12.13" 75635 - sources."@babel/plugin-transform-react-jsx-7.12.17" 75735 + sources."@babel/plugin-transform-react-jsx-7.13.12" 75636 75736 sources."@babel/plugin-transform-react-jsx-self-7.12.13" 75637 75737 sources."@babel/plugin-transform-react-jsx-source-7.12.13" 75638 75738 sources."@babel/plugin-transform-regenerator-7.12.13" ··· 75660 75760 sources."@babel/runtime-7.13.10" 75661 75761 sources."@babel/template-7.12.13" 75662 75762 sources."@babel/traverse-7.13.0" 75663 - sources."@babel/types-7.13.0" 75763 + sources."@babel/types-7.13.12" 75664 75764 sources."@expo/apple-utils-0.0.0-alpha.17" 75665 75765 sources."@expo/bunyan-4.0.0" 75666 75766 sources."@expo/config-3.3.33" ··· 75844 75944 sources."@types/istanbul-reports-1.1.2" 75845 75945 sources."@types/json-schema-7.0.7" 75846 75946 sources."@types/keyv-3.1.1" 75847 - sources."@types/minimatch-3.0.3" 75947 + sources."@types/minimatch-3.0.4" 75848 75948 sources."@types/node-9.6.61" 75849 75949 sources."@types/q-1.5.4" 75850 75950 sources."@types/responselike-1.0.0" ··· 75914 76014 ]; 75915 76015 }) 75916 76016 sources."ansi-colors-3.2.4" 75917 - (sources."ansi-escapes-4.3.1" // { 76017 + (sources."ansi-escapes-4.3.2" // { 75918 76018 dependencies = [ 75919 - sources."type-fest-0.11.0" 76019 + sources."type-fest-0.21.3" 75920 76020 ]; 75921 76021 }) 75922 76022 sources."ansi-html-0.0.7" ··· 76056 76156 sources."builtin-status-codes-3.0.0" 76057 76157 sources."builtins-1.0.3" 76058 76158 sources."bytes-3.0.0" 76059 - (sources."cacache-15.0.5" // { 76159 + (sources."cacache-15.0.6" // { 76060 76160 dependencies = [ 76061 76161 sources."minipass-3.1.3" 76062 76162 sources."mkdirp-1.0.4" ··· 76079 76179 }) 76080 76180 sources."camelcase-5.3.1" 76081 76181 sources."caniuse-api-3.0.0" 76082 - sources."caniuse-lite-1.0.30001203" 76182 + sources."caniuse-lite-1.0.30001204" 76083 76183 sources."caseless-0.12.0" 76084 76184 (sources."chalk-4.1.0" // { 76085 76185 dependencies = [ ··· 76352 76452 sources."duplexify-3.7.1" 76353 76453 sources."ecc-jsbn-0.1.2" 76354 76454 sources."ee-first-1.1.1" 76355 - sources."electron-to-chromium-1.3.693" 76455 + sources."electron-to-chromium-1.3.699" 76356 76456 (sources."elliptic-6.5.4" // { 76357 76457 dependencies = [ 76358 76458 sources."bn.js-4.12.0" ··· 76985 77085 sources."npm-packlist-2.1.4" 76986 77086 (sources."npm-pick-manifest-6.1.1" // { 76987 77087 dependencies = [ 76988 - sources."hosted-git-info-4.0.1" 77088 + sources."hosted-git-info-4.0.2" 76989 77089 sources."npm-package-arg-8.1.2" 76990 - sources."semver-7.3.4" 77090 + sources."semver-7.3.5" 76991 77091 ]; 76992 77092 }) 76993 77093 (sources."npm-registry-fetch-9.0.0" // { 76994 77094 dependencies = [ 76995 - sources."hosted-git-info-4.0.1" 77095 + sources."hosted-git-info-4.0.2" 76996 77096 sources."minipass-3.1.3" 76997 77097 sources."npm-package-arg-8.1.2" 76998 - sources."semver-7.3.4" 77098 + sources."semver-7.3.5" 76999 77099 ]; 77000 77100 }) 77001 77101 sources."npm-run-path-2.0.2" ··· 77087 77187 sources."semver-6.3.0" 77088 77188 ]; 77089 77189 }) 77090 - (sources."pacote-11.3.0" // { 77190 + (sources."pacote-11.3.1" // { 77091 77191 dependencies = [ 77092 - sources."hosted-git-info-4.0.1" 77192 + sources."hosted-git-info-4.0.2" 77093 77193 sources."minipass-3.1.3" 77094 77194 sources."mkdirp-1.0.4" 77095 77195 sources."npm-package-arg-8.1.2" 77096 77196 sources."rimraf-3.0.2" 77097 - sources."semver-7.3.4" 77197 + sources."semver-7.3.5" 77098 77198 ]; 77099 77199 }) 77100 77200 sources."pako-1.0.11" ··· 77332 77432 sources."querystring-0.2.1" 77333 77433 sources."querystring-es3-0.2.1" 77334 77434 sources."querystringify-2.2.0" 77335 - sources."queue-microtask-1.2.2" 77435 + sources."queue-microtask-1.2.3" 77336 77436 sources."quick-lru-5.1.1" 77337 77437 sources."randombytes-2.1.0" 77338 77438 sources."randomfill-1.0.4" ··· 77380 77480 sources."recursive-readdir-2.2.2" 77381 77481 sources."regenerate-1.4.2" 77382 77482 sources."regenerate-unicode-properties-8.2.0" 77383 - sources."regenerator-runtime-0.13.7" 77483 + sources."regenerator-runtime-0.13.8" 77384 77484 sources."regenerator-transform-0.14.5" 77385 77485 sources."regex-not-1.0.2" 77386 77486 sources."regexp.prototype.flags-1.3.1" ··· 77388 77488 sources."registry-auth-token-3.3.2" 77389 77489 sources."registry-url-3.1.0" 77390 77490 sources."regjsgen-0.5.2" 77391 - (sources."regjsparser-0.6.7" // { 77491 + (sources."regjsparser-0.6.9" // { 77392 77492 dependencies = [ 77393 77493 sources."jsesc-0.5.0" 77394 77494 ]; ··· 78282 78382 }) 78283 78383 (sources."@oclif/config-1.17.0" // { 78284 78384 dependencies = [ 78285 - sources."globby-11.0.2" 78385 + sources."globby-11.0.3" 78286 78386 sources."tslib-2.1.0" 78287 78387 ]; 78288 78388 }) ··· 78652 78752 sources."punycode-2.1.1" 78653 78753 sources."qs-6.5.2" 78654 78754 sources."query-string-5.1.1" 78655 - sources."queue-microtask-1.2.2" 78755 + sources."queue-microtask-1.2.3" 78656 78756 (sources."readable-stream-2.3.7" // { 78657 78757 dependencies = [ 78658 78758 sources."safe-buffer-5.1.2" ··· 78673 78773 sources."safe-buffer-5.2.1" 78674 78774 sources."safe-regex-1.1.0" 78675 78775 sources."safer-buffer-2.1.2" 78676 - sources."semver-7.3.4" 78776 + sources."semver-7.3.5" 78677 78777 (sources."set-value-2.0.1" // { 78678 78778 dependencies = [ 78679 78779 sources."extend-shallow-2.0.1" ··· 78807 78907 firebase-tools = nodeEnv.buildNodePackage { 78808 78908 name = "firebase-tools"; 78809 78909 packageName = "firebase-tools"; 78810 - version = "9.6.1"; 78910 + version = "9.7.0"; 78811 78911 src = fetchurl { 78812 - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.6.1.tgz"; 78813 - sha512 = "Av2RMjTVJtFthl+XTfgtvbXY6K19GgjV/kyeqSkLklmWDpJle8dYhsodosx5tquBsLyOQQxrkpC4cZcGk3+IoA=="; 78912 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.7.0.tgz"; 78913 + sha512 = "mQaNZ0EE/lOFIc7ycLRSsyWSWKqAAH1/0ND9V9A8HFqu3tAdfTfhxiUUj8dDv1u0u4YVG5hZjpco+AmxeJEnlg=="; 78814 78914 }; 78815 78915 dependencies = [ 78816 78916 sources."@apidevtools/json-schema-ref-parser-9.0.7" ··· 78821 78921 sources."@google-cloud/promisify-2.0.3" 78822 78922 (sources."@google-cloud/pubsub-2.10.0" // { 78823 78923 dependencies = [ 78824 - sources."google-auth-library-7.0.2" 78924 + sources."google-auth-library-7.0.3" 78825 78925 ]; 78826 78926 }) 78827 - (sources."@grpc/grpc-js-1.2.11" // { 78927 + (sources."@grpc/grpc-js-1.2.12" // { 78828 78928 dependencies = [ 78829 78929 sources."semver-6.3.0" 78830 78930 ]; ··· 78835 78935 sources."@opentelemetry/context-base-0.12.0" 78836 78936 (sources."@opentelemetry/core-0.12.0" // { 78837 78937 dependencies = [ 78838 - sources."semver-7.3.4" 78938 + sources."semver-7.3.5" 78839 78939 ]; 78840 78940 }) 78841 78941 sources."@opentelemetry/resources-0.12.0" ··· 78858 78958 sources."@types/duplexify-3.6.0" 78859 78959 sources."@types/glob-7.1.3" 78860 78960 sources."@types/long-4.0.1" 78861 - sources."@types/minimatch-3.0.3" 78961 + sources."@types/minimatch-3.0.4" 78862 78962 sources."@types/node-14.14.35" 78863 78963 sources."JSONStream-1.3.5" 78864 78964 sources."abbrev-1.1.1" ··· 79011 79111 sources."cookie-0.4.0" 79012 79112 sources."cookie-signature-1.0.6" 79013 79113 sources."core-util-is-1.0.2" 79114 + sources."cors-2.8.5" 79014 79115 sources."crc-32-1.2.0" 79015 79116 sources."crc32-stream-4.0.2" 79016 79117 (sources."cross-env-5.2.1" // { ··· 79079 79180 sources."events-listener-1.1.0" 79080 79181 (sources."exegesis-2.5.6" // { 79081 79182 dependencies = [ 79082 - sources."semver-7.3.4" 79183 + sources."semver-7.3.5" 79083 79184 ]; 79084 79185 }) 79085 79186 sources."exegesis-express-2.0.0" ··· 79183 79284 sources."google-auth-library-6.1.6" 79184 79285 (sources."google-gax-2.11.2" // { 79185 79286 dependencies = [ 79186 - sources."google-auth-library-7.0.2" 79287 + sources."google-auth-library-7.0.3" 79187 79288 ]; 79188 79289 }) 79189 79290 sources."google-p12-pem-3.0.3" ··· 79358 79459 (sources."node-gyp-7.1.2" // { 79359 79460 dependencies = [ 79360 79461 sources."mkdirp-1.0.4" 79361 - sources."semver-7.3.4" 79462 + sources."semver-7.3.5" 79362 79463 sources."tar-6.1.0" 79363 79464 sources."which-2.0.2" 79364 79465 ]; ··· 79723 79824 sources."@types/minimist-1.2.1" 79724 79825 sources."@types/normalize-package-data-2.4.0" 79725 79826 sources."aggregate-error-3.1.0" 79726 - sources."ansi-escapes-4.3.1" 79827 + sources."ansi-escapes-4.3.2" 79727 79828 sources."ansi-regex-5.0.0" 79728 79829 sources."ansi-styles-4.3.0" 79729 79830 sources."arrify-2.0.1" ··· 79760 79861 sources."hard-rejection-2.1.0" 79761 79862 sources."has-1.0.3" 79762 79863 sources."has-flag-4.0.0" 79763 - sources."hosted-git-info-4.0.1" 79864 + sources."hosted-git-info-4.0.2" 79764 79865 sources."human-signals-2.1.0" 79765 79866 sources."iconv-lite-0.4.24" 79766 79867 sources."indent-string-4.0.0" ··· 79836 79937 sources."run-async-2.4.1" 79837 79938 sources."rxjs-6.6.6" 79838 79939 sources."safer-buffer-2.1.2" 79839 - sources."semver-7.3.4" 79940 + sources."semver-7.3.5" 79840 79941 sources."shebang-command-2.0.0" 79841 79942 sources."shebang-regex-3.0.0" 79842 79943 sources."signal-exit-3.0.3" ··· 79861 79962 sources."tmp-0.0.33" 79862 79963 sources."trim-newlines-3.0.0" 79863 79964 sources."tslib-1.14.1" 79864 - sources."type-fest-0.11.0" 79965 + sources."type-fest-0.21.3" 79865 79966 sources."validate-npm-package-license-3.0.4" 79866 79967 sources."which-2.0.2" 79867 79968 sources."wrappy-1.0.2" ··· 80632 80733 sources."strip-ansi-5.2.0" 80633 80734 ]; 80634 80735 }) 80635 - sources."ansi-escapes-4.3.1" 80736 + sources."ansi-escapes-4.3.2" 80636 80737 sources."ansi-regex-5.0.0" 80637 80738 sources."ansi-styles-4.3.0" 80638 80739 sources."arrify-1.0.1" ··· 80711 80812 sources."has-1.0.3" 80712 80813 sources."has-flag-4.0.0" 80713 80814 sources."has-yarn-2.1.0" 80714 - sources."hosted-git-info-4.0.1" 80815 + sources."hosted-git-info-4.0.2" 80715 80816 sources."http-cache-semantics-4.1.0" 80716 80817 sources."human-signals-2.1.0" 80717 80818 sources."iconv-lite-0.4.24" ··· 80838 80939 sources."rxjs-6.6.6" 80839 80940 sources."safe-buffer-5.2.1" 80840 80941 sources."safer-buffer-2.1.2" 80841 - sources."semver-7.3.4" 80942 + sources."semver-7.3.5" 80842 80943 (sources."semver-diff-3.1.1" // { 80843 80944 dependencies = [ 80844 80945 sources."semver-6.3.0" ··· 80863 80964 sources."to-readable-stream-1.0.0" 80864 80965 sources."trim-newlines-3.0.0" 80865 80966 sources."tslib-1.14.1" 80866 - sources."type-fest-0.11.0" 80967 + sources."type-fest-0.21.3" 80867 80968 sources."typedarray-to-buffer-3.1.5" 80868 80969 sources."unique-string-2.0.0" 80869 80970 sources."update-notifier-5.1.0" ··· 80916 81017 sources."@exodus/schemasafe-1.0.0-rc.3" 80917 81018 sources."@graphql-cli/common-4.1.0" 80918 81019 sources."@graphql-cli/init-4.1.0" 80919 - (sources."@graphql-tools/batch-execute-7.0.0" // { 81020 + (sources."@graphql-tools/batch-execute-7.1.0" // { 80920 81021 dependencies = [ 80921 - (sources."@graphql-tools/utils-7.6.0" // { 80922 - dependencies = [ 80923 - sources."tslib-2.1.0" 80924 - ]; 80925 - }) 81022 + sources."@graphql-tools/utils-7.7.1" 81023 + sources."tslib-2.1.0" 80926 81024 ]; 80927 81025 }) 80928 - (sources."@graphql-tools/delegate-7.0.10" // { 81026 + (sources."@graphql-tools/delegate-7.1.1" // { 80929 81027 dependencies = [ 80930 - sources."@graphql-tools/utils-7.6.0" 81028 + sources."@graphql-tools/utils-7.7.1" 80931 81029 sources."tslib-2.1.0" 80932 81030 ]; 80933 81031 }) 80934 81032 (sources."@graphql-tools/graphql-file-loader-6.2.7" // { 80935 81033 dependencies = [ 80936 - sources."@graphql-tools/utils-7.6.0" 81034 + sources."@graphql-tools/utils-7.7.1" 80937 81035 sources."tslib-2.1.0" 80938 81036 ]; 80939 81037 }) ··· 80944 81042 }) 80945 81043 (sources."@graphql-tools/json-file-loader-6.2.6" // { 80946 81044 dependencies = [ 80947 - (sources."@graphql-tools/utils-7.6.0" // { 81045 + (sources."@graphql-tools/utils-7.7.1" // { 80948 81046 dependencies = [ 80949 81047 sources."tslib-2.1.0" 80950 81048 ]; ··· 80952 81050 ]; 80953 81051 }) 80954 81052 sources."@graphql-tools/load-6.2.4" 80955 - (sources."@graphql-tools/merge-6.2.10" // { 81053 + (sources."@graphql-tools/merge-6.2.11" // { 80956 81054 dependencies = [ 80957 - sources."@graphql-tools/utils-7.6.0" 81055 + sources."@graphql-tools/utils-7.7.1" 80958 81056 sources."tslib-2.1.0" 80959 81057 ]; 80960 81058 }) 80961 81059 (sources."@graphql-tools/schema-7.1.3" // { 80962 81060 dependencies = [ 80963 - sources."@graphql-tools/utils-7.6.0" 81061 + sources."@graphql-tools/utils-7.7.1" 80964 81062 sources."tslib-2.1.0" 80965 81063 ]; 80966 81064 }) 80967 81065 (sources."@graphql-tools/url-loader-6.8.2" // { 80968 81066 dependencies = [ 80969 - sources."@graphql-tools/utils-7.6.0" 81067 + sources."@graphql-tools/utils-7.7.1" 80970 81068 sources."cross-fetch-3.1.1" 80971 81069 sources."form-data-4.0.0" 80972 81070 sources."tslib-2.1.0" ··· 80983 81081 }) 80984 81082 (sources."@graphql-tools/wrap-7.0.5" // { 80985 81083 dependencies = [ 80986 - (sources."@graphql-tools/utils-7.6.0" // { 81084 + (sources."@graphql-tools/utils-7.7.1" // { 80987 81085 dependencies = [ 80988 81086 sources."tslib-2.1.0" 80989 81087 ]; ··· 81002 81100 sources."@types/websocket-1.0.2" 81003 81101 sources."aggregate-error-3.1.0" 81004 81102 sources."ajv-6.12.6" 81005 - (sources."ansi-escapes-4.3.1" // { 81103 + (sources."ansi-escapes-4.3.2" // { 81006 81104 dependencies = [ 81007 - sources."type-fest-0.11.0" 81105 + sources."type-fest-0.21.3" 81008 81106 ]; 81009 81107 }) 81010 81108 sources."ansi-regex-4.1.0" ··· 81353 81451 sources."punycode-2.1.1" 81354 81452 sources."qs-6.5.2" 81355 81453 sources."querystringify-2.2.0" 81356 - sources."queue-microtask-1.2.2" 81454 + sources."queue-microtask-1.2.3" 81357 81455 sources."rc-1.2.8" 81358 81456 sources."reftools-1.1.8" 81359 81457 sources."regexp.prototype.flags-1.3.1" ··· 81883 81981 }; 81884 81982 dependencies = [ 81885 81983 sources."abbrev-1.1.1" 81886 - sources."ansi-escapes-4.3.1" 81984 + sources."ansi-escapes-4.3.2" 81887 81985 sources."ansi-regex-2.1.1" 81888 81986 sources."ansi-styles-2.2.1" 81889 81987 sources."ansi-term-0.0.2" ··· 81947 82045 }) 81948 82046 sources."systeminformation-4.34.19" 81949 82047 sources."term-canvas-0.0.5" 81950 - sources."type-fest-0.11.0" 82048 + sources."type-fest-0.21.3" 81951 82049 sources."wordwrap-0.0.3" 81952 82050 sources."x256-0.0.2" 81953 82051 sources."xml2js-0.4.23" ··· 82841 82939 sources."param-case-2.1.1" 82842 82940 sources."relateurl-0.2.7" 82843 82941 sources."source-map-0.6.1" 82844 - sources."uglify-js-3.13.1" 82942 + sources."uglify-js-3.13.2" 82845 82943 sources."upper-case-1.1.3" 82846 82944 ]; 82847 82945 buildInputs = globalBuildInputs; ··· 82980 83078 sources."object-inspect-1.9.0" 82981 83079 sources."opener-1.5.2" 82982 83080 sources."portfinder-1.0.28" 82983 - sources."qs-6.10.0" 83081 + sources."qs-6.10.1" 82984 83082 sources."requires-port-1.0.0" 82985 83083 sources."secure-compare-3.0.1" 82986 83084 sources."side-channel-1.0.4" ··· 83752 83850 sources."inherits-2.0.4" 83753 83851 (sources."inquirer-7.3.3" // { 83754 83852 dependencies = [ 83755 - sources."ansi-escapes-4.3.1" 83853 + sources."ansi-escapes-4.3.2" 83756 83854 sources."ansi-styles-4.3.0" 83757 83855 sources."chalk-4.1.0" 83758 83856 sources."cli-cursor-3.1.0" ··· 83836 83934 sources."proxy-agent-4.0.1" 83837 83935 sources."proxy-from-env-1.1.0" 83838 83936 sources."pump-3.0.0" 83839 - sources."qs-6.10.0" 83937 + sources."qs-6.10.1" 83840 83938 sources."raw-body-2.4.1" 83841 83939 sources."readable-stream-3.6.0" 83842 83940 sources."restore-cursor-2.0.0" ··· 83903 84001 sources."tree-kill-1.2.2" 83904 84002 sources."tslib-1.14.1" 83905 84003 sources."type-check-0.3.2" 83906 - sources."type-fest-0.11.0" 84004 + sources."type-fest-0.21.3" 83907 84005 sources."typedarray-to-buffer-3.1.5" 83908 84006 sources."universalify-0.1.2" 83909 84007 sources."unpipe-1.0.0" ··· 84123 84221 sources."safer-buffer-2.1.2" 84124 84222 sources."sax-1.2.4" 84125 84223 sources."semaphore-async-await-1.5.1" 84126 - (sources."semver-7.3.4" // { 84224 + (sources."semver-7.3.5" // { 84127 84225 dependencies = [ 84128 84226 sources."lru-cache-6.0.0" 84129 84227 ]; ··· 84381 84479 sources."async-mutex-0.1.4" 84382 84480 sources."asynckit-0.4.0" 84383 84481 sources."atob-2.1.2" 84384 - (sources."aws-sdk-2.868.0" // { 84482 + (sources."aws-sdk-2.871.0" // { 84385 84483 dependencies = [ 84386 84484 sources."sax-1.2.1" 84387 84485 sources."uuid-3.3.2" ··· 84739 84837 sources."debug-4.3.2" 84740 84838 sources."html-minifier-4.0.0" 84741 84839 sources."ms-2.1.2" 84742 - sources."uglify-js-3.13.1" 84840 + sources."uglify-js-3.13.2" 84743 84841 ]; 84744 84842 }) 84745 84843 sources."minimatch-3.0.4" ··· 84879 84977 sources."safer-buffer-2.1.2" 84880 84978 sources."sax-1.2.4" 84881 84979 sources."saxes-3.1.11" 84882 - sources."semver-7.3.4" 84980 + sources."semver-7.3.5" 84883 84981 sources."server-destroy-1.0.1" 84884 84982 sources."set-blocking-2.0.0" 84885 84983 sources."setimmediate-1.0.5" ··· 85127 85225 sha512 = "znR99e1BHeyEkSvgDDpX0sTiTu+8aQyDl9DawrkOGZTTW8hv0deIFXx87114zJ7gRaDZKVQD/4tr1ifmJp9xhQ=="; 85128 85226 }; 85129 85227 dependencies = [ 85130 - sources."@babel/parser-7.13.11" 85228 + sources."@babel/parser-7.13.12" 85131 85229 sources."argparse-1.0.10" 85132 85230 sources."bluebird-3.7.2" 85133 85231 sources."catharsis-0.8.11" ··· 85298 85396 sources."path-loader-1.0.10" 85299 85397 sources."process-nextick-args-2.0.1" 85300 85398 sources."punycode-2.1.1" 85301 - sources."qs-6.10.0" 85399 + sources."qs-6.10.1" 85302 85400 sources."readable-stream-2.3.7" 85303 85401 sources."safe-buffer-5.1.2" 85304 85402 sources."side-channel-1.0.4" ··· 85497 85595 sources."responselike-1.0.2" 85498 85596 sources."safe-buffer-5.1.2" 85499 85597 sources."safer-buffer-2.1.2" 85500 - sources."semver-7.3.4" 85598 + sources."semver-7.3.5" 85501 85599 sources."semver-compare-1.0.0" 85502 85600 (sources."semver-diff-3.1.1" // { 85503 85601 dependencies = [ ··· 85588 85686 bypassCache = true; 85589 85687 reconstructLock = true; 85590 85688 }; 85689 + kaput-cli = nodeEnv.buildNodePackage { 85690 + name = "kaput-cli"; 85691 + packageName = "kaput-cli"; 85692 + version = "1.1.1"; 85693 + src = fetchurl { 85694 + url = "https://registry.npmjs.org/kaput-cli/-/kaput-cli-1.1.1.tgz"; 85695 + sha512 = "JbF3PiO1wNawJnOQlb4nJZ2rvDfDWnD7ROCdzqgFXhqi3XTNXBqjpoC7PT3ylfNR6BGibjchndH27VieqyMA0A=="; 85696 + }; 85697 + dependencies = [ 85698 + sources."@nodelib/fs.scandir-2.1.4" 85699 + sources."@nodelib/fs.stat-2.0.4" 85700 + sources."@nodelib/fs.walk-1.2.6" 85701 + sources."@oclif/command-1.8.0" 85702 + (sources."@oclif/config-1.17.0" // { 85703 + dependencies = [ 85704 + sources."tslib-2.1.0" 85705 + ]; 85706 + }) 85707 + sources."@oclif/errors-1.3.4" 85708 + sources."@oclif/linewrap-1.0.0" 85709 + (sources."@oclif/parser-3.8.5" // { 85710 + dependencies = [ 85711 + sources."ansi-styles-3.2.1" 85712 + sources."chalk-2.4.2" 85713 + sources."color-convert-1.9.3" 85714 + sources."color-name-1.1.3" 85715 + sources."escape-string-regexp-1.0.5" 85716 + ]; 85717 + }) 85718 + (sources."@oclif/plugin-help-3.2.2" // { 85719 + dependencies = [ 85720 + sources."ansi-regex-3.0.0" 85721 + sources."ansi-styles-3.2.1" 85722 + sources."color-convert-1.9.3" 85723 + sources."color-name-1.1.3" 85724 + sources."is-fullwidth-code-point-2.0.0" 85725 + (sources."wrap-ansi-4.0.0" // { 85726 + dependencies = [ 85727 + sources."string-width-2.1.1" 85728 + sources."strip-ansi-4.0.0" 85729 + ]; 85730 + }) 85731 + ]; 85732 + }) 85733 + sources."@oclif/screen-1.0.4" 85734 + sources."@putdotio/api-client-8.15.1" 85735 + sources."ajv-6.12.6" 85736 + sources."ansi-escapes-4.3.2" 85737 + sources."ansi-regex-5.0.0" 85738 + sources."ansi-styles-4.3.0" 85739 + sources."ansicolors-0.3.2" 85740 + sources."argparse-1.0.10" 85741 + sources."array-union-2.1.0" 85742 + sources."asynckit-0.4.0" 85743 + sources."axios-0.19.2" 85744 + sources."braces-3.0.2" 85745 + sources."call-bind-1.0.2" 85746 + sources."cardinal-2.1.1" 85747 + (sources."chalk-4.1.0" // { 85748 + dependencies = [ 85749 + sources."has-flag-4.0.0" 85750 + sources."supports-color-7.2.0" 85751 + ]; 85752 + }) 85753 + sources."chardet-0.7.0" 85754 + sources."clean-stack-3.0.1" 85755 + sources."cli-cursor-3.1.0" 85756 + sources."cli-progress-3.9.0" 85757 + (sources."cli-ux-5.5.1" // { 85758 + dependencies = [ 85759 + sources."has-flag-4.0.0" 85760 + sources."supports-color-7.2.0" 85761 + sources."tslib-2.1.0" 85762 + ]; 85763 + }) 85764 + sources."cli-width-3.0.0" 85765 + sources."color-convert-2.0.1" 85766 + sources."color-name-1.1.4" 85767 + sources."colors-1.4.0" 85768 + sources."combined-stream-1.0.8" 85769 + (sources."conf-6.2.4" // { 85770 + dependencies = [ 85771 + sources."semver-6.3.0" 85772 + ]; 85773 + }) 85774 + (sources."cross-spawn-6.0.5" // { 85775 + dependencies = [ 85776 + sources."semver-5.7.1" 85777 + ]; 85778 + }) 85779 + (sources."d-1.0.1" // { 85780 + dependencies = [ 85781 + sources."type-1.2.0" 85782 + ]; 85783 + }) 85784 + sources."debounce-fn-3.0.1" 85785 + sources."debug-4.3.2" 85786 + sources."delayed-stream-1.0.0" 85787 + sources."dir-glob-3.0.1" 85788 + sources."dot-prop-5.3.0" 85789 + sources."dotenv-8.2.0" 85790 + sources."emoji-regex-8.0.0" 85791 + sources."env-paths-2.2.1" 85792 + sources."es5-ext-0.10.53" 85793 + sources."es6-iterator-2.0.3" 85794 + sources."es6-symbol-3.1.3" 85795 + sources."escape-string-regexp-4.0.0" 85796 + sources."esprima-4.0.1" 85797 + sources."event-emitter-0.3.5" 85798 + sources."ext-1.4.0" 85799 + sources."external-editor-3.1.0" 85800 + sources."extract-stack-2.0.0" 85801 + sources."fast-deep-equal-3.1.3" 85802 + sources."fast-glob-3.2.5" 85803 + sources."fast-json-stable-stringify-2.1.0" 85804 + sources."fastq-1.11.0" 85805 + (sources."figures-3.2.0" // { 85806 + dependencies = [ 85807 + sources."escape-string-regexp-1.0.5" 85808 + ]; 85809 + }) 85810 + sources."fill-range-7.0.1" 85811 + sources."find-up-3.0.0" 85812 + (sources."follow-redirects-1.5.10" // { 85813 + dependencies = [ 85814 + sources."debug-3.1.0" 85815 + sources."ms-2.0.0" 85816 + ]; 85817 + }) 85818 + sources."form-data-3.0.1" 85819 + sources."fs-extra-8.1.0" 85820 + sources."function-bind-1.1.1" 85821 + sources."get-intrinsic-1.1.1" 85822 + sources."glob-parent-5.1.2" 85823 + sources."globby-11.0.3" 85824 + sources."graceful-fs-4.2.6" 85825 + sources."has-1.0.3" 85826 + sources."has-flag-3.0.0" 85827 + sources."has-symbols-1.0.2" 85828 + sources."hyperlinker-1.0.0" 85829 + sources."iconv-lite-0.4.24" 85830 + sources."ignore-5.1.8" 85831 + sources."imurmurhash-0.1.4" 85832 + sources."indent-string-4.0.0" 85833 + sources."inquirer-7.3.3" 85834 + sources."is-docker-2.1.1" 85835 + sources."is-extglob-2.1.1" 85836 + sources."is-fullwidth-code-point-3.0.0" 85837 + sources."is-glob-4.0.1" 85838 + sources."is-number-7.0.0" 85839 + sources."is-obj-2.0.0" 85840 + sources."is-typedarray-1.0.0" 85841 + sources."is-wsl-2.2.0" 85842 + sources."isexe-2.0.0" 85843 + sources."js-base64-2.6.4" 85844 + sources."js-yaml-3.14.1" 85845 + sources."json-schema-traverse-0.4.1" 85846 + sources."json-schema-typed-7.0.3" 85847 + sources."jsonfile-4.0.0" 85848 + sources."locate-path-3.0.0" 85849 + sources."lodash-4.17.21" 85850 + sources."lodash._reinterpolate-3.0.0" 85851 + sources."lodash.template-4.5.0" 85852 + sources."lodash.templatesettings-4.2.0" 85853 + sources."lru-cache-6.0.0" 85854 + (sources."make-dir-3.1.0" // { 85855 + dependencies = [ 85856 + sources."semver-6.3.0" 85857 + ]; 85858 + }) 85859 + sources."merge2-1.4.1" 85860 + sources."micromatch-4.0.2" 85861 + sources."mime-db-1.46.0" 85862 + sources."mime-types-2.1.29" 85863 + sources."mimic-fn-2.1.0" 85864 + sources."moment-2.29.1" 85865 + sources."ms-2.1.2" 85866 + sources."mute-stream-0.0.8" 85867 + sources."natural-orderby-2.0.3" 85868 + sources."next-tick-1.0.0" 85869 + sources."nice-try-1.0.5" 85870 + sources."node-downloader-helper-1.0.17" 85871 + sources."object-inspect-1.9.0" 85872 + sources."object-treeify-1.1.33" 85873 + sources."onetime-5.1.2" 85874 + sources."os-tmpdir-1.0.2" 85875 + sources."p-limit-2.3.0" 85876 + sources."p-locate-3.0.0" 85877 + sources."p-try-2.2.0" 85878 + (sources."password-prompt-1.1.2" // { 85879 + dependencies = [ 85880 + sources."ansi-escapes-3.2.0" 85881 + ]; 85882 + }) 85883 + sources."path-exists-3.0.0" 85884 + sources."path-key-2.0.1" 85885 + sources."path-type-4.0.0" 85886 + sources."picomatch-2.2.2" 85887 + sources."pkg-up-3.1.0" 85888 + sources."punycode-2.1.1" 85889 + sources."qs-6.10.1" 85890 + sources."queue-microtask-1.2.3" 85891 + sources."redeyed-2.1.1" 85892 + sources."restore-cursor-3.1.0" 85893 + sources."reusify-1.0.4" 85894 + sources."run-async-2.4.1" 85895 + sources."run-parallel-1.2.0" 85896 + sources."rxjs-6.6.6" 85897 + sources."safer-buffer-2.1.2" 85898 + sources."semver-7.3.5" 85899 + sources."shebang-command-1.2.0" 85900 + sources."shebang-regex-1.0.0" 85901 + sources."side-channel-1.0.4" 85902 + sources."signal-exit-3.0.3" 85903 + sources."slash-3.0.0" 85904 + sources."sprintf-js-1.0.3" 85905 + sources."string-width-4.2.2" 85906 + sources."strip-ansi-6.0.0" 85907 + sources."supports-color-5.5.0" 85908 + (sources."supports-hyperlinks-2.1.0" // { 85909 + dependencies = [ 85910 + sources."has-flag-4.0.0" 85911 + sources."supports-color-7.2.0" 85912 + ]; 85913 + }) 85914 + sources."through-2.3.8" 85915 + sources."tmp-0.0.33" 85916 + sources."to-regex-range-5.0.1" 85917 + sources."tslib-1.14.1" 85918 + sources."type-2.5.0" 85919 + sources."type-fest-0.21.3" 85920 + sources."typedarray-to-buffer-3.1.5" 85921 + sources."universalify-0.1.2" 85922 + sources."uri-js-4.4.1" 85923 + sources."urijs-1.19.6" 85924 + sources."which-1.3.1" 85925 + sources."widest-line-3.1.0" 85926 + sources."wrap-ansi-7.0.0" 85927 + sources."write-file-atomic-3.0.3" 85928 + sources."yallist-4.0.0" 85929 + ]; 85930 + buildInputs = globalBuildInputs; 85931 + meta = { 85932 + description = "CLI tools for Put.io"; 85933 + homepage = "https://github.com/davidchalifoux/kaput-cli"; 85934 + license = "MIT"; 85935 + }; 85936 + production = true; 85937 + bypassCache = true; 85938 + reconstructLock = true; 85939 + }; 85591 85940 karma = nodeEnv.buildNodePackage { 85592 85941 name = "karma"; 85593 85942 packageName = "karma"; 85594 - version = "6.2.0"; 85943 + version = "6.3.1"; 85595 85944 src = fetchurl { 85596 - url = "https://registry.npmjs.org/karma/-/karma-6.2.0.tgz"; 85597 - sha512 = "pCB8eNxGgdIdZeC885rbhZ/VyuOPNHUIDNL9EaaMf1NVzpvTjMO8a7zRTn51ZJhOOOxCSpalUdT1A8x76LyVqg=="; 85945 + url = "https://registry.npmjs.org/karma/-/karma-6.3.1.tgz"; 85946 + sha512 = "Is71g0f1dIpbLTXA+ULpev1i1soczQ1Dr8oum3zSmBFsDl3IWUlTLytsCb9os4v9xvUVWGDz0sCmLO4veANnSw=="; 85598 85947 }; 85599 85948 dependencies = [ 85600 85949 sources."@types/component-emitter-1.2.10" ··· 85728 86077 sources."to-regex-range-5.0.1" 85729 86078 sources."toidentifier-1.0.0" 85730 86079 sources."type-is-1.6.18" 85731 - sources."ua-parser-js-0.7.24" 86080 + sources."ua-parser-js-0.7.25" 85732 86081 sources."universalify-0.1.2" 85733 86082 sources."unpipe-1.0.0" 85734 86083 sources."utils-merge-1.0.1" ··· 86226 86575 ]; 86227 86576 }) 86228 86577 sources."@octokit/graphql-4.6.1" 86229 - sources."@octokit/openapi-types-5.3.2" 86578 + sources."@octokit/openapi-types-6.0.0" 86230 86579 sources."@octokit/plugin-enterprise-rest-6.0.1" 86231 86580 sources."@octokit/plugin-paginate-rest-2.13.3" 86232 86581 sources."@octokit/plugin-request-log-1.0.3" 86233 - sources."@octokit/plugin-rest-endpoint-methods-4.13.5" 86582 + sources."@octokit/plugin-rest-endpoint-methods-4.14.0" 86234 86583 (sources."@octokit/request-5.4.14" // { 86235 86584 dependencies = [ 86236 86585 sources."is-plain-object-5.0.0" 86237 86586 ]; 86238 86587 }) 86239 86588 sources."@octokit/request-error-2.0.5" 86240 - sources."@octokit/rest-18.3.5" 86241 - sources."@octokit/types-6.12.2" 86589 + sources."@octokit/rest-18.4.0" 86590 + sources."@octokit/types-6.13.0" 86242 86591 sources."@tootallnate/once-1.1.2" 86243 - sources."@types/minimatch-3.0.3" 86592 + sources."@types/minimatch-3.0.4" 86244 86593 sources."@types/minimist-1.2.1" 86245 86594 sources."@types/normalize-package-data-2.4.0" 86246 86595 sources."@types/parse-json-4.0.0" ··· 86251 86600 sources."agentkeepalive-4.1.4" 86252 86601 sources."aggregate-error-3.1.0" 86253 86602 sources."ajv-6.12.6" 86254 - (sources."ansi-escapes-4.3.1" // { 86603 + (sources."ansi-escapes-4.3.2" // { 86255 86604 dependencies = [ 86256 - sources."type-fest-0.11.0" 86605 + sources."type-fest-0.21.3" 86257 86606 ]; 86258 86607 }) 86259 86608 sources."ansi-regex-2.1.1" ··· 86287 86636 sources."builtins-1.0.3" 86288 86637 sources."byline-5.0.0" 86289 86638 sources."byte-size-7.0.1" 86290 - sources."cacache-15.0.5" 86639 + sources."cacache-15.0.6" 86291 86640 sources."call-bind-1.0.2" 86292 86641 sources."callsites-3.1.0" 86293 86642 sources."camelcase-5.3.1" ··· 86455 86804 sources."gitconfiglocal-1.0.0" 86456 86805 sources."glob-7.1.6" 86457 86806 sources."glob-parent-5.1.2" 86458 - sources."globby-11.0.2" 86807 + sources."globby-11.0.3" 86459 86808 sources."graceful-fs-4.2.6" 86460 86809 sources."handlebars-4.7.7" 86461 86810 sources."har-schema-2.0.0" ··· 86466 86815 sources."has-flag-4.0.0" 86467 86816 sources."has-symbols-1.0.2" 86468 86817 sources."has-unicode-2.0.1" 86469 - sources."hosted-git-info-4.0.1" 86818 + sources."hosted-git-info-4.0.2" 86470 86819 sources."http-cache-semantics-4.1.0" 86471 86820 sources."http-proxy-agent-4.0.1" 86472 86821 sources."http-signature-1.2.0" ··· 86559 86908 sources."lodash-4.17.21" 86560 86909 sources."lodash._reinterpolate-3.0.0" 86561 86910 sources."lodash.ismatch-4.4.0" 86562 - sources."lodash.sortby-4.7.0" 86563 86911 sources."lodash.template-4.5.0" 86564 86912 sources."lodash.templatesettings-4.2.0" 86565 86913 sources."loud-rejection-1.6.0" ··· 86678 87026 sources."p-timeout-3.2.0" 86679 87027 sources."p-try-2.2.0" 86680 87028 sources."p-waterfall-2.1.1" 86681 - sources."pacote-11.3.0" 87029 + sources."pacote-11.3.1" 86682 87030 sources."parent-module-1.0.1" 86683 87031 sources."parse-github-repo-url-1.4.1" 86684 87032 sources."parse-json-5.2.0" 86685 87033 (sources."parse-path-4.0.3" // { 86686 87034 dependencies = [ 86687 - sources."qs-6.10.0" 87035 + sources."qs-6.10.1" 86688 87036 ]; 86689 87037 }) 86690 87038 sources."parse-url-5.0.2" ··· 86710 87058 sources."q-1.5.1" 86711 87059 sources."qs-6.5.2" 86712 87060 sources."query-string-6.14.1" 86713 - sources."queue-microtask-1.2.2" 87061 + sources."queue-microtask-1.2.3" 86714 87062 sources."quick-lru-4.0.1" 86715 87063 sources."read-1.0.7" 86716 87064 sources."read-cmd-shim-2.0.0" ··· 86755 87103 sources."rxjs-6.6.6" 86756 87104 sources."safe-buffer-5.2.1" 86757 87105 sources."safer-buffer-2.1.2" 86758 - sources."semver-7.3.4" 87106 + sources."semver-7.3.5" 86759 87107 sources."set-blocking-2.0.0" 86760 87108 sources."shallow-clone-3.0.1" 86761 87109 sources."shebang-command-2.0.0" ··· 86818 87166 sources."type-fest-0.4.1" 86819 87167 sources."typedarray-0.0.6" 86820 87168 sources."typedarray-to-buffer-3.1.5" 86821 - sources."uglify-js-3.13.1" 87169 + sources."uglify-js-3.13.2" 86822 87170 sources."uid-number-0.0.6" 86823 87171 sources."umask-1.1.0" 86824 87172 sources."unbox-primitive-1.0.0" ··· 86836 87184 sources."verror-1.10.0" 86837 87185 sources."wcwidth-1.0.1" 86838 87186 sources."webidl-conversions-6.1.0" 86839 - sources."whatwg-url-8.4.0" 87187 + sources."whatwg-url-8.5.0" 86840 87188 sources."which-2.0.2" 86841 87189 sources."which-boxed-primitive-1.0.2" 86842 87190 (sources."wide-align-1.1.3" // { ··· 87786 88134 src = ../interpreters/clojurescript/lumo; 87787 88135 dependencies = [ 87788 88136 sources."@babel/code-frame-7.12.13" 87789 - sources."@babel/compat-data-7.13.11" 88137 + sources."@babel/compat-data-7.13.12" 87790 88138 sources."@babel/core-7.13.10" 87791 88139 sources."@babel/generator-7.13.9" 87792 88140 sources."@babel/helper-annotate-as-pure-7.12.13" ··· 87799 88147 sources."@babel/helper-function-name-7.12.13" 87800 88148 sources."@babel/helper-get-function-arity-7.12.13" 87801 88149 sources."@babel/helper-hoist-variables-7.13.0" 87802 - sources."@babel/helper-member-expression-to-functions-7.13.0" 87803 - sources."@babel/helper-module-imports-7.12.13" 87804 - sources."@babel/helper-module-transforms-7.13.0" 88150 + sources."@babel/helper-member-expression-to-functions-7.13.12" 88151 + sources."@babel/helper-module-imports-7.13.12" 88152 + sources."@babel/helper-module-transforms-7.13.12" 87805 88153 sources."@babel/helper-optimise-call-expression-7.12.13" 87806 88154 sources."@babel/helper-plugin-utils-7.13.0" 87807 88155 sources."@babel/helper-remap-async-to-generator-7.13.0" 87808 - sources."@babel/helper-replace-supers-7.13.0" 87809 - sources."@babel/helper-simple-access-7.12.13" 88156 + sources."@babel/helper-replace-supers-7.13.12" 88157 + sources."@babel/helper-simple-access-7.13.12" 87810 88158 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 87811 88159 sources."@babel/helper-split-export-declaration-7.12.13" 87812 88160 sources."@babel/helper-validator-identifier-7.12.11" ··· 87818 88166 sources."chalk-2.4.2" 87819 88167 ]; 87820 88168 }) 87821 - sources."@babel/parser-7.13.11" 88169 + sources."@babel/parser-7.13.12" 88170 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" 87822 88171 sources."@babel/plugin-external-helpers-7.8.3" 87823 88172 sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 87824 88173 sources."@babel/plugin-proposal-class-properties-7.13.0" ··· 87830 88179 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 87831 88180 sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 87832 88181 sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 87833 - sources."@babel/plugin-proposal-optional-chaining-7.13.8" 88182 + sources."@babel/plugin-proposal-optional-chaining-7.13.12" 87834 88183 sources."@babel/plugin-proposal-private-methods-7.13.0" 87835 88184 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 87836 88185 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 87880 88229 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 87881 88230 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 87882 88231 sources."@babel/plugin-transform-unicode-regex-7.12.13" 87883 - sources."@babel/preset-env-7.13.10" 88232 + sources."@babel/preset-env-7.13.12" 87884 88233 sources."@babel/preset-modules-0.1.4" 87885 88234 sources."@babel/preset-stage-2-7.8.3" 87886 88235 sources."@babel/runtime-7.13.10" 87887 88236 sources."@babel/template-7.12.13" 87888 88237 sources."@babel/traverse-7.13.0" 87889 - sources."@babel/types-7.13.0" 88238 + sources."@babel/types-7.13.12" 87890 88239 sources."@cnakazawa/watch-1.0.4" 87891 88240 sources."@comandeer/babel-plugin-banner-5.0.0" 87892 88241 sources."@istanbuljs/load-nyc-config-1.1.0" ··· 87901 88250 sources."@types/babel__generator-7.6.2" 87902 88251 sources."@types/babel__template-7.4.0" 87903 88252 sources."@types/babel__traverse-7.11.1" 87904 - sources."@types/estree-0.0.46" 88253 + sources."@types/estree-0.0.47" 87905 88254 sources."@types/graceful-fs-4.1.5" 87906 88255 sources."@types/istanbul-lib-coverage-2.0.3" 87907 88256 sources."@types/istanbul-lib-report-3.0.0" ··· 88080 88429 sources."cached-path-relative-1.0.2" 88081 88430 sources."call-bind-1.0.2" 88082 88431 sources."camelcase-5.3.1" 88083 - sources."caniuse-lite-1.0.30001203" 88432 + sources."caniuse-lite-1.0.30001204" 88084 88433 sources."capture-exit-2.0.0" 88085 88434 sources."caseless-0.12.0" 88086 88435 (sources."chalk-3.0.0" // { ··· 88204 88553 sources."duplexer2-0.1.4" 88205 88554 sources."duplexify-3.7.1" 88206 88555 sources."ecc-jsbn-0.1.2" 88207 - sources."electron-to-chromium-1.3.693" 88556 + sources."electron-to-chromium-1.3.699" 88208 88557 (sources."elliptic-6.5.4" // { 88209 88558 dependencies = [ 88210 88559 sources."bn.js-4.12.0" ··· 88235 88584 sources."esutils-2.0.3" 88236 88585 sources."events-2.1.0" 88237 88586 sources."evp_bytestokey-1.0.3" 88238 - sources."exec-sh-0.3.4" 88587 + sources."exec-sh-0.3.6" 88239 88588 sources."execa-1.0.0" 88240 88589 (sources."expand-brackets-2.1.4" // { 88241 88590 dependencies = [ ··· 88601 88950 sources."realpath-native-2.0.0" 88602 88951 sources."regenerate-1.4.2" 88603 88952 sources."regenerate-unicode-properties-8.2.0" 88604 - sources."regenerator-runtime-0.13.7" 88953 + sources."regenerator-runtime-0.13.8" 88605 88954 sources."regenerator-transform-0.14.5" 88606 88955 sources."regex-not-1.0.2" 88607 88956 sources."regexpu-core-4.7.1" 88608 88957 sources."regjsgen-0.5.2" 88609 - (sources."regjsparser-0.6.7" // { 88958 + (sources."regjsparser-0.6.9" // { 88610 88959 dependencies = [ 88611 88960 sources."jsesc-0.5.0" 88612 88961 ]; ··· 89529 89878 sources."through-2.3.8" 89530 89879 sources."try-catch-2.0.1" 89531 89880 sources."try-to-catch-1.1.1" 89532 - sources."uglify-js-3.13.1" 89881 + sources."uglify-js-3.13.2" 89533 89882 sources."unbzip2-stream-1.4.3" 89534 89883 sources."upper-case-1.1.3" 89535 89884 sources."util-deprecate-1.0.2" ··· 89559 89908 sources."@fluentui/date-time-utilities-7.9.1" 89560 89909 sources."@fluentui/dom-utilities-1.1.2" 89561 89910 sources."@fluentui/keyboard-key-0.2.14" 89562 - sources."@fluentui/react-7.165.0" 89911 + sources."@fluentui/react-7.165.1" 89563 89912 sources."@fluentui/react-focus-7.17.6" 89564 89913 sources."@fluentui/react-window-provider-1.0.2" 89565 89914 sources."@fluentui/theme-1.7.4" ··· 89699 90048 sources."node-fetch-1.6.3" 89700 90049 sources."normalize-url-4.5.0" 89701 90050 sources."object-assign-4.1.1" 89702 - sources."office-ui-fabric-react-7.165.0" 90051 + sources."office-ui-fabric-react-7.165.1" 89703 90052 sources."on-finished-2.3.0" 89704 90053 sources."on-headers-1.0.2" 89705 90054 sources."once-1.4.0" ··· 89756 90105 sources."safe-buffer-5.1.2" 89757 90106 sources."safer-buffer-2.1.2" 89758 90107 sources."scheduler-0.19.1" 89759 - sources."semver-7.3.4" 90108 + sources."semver-7.3.5" 89760 90109 (sources."send-0.17.1" // { 89761 90110 dependencies = [ 89762 90111 sources."ms-2.1.1" ··· 89992 90341 sources."path-loader-1.0.10" 89993 90342 sources."process-nextick-args-2.0.1" 89994 90343 sources."punycode-2.1.1" 89995 - sources."qs-6.10.0" 90344 + sources."qs-6.10.1" 89996 90345 sources."readable-stream-2.3.7" 89997 90346 sources."safe-buffer-5.1.2" 89998 90347 sources."side-channel-1.0.4" ··· 90051 90400 sources."process-nextick-args-2.0.1" 90052 90401 sources."readable-stream-3.6.0" 90053 90402 sources."safe-buffer-5.2.1" 90054 - sources."semver-7.3.4" 90403 + sources."semver-7.3.5" 90055 90404 sources."simple-swizzle-0.2.2" 90056 90405 sources."stack-trace-0.0.10" 90057 90406 sources."string_decoder-1.3.0" ··· 90081 90430 netlify-cli = nodeEnv.buildNodePackage { 90082 90431 name = "netlify-cli"; 90083 90432 packageName = "netlify-cli"; 90084 - version = "3.13.5"; 90433 + version = "3.13.7"; 90085 90434 src = fetchurl { 90086 - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.13.5.tgz"; 90087 - sha512 = "H077yu7Tt7uPqTnN6ZEtKrFwVsvkAyiPDmHzOxA13g9h/5Ho9tUEFhOrxsYRo/CNqdYDqvun5edBcyvNmif+ow=="; 90435 + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.13.7.tgz"; 90436 + sha512 = "I5aY4yOi3R5yNzhMy3RK9LG42jD422Eni/iiwv7+As9EpkYYcWXFwPLy7mE1bxE9xtyxkE1zKxKqEqDjLqt2kA=="; 90088 90437 }; 90089 90438 dependencies = [ 90090 90439 sources."@babel/code-frame-7.12.13" 90091 - sources."@babel/compat-data-7.13.11" 90440 + sources."@babel/compat-data-7.13.12" 90092 90441 (sources."@babel/core-7.13.10" // { 90093 90442 dependencies = [ 90094 90443 sources."semver-6.3.0" ··· 90113 90462 sources."@babel/helper-function-name-7.12.13" 90114 90463 sources."@babel/helper-get-function-arity-7.12.13" 90115 90464 sources."@babel/helper-hoist-variables-7.13.0" 90116 - sources."@babel/helper-member-expression-to-functions-7.13.0" 90117 - sources."@babel/helper-module-imports-7.12.13" 90118 - sources."@babel/helper-module-transforms-7.13.0" 90465 + sources."@babel/helper-member-expression-to-functions-7.13.12" 90466 + sources."@babel/helper-module-imports-7.13.12" 90467 + sources."@babel/helper-module-transforms-7.13.12" 90119 90468 sources."@babel/helper-optimise-call-expression-7.12.13" 90120 90469 sources."@babel/helper-plugin-utils-7.13.0" 90121 90470 sources."@babel/helper-remap-async-to-generator-7.13.0" 90122 - sources."@babel/helper-replace-supers-7.13.0" 90123 - sources."@babel/helper-simple-access-7.12.13" 90471 + sources."@babel/helper-replace-supers-7.13.12" 90472 + sources."@babel/helper-simple-access-7.13.12" 90124 90473 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 90125 90474 sources."@babel/helper-split-export-declaration-7.12.13" 90126 90475 sources."@babel/helper-validator-identifier-7.12.11" ··· 90128 90477 sources."@babel/helper-wrap-function-7.13.0" 90129 90478 sources."@babel/helpers-7.13.10" 90130 90479 sources."@babel/highlight-7.13.10" 90131 - sources."@babel/parser-7.13.11" 90480 + sources."@babel/parser-7.13.12" 90481 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" 90132 90482 sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 90133 90483 sources."@babel/plugin-proposal-class-properties-7.13.0" 90134 90484 sources."@babel/plugin-proposal-dynamic-import-7.13.8" ··· 90139 90489 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 90140 90490 sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 90141 90491 sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 90142 - sources."@babel/plugin-proposal-optional-chaining-7.13.8" 90492 + sources."@babel/plugin-proposal-optional-chaining-7.13.12" 90143 90493 sources."@babel/plugin-proposal-private-methods-7.13.0" 90144 90494 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 90145 90495 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 90186 90536 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 90187 90537 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 90188 90538 sources."@babel/plugin-transform-unicode-regex-7.12.13" 90189 - (sources."@babel/preset-env-7.13.10" // { 90539 + (sources."@babel/preset-env-7.13.12" // { 90190 90540 dependencies = [ 90191 90541 sources."semver-6.3.0" 90192 90542 ]; ··· 90195 90545 sources."@babel/runtime-7.13.10" 90196 90546 sources."@babel/template-7.12.13" 90197 90547 sources."@babel/traverse-7.13.0" 90198 - sources."@babel/types-7.13.0" 90548 + sources."@babel/types-7.13.12" 90199 90549 sources."@bugsnag/browser-7.9.0" 90200 90550 sources."@bugsnag/core-7.9.0" 90201 90551 sources."@bugsnag/cuid-3.0.0" ··· 90205 90555 sources."@dabh/diagnostics-2.0.2" 90206 90556 sources."@jest/types-24.9.0" 90207 90557 sources."@mrmlnc/readdir-enhanced-2.2.1" 90208 - (sources."@netlify/build-9.11.2" // { 90558 + (sources."@netlify/build-9.13.2" // { 90209 90559 dependencies = [ 90210 90560 sources."ansi-styles-4.3.0" 90211 90561 sources."chalk-3.0.0" ··· 90220 90570 sources."locate-path-5.0.0" 90221 90571 ]; 90222 90572 }) 90223 - (sources."@netlify/config-4.2.0" // { 90573 + (sources."@netlify/config-4.3.0" // { 90224 90574 dependencies = [ 90225 90575 sources."ansi-styles-4.3.0" 90226 90576 sources."chalk-3.0.0" ··· 90244 90594 ]; 90245 90595 }) 90246 90596 sources."@netlify/open-api-1.3.0" 90247 - (sources."@netlify/plugin-edge-handlers-1.11.5" // { 90597 + (sources."@netlify/plugin-edge-handlers-1.11.6" // { 90248 90598 dependencies = [ 90249 90599 sources."@nodelib/fs.stat-2.0.4" 90250 90600 sources."array-union-2.1.0" ··· 90254 90604 sources."fast-glob-3.2.5" 90255 90605 sources."fill-range-7.0.1" 90256 90606 sources."glob-parent-5.1.2" 90257 - sources."globby-11.0.2" 90607 + sources."globby-11.0.3" 90258 90608 sources."ignore-5.1.8" 90259 90609 sources."is-number-7.0.0" 90260 90610 sources."micromatch-4.0.2" ··· 90263 90613 sources."to-regex-range-5.0.1" 90264 90614 ]; 90265 90615 }) 90266 - sources."@netlify/plugins-list-2.4.3" 90616 + sources."@netlify/plugins-list-2.5.0" 90267 90617 (sources."@netlify/run-utils-1.0.7" // { 90268 90618 dependencies = [ 90269 90619 sources."execa-3.4.0" ··· 90332 90682 sources."fast-glob-3.2.5" 90333 90683 sources."fill-range-7.0.1" 90334 90684 sources."glob-parent-5.1.2" 90335 - sources."globby-11.0.2" 90685 + sources."globby-11.0.3" 90336 90686 sources."ignore-5.1.8" 90337 90687 sources."is-number-7.0.0" 90338 90688 sources."micromatch-4.0.2" ··· 90408 90758 sources."universal-user-agent-6.0.0" 90409 90759 ]; 90410 90760 }) 90411 - sources."@octokit/openapi-types-5.3.2" 90761 + sources."@octokit/openapi-types-6.0.0" 90412 90762 (sources."@octokit/plugin-paginate-rest-1.1.2" // { 90413 90763 dependencies = [ 90414 90764 sources."@octokit/types-2.16.2" ··· 90433 90783 ]; 90434 90784 }) 90435 90785 sources."@octokit/rest-16.43.2" 90436 - sources."@octokit/types-6.12.2" 90786 + sources."@octokit/types-6.13.0" 90437 90787 sources."@rollup/plugin-babel-5.3.0" 90438 90788 (sources."@rollup/plugin-commonjs-17.1.0" // { 90439 90789 dependencies = [ ··· 90470 90820 sources."@types/istanbul-lib-report-3.0.0" 90471 90821 sources."@types/istanbul-reports-1.1.2" 90472 90822 sources."@types/keyv-3.1.1" 90473 - sources."@types/minimatch-3.0.3" 90823 + sources."@types/minimatch-3.0.4" 90474 90824 sources."@types/mkdirp-0.5.2" 90475 90825 sources."@types/node-14.14.35" 90476 90826 sources."@types/node-fetch-2.5.8" ··· 90545 90895 sources."at-least-node-1.0.0" 90546 90896 sources."atob-2.1.2" 90547 90897 sources."atob-lite-2.0.0" 90548 - (sources."aws-sdk-2.868.0" // { 90898 + (sources."aws-sdk-2.871.0" // { 90549 90899 dependencies = [ 90550 90900 sources."buffer-4.9.2" 90551 90901 sources."ieee754-1.1.13" ··· 90619 90969 sources."call-bind-1.0.2" 90620 90970 sources."call-me-maybe-1.0.1" 90621 90971 sources."camelcase-5.3.1" 90622 - sources."caniuse-lite-1.0.30001203" 90972 + sources."caniuse-lite-1.0.30001204" 90623 90973 sources."cardinal-2.1.1" 90624 90974 sources."caw-2.0.1" 90625 90975 sources."ccount-1.1.0" ··· 90679 91029 }) 90680 91030 (sources."cli-ux-5.5.1" // { 90681 91031 dependencies = [ 90682 - sources."ansi-escapes-4.3.1" 91032 + sources."ansi-escapes-4.3.2" 90683 91033 sources."ansi-styles-4.3.0" 90684 91034 sources."argparse-1.0.10" 90685 91035 sources."chalk-4.1.0" ··· 90689 91039 sources."js-yaml-3.14.1" 90690 91040 sources."supports-hyperlinks-2.1.0" 90691 91041 sources."tslib-2.1.0" 90692 - sources."type-fest-0.11.0" 91042 + sources."type-fest-0.21.3" 90693 91043 ]; 90694 91044 }) 90695 91045 sources."cli-width-2.2.1" ··· 90877 91227 }) 90878 91228 sources."duplexer3-0.1.4" 90879 91229 sources."ee-first-1.1.1" 90880 - sources."electron-to-chromium-1.3.693" 91230 + sources."electron-to-chromium-1.3.699" 90881 91231 sources."elegant-spinner-1.0.1" 90882 91232 sources."elf-cam-0.1.1" 90883 91233 sources."emoji-regex-8.0.0" ··· 90888 91238 sources."envinfo-7.7.4" 90889 91239 sources."error-ex-1.3.2" 90890 91240 sources."error-stack-parser-2.0.6" 90891 - sources."esbuild-0.9.6" 91241 + sources."esbuild-0.9.7" 90892 91242 sources."escalade-3.1.1" 90893 91243 sources."escape-goat-2.1.1" 90894 91244 sources."escape-html-1.0.3" ··· 91188 91538 }) 91189 91539 (sources."inquirer-autocomplete-prompt-1.3.0" // { 91190 91540 dependencies = [ 91191 - sources."ansi-escapes-4.3.1" 91541 + sources."ansi-escapes-4.3.2" 91192 91542 sources."ansi-styles-4.3.0" 91193 91543 sources."chalk-4.1.0" 91194 - sources."type-fest-0.11.0" 91544 + sources."type-fest-0.21.3" 91195 91545 ]; 91196 91546 }) 91197 91547 sources."into-stream-3.1.0" ··· 91437 91787 sources."@netlify/zip-it-and-ship-it-2.7.1" 91438 91788 sources."esbuild-0.8.57" 91439 91789 sources."locate-path-5.0.0" 91440 - sources."qs-6.10.0" 91790 + sources."qs-6.10.1" 91441 91791 sources."resolve-2.0.0-next.3" 91442 91792 sources."semver-6.3.0" 91443 91793 ]; ··· 91638 91988 sources."qs-6.7.0" 91639 91989 sources."query-string-5.1.1" 91640 91990 sources."querystring-0.2.0" 91641 - sources."queue-microtask-1.2.2" 91991 + sources."queue-microtask-1.2.3" 91642 91992 sources."random-bytes-1.0.0" 91643 91993 sources."random-item-3.1.0" 91644 91994 sources."randombytes-2.1.0" ··· 91661 92011 sources."redeyed-2.1.1" 91662 92012 sources."regenerate-1.4.2" 91663 92013 sources."regenerate-unicode-properties-8.2.0" 91664 - sources."regenerator-runtime-0.13.7" 92014 + sources."regenerator-runtime-0.13.8" 91665 92015 sources."regenerator-transform-0.14.5" 91666 92016 sources."regex-not-1.0.2" 91667 92017 sources."regexpu-core-4.7.1" 91668 92018 sources."registry-auth-token-4.2.1" 91669 92019 sources."registry-url-5.1.0" 91670 92020 sources."regjsgen-0.5.2" 91671 - (sources."regjsparser-0.6.7" // { 92021 + (sources."regjsparser-0.6.9" // { 91672 92022 dependencies = [ 91673 92023 sources."jsesc-0.5.0" 91674 92024 ]; ··· 91695 92045 sources."ret-0.1.15" 91696 92046 sources."reusify-1.0.4" 91697 92047 sources."rimraf-3.0.2" 91698 - sources."rollup-2.42.1" 92048 + sources."rollup-2.42.4" 91699 92049 (sources."rollup-plugin-inject-3.0.2" // { 91700 92050 dependencies = [ 91701 92051 sources."estree-walker-0.6.1" ··· 91718 92068 sources."safer-buffer-2.1.2" 91719 92069 sources."sax-1.2.1" 91720 92070 sources."seek-bzip-1.0.6" 91721 - sources."semver-7.3.4" 92071 + sources."semver-7.3.5" 91722 92072 (sources."semver-diff-3.1.1" // { 91723 92073 dependencies = [ 91724 92074 sources."semver-6.3.0" ··· 92161 92511 sources."rimraf-3.0.2" 92162 92512 sources."safe-buffer-5.1.2" 92163 92513 sources."safer-buffer-2.1.2" 92164 - sources."semver-7.3.4" 92514 + sources."semver-7.3.5" 92165 92515 sources."set-blocking-2.0.0" 92166 92516 sources."signal-exit-3.0.3" 92167 92517 sources."sshpk-1.16.1" ··· 92979 93329 sources."rc-1.2.8" 92980 93330 sources."read-1.0.7" 92981 93331 sources."readable-stream-1.1.14" 92982 - sources."regenerator-runtime-0.13.7" 93332 + sources."regenerator-runtime-0.13.8" 92983 93333 sources."reinterval-1.1.0" 92984 93334 sources."remove-trailing-separator-1.1.0" 92985 93335 (sources."request-2.88.0" // { ··· 93222 93572 sources."rimraf-2.6.3" 93223 93573 sources."safe-buffer-5.2.1" 93224 93574 sources."safer-buffer-2.1.2" 93225 - sources."semver-7.3.4" 93575 + sources."semver-7.3.5" 93226 93576 sources."set-blocking-2.0.0" 93227 93577 sources."signal-exit-3.0.3" 93228 93578 sources."slasp-0.0.4" ··· 93485 93835 sources."strip-ansi-5.2.0" 93486 93836 ]; 93487 93837 }) 93488 - sources."ansi-escapes-4.3.1" 93838 + sources."ansi-escapes-4.3.2" 93489 93839 sources."ansi-regex-5.0.0" 93490 93840 sources."ansi-styles-4.3.0" 93491 93841 sources."any-observable-0.5.1" ··· 93582 93932 sources."glob-7.1.6" 93583 93933 sources."glob-parent-5.1.2" 93584 93934 sources."global-dirs-2.1.0" 93585 - sources."globby-11.0.2" 93935 + sources."globby-11.0.3" 93586 93936 (sources."got-10.7.0" // { 93587 93937 dependencies = [ 93588 93938 sources."get-stream-5.2.0" ··· 93771 94121 }) 93772 94122 (sources."normalize-package-data-3.0.2" // { 93773 94123 dependencies = [ 93774 - sources."hosted-git-info-4.0.1" 94124 + sources."hosted-git-info-4.0.2" 93775 94125 ]; 93776 94126 }) 93777 94127 sources."normalize-url-4.5.0" ··· 93863 94213 sources."escape-goat-2.1.1" 93864 94214 ]; 93865 94215 }) 93866 - sources."queue-microtask-1.2.2" 94216 + sources."queue-microtask-1.2.3" 93867 94217 sources."quick-lru-4.0.1" 93868 94218 sources."rc-1.2.8" 93869 94219 (sources."read-pkg-5.2.0" // { ··· 93898 94248 sources."rxjs-6.6.6" 93899 94249 sources."safer-buffer-2.1.2" 93900 94250 sources."scoped-regex-2.1.0" 93901 - sources."semver-7.3.4" 94251 + sources."semver-7.3.5" 93902 94252 (sources."semver-diff-3.1.1" // { 93903 94253 dependencies = [ 93904 94254 sources."semver-6.3.0" ··· 93929 94279 sources."to-regex-range-5.0.1" 93930 94280 sources."trim-newlines-3.0.0" 93931 94281 sources."tslib-1.14.1" 93932 - sources."type-fest-0.11.0" 94282 + sources."type-fest-0.21.3" 93933 94283 sources."typedarray-to-buffer-3.1.5" 93934 94284 sources."unique-string-2.0.0" 93935 94285 (sources."update-notifier-5.1.0" // { ··· 93974 94324 npm = nodeEnv.buildNodePackage { 93975 94325 name = "npm"; 93976 94326 packageName = "npm"; 93977 - version = "7.6.3"; 94327 + version = "7.7.4"; 93978 94328 src = fetchurl { 93979 - url = "https://registry.npmjs.org/npm/-/npm-7.6.3.tgz"; 93980 - sha512 = "+Cs8TEtkfdQGTIPw8AeqVtNNHyo1Zw8HATzAFFWYnK7jQYgT/CatEy85+BlEoEpqvga2uaKqVrXsTAYj28emjg=="; 94329 + url = "https://registry.npmjs.org/npm/-/npm-7.7.4.tgz"; 94330 + sha512 = "+gUjp4hbUnN7S1z2S3uDTnac94uRiztzFkMLNimHsB4KpuvhO+xjg30ARoptq7UYqF6KTXA4L8XLDMuriyB9Fg=="; 93981 94331 }; 93982 94332 buildInputs = globalBuildInputs; 93983 94333 meta = { ··· 94049 94399 sources."brace-expansion-1.1.11" 94050 94400 sources."braces-3.0.2" 94051 94401 sources."builtins-1.0.3" 94052 - sources."cacache-15.0.5" 94402 + sources."cacache-15.0.6" 94053 94403 (sources."cacheable-request-6.1.0" // { 94054 94404 dependencies = [ 94055 94405 sources."get-stream-5.2.0" ··· 94120 94470 sources."ini-2.0.0" 94121 94471 ]; 94122 94472 }) 94123 - sources."globby-11.0.2" 94473 + sources."globby-11.0.3" 94124 94474 sources."got-9.6.0" 94125 94475 sources."graceful-fs-4.2.6" 94126 94476 sources."har-schema-2.0.0" ··· 94128 94478 sources."has-flag-4.0.0" 94129 94479 sources."has-unicode-2.0.1" 94130 94480 sources."has-yarn-2.1.0" 94131 - sources."hosted-git-info-4.0.1" 94481 + sources."hosted-git-info-4.0.2" 94132 94482 sources."http-cache-semantics-4.1.0" 94133 94483 sources."http-proxy-agent-4.0.1" 94134 94484 sources."http-signature-1.2.0" ··· 94241 94591 sources."semver-6.3.0" 94242 94592 ]; 94243 94593 }) 94244 - sources."pacote-11.3.0" 94594 + sources."pacote-11.3.1" 94245 94595 sources."parse-github-url-1.0.2" 94246 94596 sources."path-exists-4.0.0" 94247 94597 sources."path-is-absolute-1.0.1" ··· 94259 94609 sources."punycode-2.1.1" 94260 94610 sources."pupa-2.1.1" 94261 94611 sources."qs-6.5.2" 94262 - sources."queue-microtask-1.2.2" 94612 + sources."queue-microtask-1.2.3" 94263 94613 sources."rc-1.2.8" 94264 94614 sources."rc-config-loader-4.0.0" 94265 94615 sources."read-package-json-fast-2.0.2" ··· 94276 94626 sources."run-parallel-1.2.0" 94277 94627 sources."safe-buffer-5.1.2" 94278 94628 sources."safer-buffer-2.1.2" 94279 - sources."semver-7.3.4" 94629 + sources."semver-7.3.5" 94280 94630 (sources."semver-diff-3.1.1" // { 94281 94631 dependencies = [ 94282 94632 sources."semver-6.3.0" ··· 94577 94927 }; 94578 94928 dependencies = [ 94579 94929 sources."@babel/code-frame-7.12.13" 94580 - sources."@babel/compat-data-7.13.11" 94930 + sources."@babel/compat-data-7.13.12" 94581 94931 (sources."@babel/core-7.13.10" // { 94582 94932 dependencies = [ 94583 94933 sources."json5-2.2.0" ··· 94608 94958 sources."@babel/helper-function-name-7.12.13" 94609 94959 sources."@babel/helper-get-function-arity-7.12.13" 94610 94960 sources."@babel/helper-hoist-variables-7.13.0" 94611 - sources."@babel/helper-member-expression-to-functions-7.13.0" 94612 - sources."@babel/helper-module-imports-7.12.13" 94613 - sources."@babel/helper-module-transforms-7.13.0" 94961 + sources."@babel/helper-member-expression-to-functions-7.13.12" 94962 + sources."@babel/helper-module-imports-7.13.12" 94963 + sources."@babel/helper-module-transforms-7.13.12" 94614 94964 sources."@babel/helper-optimise-call-expression-7.12.13" 94615 94965 sources."@babel/helper-plugin-utils-7.13.0" 94616 94966 sources."@babel/helper-remap-async-to-generator-7.13.0" 94617 - sources."@babel/helper-replace-supers-7.13.0" 94618 - sources."@babel/helper-simple-access-7.12.13" 94967 + sources."@babel/helper-replace-supers-7.13.12" 94968 + sources."@babel/helper-simple-access-7.13.12" 94619 94969 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 94620 94970 sources."@babel/helper-split-export-declaration-7.12.13" 94621 94971 sources."@babel/helper-validator-identifier-7.12.11" ··· 94623 94973 sources."@babel/helper-wrap-function-7.13.0" 94624 94974 sources."@babel/helpers-7.13.10" 94625 94975 sources."@babel/highlight-7.13.10" 94626 - sources."@babel/parser-7.13.11" 94976 + sources."@babel/parser-7.13.12" 94977 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" 94627 94978 sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 94628 94979 sources."@babel/plugin-proposal-class-properties-7.13.0" 94629 94980 sources."@babel/plugin-proposal-dynamic-import-7.13.8" ··· 94634 94985 sources."@babel/plugin-proposal-numeric-separator-7.12.13" 94635 94986 sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 94636 94987 sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 94637 - sources."@babel/plugin-proposal-optional-chaining-7.13.8" 94988 + sources."@babel/plugin-proposal-optional-chaining-7.13.12" 94638 94989 sources."@babel/plugin-proposal-private-methods-7.13.0" 94639 94990 sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 94640 94991 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 94675 95026 sources."@babel/plugin-transform-object-super-7.12.13" 94676 95027 sources."@babel/plugin-transform-parameters-7.13.0" 94677 95028 sources."@babel/plugin-transform-property-literals-7.12.13" 94678 - sources."@babel/plugin-transform-react-jsx-7.12.17" 95029 + sources."@babel/plugin-transform-react-jsx-7.13.12" 94679 95030 sources."@babel/plugin-transform-regenerator-7.12.13" 94680 95031 sources."@babel/plugin-transform-reserved-words-7.12.13" 94681 95032 sources."@babel/plugin-transform-shorthand-properties-7.12.13" ··· 94685 95036 sources."@babel/plugin-transform-typeof-symbol-7.12.13" 94686 95037 sources."@babel/plugin-transform-unicode-escapes-7.12.13" 94687 95038 sources."@babel/plugin-transform-unicode-regex-7.12.13" 94688 - (sources."@babel/preset-env-7.13.10" // { 95039 + (sources."@babel/preset-env-7.13.12" // { 94689 95040 dependencies = [ 94690 95041 sources."semver-6.3.0" 94691 95042 ]; ··· 94694 95045 sources."@babel/runtime-7.13.10" 94695 95046 sources."@babel/template-7.12.13" 94696 95047 sources."@babel/traverse-7.13.0" 94697 - sources."@babel/types-7.13.0" 95048 + sources."@babel/types-7.13.12" 94698 95049 sources."@iarna/toml-2.2.5" 94699 95050 sources."@mrmlnc/readdir-enhanced-2.2.1" 94700 95051 sources."@nodelib/fs.stat-1.1.3" ··· 94816 95167 sources."caller-path-2.0.0" 94817 95168 sources."callsites-2.0.0" 94818 95169 sources."caniuse-api-3.0.0" 94819 - sources."caniuse-lite-1.0.30001203" 95170 + sources."caniuse-lite-1.0.30001204" 94820 95171 sources."caseless-0.12.0" 94821 95172 sources."chalk-2.4.2" 94822 95173 sources."chokidar-2.1.8" ··· 94951 95302 sources."duplexer2-0.1.4" 94952 95303 sources."ecc-jsbn-0.1.2" 94953 95304 sources."ee-first-1.1.1" 94954 - sources."electron-to-chromium-1.3.693" 95305 + sources."electron-to-chromium-1.3.699" 94955 95306 (sources."elliptic-6.5.4" // { 94956 95307 dependencies = [ 94957 95308 sources."bn.js-4.12.0" ··· 95352 95703 sources."readdirp-2.2.1" 95353 95704 sources."regenerate-1.4.2" 95354 95705 sources."regenerate-unicode-properties-8.2.0" 95355 - sources."regenerator-runtime-0.13.7" 95706 + sources."regenerator-runtime-0.13.8" 95356 95707 sources."regenerator-transform-0.14.5" 95357 95708 (sources."regex-not-1.0.2" // { 95358 95709 dependencies = [ ··· 95362 95713 }) 95363 95714 sources."regexpu-core-4.7.1" 95364 95715 sources."regjsgen-0.5.2" 95365 - (sources."regjsparser-0.6.7" // { 95716 + (sources."regjsparser-0.6.9" // { 95366 95717 dependencies = [ 95367 95718 sources."jsesc-0.5.0" 95368 95719 ]; ··· 95794 96145 sources."serve-static-1.14.1" 95795 96146 (sources."service-runner-2.8.1" // { 95796 96147 dependencies = [ 95797 - sources."semver-7.3.4" 96148 + sources."semver-7.3.5" 95798 96149 sources."yargs-14.2.3" 95799 96150 ]; 95800 96151 }) ··· 95815 96166 sources."tunnel-agent-0.6.0" 95816 96167 sources."tweetnacl-0.14.5" 95817 96168 sources."type-is-1.6.18" 95818 - sources."uglify-js-3.13.1" 96169 + sources."uglify-js-3.13.2" 95819 96170 sources."unix-dgram-2.0.4" 95820 96171 sources."unpipe-1.0.0" 95821 96172 sources."uri-js-4.4.1" ··· 96133 96484 sources."plist-1.2.0" 96134 96485 sources."process-nextick-args-2.0.1" 96135 96486 sources."pump-2.0.1" 96136 - sources."queue-microtask-1.2.2" 96487 + sources."queue-microtask-1.2.3" 96137 96488 sources."random-access-file-2.2.0" 96138 96489 sources."random-access-storage-1.4.1" 96139 96490 sources."random-iterate-1.0.1" ··· 96482 96833 sources."pump-3.0.0" 96483 96834 sources."punycode-2.1.1" 96484 96835 sources."qs-6.7.0" 96485 - sources."queue-microtask-1.2.2" 96836 + sources."queue-microtask-1.2.3" 96486 96837 sources."random-access-file-2.2.0" 96487 96838 sources."random-access-storage-1.4.1" 96488 96839 sources."random-bytes-1.0.0" ··· 96840 97191 sources."safe-buffer-5.1.2" 96841 97192 sources."safer-buffer-2.1.2" 96842 97193 sources."sax-1.2.4" 96843 - (sources."semver-7.3.4" // { 97194 + (sources."semver-7.3.5" // { 96844 97195 dependencies = [ 96845 97196 sources."lru-cache-6.0.0" 96846 97197 sources."yallist-4.0.0" ··· 96993 97344 sources."get-caller-file-2.0.5" 96994 97345 sources."get-stdin-8.0.0" 96995 97346 sources."glob-parent-5.1.2" 96996 - sources."globby-11.0.2" 97347 + sources."globby-11.0.3" 96997 97348 sources."graceful-fs-4.2.6" 96998 97349 sources."has-flag-4.0.0" 96999 97350 sources."ignore-5.1.8" ··· 97030 97381 sources."postcss-load-config-3.0.1" 97031 97382 sources."postcss-reporter-7.0.2" 97032 97383 sources."pretty-hrtime-1.0.3" 97033 - sources."queue-microtask-1.2.2" 97384 + sources."queue-microtask-1.2.3" 97034 97385 sources."read-cache-1.0.0" 97035 97386 sources."readdirp-3.5.0" 97036 97387 sources."require-directory-2.1.1" ··· 97448 97799 pyright = nodeEnv.buildNodePackage { 97449 97800 name = "pyright"; 97450 97801 packageName = "pyright"; 97451 - version = "1.1.123"; 97802 + version = "1.1.125"; 97452 97803 src = fetchurl { 97453 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.123.tgz"; 97454 - sha512 = "EYjELbm4G4icuIki6PfpzYrxNeGH78vNbXNmsbb/9XnnVQISdFcbc9oOBc2mU77enUwZctwZ6Nj2mZUMD9VibQ=="; 97804 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.125.tgz"; 97805 + sha512 = "MPaMGCnMR0i0VePXUPpXMHr23A2mkbW1Su+aTAWsqHho1rhQcxBtjeyhR0xqiwTxcC+c9eK9VwFHbd+OMGC6fQ=="; 97455 97806 }; 97456 97807 buildInputs = globalBuildInputs; 97457 97808 meta = { ··· 97930 98281 sources."jsprim-1.4.1" 97931 98282 sources."levn-0.3.0" 97932 98283 sources."lodash-4.17.21" 97933 - sources."lodash.sortby-4.7.0" 97934 98284 sources."mime-db-1.46.0" 97935 98285 sources."mime-types-2.1.29" 97936 98286 sources."nwsapi-2.2.0" ··· 97977 98327 sources."webidl-conversions-6.1.0" 97978 98328 sources."whatwg-encoding-1.0.5" 97979 98329 sources."whatwg-mimetype-2.3.0" 97980 - sources."whatwg-url-8.4.0" 98330 + sources."whatwg-url-8.5.0" 97981 98331 sources."word-wrap-1.2.3" 97982 98332 sources."wrap-ansi-7.0.0" 97983 98333 sources."ws-7.4.4" ··· 98014 98364 sources."@babel/helper-annotate-as-pure-7.12.13" 98015 98365 sources."@babel/helper-function-name-7.12.13" 98016 98366 sources."@babel/helper-get-function-arity-7.12.13" 98017 - sources."@babel/helper-module-imports-7.12.13" 98367 + sources."@babel/helper-module-imports-7.13.12" 98018 98368 sources."@babel/helper-split-export-declaration-7.12.13" 98019 98369 sources."@babel/helper-validator-identifier-7.12.11" 98020 98370 sources."@babel/highlight-7.13.10" 98021 - sources."@babel/parser-7.13.11" 98371 + sources."@babel/parser-7.13.12" 98022 98372 sources."@babel/runtime-7.13.10" 98023 98373 sources."@babel/template-7.12.13" 98024 98374 sources."@babel/traverse-7.13.0" 98025 - sources."@babel/types-7.13.0" 98375 + sources."@babel/types-7.13.12" 98026 98376 sources."@emotion/is-prop-valid-0.8.8" 98027 98377 sources."@emotion/memoize-0.7.4" 98028 98378 sources."@emotion/stylis-0.8.5" ··· 98252 98602 sources."readdirp-3.5.0" 98253 98603 sources."redoc-2.0.0-rc.48" 98254 98604 sources."reftools-1.1.8" 98255 - sources."regenerator-runtime-0.13.7" 98605 + sources."regenerator-runtime-0.13.8" 98256 98606 sources."require-directory-2.1.1" 98257 98607 sources."require-main-filename-2.0.0" 98258 98608 sources."ripemd160-2.0.2" ··· 98289 98639 sources."to-regex-range-5.0.1" 98290 98640 sources."tslib-2.1.0" 98291 98641 sources."tty-browserify-0.0.0" 98292 - sources."uglify-js-3.13.1" 98642 + sources."uglify-js-3.13.2" 98293 98643 (sources."url-0.11.0" // { 98294 98644 dependencies = [ 98295 98645 sources."punycode-1.3.2" ··· 98390 98740 rollup = nodeEnv.buildNodePackage { 98391 98741 name = "rollup"; 98392 98742 packageName = "rollup"; 98393 - version = "2.42.1"; 98743 + version = "2.42.4"; 98394 98744 src = fetchurl { 98395 - url = "https://registry.npmjs.org/rollup/-/rollup-2.42.1.tgz"; 98396 - sha512 = "/y7M2ULg06JOXmMpPzhTeQroJSchy8lX8q6qrjqil0jmLz6ejCWbQzVnWTsdmMQRhfU0QcwtiW8iZlmrGXWV4g=="; 98745 + url = "https://registry.npmjs.org/rollup/-/rollup-2.42.4.tgz"; 98746 + sha512 = "Zqv3EvNfcllBHyyEUM754npqsZw82VIjK34cDQMwrQ1d6aqxzeYu5yFb7smGkPU4C1Bj7HupIMeT6WU7uIdnMw=="; 98397 98747 }; 98398 98748 dependencies = [ 98399 98749 sources."fsevents-2.3.2" ··· 98441 98791 sources."@types/estree-0.0.39" 98442 98792 sources."@types/glob-7.1.3" 98443 98793 sources."@types/json-schema-7.0.7" 98444 - sources."@types/minimatch-3.0.3" 98794 + sources."@types/minimatch-3.0.4" 98445 98795 sources."@types/mocha-8.2.2" 98446 98796 sources."@types/node-12.12.70" 98447 98797 sources."@types/node-fetch-2.5.8" 98448 98798 sources."@types/resolve-1.17.1" 98449 98799 sources."@types/vscode-1.54.0" 98450 - sources."@typescript-eslint/eslint-plugin-4.18.0" 98451 - sources."@typescript-eslint/experimental-utils-4.18.0" 98452 - sources."@typescript-eslint/parser-4.18.0" 98453 - sources."@typescript-eslint/scope-manager-4.18.0" 98454 - sources."@typescript-eslint/types-4.18.0" 98455 - sources."@typescript-eslint/typescript-estree-4.18.0" 98456 - sources."@typescript-eslint/visitor-keys-4.18.0" 98800 + sources."@typescript-eslint/eslint-plugin-4.19.0" 98801 + sources."@typescript-eslint/experimental-utils-4.19.0" 98802 + sources."@typescript-eslint/parser-4.19.0" 98803 + sources."@typescript-eslint/scope-manager-4.19.0" 98804 + sources."@typescript-eslint/types-4.19.0" 98805 + sources."@typescript-eslint/typescript-estree-4.19.0" 98806 + sources."@typescript-eslint/visitor-keys-4.19.0" 98457 98807 sources."@ungap/promise-all-settled-1.1.2" 98458 98808 sources."acorn-7.4.1" 98459 98809 sources."acorn-jsx-5.3.1" ··· 98595 98945 sources."type-fest-0.20.2" 98596 98946 ]; 98597 98947 }) 98598 - sources."globby-11.0.2" 98948 + sources."globby-11.0.3" 98599 98949 sources."graceful-fs-4.2.6" 98600 98950 sources."growl-1.10.5" 98601 98951 sources."has-1.0.3" ··· 98697 99047 sources."progress-2.0.3" 98698 99048 sources."pseudomap-1.0.2" 98699 99049 sources."punycode-2.1.1" 98700 - sources."queue-microtask-1.2.2" 99050 + sources."queue-microtask-1.2.3" 98701 99051 sources."randombytes-2.1.0" 98702 99052 sources."read-1.0.7" 98703 99053 (sources."readable-stream-2.3.7" // { ··· 98713 99063 sources."resolve-from-4.0.0" 98714 99064 sources."reusify-1.0.4" 98715 99065 sources."rimraf-3.0.2" 98716 - sources."rollup-2.42.1" 99066 + sources."rollup-2.42.4" 98717 99067 sources."run-parallel-1.2.0" 98718 99068 sources."safe-buffer-5.2.1" 98719 - sources."semver-7.3.4" 99069 + sources."semver-7.3.5" 98720 99070 sources."serialize-javascript-5.0.1" 98721 99071 sources."setimmediate-1.0.5" 98722 99072 sources."shebang-command-2.0.0" ··· 98987 99337 semver = nodeEnv.buildNodePackage { 98988 99338 name = "semver"; 98989 99339 packageName = "semver"; 98990 - version = "7.3.4"; 99340 + version = "7.3.5"; 98991 99341 src = fetchurl { 98992 - url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"; 98993 - sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 99342 + url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 99343 + sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 98994 99344 }; 98995 99345 dependencies = [ 98996 99346 sources."lru-cache-6.0.0" ··· 99115 99465 serverless = nodeEnv.buildNodePackage { 99116 99466 name = "serverless"; 99117 99467 packageName = "serverless"; 99118 - version = "2.30.3"; 99468 + version = "2.31.0"; 99119 99469 src = fetchurl { 99120 - url = "https://registry.npmjs.org/serverless/-/serverless-2.30.3.tgz"; 99121 - sha512 = "a/81mGvXwzw90iBGKRcXdVw0lKMWzECh/3BpX8BJvgjCSINmUPjA/HSTota2UWTFp7Ne1vuiBEiLT4x8E/6kgQ=="; 99470 + url = "https://registry.npmjs.org/serverless/-/serverless-2.31.0.tgz"; 99471 + sha512 = "gqjiMemQKvOEYgAQB8IuPA4v6GMg83kkxREy8i55oHnv4xwMJQ2RX11Z83Sk05qPR5fl59e3ZNuLgvXZKoOgBA=="; 99122 99472 }; 99123 99473 dependencies = [ 99124 99474 sources."2-thenable-1.0.0" ··· 99150 99500 ]; 99151 99501 }) 99152 99502 sources."@serverless/component-metrics-1.0.8" 99153 - (sources."@serverless/components-3.7.5" // { 99503 + (sources."@serverless/components-3.7.7" // { 99154 99504 dependencies = [ 99155 99505 (sources."@serverless/utils-3.1.0" // { 99156 99506 dependencies = [ ··· 99177 99527 sources."semver-6.3.0" 99178 99528 ]; 99179 99529 }) 99180 - (sources."@serverless/enterprise-plugin-4.5.1" // { 99530 + (sources."@serverless/enterprise-plugin-4.5.2" // { 99181 99531 dependencies = [ 99182 99532 sources."js-yaml-3.14.1" 99183 99533 ]; 99184 99534 }) 99185 99535 sources."@serverless/event-mocks-1.1.1" 99186 - (sources."@serverless/platform-client-4.2.1" // { 99536 + (sources."@serverless/platform-client-4.2.2" // { 99187 99537 dependencies = [ 99188 99538 sources."adm-zip-0.4.16" 99189 99539 sources."js-yaml-3.14.1" ··· 99233 99583 sources."string-width-3.1.0" 99234 99584 ]; 99235 99585 }) 99236 - sources."ansi-escapes-4.3.1" 99586 + sources."ansi-escapes-4.3.2" 99237 99587 sources."ansi-regex-4.1.0" 99238 99588 sources."ansi-styles-3.2.1" 99239 99589 sources."anymatch-3.1.1" ··· 99272 99622 sources."async-2.6.3" 99273 99623 sources."asynckit-0.4.0" 99274 99624 sources."at-least-node-1.0.0" 99275 - (sources."aws-sdk-2.868.0" // { 99625 + (sources."aws-sdk-2.871.0" // { 99276 99626 dependencies = [ 99277 99627 sources."buffer-4.9.2" 99278 99628 sources."ieee754-1.1.13" ··· 99545 99895 sources."github-from-package-0.0.0" 99546 99896 sources."glob-7.1.6" 99547 99897 sources."glob-parent-5.1.2" 99548 - sources."globby-11.0.2" 99898 + sources."globby-11.0.3" 99549 99899 (sources."got-11.8.2" // { 99550 99900 dependencies = [ 99551 99901 sources."@sindresorhus/is-4.0.0" ··· 99791 100141 sources."qs-6.5.2" 99792 100142 sources."query-string-5.1.1" 99793 100143 sources."querystring-0.2.1" 99794 - sources."queue-microtask-1.2.2" 100144 + sources."queue-microtask-1.2.3" 99795 100145 sources."quick-lru-5.1.1" 99796 100146 sources."ramda-0.26.1" 99797 100147 sources."rc-1.2.8" ··· 99822 100172 sources."safer-buffer-2.1.2" 99823 100173 sources."sax-1.2.1" 99824 100174 sources."seek-bzip-1.0.6" 99825 - sources."semver-7.3.4" 100175 + sources."semver-7.3.5" 99826 100176 sources."set-blocking-2.0.0" 99827 100177 sources."set-immediate-shim-1.0.1" 99828 100178 sources."shebang-command-1.2.0" ··· 99941 100291 sources."tunnel-agent-0.6.0" 99942 100292 sources."tweetnacl-0.14.5" 99943 100293 sources."type-2.5.0" 99944 - sources."type-fest-0.11.0" 100294 + sources."type-fest-0.21.3" 99945 100295 sources."typedarray-to-buffer-3.1.5" 99946 100296 sources."unbzip2-stream-1.4.3" 99947 100297 sources."universalify-0.1.2" ··· 100641 100991 snyk = nodeEnv.buildNodePackage { 100642 100992 name = "snyk"; 100643 100993 packageName = "snyk"; 100644 - version = "1.503.0"; 100994 + version = "1.509.0"; 100645 100995 src = fetchurl { 100646 - url = "https://registry.npmjs.org/snyk/-/snyk-1.503.0.tgz"; 100647 - sha512 = "CCDlwvQJ/TyR6cbG38p/TxzE313CIvtPJe8LIxplfoLj6yswRtwspY5iYCOW4wdUzbZQyXk/Y4A7VSjXhBL9qQ=="; 100996 + url = "https://registry.npmjs.org/snyk/-/snyk-1.509.0.tgz"; 100997 + sha512 = "3vdfa79Phr16O6Laun5zkNOxhQ7VIPeqb+aWwREkY3xOldLiZmOgQxfwKkllc/kImDmxB1CdDmRRwSJvPGMJ3Q=="; 100648 100998 }; 100649 100999 dependencies = [ 100650 101000 sources."@deepcode/dcignore-1.0.2" ··· 100656 101006 sources."@sindresorhus/is-2.1.1" 100657 101007 sources."@snyk/cli-interface-2.11.0" 100658 101008 sources."@snyk/cocoapods-lockfile-parser-3.6.2" 100659 - (sources."@snyk/code-client-3.1.4" // { 101009 + (sources."@snyk/code-client-3.1.5" // { 100660 101010 dependencies = [ 100661 101011 sources."uuid-8.3.2" 100662 101012 ]; ··· 100664 101014 sources."@snyk/composer-lockfile-parser-1.4.1" 100665 101015 (sources."@snyk/dep-graph-1.28.0" // { 100666 101016 dependencies = [ 100667 - sources."semver-7.3.4" 101017 + sources."semver-7.3.5" 100668 101018 ]; 100669 101019 }) 100670 101020 sources."@snyk/docker-registry-v2-client-1.13.9" ··· 100674 101024 sources."@snyk/graphlib-2.1.9-patch.3" 100675 101025 (sources."@snyk/inquirer-7.3.3-patch" // { 100676 101026 dependencies = [ 100677 - sources."ansi-escapes-4.3.1" 101027 + sources."ansi-escapes-4.3.2" 100678 101028 sources."chalk-4.1.0" 100679 101029 sources."strip-ansi-6.0.0" 100680 101030 ]; ··· 100826 101176 sources."string_decoder-1.3.0" 100827 101177 ]; 100828 101178 }) 100829 - sources."dockerfile-ast-0.1.0" 101179 + sources."dockerfile-ast-0.2.0" 100830 101180 sources."dot-prop-5.3.0" 100831 101181 sources."dotnet-deps-parser-5.0.0" 100832 101182 sources."duplexer3-0.1.4" ··· 101071 101421 }) 101072 101422 sources."pupa-2.1.1" 101073 101423 sources."queue-6.0.2" 101074 - sources."queue-microtask-1.2.2" 101424 + sources."queue-microtask-1.2.3" 101075 101425 sources."quick-lru-5.1.1" 101076 101426 sources."raw-body-2.4.1" 101077 101427 sources."rc-1.2.8" ··· 101109 101459 sources."tslib-2.1.0" 101110 101460 ]; 101111 101461 }) 101112 - (sources."snyk-docker-plugin-4.17.3" // { 101462 + (sources."snyk-docker-plugin-4.19.3" // { 101113 101463 dependencies = [ 101114 101464 sources."rimraf-3.0.2" 101465 + sources."semver-7.3.5" 101115 101466 sources."snyk-nodejs-lockfile-parser-1.30.2" 101116 101467 sources."tmp-0.2.1" 101117 101468 sources."uuid-8.3.2" ··· 101178 101529 sources."yallist-3.1.1" 101179 101530 ]; 101180 101531 }) 101181 - sources."snyk-python-plugin-1.19.5" 101532 + sources."snyk-python-plugin-1.19.7" 101182 101533 sources."snyk-resolve-1.1.0" 101183 101534 (sources."snyk-resolve-deps-4.7.2" // { 101184 101535 dependencies = [ ··· 101257 101608 sources."tslib-1.14.1" 101258 101609 sources."tweetnacl-0.14.5" 101259 101610 sources."type-check-0.3.2" 101260 - sources."type-fest-0.11.0" 101611 + sources."type-fest-0.21.3" 101261 101612 sources."typedarray-to-buffer-3.1.5" 101262 101613 sources."unique-string-2.0.0" 101263 101614 sources."unpipe-1.0.0" ··· 101538 101889 sources."random-access-storage-1.3.0" 101539 101890 ]; 101540 101891 }) 101541 - sources."@types/minimatch-3.0.3" 101892 + sources."@types/minimatch-3.0.4" 101542 101893 sources."abstract-leveldown-6.0.3" 101543 101894 sources."aligned-block-file-1.2.2" 101544 101895 sources."ansi-escapes-1.4.0" ··· 101727 102078 sources."extend.js-0.0.2" 101728 102079 sources."extglob-0.3.2" 101729 102080 sources."fastintcompression-0.0.4" 101730 - sources."fastpriorityqueue-0.6.3" 102081 + sources."fastpriorityqueue-0.7.0" 101731 102082 sources."file-uri-to-path-1.0.0" 101732 102083 sources."filename-regex-2.0.1" 101733 102084 sources."fill-range-2.2.4" ··· 101881 102232 sources."isarray-1.0.0" 101882 102233 sources."isexe-2.0.0" 101883 102234 sources."isobject-2.1.0" 101884 - (sources."jitdb-2.3.3" // { 102235 + (sources."jitdb-2.3.4" // { 101885 102236 dependencies = [ 101886 102237 sources."mkdirp-1.0.4" 101887 102238 sources."push-stream-11.0.0" ··· 102576 102927 sources."async-1.5.2" 102577 102928 sources."async-limiter-1.0.1" 102578 102929 sources."asynckit-0.4.0" 102579 - (sources."aws-sdk-2.868.0" // { 102930 + (sources."aws-sdk-2.871.0" // { 102580 102931 dependencies = [ 102581 102932 sources."uuid-3.3.2" 102582 102933 ]; ··· 103168 103519 dependencies = [ 103169 103520 sources."debug-3.2.7" 103170 103521 sources."form-data-2.5.1" 103171 - sources."qs-6.10.0" 103522 + sources."qs-6.10.1" 103172 103523 sources."readable-stream-2.3.7" 103173 103524 sources."string_decoder-1.1.1" 103174 103525 ]; ··· 103181 103532 sources."esprima-4.0.1" 103182 103533 sources."js-yaml-3.14.1" 103183 103534 sources."lodash-3.10.1" 103184 - sources."qs-6.10.0" 103535 + sources."qs-6.10.1" 103185 103536 ]; 103186 103537 }) 103187 103538 sources."swagger-schema-official-2.0.0-bab6bed" ··· 103353 103704 }; 103354 103705 dependencies = [ 103355 103706 sources."@babel/code-frame-7.12.13" 103356 - sources."@babel/compat-data-7.13.11" 103707 + sources."@babel/compat-data-7.13.12" 103357 103708 sources."@babel/core-7.13.10" 103358 103709 sources."@babel/generator-7.13.9" 103359 103710 sources."@babel/helper-compilation-targets-7.13.10" 103360 103711 sources."@babel/helper-function-name-7.12.13" 103361 103712 sources."@babel/helper-get-function-arity-7.12.13" 103362 - sources."@babel/helper-member-expression-to-functions-7.13.0" 103363 - sources."@babel/helper-module-imports-7.12.13" 103364 - sources."@babel/helper-module-transforms-7.13.0" 103713 + sources."@babel/helper-member-expression-to-functions-7.13.12" 103714 + sources."@babel/helper-module-imports-7.13.12" 103715 + sources."@babel/helper-module-transforms-7.13.12" 103365 103716 sources."@babel/helper-optimise-call-expression-7.12.13" 103366 - sources."@babel/helper-replace-supers-7.13.0" 103367 - sources."@babel/helper-simple-access-7.12.13" 103717 + sources."@babel/helper-replace-supers-7.13.12" 103718 + sources."@babel/helper-simple-access-7.13.12" 103368 103719 sources."@babel/helper-split-export-declaration-7.12.13" 103369 103720 sources."@babel/helper-validator-identifier-7.12.11" 103370 103721 sources."@babel/helper-validator-option-7.12.17" ··· 103374 103725 sources."chalk-2.4.2" 103375 103726 ]; 103376 103727 }) 103377 - sources."@babel/parser-7.13.11" 103728 + sources."@babel/parser-7.13.12" 103378 103729 sources."@babel/template-7.12.13" 103379 103730 sources."@babel/traverse-7.13.0" 103380 - sources."@babel/types-7.13.0" 103731 + sources."@babel/types-7.13.12" 103381 103732 sources."@nodelib/fs.scandir-2.1.4" 103382 103733 sources."@nodelib/fs.stat-2.0.4" 103383 103734 sources."@nodelib/fs.walk-1.2.6" ··· 103403 103754 sources."callsites-3.1.0" 103404 103755 sources."camelcase-5.3.1" 103405 103756 sources."camelcase-keys-6.2.2" 103406 - sources."caniuse-lite-1.0.30001203" 103757 + sources."caniuse-lite-1.0.30001204" 103407 103758 (sources."chalk-4.1.0" // { 103408 103759 dependencies = [ 103409 103760 sources."ansi-styles-4.3.0" ··· 103441 103792 sources."domelementtype-1.3.1" 103442 103793 sources."domhandler-2.4.2" 103443 103794 sources."domutils-1.7.0" 103444 - sources."electron-to-chromium-1.3.693" 103795 + sources."electron-to-chromium-1.3.699" 103445 103796 sources."emoji-regex-8.0.0" 103446 103797 sources."entities-1.1.2" 103447 103798 sources."error-ex-1.3.2" ··· 103467 103818 sources."global-modules-2.0.0" 103468 103819 sources."global-prefix-3.0.0" 103469 103820 sources."globals-11.12.0" 103470 - sources."globby-11.0.2" 103821 + sources."globby-11.0.3" 103471 103822 sources."globjoin-0.1.4" 103472 103823 sources."gonzales-pe-4.3.0" 103473 103824 sources."hard-rejection-2.1.0" 103474 103825 sources."has-1.0.3" 103475 103826 sources."has-flag-3.0.0" 103476 - sources."hosted-git-info-4.0.1" 103827 + sources."hosted-git-info-4.0.2" 103477 103828 sources."html-tags-3.1.0" 103478 103829 sources."htmlparser2-3.10.1" 103479 103830 sources."ignore-5.1.8" ··· 103539 103890 sources."node-releases-1.1.71" 103540 103891 (sources."normalize-package-data-3.0.2" // { 103541 103892 dependencies = [ 103542 - sources."semver-7.3.4" 103893 + sources."semver-7.3.5" 103543 103894 ]; 103544 103895 }) 103545 103896 sources."normalize-range-0.1.2" ··· 103579 103930 sources."postcss-syntax-0.36.2" 103580 103931 sources."postcss-value-parser-4.1.0" 103581 103932 sources."punycode-2.1.1" 103582 - sources."queue-microtask-1.2.2" 103933 + sources."queue-microtask-1.2.3" 103583 103934 sources."quick-lru-4.0.1" 103584 103935 (sources."read-pkg-5.2.0" // { 103585 103936 dependencies = [ ··· 103674 104025 svelte-language-server = nodeEnv.buildNodePackage { 103675 104026 name = "svelte-language-server"; 103676 104027 packageName = "svelte-language-server"; 103677 - version = "0.12.22"; 104028 + version = "0.12.24"; 103678 104029 src = fetchurl { 103679 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.12.22.tgz"; 103680 - sha512 = "Wb1gazaGXc2efzq6x+RUHA1BXNnYikFPHHN4eIO1Ju3Gl1OJ4oHpzOloKGN+dH3awche6xQjlo4Uo7ONrWPwOw=="; 104030 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.12.24.tgz"; 104031 + sha512 = "kArBDbgiSj24dgd+u9KU9XgmN6plEETUQDgXcj9o/XEYp6Ii2VBZwxTbIxHAa4AFcOwIUxq5B6gX8zzt3y7v+Q=="; 103681 104032 }; 103682 104033 dependencies = [ 103683 104034 sources."@babel/code-frame-7.12.13" 103684 104035 sources."@babel/helper-validator-identifier-7.12.11" 103685 104036 sources."@babel/highlight-7.13.10" 103686 - sources."@emmetio/abbreviation-2.2.1" 103687 - sources."@emmetio/css-abbreviation-2.1.2" 104037 + sources."@emmetio/abbreviation-2.2.2" 104038 + sources."@emmetio/css-abbreviation-2.1.4" 103688 104039 sources."@emmetio/scanner-1.0.0" 103689 104040 sources."@types/node-14.14.35" 103690 104041 sources."@types/parse-json-4.0.0" ··· 103702 104053 sources."cosmiconfig-7.0.0" 103703 104054 sources."dedent-js-1.0.1" 103704 104055 sources."detect-indent-6.0.0" 103705 - sources."emmet-2.3.2" 104056 + sources."emmet-2.3.4" 103706 104057 sources."error-ex-1.3.2" 103707 104058 sources."escape-string-regexp-1.0.5" 103708 104059 sources."estree-walker-2.0.2" ··· 103739 104090 sources."supports-color-5.5.0" 103740 104091 sources."svelte-3.35.0" 103741 104092 sources."svelte-preprocess-4.6.9" 103742 - sources."svelte2tsx-0.1.182" 104093 + sources."svelte2tsx-0.1.184" 103743 104094 sources."to-regex-range-5.0.1" 103744 104095 sources."tslib-2.1.0" 103745 104096 sources."typescript-4.2.3" ··· 103780 104131 sources."chalk-4.1.0" 103781 104132 sources."color-convert-2.0.1" 103782 104133 sources."color-name-1.1.4" 103783 - sources."commander-7.1.0" 104134 + sources."commander-7.2.0" 103784 104135 sources."css-select-3.1.2" 103785 104136 sources."css-tree-1.1.2" 103786 104137 sources."css-what-4.0.0" ··· 104208 104559 dependencies = [ 104209 104560 sources."debug-3.2.7" 104210 104561 sources."ms-2.1.3" 104211 - sources."qs-6.10.0" 104562 + sources."qs-6.10.1" 104212 104563 sources."superagent-3.8.3" 104213 104564 ]; 104214 104565 }) ··· 104386 104737 sources."truncate-utf8-bytes-1.0.2" 104387 104738 sources."type-is-1.6.18" 104388 104739 sources."typedarray-0.0.6" 104389 - sources."uglify-js-3.13.1" 104740 + sources."uglify-js-3.13.2" 104390 104741 sources."undefsafe-2.0.3" 104391 104742 (sources."union-value-1.0.1" // { 104392 104743 dependencies = [ ··· 105100 105451 sources."mdast-comment-marker-1.1.2" 105101 105452 sources."mdast-util-mdx-0.1.1" 105102 105453 sources."mdast-util-mdx-expression-0.1.1" 105103 - sources."mdast-util-mdx-jsx-0.1.3" 105454 + sources."mdast-util-mdx-jsx-0.1.4" 105104 105455 sources."mdast-util-mdxjs-esm-0.1.1" 105105 105456 sources."mdast-util-to-markdown-0.6.5" 105106 105457 sources."mdast-util-to-nlcst-4.0.1" ··· 105572 105923 sources."@textlint/types-1.5.4" 105573 105924 sources."boundary-1.0.1" 105574 105925 sources."lodash-4.17.21" 105575 - sources."split-lines-2.0.0" 105926 + sources."split-lines-2.1.0" 105576 105927 sources."structured-source-3.0.2" 105577 105928 sources."textlint-rule-helper-2.1.1" 105578 105929 sources."unist-util-is-3.0.0" ··· 106043 106394 sources."read-chunk-3.2.0" 106044 106395 sources."readable-stream-3.6.0" 106045 106396 sources."readable-web-to-node-stream-2.0.0" 106046 - sources."regenerator-runtime-0.13.7" 106397 + sources."regenerator-runtime-0.13.8" 106047 106398 sources."registry-auth-token-4.2.1" 106048 106399 sources."registry-url-5.1.0" 106049 106400 (sources."request-2.88.2" // { ··· 106285 106636 sources."rimraf-2.6.3" 106286 106637 sources."safe-buffer-5.2.1" 106287 106638 sources."safer-buffer-2.1.2" 106288 - sources."semver-7.3.4" 106639 + sources."semver-7.3.5" 106289 106640 sources."sprintf-0.1.5" 106290 106641 sources."sshpk-1.16.1" 106291 106642 sources."stack-trace-0.0.10" ··· 106646 106997 uglify-js = nodeEnv.buildNodePackage { 106647 106998 name = "uglify-js"; 106648 106999 packageName = "uglify-js"; 106649 - version = "3.13.1"; 107000 + version = "3.13.2"; 106650 107001 src = fetchurl { 106651 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.1.tgz"; 106652 - sha512 = "EWhx3fHy3M9JbaeTnO+rEqzCe1wtyQClv6q3YWq0voOj4E+bMZBErVS1GAHPDiRGONYq34M1/d8KuQMgvi6Gjw=="; 107002 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.2.tgz"; 107003 + sha512 = "SbMu4D2Vo95LMC/MetNaso1194M1htEA+JrqE9Hk+G2DhI+itfS9TRu9ZKeCahLDNa/J3n4MqUJ/fOHMzQpRWw=="; 106653 107004 }; 106654 107005 buildInputs = globalBuildInputs; 106655 107006 meta = { ··· 106884 107235 sources."rimraf-3.0.2" 106885 107236 sources."safe-buffer-5.1.2" 106886 107237 sources."safer-buffer-2.1.2" 106887 - (sources."semver-7.3.4" // { 107238 + (sources."semver-7.3.5" // { 106888 107239 dependencies = [ 106889 107240 sources."lru-cache-6.0.0" 106890 107241 sources."yallist-4.0.0" ··· 106998 107349 sources."concat-map-0.0.1" 106999 107350 sources."console-control-strings-1.1.0" 107000 107351 sources."core-util-is-1.0.2" 107001 - sources."d3-array-2.12.0" 107352 + sources."d3-array-2.12.1" 107002 107353 sources."d3-color-2.0.0" 107003 107354 sources."d3-delaunay-5.3.0" 107004 107355 sources."d3-dispatch-2.0.0" ··· 108105 108456 sources."v8-compile-cache-2.3.0" 108106 108457 sources."vm-browserify-1.1.2" 108107 108458 sources."vsce-1.87.0" 108108 - sources."vscode-debugadapter-testsupport-1.45.0" 108109 - sources."vscode-debugprotocol-1.45.0" 108459 + sources."vscode-debugadapter-testsupport-1.46.0" 108460 + sources."vscode-debugprotocol-1.46.0" 108110 108461 (sources."watchpack-1.7.5" // { 108111 108462 dependencies = [ 108112 108463 sources."chokidar-3.5.1" ··· 108433 108784 sources."tslib-1.14.1" 108434 108785 sources."tunnel-agent-0.6.0" 108435 108786 sources."tweetnacl-0.14.5" 108436 - sources."uglify-js-3.13.1" 108787 + sources."uglify-js-3.13.2" 108437 108788 sources."uid-0.0.2" 108438 108789 sources."unbzip2-stream-1.4.3" 108439 108790 sources."unyield-0.0.1" ··· 109434 109785 sources."@mdn/browser-compat-data-3.1.3" 109435 109786 sources."@sindresorhus/is-0.14.0" 109436 109787 sources."@szmarczak/http-timer-1.1.2" 109437 - sources."@types/minimatch-3.0.3" 109788 + sources."@types/minimatch-3.0.4" 109438 109789 sources."@types/node-14.14.35" 109439 109790 sources."@types/yauzl-2.9.1" 109440 109791 sources."acorn-7.4.1" ··· 109896 110247 }) 109897 110248 sources."readable-stream-3.6.0" 109898 110249 sources."readdir-glob-1.1.1" 109899 - sources."regenerator-runtime-0.13.7" 110250 + sources."regenerator-runtime-0.13.8" 109900 110251 sources."regexp.prototype.flags-1.3.1" 109901 110252 sources."regexpp-3.1.0" 109902 110253 sources."registry-auth-token-4.2.1" ··· 110040 110391 webpack = nodeEnv.buildNodePackage { 110041 110392 name = "webpack"; 110042 110393 packageName = "webpack"; 110043 - version = "5.27.1"; 110394 + version = "5.28.0"; 110044 110395 src = fetchurl { 110045 - url = "https://registry.npmjs.org/webpack/-/webpack-5.27.1.tgz"; 110046 - sha512 = "rxIDsPZ3Apl3JcqiemiLmWH+hAq04YeOXqvCxNZOnTp8ZgM9NEPtbu4CaMfMEf9KShnx/Ym8uLGmM6P4XnwCoA=="; 110396 + url = "https://registry.npmjs.org/webpack/-/webpack-5.28.0.tgz"; 110397 + sha512 = "1xllYVmA4dIvRjHzwELgW4KjIU1fW4PEuEnjsylz7k7H5HgPOctIq7W1jrt3sKH9yG5d72//XWzsHhfoWvsQVg=="; 110047 110398 }; 110048 110399 dependencies = [ 110049 110400 sources."@types/eslint-7.2.7" ··· 110073 110424 sources."ajv-keywords-3.5.2" 110074 110425 sources."browserslist-4.16.3" 110075 110426 sources."buffer-from-1.1.1" 110076 - sources."caniuse-lite-1.0.30001203" 110427 + sources."caniuse-lite-1.0.30001204" 110077 110428 sources."chrome-trace-event-1.0.2" 110078 110429 sources."colorette-1.2.2" 110079 110430 sources."commander-2.20.3" 110080 - sources."electron-to-chromium-1.3.693" 110431 + sources."electron-to-chromium-1.3.699" 110081 110432 sources."enhanced-resolve-5.7.0" 110082 110433 sources."es-module-lexer-0.4.1" 110083 110434 sources."escalade-3.1.1" ··· 110152 110503 sources."ansi-colors-4.1.1" 110153 110504 sources."clone-deep-4.0.1" 110154 110505 sources."colorette-1.2.2" 110155 - sources."commander-7.1.0" 110506 + sources."commander-7.2.0" 110156 110507 sources."cross-spawn-7.0.3" 110157 110508 sources."enquirer-2.3.6" 110158 110509 sources."envinfo-7.7.4" ··· 110217 110568 }; 110218 110569 dependencies = [ 110219 110570 sources."@types/glob-7.1.3" 110220 - sources."@types/minimatch-3.0.3" 110571 + sources."@types/minimatch-3.0.4" 110221 110572 sources."@types/node-14.14.35" 110222 110573 sources."accepts-1.3.7" 110223 110574 sources."ajv-6.12.6" ··· 110791 111142 copy-webpack-plugin = nodeEnv.buildNodePackage { 110792 111143 name = "copy-webpack-plugin"; 110793 111144 packageName = "copy-webpack-plugin"; 110794 - version = "8.0.0"; 111145 + version = "8.1.0"; 110795 111146 src = fetchurl { 110796 - url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-8.0.0.tgz"; 110797 - sha512 = "sqGe2FsB67wV/De+sz5azQklADe4thN016od6m7iK9KbjrSc1SEgg5QZ0LN+jGx5aZR52CbuXbqOhoIbqzzXlA=="; 111147 + url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-8.1.0.tgz"; 111148 + sha512 = "Soiq8kXI2AZkpw3dSp18u6oU2JonC7UKv3UdXsKOmT1A5QT46ku9+6c0Qy29JDbSavQJNN1/eKGpd3QNw+cZWg=="; 110798 111149 }; 110799 111150 dependencies = [ 110800 111151 sources."@nodelib/fs.scandir-2.1.4" ··· 110812 111163 sources."fastq-1.11.0" 110813 111164 sources."fill-range-7.0.1" 110814 111165 sources."glob-parent-5.1.2" 110815 - sources."globby-11.0.2" 111166 + sources."globby-11.0.3" 110816 111167 sources."ignore-5.1.8" 110817 111168 sources."is-extglob-2.1.1" 110818 111169 sources."is-glob-4.0.1" ··· 110825 111176 sources."path-type-4.0.0" 110826 111177 sources."picomatch-2.2.2" 110827 111178 sources."punycode-2.1.1" 110828 - sources."queue-microtask-1.2.2" 111179 + sources."queue-microtask-1.2.3" 110829 111180 sources."randombytes-2.1.0" 110830 111181 sources."reusify-1.0.4" 110831 111182 sources."run-parallel-1.2.0" ··· 111055 111406 sources."protobufjs-6.10.2" 111056 111407 sources."pump-3.0.0" 111057 111408 sources."qap-3.3.1" 111058 - sources."queue-microtask-1.2.2" 111409 + sources."queue-microtask-1.2.3" 111059 111410 sources."random-access-file-2.2.0" 111060 111411 sources."random-access-storage-1.4.1" 111061 111412 sources."random-iterate-1.0.1" ··· 111136 111487 sources."utp-native-2.3.0" 111137 111488 sources."videostream-3.2.2" 111138 111489 sources."vlc-command-1.2.0" 111139 - (sources."webtorrent-0.115.4" // { 111490 + (sources."webtorrent-0.116.0" // { 111140 111491 dependencies = [ 111141 111492 sources."debug-4.3.2" 111142 111493 sources."decompress-response-6.0.0" ··· 111292 111643 sources."@nodelib/fs.stat-1.1.3" 111293 111644 sources."@sindresorhus/is-0.7.0" 111294 111645 sources."@types/glob-7.1.3" 111295 - sources."@types/minimatch-3.0.3" 111646 + sources."@types/minimatch-3.0.4" 111296 111647 sources."@types/node-14.14.35" 111297 111648 sources."@types/normalize-package-data-2.4.0" 111298 111649 sources."JSONStream-1.3.5" ··· 111544 111895 sources."glob-to-regexp-0.3.0" 111545 111896 (sources."global-agent-2.1.12" // { 111546 111897 dependencies = [ 111547 - sources."semver-7.3.4" 111898 + sources."semver-7.3.5" 111548 111899 ]; 111549 111900 }) 111550 111901 sources."global-dirs-0.1.1" ··· 111869 112220 sources."indent-string-2.1.0" 111870 112221 ]; 111871 112222 }) 111872 - sources."regenerator-runtime-0.13.7" 112223 + sources."regenerator-runtime-0.13.8" 111873 112224 sources."regex-not-1.0.2" 111874 112225 sources."registry-auth-token-3.4.0" 111875 112226 sources."registry-url-3.1.0" ··· 112132 112483 sources."yeoman-doctor-4.0.0" 112133 112484 (sources."yeoman-environment-2.10.3" // { 112134 112485 dependencies = [ 112135 - sources."ansi-escapes-4.3.1" 112486 + sources."ansi-escapes-4.3.2" 112136 112487 sources."ansi-regex-5.0.0" 112137 112488 sources."ansi-styles-4.3.0" 112138 112489 sources."cli-cursor-3.1.0" ··· 112159 112510 sources."onetime-5.1.2" 112160 112511 sources."path-key-3.1.1" 112161 112512 sources."restore-cursor-3.1.0" 112162 - sources."semver-7.3.4" 112513 + sources."semver-7.3.5" 112163 112514 sources."shebang-command-2.0.0" 112164 112515 sources."shebang-regex-3.0.0" 112165 112516 (sources."string-width-4.2.2" // { ··· 112173 112524 ]; 112174 112525 }) 112175 112526 sources."supports-color-7.2.0" 112176 - sources."type-fest-0.11.0" 112527 + sources."type-fest-0.21.3" 112177 112528 sources."which-2.0.2" 112178 112529 ]; 112179 112530 }) ··· 112211 112562 sources."pify-4.0.1" 112212 112563 sources."read-pkg-5.2.0" 112213 112564 sources."read-pkg-up-5.0.0" 112214 - sources."semver-7.3.4" 112565 + sources."semver-7.3.5" 112215 112566 sources."slash-2.0.0" 112216 112567 sources."type-fest-0.6.0" 112217 112568 ];
+4 -1
pkgs/development/ocaml-modules/eliom/default.nix
··· 1 1 { stdenv, lib, fetchzip, which, ocsigen_server, ocaml, 2 2 lwt_react, 3 3 opaline, ppx_deriving, findlib 4 + , ocaml-migrate-parsetree 4 5 , ppx_tools_versioned 5 6 , js_of_ocaml-ocamlbuild, js_of_ocaml-ppx, js_of_ocaml-ppx_deriving_json 6 7 , js_of_ocaml-lwt ··· 22 23 sha256 = "00m6v2k4mg8705dy41934lznl6gj91i6dk7p1nkaccm51nna25kz"; 23 24 }; 24 25 25 - buildInputs = [ ocaml which findlib js_of_ocaml-ocamlbuild js_of_ocaml-ppx_deriving_json opaline 26 + buildInputs = [ ocaml which findlib js_of_ocaml-ocamlbuild 27 + ocaml-migrate-parsetree 28 + js_of_ocaml-ppx_deriving_json opaline 26 29 ppx_tools_versioned 27 30 ]; 28 31
+2 -2
pkgs/development/ocaml-modules/git/default.nix
··· 8 8 9 9 buildDunePackage rec { 10 10 pname = "git"; 11 - version = "3.3.2"; 11 + version = "3.3.3"; 12 12 13 13 minimumOCamlVersion = "4.08"; 14 14 useDune2 = true; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/mirage/ocaml-git/releases/download/${version}/git-${version}.tbz"; 18 - sha256 = "01xcjggsb13n6018lp6ic0f6pglfl39qcg126h1k3da19hvpzhrv"; 18 + sha256 = "0j8pw9w74bfhrjsqr8zm8g7h1az94z9vg7qgc6z6649zm9yjiax3"; 19 19 }; 20 20 21 21 buildInputs = [
+14 -9
pkgs/development/ocaml-modules/janestreet/0.14.nix
··· 182 182 183 183 base_quickcheck = janePackage { 184 184 pname = "base_quickcheck"; 185 - hash = "1lmp1h68g0gqiw8m6gqcbrp0fn76nsrlsqrwxp20d7jhh0693f3j"; 185 + version = "0.14.1"; 186 + hash = "0apq3d9xb0zdaqsl4cjk5skyig57ff1plndb2mh0nn3czvfhifxs"; 186 187 minimumOCamlVersion = "4.04.2"; 187 188 meta.description = "Randomized testing framework, designed for compatibility with Base"; 188 189 propagatedBuildInputs = [ ppx_base ppx_fields_conv ppx_let ppx_sexp_value splittable_random ]; ··· 450 451 451 452 ppx_custom_printf = janePackage { 452 453 pname = "ppx_custom_printf"; 453 - hash = "0p9hgx0krxqw8hlzfv2bg2m3zi5nxsnzhyp0fj5936rapad02hc5"; 454 + version = "0.14.1"; 455 + hash = "0c1m65kn27zvwmfwy7kk46ga76yw2a3ik9jygpy1b6nn6pi026w9"; 454 456 minimumOCamlVersion = "4.04.2"; 455 457 meta.description = "Printf-style format-strings for user-defined string conversion"; 456 458 propagatedBuildInputs = [ ppx_sexp_conv ]; ··· 466 468 467 469 ppx_expect = janePackage { 468 470 pname = "ppx_expect"; 469 - hash = "05v6jzn1nbmwk3vzxxnb3380wzg2nb28jpb3v5m5c4ikn0jrhcwn"; 471 + version = "0.14.1"; 472 + hash = "0vbbnjrzpyk5p0js21lafr6fcp2wqka89p1876rdf472cmg0l7fv"; 470 473 minimumOCamlVersion = "4.04.2"; 471 474 meta.description = "Cram like framework for OCaml"; 472 475 propagatedBuildInputs = [ ppx_here ppx_inline_test re ]; ··· 559 562 560 563 ppx_optcomp = janePackage { 561 564 pname = "ppx_optcomp"; 562 - hash = "1wav3zgh4244x1ll562g735cwwrzyk5jj72niq9jgz9qjlpsprlk"; 565 + version = "0.14.1"; 566 + hash = "0j5smqa0hig1yn8wfrb4mv0y59kkwsalmqkm5asbd7kcc6589ap4"; 563 567 minimumOCamlVersion = "4.04.2"; 564 568 meta.description = "Optional compilation for OCaml"; 565 569 propagatedBuildInputs = [ ppxlib ]; ··· 591 595 592 596 ppx_sexp_conv = janePackage { 593 597 pname = "ppx_sexp_conv"; 594 - version = "0.14.1"; 598 + version = "0.14.3"; 595 599 minimumOCamlVersion = "4.04.2"; 596 - hash = "04bx5id99clrgvkg122nx03zig1m7igg75piphhyx04w33shgkz2"; 600 + hash = "0dbri9d00ydi0dw1cavswnqdmhjaaz80vap29ns2lr6mhhlvyjmj"; 597 601 meta.description = "[@@deriving] plugin to generate S-expression conversion functions"; 598 602 propagatedBuildInputs = [ ppxlib sexplib0 base ]; 599 603 }; 600 604 601 605 ppx_sexp_message = janePackage { 602 606 pname = "ppx_sexp_message"; 603 - hash = "17xnq345xwfkl9ydn05ljsg37m2glh3alnspayl3fgbhmcjmav3i"; 607 + version = "0.14.1"; 608 + hash = "1lvsr0d68kakih1ll33hy6dxbjkly6lmky4q6z0h0hrcbd6z48k4"; 604 609 minimumOCamlVersion = "4.04.2"; 605 610 meta.description = "A ppx rewriter for easy construction of s-expressions"; 606 611 propagatedBuildInputs = [ ppx_here ppx_sexp_conv ]; ··· 634 639 635 640 ppx_typerep_conv = janePackage { 636 641 pname = "ppx_typerep_conv"; 637 - version = "0.14.1"; 642 + version = "0.14.2"; 638 643 minimumOCamlVersion = "4.04.2"; 639 - hash = "1r0z7qlcpaicas5hkymy2q0gi207814wlay4hys7pl5asd59wcdh"; 644 + hash = "0yk9vkpnwr8labgfncqdi4rfkj88d8mb3cr8m4gdqpi3f2r27hf0"; 640 645 meta.description = "Generation of runtime types from type declarations"; 641 646 propagatedBuildInputs = [ ppxlib typerep ]; 642 647 };
+3 -3
pkgs/development/ocaml-modules/pgocaml/default.nix
··· 4 4 5 5 buildDunePackage rec { 6 6 pname = "pgocaml"; 7 - version = "4.2.2"; 7 + version = "4.2.2-dev-20210111"; 8 8 src = fetchFromGitHub { 9 9 owner = "darioteixeira"; 10 10 repo = "pgocaml"; 11 - rev = version; 12 - sha256 = "1rdypc83nap9j2ml9r6n1pzgf79gk1yffwyi6fmcrl7zmy01cg0n"; 11 + rev = "1bb0025deeb3d14029afdcc69aaa7847026e243e"; 12 + sha256 = "11inbjf87gclc2xmpq56ag4cm4467y9q9hjgbdn69fa1bman2zn2"; 13 13 }; 14 14 15 15 minimumOCamlVersion = "4.08";
+2 -2
pkgs/development/ocaml-modules/pgocaml/ppx.nix
··· 1 - { buildDunePackage, pgocaml, ppx_optcomp, ppx_tools, ppx_tools_versioned, rresult }: 1 + { buildDunePackage, pgocaml, ppx_optcomp }: 2 2 3 3 buildDunePackage { 4 4 pname = "pgocaml_ppx"; 5 5 inherit (pgocaml) src version useDune2 meta; 6 6 7 - propagatedBuildInputs = [ pgocaml ppx_optcomp ppx_tools ppx_tools_versioned rresult ]; 7 + propagatedBuildInputs = [ pgocaml ppx_optcomp ]; 8 8 }
+6 -1
pkgs/development/ocaml-modules/ppxlib/default.nix
··· 1 1 { lib, fetchFromGitHub, buildDunePackage, ocaml 2 - , version ? if lib.versionAtLeast ocaml.version "4.07" then "0.15.0" else "0.13.0" 2 + , version ? 3 + if lib.versionAtLeast ocaml.version "4.07" 4 + then if lib.versionAtLeast ocaml.version "4.08" 5 + then "0.22.0" else "0.15.0" else "0.13.0" 3 6 , ocaml-compiler-libs, ocaml-migrate-parsetree, ppx_derivers, stdio 4 7 , stdlib-shims, ocaml-migrate-parsetree-2-1 5 8 }: ··· 19 22 "0.15.0" = { 20 23 sha256 = "1p037kqj5858xrhh0dps6vbf4fnijla6z9fjz5zigvnqp4i2xkrn"; 21 24 min_version = "4.07"; 25 + max_version = "4.12"; 22 26 useOMP2 = false; 23 27 }; 24 28 "0.18.0" = { 25 29 sha256 = "1ciy6va2gjrpjs02kha83pzh0x1gkmfsfsdgabbs1v14a8qgfibm"; 26 30 min_version = "4.07"; 31 + max_version = "4.12"; 27 32 }; 28 33 "0.22.0" = { 29 34 sha256 = "0kf7lgcwygf6zlx7rwddqpqvasa6v7xiq0bqal8vxlib6lpg074q";
+3 -3
pkgs/development/ocaml-modules/visitors/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "visitors"; 5 - version = "20210127"; 5 + version = "20210316"; 6 6 7 7 useDune2 = true; 8 8 9 - minimumOCamlVersion = "4.07"; 9 + minimumOCamlVersion = "4.08"; 10 10 11 11 src = fetchFromGitLab { 12 12 owner = "fpottier"; 13 13 repo = pname; 14 14 rev = version; 15 15 domain = "gitlab.inria.fr"; 16 - sha256 = "0b73h7d4yv04a0b5x2i222jknbcgf9vvxzfjxzy2jwanxz9d873z"; 16 + sha256 = "12d45ncy3g9mpcs6n58aq6yzs5qz662msgcr7ccms9jhiq44m8f7"; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ ppxlib ppx_deriving result ];
+11 -1
pkgs/development/python-modules/asttokens/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, 1 + { lib, fetchPypi, fetchpatch, buildPythonPackage, 2 2 setuptools_scm, toml, six, astroid, pytest 3 3 }: 4 4 ··· 10 10 inherit pname version; 11 11 sha256 = "0a2ixiz04aw4p0aivxh47k3fa9ql804l3y5iv5gcih9aizi5fbm4"; 12 12 }; 13 + 14 + patches = [ 15 + # Fixes compatibility with python 3.9, will be included in the next release 16 + # after 2.0.4 17 + (fetchpatch { 18 + url = "https://github.com/gristlabs/asttokens/commit/d8ff80ee7d2e64c5e1daf50cc38eb99663f1b1ac.patch"; 19 + sha256 = "19y8n8vpzr2ijldbq5rh19sf0vz5azqqpkb9bx0ljjg98h6k7kjj"; 20 + excludes = [ "setup.cfg" ]; 21 + }) 22 + ]; 13 23 14 24 propagatedBuildInputs = [ setuptools_scm toml six astroid ]; 15 25
+21 -5
pkgs/development/python-modules/boltons/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, pytest }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , pytestCheckHook 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "boltons"; 5 - version = "20.2.0"; 10 + version = "20.2.1"; 6 11 7 12 # No tests in PyPi Tarball 8 13 src = fetchFromGitHub { 9 14 owner = "mahmoud"; 10 15 repo = "boltons"; 11 16 rev = version; 12 - sha256 = "08rd6av8dp5n1vz6nybmayl1mfsmj66cskiaybfshcgix29ca803"; 17 + sha256 = "0vw0h0z81gfxgjfijqiza92ic0siv9xy65mklgj5d0dzr1k9waw8"; 13 18 }; 14 19 15 - checkInputs = [ pytest ]; 16 - checkPhase = "pytest tests"; 20 + patches = [ 21 + (fetchpatch { 22 + url = "https://github.com/mahmoud/boltons/commit/754afddf141ea26956c88c7e13fe5e7ca7942654.patch"; 23 + sha256 = "14kcq8pl4pmgcnlnmj1sh1yrksgym0kn0kgz2648g192svqkbpz8"; 24 + }) 25 + ]; 26 + 27 + checkInputs = [ pytestCheckHook ]; 28 + disabledTests = [ 29 + # This test is broken without this PR, which has not yet been merged 30 + # https://github.com/mahmoud/boltons/pull/283 31 + "test_frozendict_ior" 32 + ]; 17 33 18 34 meta = with lib; { 19 35 homepage = "https://github.com/mahmoud/boltons";
+11 -7
pkgs/development/python-modules/cmarkgfm/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, cffi, pytest }: 1 + { lib 2 + , buildPythonPackage 3 + , cffi 4 + , fetchPypi 5 + , pytestCheckHook 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "cmarkgfm"; 5 - version = "0.5.2"; 10 + version = "0.5.3"; 6 11 7 12 src = fetchPypi { 8 13 inherit pname version; 9 - sha256 = "e7d65b90645faa55c28886d01f658235af08b4c4edbf9d959518a17007dd20b4"; 14 + sha256 = "sha256-tqVJq6Mnq9mG1nSM8hyGN9dBx2hQ5/773vjSi/4TjjI="; 10 15 }; 11 16 12 17 propagatedBuildInputs = [ cffi ]; 13 18 14 - checkInputs = [ pytest ]; 19 + checkInputs = [ pytestCheckHook ]; 15 20 16 - checkPhase = '' 17 - py.test 18 - ''; 21 + pythonImportsCheck = [ "cmarkgfm" ]; 19 22 20 23 meta = with lib; { 21 24 description = "Minimal bindings to GitHub's fork of cmark"; 22 25 homepage = "https://github.com/jonparrott/cmarkgfm"; 23 26 license = licenses.mit; 27 + maintainers = with maintainers; [ fab ]; 24 28 }; 25 29 }
+27 -13
pkgs/development/python-modules/cupy/default.nix
··· 1 1 { lib, buildPythonPackage 2 - , fetchPypi, isPy3k, linuxPackages 3 - , fastrlock, numpy, six, wheel, pytest, mock, setuptools 2 + , fetchPypi, isPy3k, cython 3 + , fastrlock, numpy, six, wheel, pytestCheckHook, mock, setuptools 4 4 , cudatoolkit, cudnn, cutensor, nccl 5 + , addOpenGLRunpath 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "cupy"; 9 - version = "8.4.0"; 10 + version = "8.5.0"; 10 11 disabled = !isPy3k; 11 12 12 13 src = fetchPypi { 13 14 inherit pname version; 14 - sha256 = "58d19af6b2e83388d4f0f6ca4226bae4b947920d2ca4951c2eddc8bc78abf66b"; 15 + sha256 = "fb3f8d3b3454beb249b9880502a45fe493c5a44efacc4c72914cbe1a5dbdf803"; 15 16 }; 16 17 17 - checkInputs = [ 18 - pytest 19 - mock 20 - ]; 21 - 22 18 preConfigure = '' 23 - export CUDA_PATH=${cudatoolkit} 19 + export CUDA_PATH=${cudatoolkit} 24 20 ''; 25 21 22 + nativeBuildInputs = [ 23 + addOpenGLRunpath 24 + cython 25 + ]; 26 + 27 + LDFLAGS = "-L${cudatoolkit}/lib/stubs"; 28 + 26 29 propagatedBuildInputs = [ 27 30 cudatoolkit 28 31 cudnn 29 32 cutensor 30 - linuxPackages.nvidia_x11 31 33 nccl 32 34 fastrlock 33 35 numpy ··· 36 38 wheel 37 39 ]; 38 40 39 - # In python3, test was failed... 40 - doCheck = !isPy3k; 41 + checkInputs = [ 42 + pytestCheckHook 43 + mock 44 + ]; 45 + 46 + # Won't work with the GPU, whose drivers won't be accessible from the build 47 + # sandbox 48 + doCheck = false; 49 + 50 + postFixup = '' 51 + find $out -type f \( -name '*.so' -or -name '*.so.*' \) | while read lib; do 52 + addOpenGLRunpath "$lib" 53 + done 54 + ''; 41 55 42 56 enableParallelBuilding = true; 43 57
+26
pkgs/development/python-modules/iminuit/default.nix
··· 1 + { lib, buildPythonPackage, isPy3k, fetchPypi, cmake, numpy, pytestCheckHook }: 2 + 3 + buildPythonPackage rec { 4 + pname = "iminuit"; 5 + version = "2.4.0"; 6 + disabled = !isPy3k; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "350c13d33f3ec5884335aea1cc11a17ae49dd8e6b2181c3f1b3c9c27e2e0b228"; 11 + }; 12 + 13 + nativeBuildInputs = [ cmake ]; 14 + propagatedBuildInputs = [ numpy ]; 15 + 16 + dontUseCmakeConfigure = true; 17 + 18 + checkInputs = [ pytestCheckHook ]; 19 + 20 + meta = with lib; { 21 + homepage = "https://github.com/scikit-hep/iminuit"; 22 + description = "Python interface for the Minuit2 C++ library"; 23 + license = with licenses; [ mit lgpl2Only ]; 24 + maintainers = with maintainers; [ veprbl ]; 25 + }; 26 + }
+7 -8
pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, requests 1 + { lib, buildPythonPackage, fetchPypi, requests 2 2 , websocket_client, pythonOlder }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "jellyfin-apiclient-python"; 6 - version = "1.6.1"; 6 + version = "1.7.2"; 7 7 disabled = pythonOlder "3.6"; 8 8 9 - src = fetchFromGitHub { 10 - owner = "iwalton3"; 11 - repo = "jellyfin-apiclient-python"; 12 - rev = "v${version}"; 13 - sha256 = "0f7czq83ic22fz1vnf0cavb7l3grcxxd5yyw9wcjz3g1j2d76735"; 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "sha256-nSLUa9/jAT6XrHo77kV5HYBxPO/lhcWKqPfpES7ul9A="; 14 12 }; 15 13 16 14 propagatedBuildInputs = [ requests websocket_client ]; 17 15 16 + doCheck = false; # no tests 18 17 pythonImportsCheck = [ "jellyfin_apiclient_python" ]; 19 18 20 19 meta = with lib; { 21 - homepage = "https://github.com/iwalton3/jellyfin-apiclient-python"; 20 + homepage = "https://github.com/jellyfin/jellyfin-apiclient-python"; 22 21 description = "Python API client for Jellyfin"; 23 22 license = licenses.gpl3; 24 23 maintainers = with maintainers; [ jojosch ];
+1 -1
pkgs/development/python-modules/libagent/default.nix
··· 25 25 meta = with lib; { 26 26 description = "Using hardware wallets as SSH/GPG agent"; 27 27 homepage = "https://github.com/romanz/trezor-agent"; 28 - license = licenses.gpl3; 28 + license = licenses.lgpl3Only; 29 29 maintainers = with maintainers; [ np ]; 30 30 }; 31 31 }
+1
pkgs/development/python-modules/ndjson/default.nix
··· 16 16 homepage = "https://github.com/rhgrant10/ndjson"; 17 17 description = "JsonDecoder"; 18 18 platforms = platforms.unix; 19 + license = licenses.gpl3Only; 19 20 maintainers = with maintainers; [ freezeboy ]; 20 21 }; 21 22 }
-1
pkgs/development/python-modules/pkutils/default.nix
··· 1 1 { lib 2 - , pythonOlder 3 2 , buildPythonPackage 4 3 , isPy3k 5 4 , fetchFromGitHub
+5 -15
pkgs/development/python-modules/pyicu/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , pytest 4 + , pytestCheckHook 5 5 , six 6 - , fetchpatch 7 6 , icu 8 7 }: 9 8 10 9 buildPythonPackage rec { 11 10 pname = "PyICU"; 12 - version = "2.3.1"; 11 + version = "2.6"; 13 12 14 13 src = fetchPypi { 15 14 inherit pname version; 16 - sha256 = "ddb2b453853b4c25db382bc5e8c4cde09b3f4696ef1e1494f8294e174f459cf4"; 15 + sha256 = "0wb3v421i2fnnxdywam4ay8hqvnxlz0r2nrpx5lqy3rn6dlbz9d9"; 17 16 }; 18 17 19 - patches = [ 20 - (fetchpatch { 21 - url = "https://salsa.debian.org/python-team/modules/pyicu/raw/debian/2.2-2/" 22 - + "debian/patches/icu_test.patch"; 23 - sha256 = "1iavdkyqixm9i753svl17barla93b7jzgkw09dn3hnggamx7zwx9"; 24 - }) 25 - ]; 26 - 27 18 nativeBuildInputs = [ icu ]; # for icu-config 28 19 buildInputs = [ icu ]; 29 - checkInputs = [ pytest ]; 30 - propagatedBuildInputs = [ six ]; 20 + checkInputs = [ pytestCheckHook six ]; 31 21 32 22 meta = with lib; { 33 - homepage = "https://pypi.python.org/pypi/PyICU/"; 23 + homepage = "https://github.com/ovalhub/pyicu/"; 34 24 description = "Python extension wrapping the ICU C++ API"; 35 25 license = licenses.mit; 36 26 platforms = platforms.unix;
+22
pkgs/development/python-modules/pykodi/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, aiohttp, jsonrpc-async, jsonrpc-websocket }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pykodi"; 5 + version = "0.2.3"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "099xyn5aql5mdim6kh4hwx0fg1a3bx73qdvwr48nz23cljmmk1m8"; 10 + }; 11 + 12 + propagatedBuildInputs = [ aiohttp jsonrpc-async jsonrpc-websocket ]; 13 + 14 + pythonImportsCheck = [ "pykodi" ]; 15 + 16 + meta = with lib; { 17 + description = "An async python interface for Kodi over JSON-RPC"; 18 + homepage = "https://github.com/OnFreund/PyKodi"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ sephalon ]; 21 + }; 22 + }
+5 -5
pkgs/development/python-modules/python-miio/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "python-miio"; 27 - version = "0.5.5.1"; 28 - 27 + version = "0.5.5.2"; 29 28 disabled = pythonOlder "3.6"; 30 - 31 29 format = "pyproject"; 32 30 33 31 src = fetchPypi { 34 32 inherit pname version; 35 - sha256 = "sha256-3IBObrytkn6rLUT+wMlwzreqQ4AfCgxiMTJm2Iwm+5E="; 33 + sha256 = "sha256-lk7egCyj+vSsaXmxuWxlQuom8n3JEs/RIWwCuwTOXeI="; 36 34 }; 37 35 38 36 postPatch = '' ··· 66 64 pyyaml 67 65 ]; 68 66 67 + pythonImportsCheck = [ "miio" ]; 68 + 69 69 meta = with lib; { 70 70 description = "Python library for interfacing with Xiaomi smart appliances"; 71 71 homepage = "https://github.com/rytilahti/python-miio"; 72 - license = licenses.gpl3; 72 + license = licenses.gpl3Only; 73 73 maintainers = with maintainers; [ flyfloh ]; 74 74 }; 75 75 }
+1 -1
pkgs/development/python-modules/salmon-mail/default.nix
··· 28 28 meta = with lib; { 29 29 homepage = "https://salmon-mail.readthedocs.org/"; 30 30 description = "Pythonic mail application server"; 31 - license = licenses.gpl3; 31 + license = licenses.gpl3Only; 32 32 maintainers = with maintainers; [ jluttine ]; 33 33 }; 34 34 }
+14 -7
pkgs/development/python-modules/semver/default.nix
··· 1 1 { lib 2 + , buildPythonPackage 2 3 , fetchFromGitHub 3 - , buildPythonPackage 4 + , pytest-cov 4 5 , pytestCheckHook 5 - , pytestcov 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 9 pname = "semver"; 10 - version = "2.10.2"; 10 + version = "2.13.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "python-semver"; 14 14 repo = "python-semver"; 15 15 rev = version; 16 - sha256 = "0yxjmcgk5iwp53l9z1cg0ajrj18i09ircs11ifpdrggzm8n1blf3"; 16 + sha256 = "sha256-IWTo/P9JRxBQlhtcH3JMJZZrwAA8EALF4dtHajWUc4w="; 17 17 }; 18 18 19 - preCheck = "rm -rf dist"; # confuses source vs dist imports in pytest 20 - checkInputs = [ pytestCheckHook pytestcov ]; 19 + checkInputs = [ 20 + pytest-cov 21 + pytestCheckHook 22 + ]; 23 + 24 + # Confuses source vs dist imports in pytest 25 + preCheck = "rm -r dist"; 26 + 27 + pythonImportsCheck = [ "semver" ]; 21 28 22 29 meta = with lib; { 23 30 description = "Python package to work with Semantic Versioning (http://semver.org/)"; 24 - homepage = "https://python-semver.readthedocs.io/en/latest/"; 31 + homepage = "https://python-semver.readthedocs.io/"; 25 32 license = licenses.bsd3; 26 33 maintainers = with maintainers; [ np ]; 27 34 };
+2 -2
pkgs/development/python-modules/ytmusicapi/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "ytmusicapi"; 10 - version = "0.14.3"; 10 + version = "0.15.0"; 11 11 12 12 disabled = isPy27; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - sha256 = "83251a95d5bd74116353d29dfda2d0c5055b88276a0876a313a66f8b9c691344"; 16 + sha256 = "sha256-pVQqoMvuuFc/1QNG5z/AspGlgIGPi9aqjZ3/3eVNhis="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [
+1 -1
pkgs/development/tools/analysis/flow/default.nix
··· 16 16 install -Dm644 resources/shell/bash-completion $out/share/bash-completion/completions/flow 17 17 ''; 18 18 19 - buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild dtoa core_kernel sedlex_2 ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ocaml-migrate-parsetree ]) 19 + buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml-migrate-parsetree dtoa core_kernel sedlex_2 ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ]) 20 20 ++ lib.optionals stdenv.isDarwin [ CoreServices ]; 21 21 22 22 meta = with lib; {
+2 -3
pkgs/development/tools/asmfmt/default.nix
··· 1 1 { buildGoPackage 2 2 , lib 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 }: 6 5 7 6 buildGoPackage rec { 8 7 pname = "asmfmt"; 9 - version = "1.2.1"; 8 + version = "1.2.3"; 10 9 11 10 goPackagePath = "github.com/klauspost/asmfmt"; 12 11 ··· 14 13 owner = "klauspost"; 15 14 repo = "asmfmt"; 16 15 rev = "v${version}"; 17 - sha256 = "0qwxb4yx12yl817vgbhs7acaj98lgk27dh50mb8sm9ccw1f43h9i"; 16 + sha256 = "0f2cgwxs2b2kpq5348h8hjkcqc40p8ajapzpcy9ia2fsmsn2a2s4"; 18 17 }; 19 18 20 19 goDeps = ./deps.nix;
+2 -2
pkgs/development/tools/bazel-watcher/default.nix
··· 2 2 , fetchFromGitHub 3 3 , git 4 4 , go 5 - , python 5 + , python3 6 6 , lib, stdenv 7 7 }: 8 8 ··· 22 22 sha256 = "0gigl1lg8sb4bj5crvj54329ws4yirldbncs15f96db6vhp0ig7r"; 23 23 }; 24 24 25 - nativeBuildInputs = [ go git python ]; 25 + nativeBuildInputs = [ go git python3 ]; 26 26 removeRulesCC = false; 27 27 28 28 bazelTarget = "//ibazel";
+36
pkgs/development/tools/buf/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + , protobuf 5 + }: 6 + 7 + buildGoModule rec { 8 + pname = "buf"; 9 + version = "0.40.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "bufbuild"; 13 + repo = pname; 14 + rev = "v${version}"; 15 + sha256 = "sha256-N6o+1cfer8rgKJ3+CL25axJSjGV/YSG1sLIHXJzsC6o="; 16 + }; 17 + 18 + patches = [ 19 + ./skip_test_requiring_network.patch 20 + ]; 21 + 22 + preCheck = '' 23 + export PATH=$PATH:$GOPATH/bin 24 + ''; 25 + 26 + nativeBuildInputs = [ protobuf ]; 27 + 28 + vendorSha256 = "sha256-vl+WqtpegoAvylx/lcyfJk8DAOub8U4Lx3Pe3eW4M/E="; 29 + 30 + meta = with lib; { 31 + description = "Create consistent Protobuf APIs that preserve compatibility and comply with design best-practices"; 32 + homepage = "https://buf.build"; 33 + license = licenses.asl20; 34 + maintainers = with maintainers; [ raboof ]; 35 + }; 36 + }
+15
pkgs/development/tools/buf/skip_test_requiring_network.patch
··· 1 + diff --git a/internal/buf/internal/buftesting/buftesting.go b/internal/buf/internal/buftesting/buftesting.go 2 + index dc8da0c..70ad299 100644 3 + --- a/internal/buf/internal/buftesting/buftesting.go 4 + +++ b/internal/buf/internal/buftesting/buftesting.go 5 + @@ -100,6 +100,10 @@ func RunActualProtoc( 6 + 7 + // GetGoogleapisDirPath gets the path to a clone of googleapis. 8 + func GetGoogleapisDirPath(t *testing.T, buftestingDirPath string) string { 9 + + // Requires network access, which is not available during 10 + + // the nixpkgs sandboxed build 11 + + t.Skip() 12 + + 13 + googleapisDirPath := filepath.Join(buftestingDirPath, testGoogleapisDirPath) 14 + require.NoError( 15 + t,
+5 -3
pkgs/development/tools/build-managers/bam/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, lua5_3, python }: 1 + { lib, stdenv, fetchFromGitHub, lua5_3, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bam"; ··· 11 11 sha256 = "13br735ig7lygvzyfd15fc2rdygrqm503j6xj5xkrl1r7w2wipq6"; 12 12 }; 13 13 14 - buildInputs = [ lua5_3 python ]; 14 + nativeBuildInputs = [ lua5_3 python3 ]; 15 15 16 16 buildPhase = "${stdenv.shell} make_unix.sh"; 17 17 18 - checkPhase = "${python.interpreter} scripts/test.py"; 18 + checkPhase = "${python3.interpreter} scripts/test.py"; 19 + 20 + strictDeps = true; 19 21 20 22 installPhase = '' 21 23 mkdir -p "$out/share/bam"
+7 -5
pkgs/development/tools/build-managers/bazel/bazel_0_26/default.nix
··· 1 1 { stdenv, callPackage, lib, fetchurl, fetchpatch, runCommand, makeWrapper 2 2 , zip, unzip, bash, writeCBin, coreutils 3 - , which, python, perl, gawk, gnused, gnutar, gnugrep, gzip, findutils 3 + , which, python3, perl, gawk, gnused, gnutar, gnugrep, gzip, findutils 4 4 # Apple dependencies 5 5 , cctools, llvmPackages_8, CoreFoundation, CoreServices, Foundation 6 6 # Allow to independently override the jdks used to build and run respectively ··· 210 210 # Substitute python's stub shebang to plain python path. (see TODO add pr URL) 211 211 # See also `postFixup` where python is added to $out/nix-support 212 212 substituteInPlace src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt\ 213 - --replace "/usr/bin/env python" "${python}/bin/python" \ 214 - --replace "NIX_STORE_PYTHON_PATH" "${python}/bin/python" \ 213 + --replace "/usr/bin/env python" "${python3.interpreter}" \ 214 + --replace "NIX_STORE_PYTHON_PATH" "${python3.interpreter}" \ 215 215 216 216 # md5sum is part of coreutils 217 217 sed -i 's|/sbin/md5|md5sum|' \ ··· 287 287 buildJdk 288 288 ]; 289 289 290 + strictDeps = true; 291 + 290 292 # when a command can’t be found in a bazel build, you might also 291 293 # need to add it to `defaultShellPath`. 292 294 nativeBuildInputs = [ 293 295 zip 294 - python 296 + python3 295 297 unzip 296 298 makeWrapper 297 299 which ··· 380 382 echo "${customBash} ${defaultShellPath}" >> $out/nix-support/depends 381 383 # The templates get tar’d up into a .jar, 382 384 # so nix can’t detect python is needed in the runtime closure 383 - echo "${python}" >> $out/nix-support/depends 385 + echo "${python3}" >> $out/nix-support/depends 384 386 ''; 385 387 386 388 dontStrip = true;
+2 -2
pkgs/development/tools/build-managers/rocm-cmake/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rocm-cmake"; 5 - version = "4.0.0"; 5 + version = "4.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "RadeonOpenCompute"; 9 9 repo = "rocm-cmake"; 10 10 rev = "rocm-${version}"; 11 - hash = "sha256-1T0S2GWA/ojRZMRyWgtFQ2rzmIqvMvaa19jI4Fl9R44="; 11 + hash = "sha256-uK060F7d7/pTCNbGqdKCzxgPrPPbGjNwuUOt176z7EM="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/development/tools/buildpack/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pack"; 5 - version = "0.17.0"; 5 + version = "0.18.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "buildpacks"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-VTQ3NOskBp7ic8a/nn/ZbALJVff+Pb/ZHHbld/OxQdo="; 11 + sha256 = "sha256-+fYw5dIDJJKGQKBL6RQh1SCQufbAkKeuJpPlywzbbnM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-n8X2NyQiOpEQ0d/ek1kdxKFfaCFf0EucflVLZjOGMfY="; 14 + vendorSha256 = "sha256-fSUTl5W/DyloCuCpEqA5z4bhB7wYxzPt6E0SfjorfQ0="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+4 -2
pkgs/development/tools/cask/default.nix
··· 1 - { lib, stdenv, fetchurl, python, emacs }: 1 + { lib, stdenv, fetchurl, python3, emacs }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cask"; ··· 12 12 s f dash ansi ecukes servant ert-runner el-mock 13 13 noflet ert-async shell-split-string git package-build 14 14 ] ++ [ 15 - python 15 + python3 16 16 ]; 17 + 18 + strictDeps = true; 17 19 18 20 buildPhase = '' 19 21 emacs --batch -L . -f batch-byte-compile cask.el cask-cli.el
+21 -21
pkgs/development/tools/electron/default.nix
··· 86 86 headers = "0yx8mkrm15ha977hzh7g2sc5fab9sdvlk1bk3yxignhxrqqbw885"; 87 87 }; 88 88 89 - electron_10 = mkElectron "10.4.0" { 90 - x86_64-linux = "6246481577bc0bfa719e0efb3144e8d7ca53e3f20defce7b5e1be4d9feb0becb"; 91 - x86_64-darwin = "bc9e201643db3dae803db934fa4e180d13b707de6be1c3348ca5ed2c21d30bf4"; 92 - i686-linux = "aa6a9042097b964230b519c158e369a249a668cc6c7654b30ddd02ced4bad9d1"; 93 - armv7l-linux = "7e99a9c6aeedd7cc0b25260ac4630730629f363a09b72bd024b42837ab9777bd"; 94 - aarch64-linux = "ef671fe3cbb7c84e277d885ed157552602bc88d326dc95b322953c6b193f59a1"; 95 - headers = "1vsvna2zr7qxnk2qsdjzgkv5v2svrllbsjj08qrilly7nbksk9fg"; 89 + electron_10 = mkElectron "10.4.2" { 90 + x86_64-linux = "3d613b413f01c8af1600be42c82941761452407e1160125eca60feec0d7dd0c0"; 91 + x86_64-darwin = "87b18811d165f2fd64606ae13a567b737f54bd41c7e2204a047a3532f4fa2d9c"; 92 + i686-linux = "297083ca9b21554ea1f729ed17c0c8b13aaea24e77194f9c1b340489fcfc0fa6"; 93 + armv7l-linux = "3d93ec220824cce5d99b3a7511604b89c63935bd1130fc64ce08b8436e34c096"; 94 + aarch64-linux = "0060e37eada91bac51945ae325ab04309438609089d31ab3f8bbfda73cc26166"; 95 + headers = "13cpkblkvhvd3sww8n1gw4rhva84x2fkkg81yr3n2mb0virlfgpn"; 96 96 }; 97 97 98 - electron_11 = mkElectron "11.3.0" { 99 - x86_64-linux = "136794f9ecc1c6ea38fe9b85682e8fcc8c4afd559f5cd6b4059339b017279917"; 100 - x86_64-darwin = "7569db1d2e470b0db512735f27f99498f631da3cd86374345139f18df88789fe"; 101 - i686-linux = "48ab133cab380c564529ea605d4521404b9bd07d80dad6346e1756a0952081cd"; 102 - armv7l-linux = "5774c2995c6dcf911ece00a94ace0f37d55132da91b1fd242c69e047872ef137"; 103 - aarch64-linux = "fad31c6fba7aba54db19a2aaedb03b514c51dd58bf301afab5265126833feb15"; 104 - headers = "123g3dgsb4vp8w1bm4apbp973ppzx4i4y35lhhmqjbp51jhrm9f0"; 98 + electron_11 = mkElectron "11.4.1" { 99 + x86_64-linux = "3efd3d3b5a9f71323320288aece65fcec89ea0331c3d6d3afc2495d3b0dc95d3"; 100 + x86_64-darwin = "6ff91613c51b2ebaf280eb86b826f47d62639081a0f38c2012c428a17619a163"; 101 + i686-linux = "513e1bc7a3e546dc0e712836886ac89c9f76bb7fb1e4b7a1f9d9cbc7347d8569"; 102 + armv7l-linux = "838fc96d90cfcc5e1e892287008f9d9d2dbe27f3d4cf2479e6275ecdd140fb65"; 103 + aarch64-linux = "a3de4208b5033a19ffa9dd8130d440909b181c0ef57cb51c8f9c8dbbb1267a26"; 104 + headers = "1bpsmmlxl4gk9yn5w7f8m6g8k1gmvwk0jwpqlk5islpkcy6x7107"; 105 105 }; 106 106 107 - electron_12 = mkElectron "12.0.1" { 108 - x86_64-linux = "495cd0df420becbd9581b8833fa8bdefaef397fc3590d064932722d55cf5ff82"; 109 - x86_64-darwin = "af2adac0b5b32c95ad2b834d5521bd301983954e986048b46cdf5c739423de17"; 110 - i686-linux = "4a41d03ef38eda8d50dc57774f49f676398a2130783c2c9a3411e7018ef77e2b"; 111 - armv7l-linux = "ae06d70d34abc06c7127a468ab0956a4a26752cc313ab1b802972748e952a3a7"; 112 - aarch64-linux = "95716be616ab690c2e78236715fe52ae57b4213fe1c19dc08593ae1e75b8767e"; 113 - headers = "1gxzafzi47wrvwrzmll5zff7dzw4jk2p5pdkzgazr2yxkhw9qvca"; 107 + electron_12 = mkElectron "12.0.2" { 108 + x86_64-linux = "fc3ff888d8cd4ada8368420c8951ed1b5ad78919bdcb688abe698d00e12a2e0a"; 109 + x86_64-darwin = "766ca8f8adc4535db3069665ea8983979ea79dd5ec376e1c298f858b420ec58f"; 110 + i686-linux = "78ab55db275b85210c6cc14ddf41607fbd5cefed93ef4d1b6b74630b0841b23c"; 111 + armv7l-linux = "8be8c6ea05da669d79179c5969ddee853710a1dd44f86e8f3bbe1167a2daf13c"; 112 + aarch64-linux = "9ef70ab9347be63555784cac99efbaff1ef2d02dcc79070d7bccd18c38de87ef"; 113 + headers = "07095b5rylilbmyd0syamm6fc4pngazldj5jgm7blgirdi8yzzd2"; 114 114 }; 115 115 }
+3 -1
pkgs/development/tools/fedpkg/default.nix
··· 1 - { lib, buildPythonApplication, buildPythonPackage, isPy3k, fetchurl, rpkg, offtrac, urlgrabber, pyopenssl, python_fedora }: 1 + { lib, python2Packages, fetchurl }: 2 + 3 + with python2Packages; 2 4 3 5 let 4 6 fedora_cert = buildPythonPackage rec {
+4 -3
pkgs/development/tools/misc/blackmagic/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub 2 2 , gcc-arm-embedded, libftdi1, libusb-compat-0_1, pkg-config 3 - , python, pythonPackages 3 + , python3 4 4 }: 5 5 6 6 with lib; ··· 21 21 22 22 nativeBuildInputs = [ 23 23 gcc-arm-embedded pkg-config 24 + python3 24 25 ]; 25 26 26 27 buildInputs = [ 27 28 libftdi1 28 29 libusb-compat-0_1 29 - python 30 - pythonPackages.intelhex 31 30 ]; 31 + 32 + strictDeps = true; 32 33 33 34 postPatch = '' 34 35 # Prevent calling out to `git' to generate a version number:
+2 -2
pkgs/development/tools/misc/cli11/default.nix
··· 3 3 fetchFromGitHub, 4 4 cmake, 5 5 gtest, 6 - python, 6 + python3, 7 7 boost 8 8 }: 9 9 ··· 20 20 21 21 nativeBuildInputs = [ cmake ]; 22 22 23 - checkInputs = [ boost python ]; 23 + checkInputs = [ boost python3 ]; 24 24 25 25 doCheck = true; 26 26
+2 -2
pkgs/development/tools/misc/distcc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, popt, avahi, pkg-config, python, gtk2, runCommand 1 + { lib, stdenv, fetchFromGitHub, popt, avahi, pkg-config, python3, gtk2, runCommand 2 2 , gcc, autoconf, automake, which, procps, libiberty_static 3 3 , runtimeShell 4 4 , sysconfDir ? "" # set this parameter to override the default value $out/etc ··· 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkg-config ]; 21 - buildInputs = [popt avahi pkg-config python gtk2 autoconf automake which procps libiberty_static]; 21 + buildInputs = [popt avahi pkg-config python3 gtk2 autoconf automake which procps libiberty_static]; 22 22 preConfigure = 23 23 '' 24 24 export CPATH=$(ls -d ${gcc.cc}/lib/gcc/*/${gcc.cc.version}/plugin/include)
+4 -2
pkgs/development/tools/misc/doclifter/default.nix
··· 1 - {lib, stdenv, fetchurl, python}: 1 + {lib, stdenv, fetchurl, python3}: 2 2 3 3 stdenv.mkDerivation { 4 4 name = "doclifter-2.19"; ··· 6 6 url = "http://www.catb.org/~esr/doclifter/doclifter-2.19.tar.gz"; 7 7 sha256 = "1as6z7mdjrrkw2kism41q5ybvyzvwcmj9qzla2fz98v9f4jbj2s2"; 8 8 }; 9 - buildInputs = [ python ]; 9 + buildInputs = [ python3 ]; 10 + 11 + strictDeps = true; 10 12 11 13 makeFlags = [ "PREFIX=$(out)" ]; 12 14
+8 -7
pkgs/development/tools/rust/crate2nix/default.nix
··· 12 12 pname = "crate2nix"; 13 13 version = "0.9.0"; 14 14 15 - src = fetchFromGitHub 16 - { 17 - owner = "kolloch"; 18 - repo = pname; 19 - rev = version; 20 - sha256 = "sha256-dB8wa3CQFw8ckD420zpBGw4TnsLrHqXf+ff/WuhPsVM="; 21 - } + "/crate2nix"; 15 + src = fetchFromGitHub { 16 + owner = "kolloch"; 17 + repo = pname; 18 + rev = version; 19 + sha256 = "sha256-dB8wa3CQFw8ckD420zpBGw4TnsLrHqXf+ff/WuhPsVM="; 20 + }; 21 + 22 + sourceRoot = "source/crate2nix"; 22 23 23 24 cargoSha256 = "sha256-6V0ifH63/s5XLo4BCexPtvlUH0UQPHFW8YHF8OCH3ik="; 24 25
+3 -2
pkgs/development/tools/rust/sqlx-cli/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, pkg-config, openssl }: 1 + { stdenv, lib, rustPlatform, fetchFromGitHub, pkg-config, openssl, SystemConfiguration, CoreFoundation, Security }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "sqlx-cli"; ··· 17 17 cargoBuildFlags = [ "-p sqlx-cli" ]; 18 18 19 19 nativeBuildInputs = [ pkg-config ]; 20 - buildInputs = [ openssl ]; 20 + buildInputs = lib.optionals stdenv.isLinux [ openssl ] 21 + ++ lib.optionals stdenv.isDarwin [ SystemConfiguration CoreFoundation Security ]; 21 22 22 23 meta = with lib; { 23 24 description =
+3 -3
pkgs/development/tools/stagit/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "stagit"; 5 - version = "0.9.4"; 5 + version = "0.9.5"; 6 6 7 7 src = fetchgit { 8 8 url = "git://git.codemadness.org/stagit"; 9 9 rev = version; 10 - sha256 = "1n0f2pf4gmqnkx4kfn2c79zx2vk4xkg03h7wvdigijkkbhs7a3pm"; 10 + sha256 = "1wlx5k0v464fr1ifjv04v7ccwb559s54xpsbxdda4whyx1v0fbq4"; 11 11 }; 12 12 13 13 makeFlags = [ "PREFIX=$(out)" ]; ··· 19 19 homepage = "https://git.codemadness.org/stagit/file/README.html"; 20 20 license = licenses.mit; 21 21 platforms = platforms.all; 22 - maintainers = with maintainers; [ jb55 ]; 22 + maintainers = with maintainers; [ jb55 sikmir ]; 23 23 }; 24 24 }
+3 -4
pkgs/development/tools/wabt/default.nix
··· 1 - { lib, stdenv, fetchpatch, fetchFromGitHub, cmake, python3, substituteAll }: 1 + { lib, stdenv, fetchFromGitHub, cmake }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wabt"; 5 - version = "1.0.20"; 5 + version = "1.0.23"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "WebAssembly"; 9 9 repo = "wabt"; 10 10 rev = version; 11 - sha256 = "1wwyljppxz03slvgx809g87mdrglpimz4xaici71a9mqwjpgj0l8"; 11 + sha256 = "1drjngcqkaahzk92jysrzv86fhj02c074xffd7kn3k6q8fxc0976"; 12 12 fetchSubmodules = true; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake ]; 16 16 cmakeFlags = [ "-DBUILD_TESTS=OFF" "-DCMAKE_PROJECT_VERSION=${version}" ]; 17 - buildInputs = [ python3 ]; 18 17 19 18 meta = with lib; { 20 19 description = "The WebAssembly Binary Toolkit";
+2 -2
pkgs/development/tools/wrangler/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, Security, CoreServices, CoreFoundation, libiconv }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "wrangler"; ··· 16 16 nativeBuildInputs = [ pkg-config ]; 17 17 18 18 buildInputs = [ openssl ] 19 - ++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security ]; 19 + ++ lib.optionals stdenv.isDarwin [ curl CoreFoundation CoreServices Security libiconv ]; 20 20 21 21 OPENSSL_NO_VENDOR = 1; 22 22
+4 -4
pkgs/games/20kly/default.nix
··· 1 1 { lib 2 2 , fetchurl 3 - , python }: 3 + , python2 }: 4 4 5 - python.pkgs.buildPythonApplication rec { 5 + python2.pkgs.buildPythonApplication rec { 6 6 pname = "20kly"; 7 7 version = "1.4"; 8 8 format = "other"; 9 - disabled = !(python.isPy2 or false); 9 + disabled = !(python2.isPy2 or false); 10 10 11 11 src = fetchurl { 12 12 url = "http://jwhitham.org.uk/20kly/lightyears-${version}.tar.bz2"; ··· 20 20 "LIGHTYEARS_DIR = \"$out/share\"" 21 21 ''; 22 22 23 - propagatedBuildInputs = with python.pkgs; [ pygame ]; 23 + propagatedBuildInputs = with python2.pkgs; [ pygame ]; 24 24 25 25 buildPhase = "python -O -m compileall ."; 26 26
+4 -2
pkgs/games/crispy-doom/default.nix
··· 1 - { lib, stdenv, autoreconfHook, pkg-config, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub, python }: 1 + { lib, stdenv, autoreconfHook, pkg-config, SDL2, SDL2_mixer, SDL2_net, fetchFromGitHub, python2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "crispy-doom"; ··· 16 16 for script in $(grep -lr '^#!/usr/bin/env python$'); do patchShebangs $script; done 17 17 ''; 18 18 19 - nativeBuildInputs = [ autoreconfHook pkg-config python ]; 19 + nativeBuildInputs = [ autoreconfHook pkg-config python2 ]; 20 20 buildInputs = [ SDL2 SDL2_mixer SDL2_net ]; 21 21 enableParallelBuilding = true; 22 + 23 + strictDeps = true; 22 24 23 25 meta = { 24 26 homepage = "http://fabiangreffrath.github.io/crispy-doom";
+3 -3
pkgs/games/zaz/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "zaz"; 16 - version = "1.0.0"; 16 + version = "1.0.1"; 17 17 18 18 src = fetchurl { 19 - url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2"; 20 - sha256 = "15q3kxzl71m50byw37dshfsx5wp240ywah19ccmqmqarcldcqcp3"; 19 + url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 20 + sha256 = "1r3bmwny05zzmdalxm5ah2rray0nnsg1w00r30p47q6x2lpwj8ml"; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+114 -102
pkgs/misc/vim-plugins/generated.nix
··· 65 65 66 66 ale = buildVimPluginFrom2Nix { 67 67 pname = "ale"; 68 - version = "2021-03-23"; 68 + version = "2021-03-24"; 69 69 src = fetchFromGitHub { 70 70 owner = "dense-analysis"; 71 71 repo = "ale"; 72 - rev = "eb0ebe622102cc6da3d7e943a3b739db7b6ed216"; 73 - sha256 = "10dp9xq8k0svr7z117a3bha4rvlgsx1j8qqdfnza94rbh8zy096k"; 72 + rev = "b1f95dc4fb15efb1d5238845c99548f2906e2ba3"; 73 + sha256 = "0sx2k1wqv0cl3a489cqz1mf0bvr8xsjbqax8pgw1d0c4kdz17py6"; 74 74 }; 75 75 meta.homepage = "https://github.com/dense-analysis/ale/"; 76 76 }; ··· 389 389 390 390 chadtree = buildVimPluginFrom2Nix { 391 391 pname = "chadtree"; 392 - version = "2021-03-23"; 392 + version = "2021-03-25"; 393 393 src = fetchFromGitHub { 394 394 owner = "ms-jpq"; 395 395 repo = "chadtree"; 396 - rev = "18e39f1550980bc21761018e191742e66d86854d"; 397 - sha256 = "12grx41z5qf7p4ls56ww8rai0nfcl01v8iy1vayx463lb7dsvlxm"; 396 + rev = "e52b59c999bb713ea6ee4d7e88c40f9c8ca76567"; 397 + sha256 = "0pccr6rqgk1m291pa8505y246p00fkvdzkgb9hz63qnab29h08l0"; 398 398 }; 399 399 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 400 400 }; ··· 545 545 546 546 coc-nvim = buildVimPluginFrom2Nix { 547 547 pname = "coc-nvim"; 548 - version = "2021-03-23"; 548 + version = "2021-03-24"; 549 549 src = fetchFromGitHub { 550 550 owner = "neoclide"; 551 551 repo = "coc.nvim"; 552 - rev = "e916ef84b95897a713773642bc768a88e4b8e449"; 553 - sha256 = "0svmsacpa6wvkdcdb4jb7lc7zdc31r9mqdvznskhgwzmjlhnbq8d"; 552 + rev = "67fb4d138f34c12c6b44d87be66ede26d51b95c2"; 553 + sha256 = "0nnh0gnc6g0a67na3zar6zvpc3i2qlna3l783hhy3832ih79v9s9"; 554 554 }; 555 555 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 556 556 }; ··· 894 894 895 895 defx-nvim = buildVimPluginFrom2Nix { 896 896 pname = "defx-nvim"; 897 - version = "2021-03-22"; 897 + version = "2021-03-24"; 898 898 src = fetchFromGitHub { 899 899 owner = "Shougo"; 900 900 repo = "defx.nvim"; 901 - rev = "a07fdb14c2ae04f1dd4cd78ddeaba9ce1eda4070"; 902 - sha256 = "0z57vvw7jjh021qis4bywznwaywyznrh2zns6wl3ar65zys4dym7"; 901 + rev = "e5a757e2dc2f3409f5ccc4e4df384df93b0ef09d"; 902 + sha256 = "1qfwpwb7r94hnjidggn1fwcshikac8j0ckf1qb0fppfx1akyf78q"; 903 903 }; 904 904 meta.homepage = "https://github.com/Shougo/defx.nvim/"; 905 905 }; ··· 942 942 943 943 denite-nvim = buildVimPluginFrom2Nix { 944 944 pname = "denite-nvim"; 945 - version = "2021-03-23"; 945 + version = "2021-03-25"; 946 946 src = fetchFromGitHub { 947 947 owner = "Shougo"; 948 948 repo = "denite.nvim"; 949 - rev = "b0cc470c63b0ed3b6497f659588b004ed05872ee"; 950 - sha256 = "15ngimlnprp73fy3sa9vz39avq75mcqhr90ygj3drjj1d33vk3f3"; 949 + rev = "4c8eb502feb8e9601cbcd82ea937aa620a6626b4"; 950 + sha256 = "1hgcdl29rn0ag12k663qfx9z3drl94xi0n50jcisk5z4y8xpi6r4"; 951 951 }; 952 952 meta.homepage = "https://github.com/Shougo/denite.nvim/"; 953 953 }; ··· 1414 1414 1415 1415 fern-vim = buildVimPluginFrom2Nix { 1416 1416 pname = "fern-vim"; 1417 - version = "2021-03-14"; 1417 + version = "2021-03-25"; 1418 1418 src = fetchFromGitHub { 1419 1419 owner = "lambdalisue"; 1420 1420 repo = "fern.vim"; 1421 - rev = "31c76b351f6d995009dcd117d7910b80df96928a"; 1422 - sha256 = "1qkf6bsff6cfrqyhdrmn91diq9p53i3i3fvgcb5m9az33p42fqgn"; 1421 + rev = "3f9f1957699346f240a9e71eee83fcb67c8fc0e5"; 1422 + sha256 = "1wkxih5glkpvjy6ka42y0x1di2iqm1y7rc93av4gfqhhskryfv0h"; 1423 1423 }; 1424 1424 meta.homepage = "https://github.com/lambdalisue/fern.vim/"; 1425 1425 }; ··· 1535 1535 1536 1536 fzf-vim = buildVimPluginFrom2Nix { 1537 1537 pname = "fzf-vim"; 1538 - version = "2021-03-14"; 1538 + version = "2021-03-24"; 1539 1539 src = fetchFromGitHub { 1540 1540 owner = "junegunn"; 1541 1541 repo = "fzf.vim"; 1542 - rev = "1ef72b14ccd05fdbdb01d253b91a74c4760ae655"; 1543 - sha256 = "1yrj8dq0n3wfdrl5c93cfzsjyv175b9h65iwxkincag926m6sr06"; 1542 + rev = "caf7754b2636eabdf1bc11d30daccc5de66951ef"; 1543 + sha256 = "1743br19x41rycc1iqh2jiwaa2z80bi2zcd0lr9n17dc733ww5n2"; 1544 1544 }; 1545 1545 meta.homepage = "https://github.com/junegunn/fzf.vim/"; 1546 1546 }; ··· 1643 1643 1644 1644 gitsigns-nvim = buildVimPluginFrom2Nix { 1645 1645 pname = "gitsigns-nvim"; 1646 - version = "2021-03-23"; 1646 + version = "2021-03-25"; 1647 1647 src = fetchFromGitHub { 1648 1648 owner = "lewis6991"; 1649 1649 repo = "gitsigns.nvim"; 1650 - rev = "6bc3dba1a73466282215491d9ede85261199b7f2"; 1651 - sha256 = "0qfpadjv4qd92kgjvwga285404wzzy0q4vylbdfwngf9s29bpj40"; 1650 + rev = "2e371a3b89a85ea74afcd2f2926b23919a96e1c8"; 1651 + sha256 = "0bw2sc02w8ln9sj86p0iwfcwi51n4xyxkby9ib37y3mdiz623vig"; 1652 1652 }; 1653 1653 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 1654 1654 }; ··· 1811 1811 1812 1812 hop-nvim = buildVimPluginFrom2Nix { 1813 1813 pname = "hop-nvim"; 1814 - version = "2021-03-23"; 1814 + version = "2021-03-25"; 1815 1815 src = fetchFromGitHub { 1816 1816 owner = "phaazon"; 1817 1817 repo = "hop.nvim"; 1818 - rev = "4c6d776005eed4ebc66bf3af8a336d004ae238a3"; 1819 - sha256 = "17dcvi3jlwzm11lykjz3dh2ckbbmdp221y0d7wl0xq12s2g1v4pg"; 1818 + rev = "a0e9e229bbd0e493511fb9d27d917f55c5e4191a"; 1819 + sha256 = "090waig8fqq1s9z66ykr64ns3g9yb6qy32jf5fwamx43m9xcws2s"; 1820 1820 }; 1821 1821 meta.homepage = "https://github.com/phaazon/hop.nvim/"; 1822 1822 }; ··· 2340 2340 2341 2341 lualine-nvim = buildVimPluginFrom2Nix { 2342 2342 pname = "lualine-nvim"; 2343 - version = "2021-03-23"; 2343 + version = "2021-03-25"; 2344 2344 src = fetchFromGitHub { 2345 2345 owner = "hoob3rt"; 2346 2346 repo = "lualine.nvim"; 2347 - rev = "7bf5076ece80cde0a48dac403799a89c8caefd1d"; 2348 - sha256 = "0zc1s75dqxb1dxma59mlc88lf74i0mpbz15khcfv1pfp5cr3hhih"; 2347 + rev = "62c22d0f05c79a1bc890b15c1a1a5a0215936e2f"; 2348 + sha256 = "1j3f4i48bi54ck14sv8vnknz68v21jggf1gw8p7vq77h08il7gbi"; 2349 2349 }; 2350 2350 meta.homepage = "https://github.com/hoob3rt/lualine.nvim/"; 2351 2351 }; ··· 2724 2724 2725 2725 neogit = buildVimPluginFrom2Nix { 2726 2726 pname = "neogit"; 2727 - version = "2021-03-23"; 2727 + version = "2021-03-25"; 2728 2728 src = fetchFromGitHub { 2729 2729 owner = "TimUntersberger"; 2730 2730 repo = "neogit"; 2731 - rev = "537cc6e1757c41bd75717ebd4421c27b7ebe9205"; 2732 - sha256 = "0s0z2qmsnqj5mgsqb6x4cwh507sc3y4ahqvzc3bijd224xff97b1"; 2731 + rev = "84768d4ab4df212c7fe96785a007382218e0fc56"; 2732 + sha256 = "0z86l7bwr6s3rmamhjyy5hg51f75ca2laki3pwpczfhllxbnwax5"; 2733 2733 }; 2734 2734 meta.homepage = "https://github.com/TimUntersberger/neogit/"; 2735 2735 }; ··· 2868 2868 2869 2869 nerdtree = buildVimPluginFrom2Nix { 2870 2870 pname = "nerdtree"; 2871 - version = "2021-03-01"; 2871 + version = "2021-03-25"; 2872 2872 src = fetchFromGitHub { 2873 2873 owner = "preservim"; 2874 2874 repo = "nerdtree"; 2875 - rev = "f63fb6984f9cd07cf723c3e2e20f6ccc0aad48c2"; 2876 - sha256 = "1lm4dqp8rxr5sl6faxyncz5jibkgzjwjxadvgcja81wnm71sr0xa"; 2875 + rev = "81f3eaba295b3fceb2d032db57e5eae99ae480f8"; 2876 + sha256 = "0zws0b20n8ak2s3hffsb0rrwdjh8sx3sgrilmmmvr0d2ivsfqwlb"; 2877 2877 }; 2878 2878 meta.homepage = "https://github.com/preservim/nerdtree/"; 2879 2879 }; ··· 2976 2976 2977 2977 nvcode-color-schemes-vim = buildVimPluginFrom2Nix { 2978 2978 pname = "nvcode-color-schemes-vim"; 2979 - version = "2021-03-20"; 2979 + version = "2021-03-25"; 2980 2980 src = fetchFromGitHub { 2981 2981 owner = "ChristianChiarulli"; 2982 2982 repo = "nvcode-color-schemes.vim"; 2983 - rev = "e22ce2c391e0fe82f66c767cf2b99ff1e044d428"; 2984 - sha256 = "1dl967mc8slsfm8c8dk7kbzsrnr6ll7y8m36aq5v827f49f1byak"; 2983 + rev = "18b21cd97d8675d0a37ea7a0de1b767c51418f19"; 2984 + sha256 = "18gzdax70hcjs7ckfq6c4b0kplh9q5fsay9hwz5kyqym28ndrvx3"; 2985 2985 }; 2986 2986 meta.homepage = "https://github.com/ChristianChiarulli/nvcode-color-schemes.vim/"; 2987 2987 }; ··· 3000 3000 3001 3001 nvim-autopairs = buildVimPluginFrom2Nix { 3002 3002 pname = "nvim-autopairs"; 3003 - version = "2021-02-08"; 3003 + version = "2021-03-24"; 3004 3004 src = fetchFromGitHub { 3005 3005 owner = "windwp"; 3006 3006 repo = "nvim-autopairs"; 3007 - rev = "1596756a90114cbe25d0f383825a1ae2145b459b"; 3008 - sha256 = "1c0h0082lkngn0ly4qpla98xgg71ax5r26v4q4h3gc77jf6mlqrd"; 3007 + rev = "b8272f539017ffb6de6a05247e7c333b3721279b"; 3008 + sha256 = "11ng14pb14l0hsv27r24wwkjkw2l77kvd114pij3k5dl8b9zdgv2"; 3009 3009 }; 3010 3010 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 3011 3011 }; 3012 3012 3013 3013 nvim-bqf = buildVimPluginFrom2Nix { 3014 3014 pname = "nvim-bqf"; 3015 - version = "2021-03-16"; 3015 + version = "2021-03-25"; 3016 3016 src = fetchFromGitHub { 3017 3017 owner = "kevinhwang91"; 3018 3018 repo = "nvim-bqf"; 3019 - rev = "fae71d14f2cd61becc87bae223f0c3a6fb72245c"; 3020 - sha256 = "054v62pp33kxfx9rcqh7dqa2glpi1fsm0z4gsh9nwf4y60hx0fhs"; 3019 + rev = "ba1acb0440e3ddc96b1835ce89d910bae216e98b"; 3020 + sha256 = "1kx5a5zngk8bw7qsklmhzvwqpc0nnhfcj9wasp28dayh3f35m5s0"; 3021 3021 }; 3022 3022 meta.homepage = "https://github.com/kevinhwang91/nvim-bqf/"; 3023 3023 }; ··· 3060 3060 3061 3061 nvim-compe = buildVimPluginFrom2Nix { 3062 3062 pname = "nvim-compe"; 3063 - version = "2021-03-23"; 3063 + version = "2021-03-25"; 3064 3064 src = fetchFromGitHub { 3065 3065 owner = "hrsh7th"; 3066 3066 repo = "nvim-compe"; 3067 - rev = "777b98390da6638583b0e7ba2316aa1257462cad"; 3068 - sha256 = "1ggh7038kzc61ihjbf8zvq1vxgjg9hpwqvjj979mf3qzrznrd89i"; 3067 + rev = "a39284243014c1414134b99ee2f7ae1fdd070273"; 3068 + sha256 = "0648gz8rc6l79hg3xqkr0049fn762v7rcyvq50ya81ljrs2jl004"; 3069 3069 }; 3070 3070 meta.homepage = "https://github.com/hrsh7th/nvim-compe/"; 3071 3071 }; ··· 3084 3084 3085 3085 nvim-dap = buildVimPluginFrom2Nix { 3086 3086 pname = "nvim-dap"; 3087 - version = "2021-03-22"; 3087 + version = "2021-03-24"; 3088 3088 src = fetchFromGitHub { 3089 3089 owner = "mfussenegger"; 3090 3090 repo = "nvim-dap"; 3091 - rev = "f5180887cbf0505f64e43516072e74b74652a5f9"; 3092 - sha256 = "1cy36pxj6kfggjds8bb13ggj91c4vq3b37i78pjyh8jynyfd0va7"; 3091 + rev = "cd0afafc788f9d4d9df5fef5d348841906b295d6"; 3092 + sha256 = "1zh35qjxmkf37khagn8722byzjq2pns20cbmc821hfqdkj6q3pc8"; 3093 3093 }; 3094 3094 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 3095 3095 }; ··· 3132 3132 3133 3133 nvim-hlslens = buildVimPluginFrom2Nix { 3134 3134 pname = "nvim-hlslens"; 3135 - version = "2021-03-22"; 3135 + version = "2021-03-25"; 3136 3136 src = fetchFromGitHub { 3137 3137 owner = "kevinhwang91"; 3138 3138 repo = "nvim-hlslens"; 3139 - rev = "fb6bf0c836b384f3afa66c43b24de112e2e05764"; 3140 - sha256 = "1p887iysf2a2nhj3cih9a7mzlipqakglzgw6ll065ghrn4dmr28p"; 3139 + rev = "fdce47e0bd9669e2424cc2a0112ecb47ba571d13"; 3140 + sha256 = "1dn9wr23dizhs7byrim9zd3yi22g629jc2aqfx0q1v1i2i9g107v"; 3141 3141 }; 3142 3142 meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/"; 3143 3143 }; ··· 3156 3156 3157 3157 nvim-jdtls = buildVimPluginFrom2Nix { 3158 3158 pname = "nvim-jdtls"; 3159 - version = "2021-03-22"; 3159 + version = "2021-03-24"; 3160 3160 src = fetchFromGitHub { 3161 3161 owner = "mfussenegger"; 3162 3162 repo = "nvim-jdtls"; 3163 - rev = "fede58fdb67c451697bd1028bf084d4f0fbfc38b"; 3164 - sha256 = "052rvsl0prhvbic350x1q5ma5c8km8sf3y92gng4sc2wj37fs2k8"; 3163 + rev = "b29410eff3459fc415048cd5569ad03d5e959296"; 3164 + sha256 = "060ig6w3lhfp4lb83hmk7v33mfk6k5hs8ifpx5fvxk0v5g0cd9g1"; 3165 3165 }; 3166 3166 meta.homepage = "https://github.com/mfussenegger/nvim-jdtls/"; 3167 3167 }; ··· 3180 3180 3181 3181 nvim-lspconfig = buildVimPluginFrom2Nix { 3182 3182 pname = "nvim-lspconfig"; 3183 - version = "2021-03-22"; 3183 + version = "2021-03-24"; 3184 3184 src = fetchFromGitHub { 3185 3185 owner = "neovim"; 3186 3186 repo = "nvim-lspconfig"; 3187 - rev = "487ea4a2393fd6d3fc1bf5d198e4f4583c5082ac"; 3188 - sha256 = "1dr0my4y7qvy7d7ypkz4d0d1p223092vsn5wfpj4qv84k84ilpp8"; 3187 + rev = "f9785053a4ef4aaa2d0aac958bc09a1a289d2fbf"; 3188 + sha256 = "182ys6zrwjw1jqs6rjqz3lbv51jw0ija5jmrpj4rs7psin7mcx0j"; 3189 3189 }; 3190 3190 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 3191 3191 }; ··· 3250 3250 meta.homepage = "https://github.com/norcalli/nvim-terminal.lua/"; 3251 3251 }; 3252 3252 3253 + nvim-toggleterm-lua = buildVimPluginFrom2Nix { 3254 + pname = "nvim-toggleterm-lua"; 3255 + version = "2021-03-23"; 3256 + src = fetchFromGitHub { 3257 + owner = "akinsho"; 3258 + repo = "nvim-toggleterm.lua"; 3259 + rev = "84980bd3f549821fe58d1821fdc1e7c54d1ebf3a"; 3260 + sha256 = "09dcajyfbimfzgxj57c988rqr6y6ah4p97j04gyvg1mrvlj95dg4"; 3261 + }; 3262 + meta.homepage = "https://github.com/akinsho/nvim-toggleterm.lua/"; 3263 + }; 3264 + 3253 3265 nvim-tree-lua = buildVimPluginFrom2Nix { 3254 3266 pname = "nvim-tree-lua"; 3255 3267 version = "2021-03-23"; ··· 3264 3276 3265 3277 nvim-treesitter = buildVimPluginFrom2Nix { 3266 3278 pname = "nvim-treesitter"; 3267 - version = "2021-03-23"; 3279 + version = "2021-03-24"; 3268 3280 src = fetchFromGitHub { 3269 3281 owner = "nvim-treesitter"; 3270 3282 repo = "nvim-treesitter"; 3271 - rev = "09045354c0245ca866104c526bc57c2a06d7f381"; 3272 - sha256 = "182jvkwixmv1i39npvxkj0nr19cazqkab1kbprx7282dad68x30b"; 3283 + rev = "88ac3d23653a27973be8ff60e500848cacfcf968"; 3284 + sha256 = "1diy0j045kcr38nwi641ccq89bzahfacicny2zphyrml1ff7hgff"; 3273 3285 }; 3274 3286 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 3275 3287 }; ··· 3312 3324 3313 3325 nvim-ts-rainbow = buildVimPluginFrom2Nix { 3314 3326 pname = "nvim-ts-rainbow"; 3315 - version = "2021-03-23"; 3327 + version = "2021-03-25"; 3316 3328 src = fetchFromGitHub { 3317 3329 owner = "p00f"; 3318 3330 repo = "nvim-ts-rainbow"; 3319 - rev = "f61093c56a53c6790b142f76bdfaa476f497b93f"; 3320 - sha256 = "1wzg1y0gksprdxhww0vcswfa0imkkrnhczljhlb94lrrmknv3nxv"; 3331 + rev = "8714eade54870231b1df247453a5535a40b0a7b4"; 3332 + sha256 = "192376c6nbx5kgj96wvpmds7ird8hfk4v8ayg1gay18vljyszxj9"; 3321 3333 }; 3322 3334 meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/"; 3323 3335 }; ··· 3444 3456 3445 3457 packer-nvim = buildVimPluginFrom2Nix { 3446 3458 pname = "packer-nvim"; 3447 - version = "2021-03-22"; 3459 + version = "2021-03-24"; 3448 3460 src = fetchFromGitHub { 3449 3461 owner = "wbthomason"; 3450 3462 repo = "packer.nvim"; 3451 - rev = "77cd1d1e0cfcb582b210d75745594f4fb60d3418"; 3452 - sha256 = "0yhdxh6768z4dalpmzhhypnjfx3mjx7d6r722lv9g15xg7i1lg3q"; 3463 + rev = "df33faeef884d55ca8f97479ea55b8d9bd2ffb3f"; 3464 + sha256 = "1pizzzmb551c2pr0srw27ya8a4awfgq14k2dswmk8i8vra54vsj6"; 3453 3465 }; 3454 3466 meta.homepage = "https://github.com/wbthomason/packer.nvim/"; 3455 3467 }; ··· 5140 5152 5141 5153 vim-clap = buildVimPluginFrom2Nix { 5142 5154 pname = "vim-clap"; 5143 - version = "2021-03-13"; 5155 + version = "2021-03-24"; 5144 5156 src = fetchFromGitHub { 5145 5157 owner = "liuchengxu"; 5146 5158 repo = "vim-clap"; 5147 - rev = "b7b1d078f4556a6829400185bbfb47be171e6828"; 5148 - sha256 = "1vncq3ypp5x3v9vq90zwg12ih45nph6g5mrl0xh2m82llqsp5r7c"; 5159 + rev = "fc5060933e9f35a107d1646c90d4e1216301ab48"; 5160 + sha256 = "0g36p0wqrvm6v4ga64z84jri5c8n5hq6y7f5yig7kszk01wvc6hh"; 5149 5161 }; 5150 5162 meta.homepage = "https://github.com/liuchengxu/vim-clap/"; 5151 5163 }; ··· 5188 5200 5189 5201 vim-closetag = buildVimPluginFrom2Nix { 5190 5202 pname = "vim-closetag"; 5191 - version = "2020-10-09"; 5203 + version = "2021-03-24"; 5192 5204 src = fetchFromGitHub { 5193 5205 owner = "alvan"; 5194 5206 repo = "vim-closetag"; 5195 - rev = "bd6bbc33c7e178673aa1dd17a5d249bbd4e3a6a6"; 5196 - sha256 = "0nqzjma6mqg19cxq0ck2lym51ajb1x97z497zf9pbp47hkg5875j"; 5207 + rev = "c0779ef575d5c239162f4ca3506cfb4a95d45a58"; 5208 + sha256 = "1mkn6d7m23ak06pl8i328hd9x6qx5fzrg8ijz32lgd4a56k98n6i"; 5197 5209 }; 5198 5210 meta.homepage = "https://github.com/alvan/vim-closetag/"; 5199 5211 }; ··· 5788 5800 5789 5801 vim-floaterm = buildVimPluginFrom2Nix { 5790 5802 pname = "vim-floaterm"; 5791 - version = "2021-03-23"; 5803 + version = "2021-03-24"; 5792 5804 src = fetchFromGitHub { 5793 5805 owner = "voldikss"; 5794 5806 repo = "vim-floaterm"; 5795 - rev = "a1403fd295edeffdc2e387f9308dc4392f057e68"; 5796 - sha256 = "1dc1169lwz1wjgqp27g8wa37yqsvc4fgmrcprc3ys4r3s9m6y5m6"; 5807 + rev = "ae7eea5c5c6c082fe66410e72306b5b1bcb693dd"; 5808 + sha256 = "1lvaww22rj9jnd8b8fjcaclvj8n6vqc390l3z5d7ivm6fc5h1k1j"; 5797 5809 }; 5798 5810 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 5799 5811 }; ··· 5848 5860 5849 5861 vim-fugitive = buildVimPluginFrom2Nix { 5850 5862 pname = "vim-fugitive"; 5851 - version = "2021-03-23"; 5863 + version = "2021-03-25"; 5852 5864 src = fetchFromGitHub { 5853 5865 owner = "tpope"; 5854 5866 repo = "vim-fugitive"; 5855 - rev = "857496c32f02ebe74e821bdd2240aafc1455f8ea"; 5856 - sha256 = "11kyccfmcm7jpvaidd84wdn5vypg9lcdpkpmy2hy7k23gg7hzpza"; 5867 + rev = "7de9b5a04b9ab63bba381d3cc2c48331ba8e4e7f"; 5868 + sha256 = "0d33gzblnz4gzd6grfmyb5rfp59jcj86n95ajwn9q2d4snk45h4n"; 5857 5869 }; 5858 5870 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 5859 5871 }; ··· 6835 6847 6836 6848 vim-mundo = buildVimPluginFrom2Nix { 6837 6849 pname = "vim-mundo"; 6838 - version = "2020-12-29"; 6850 + version = "2021-03-25"; 6839 6851 src = fetchFromGitHub { 6840 6852 owner = "simnalamburt"; 6841 6853 repo = "vim-mundo"; 6842 - rev = "4f8628caebe393ac1b84564e965f894d89a7582d"; 6843 - sha256 = "0hmww1xln0rvvi8hy7sv9arjwlp40ks0b07irzqpm5xi93hgyq2n"; 6854 + rev = "c6dcea90166750bb5ed40321749966b1a8020a1a"; 6855 + sha256 = "1bd9xab96m2j6zcp6bh7k958wj95m8w40hczmn2qzpq3cvpy8nb0"; 6844 6856 }; 6845 6857 meta.homepage = "https://github.com/simnalamburt/vim-mundo/"; 6846 6858 }; ··· 7567 7579 7568 7580 vim-scriptease = buildVimPluginFrom2Nix { 7569 7581 pname = "vim-scriptease"; 7570 - version = "2021-03-08"; 7582 + version = "2021-03-25"; 7571 7583 src = fetchFromGitHub { 7572 7584 owner = "tpope"; 7573 7585 repo = "vim-scriptease"; 7574 - rev = "9450c4ea654649b6199750edc9f3f84637268d7b"; 7575 - sha256 = "0nkxcykn63187jwzw0anl3chzhm31yzgmkhqra0c9071jzi149xg"; 7586 + rev = "dbdc88f2ca38613a089354823fb2cec4d87d104d"; 7587 + sha256 = "0i89vrnfphr32qcix9ah9cf68xnw6n8jm03xmgys29gkfim4v7sq"; 7576 7588 }; 7577 7589 meta.homepage = "https://github.com/tpope/vim-scriptease/"; 7578 7590 }; ··· 7747 7759 7748 7760 vim-snippets = buildVimPluginFrom2Nix { 7749 7761 pname = "vim-snippets"; 7750 - version = "2021-03-22"; 7762 + version = "2021-03-25"; 7751 7763 src = fetchFromGitHub { 7752 7764 owner = "honza"; 7753 7765 repo = "vim-snippets"; 7754 - rev = "164bc3aa42feaa3c1deec84f7a10840418aec300"; 7755 - sha256 = "0snzmjl4qiw6598a3ajc7v6l4q35wxf8b9lklk47pmfmalvril6w"; 7766 + rev = "67e506c5598c19de4fcdf8780377a92aaddfdbad"; 7767 + sha256 = "1gabnzgrjkrf2x32i55js8xf6zm0vzwnzmlbwqkjf1xi25wgbx1n"; 7756 7768 }; 7757 7769 meta.homepage = "https://github.com/honza/vim-snippets/"; 7758 7770 }; ··· 7976 7988 7977 7989 vim-test = buildVimPluginFrom2Nix { 7978 7990 pname = "vim-test"; 7979 - version = "2021-03-03"; 7991 + version = "2021-03-25"; 7980 7992 src = fetchFromGitHub { 7981 7993 owner = "vim-test"; 7982 7994 repo = "vim-test"; 7983 - rev = "f5619460b77b9b444311aa3b6f31ecd9ffdaa6d8"; 7984 - sha256 = "1izzpfvppiyf4pcxdny0na634bl147rwiijyaj7rg679w9lv6qwg"; 7995 + rev = "a0a3f130dddfde95700f8d07e51884a2bc0a53c4"; 7996 + sha256 = "07qv8l3rz63ksrv8shphqk42p1yzcjjck6s5sv3sz2z1xwr2dy0x"; 7985 7997 }; 7986 7998 meta.homepage = "https://github.com/vim-test/vim-test/"; 7987 7999 }; ··· 8144 8156 8145 8157 vim-tpipeline = buildVimPluginFrom2Nix { 8146 8158 pname = "vim-tpipeline"; 8147 - version = "2021-03-11"; 8159 + version = "2021-03-24"; 8148 8160 src = fetchFromGitHub { 8149 8161 owner = "vimpostor"; 8150 8162 repo = "vim-tpipeline"; 8151 - rev = "327944d0d7824e6de4dda33bc2b008708a6cb447"; 8152 - sha256 = "16nsick3p5nj9vmi6h531l8lc5c6gy2c1zd83xbgav38x655kjws"; 8163 + rev = "b36abe2613191912e12b9562b209f157a8b927de"; 8164 + sha256 = "1ly3iy1c05ry7yfsph0rribiagcyw07daj2dbfj0la3pbfmvip24"; 8153 8165 }; 8154 8166 meta.homepage = "https://github.com/vimpostor/vim-tpipeline/"; 8155 8167 }; ··· 8276 8288 8277 8289 vim-vsnip = buildVimPluginFrom2Nix { 8278 8290 pname = "vim-vsnip"; 8279 - version = "2021-03-21"; 8291 + version = "2021-03-24"; 8280 8292 src = fetchFromGitHub { 8281 8293 owner = "hrsh7th"; 8282 8294 repo = "vim-vsnip"; 8283 - rev = "fe1f56cb924a67ce3b3b70583f00e05e780509e5"; 8284 - sha256 = "0kd4pfjrjcssql154pnrzvw3kgp6rnll2p0d4bgph1b0lc5xp1nk"; 8295 + rev = "4eb5f669c11c497fa075912eb03294b11fca2c07"; 8296 + sha256 = "1imrkir6ir2fl63wh91yh5jp64kxd3zh1m7p05dcfbyd7rc2l9c1"; 8285 8297 }; 8286 8298 meta.homepage = "https://github.com/hrsh7th/vim-vsnip/"; 8287 8299 }; ··· 8565 8577 8566 8578 vimtex = buildVimPluginFrom2Nix { 8567 8579 pname = "vimtex"; 8568 - version = "2021-03-23"; 8580 + version = "2021-03-25"; 8569 8581 src = fetchFromGitHub { 8570 8582 owner = "lervag"; 8571 8583 repo = "vimtex"; 8572 - rev = "3109f140196716b3b3a430f06df35723d85f991d"; 8573 - sha256 = "1n44sg35xm1jc70wpjgc5xjf8h6hrpa2f9jwq6x3dcrppj781naq"; 8584 + rev = "428906647a22fdb30409554935eacdd9932726cb"; 8585 + sha256 = "1kyg2j06b6677pfaj2aqw9ivdlrg02hhpy2jyr11xrqy83k461hi"; 8574 8586 }; 8575 8587 meta.homepage = "https://github.com/lervag/vimtex/"; 8576 8588 };
+1
pkgs/misc/vim-plugins/vim-plugin-names
··· 4 4 airblade/vim-gitgutter 5 5 airblade/vim-rooter 6 6 akinsho/nvim-bufferline.lua 7 + akinsho/nvim-toggleterm.lua 7 8 aklt/plantuml-syntax 8 9 altercation/vim-colors-solarized 9 10 alvan/vim-closetag
+26
pkgs/os-specific/linux/dlm/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromSourcehut 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "dlm"; 8 + version = "2020-01-07"; 9 + 10 + src = fetchFromSourcehut { 11 + owner = "~kennylevinsen"; 12 + repo = pname; 13 + rev = "6b0e11c4f453b1a4d7a32019227539a980b7ce66"; 14 + sha256 = "1r3w7my0g3v2ya317qnvjx8wnagjahpj7yx72a65hf2pjbf5x42p"; 15 + }; 16 + 17 + cargoSha256 = "OFMCsUmrRYlobiUAqm1huuzDxdf1BWmU2RqZ9Y6Yjew="; 18 + 19 + meta = with lib; { 20 + description = "A stupid simple graphical login manager"; 21 + homepage = "https://git.sr.ht/~kennylevinsen/dlm"; 22 + license = licenses.gpl3Plus; 23 + maintainers = with maintainers; [ luc65r ]; 24 + platforms = platforms.linux; 25 + }; 26 + }
+4 -2
pkgs/os-specific/linux/dmtcp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, bash, perl, python }: 1 + { lib, stdenv, fetchFromGitHub, bash, perl, python2 }: 2 + 3 + # There are fixes for python3 compatibility on master 2 4 3 5 stdenv.mkDerivation rec { 4 6 pname = "dmtcp"; ··· 28 30 substituteInPlace test/autotest.py \ 29 31 --replace /bin/bash ${bash}/bin/bash \ 30 32 --replace /usr/bin/perl ${perl}/bin/perl \ 31 - --replace /usr/bin/python ${python}/bin/python \ 33 + --replace /usr/bin/python ${python2}/bin/python \ 32 34 --replace "os.environ['USER']" "\"nixbld1\"" \ 33 35 --replace "os.getenv('USER')" "\"nixbld1\"" 34 36 '';
+51
pkgs/os-specific/linux/greetd/default.nix
··· 1 + { rustPlatform 2 + , lib 3 + , fetchFromSourcehut 4 + , pam 5 + , scdoc 6 + , installShellFiles 7 + }: 8 + 9 + rustPlatform.buildRustPackage rec { 10 + pname = "greetd"; 11 + version = "0.7.0"; 12 + 13 + src = fetchFromSourcehut { 14 + owner = "~kennylevinsen"; 15 + repo = pname; 16 + rev = version; 17 + sha256 = "b+S3fuJ8gjnSQzLHl3Bs9iO/Un2ynggAplz01GjJvFI="; 18 + }; 19 + 20 + cargoSha256 = "w6d8rIc03Qa2/TpztpyVijjd3y0Vo38+JDhsOkSFG5E="; 21 + 22 + nativeBuildInputs = [ 23 + scdoc 24 + installShellFiles 25 + ]; 26 + 27 + buildInputs = [ 28 + pam 29 + ]; 30 + 31 + postInstall = '' 32 + for f in man/*; do 33 + scdoc < "$f" > "$(sed 's/-\([0-9]\)\.scd$/.\1/' <<< "$f")" 34 + rm "$f" 35 + done 36 + installManPage man/* 37 + ''; 38 + 39 + meta = with lib; { 40 + description = "Minimal and flexible login manager daemon"; 41 + longDescription = '' 42 + greetd is a minimal and flexible login manager daemon 43 + that makes no assumptions about what you want to launch. 44 + Comes with agreety, a simple, text-based greeter. 45 + ''; 46 + homepage = "https://kl.wtf/projects/greetd/"; 47 + license = licenses.gpl3Plus; 48 + maintainers = with maintainers; [ luc65r ]; 49 + platforms = platforms.linux; 50 + }; 51 + }
+50
pkgs/os-specific/linux/gtkgreet/default.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromSourcehut 4 + , pkg-config 5 + , cmake 6 + , meson 7 + , ninja 8 + , gtk3 9 + , gtk-layer-shell 10 + , json_c 11 + , scdoc 12 + }: 13 + 14 + stdenv.mkDerivation rec { 15 + pname = "gtkgreet"; 16 + version = "0.7"; 17 + 18 + src = fetchFromSourcehut { 19 + owner = "~kennylevinsen"; 20 + repo = pname; 21 + rev = version; 22 + sha256 = "ms+2FdtzzNlmlzNxFhu4cpX5H+5H+9ZOtZ0p8uVA3lo="; 23 + }; 24 + 25 + nativeBuildInputs = [ 26 + pkg-config 27 + meson 28 + ninja 29 + cmake 30 + ]; 31 + 32 + buildInputs = [ 33 + gtk3 34 + gtk-layer-shell 35 + json_c 36 + scdoc 37 + ]; 38 + 39 + mesonFlags = [ 40 + "-Dlayershell=enabled" 41 + ]; 42 + 43 + meta = with lib; { 44 + description = "GTK based greeter for greetd, to be run under cage or similar"; 45 + homepage = "https://git.sr.ht/~kennylevinsen/gtkgreet"; 46 + license = licenses.gpl3Plus; 47 + maintainers = with maintainers; [ luc65r ]; 48 + platforms = platforms.linux; 49 + }; 50 + }
+26
pkgs/os-specific/linux/tuigreet/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "tuigreet"; 8 + version = "0.2.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "apognu"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "1fk8ppxr3a8vdp7g18pp3sgr8b8s11j30mcqpdap4ai14v19idh8"; 15 + }; 16 + 17 + cargoSha256 = "0qpambizjy6z44spnjnh2kd8nay5953mf1ga2iff2mjlv97zpq22"; 18 + 19 + meta = with lib; { 20 + description = "Graphical console greter for greetd"; 21 + homepage = "https://github.com/apognu/tuigreet"; 22 + license = licenses.gpl3Plus; 23 + maintainers = with maintainers; [ luc65r ]; 24 + platforms = platforms.linux; 25 + }; 26 + }
+26
pkgs/os-specific/linux/wlgreet/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromSourcehut 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "wlgreet"; 8 + version = "2020-10-20"; 9 + 10 + src = fetchFromSourcehut { 11 + owner = "~kennylevinsen"; 12 + repo = pname; 13 + rev = "4425d296b81550cce01f044fbd7ff083e37550f4"; 14 + sha256 = "0n0lzg3y1z5s9s6kfkdj5q8w67bqpw08hqfccc5kz0ninzy9j0cc"; 15 + }; 16 + 17 + cargoSha256 = "01bfv2kzg2r9z75b8pq61n2ydc8l5zh69jdyjpj931l642f6kd5a"; 18 + 19 + meta = with lib; { 20 + description = "Raw wayland greeter for greetd, to be run under sway or similar"; 21 + homepage = "https://git.sr.ht/~kennylevinsen/wlgreet"; 22 + license = licenses.gpl3Plus; 23 + maintainers = with maintainers; [ luc65r ]; 24 + platforms = platforms.linux; 25 + }; 26 + }
+5 -4
pkgs/servers/bazarr/default.nix
··· 1 - { stdenv, lib, fetchurl, makeWrapper, python3, nixosTests }: 1 + { stdenv, lib, fetchurl, makeWrapper, python3, unrar, ffmpeg, nixosTests }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bazarr"; 5 - version = "0.9.0.8"; 5 + version = "0.9.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/morpheus65535/bazarr/archive/v${version}.tar.gz"; 9 - sha256 = "sha256-Ecbx7FHpcEkcWBAKCtZPtQKX5ibvU4tajSJ5pyEboKc="; 9 + sha256 = "16mh7v8z5ijr75pvavcj6225w6bg12qy1d1w9vm2d5axnfm3wfbk"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ]; ··· 19 19 makeWrapper "${(python3.withPackages (ps: [ps.lxml ps.numpy])).interpreter}" \ 20 20 $out/bin/bazarr \ 21 21 --add-flags "$out/src/bazarr.py" \ 22 + --suffix PATH : ${lib.makeBinPath [ unrar ffmpeg ]} \ 22 23 ''; 23 24 24 25 passthru.tests = { ··· 28 29 meta = with lib; { 29 30 description = "Subtitle manager for Sonarr and Radarr"; 30 31 homepage = "https://www.bazarr.media/"; 31 - license = licenses.gpl3; 32 + license = licenses.gpl3Only; 32 33 maintainers = with maintainers; [ xwvvvvwx ]; 33 34 platforms = platforms.all; 34 35 };
+2 -2
pkgs/servers/dico/default.nix
··· 1 1 { fetchurl, lib, stdenv, libtool, gettext, zlib, readline, gsasl 2 - , guile, python, pcre, libffi, groff }: 2 + , guile, python2, pcre, libffi, groff }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "dico"; ··· 13 13 hardeningDisable = [ "format" ]; 14 14 15 15 buildInputs = 16 - [ libtool gettext zlib readline gsasl guile python pcre libffi groff ]; 16 + [ libtool gettext zlib readline gsasl guile python2 pcre libffi groff ]; 17 17 18 18 doCheck = true; 19 19
+2 -2
pkgs/servers/dict/dictd-wordnet.nix
··· 1 - {lib, stdenv, python, wordnet, writeScript}: 1 + {lib, stdenv, python2, wordnet, writeScript}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "542"; 5 5 pname = "dict-db-wordnet"; 6 6 7 - buildInputs = [python wordnet]; 7 + buildInputs = [python2 wordnet]; 8 8 convert = ./wordnet_structures.py; 9 9 10 10 builder = writeScript "builder.sh" ''
+2 -2
pkgs/servers/dict/wiktionary/default.nix
··· 1 - { lib, stdenv, fetchurl, python, dict, glibcLocales }: 1 + { lib, stdenv, fetchurl, python2, dict, glibcLocales }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "20210201"; ··· 10 10 }; 11 11 12 12 convert = ./wiktionary2dict.py; 13 - buildInputs = [ python dict glibcLocales ]; 13 + buildInputs = [ python2 dict glibcLocales ]; 14 14 builder = ./builder.sh; 15 15 16 16 passthru.updateScript = ./update.sh;
+2 -2
pkgs/servers/dns/knot-dns/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "knot-dns"; 10 - version = "3.0.4"; 10 + version = "3.0.5"; 11 11 12 12 src = fetchurl { 13 13 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 14 - sha256 = "451d8913a769b7e4bcb3e250a3181b448e28a82cfc58cea6f2509475d7327983"; 14 + sha256 = "695e7d7a0abefc5a8fd01f3b3080f030f33b0948215f84cd4892c6d904390802"; 15 15 }; 16 16 17 17 outputs = [ "bin" "out" "dev" ];
+1 -1
pkgs/servers/foundationdb/default.nix
··· 2 2 , lib, fetchurl, fetchpatch, fetchFromGitHub 3 3 4 4 , cmake, ninja, which, findutils, m4, gawk 5 - , python, python3, openjdk, mono, libressl, boost 5 + , python2, python3, openjdk, mono, libressl, boost 6 6 }@args: 7 7 8 8 let
+2 -2
pkgs/servers/foundationdb/vsmake.nix
··· 4 4 { gcc6Stdenv, lib, fetchurl, fetchFromGitHub 5 5 6 6 , which, findutils, m4, gawk 7 - , python, openjdk, mono, libressl 7 + , python2, openjdk, mono, libressl 8 8 , ... 9 9 }: 10 10 ··· 51 51 inherit rev sha256; 52 52 }; 53 53 54 - nativeBuildInputs = [ python openjdk gawk which m4 findutils mono ]; 54 + nativeBuildInputs = [ python2 openjdk gawk which m4 findutils mono ]; 55 55 buildInputs = [ libressl boost ]; 56 56 57 57 inherit patches;
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 424 424 "kiwi" = ps: with ps; [ ]; # missing inputs: kiwiki-client 425 425 "kmtronic" = ps: with ps; [ pykmtronic ]; 426 426 "knx" = ps: with ps; [ xknx ]; 427 - "kodi" = ps: with ps; [ ]; # missing inputs: pykodi 427 + "kodi" = ps: with ps; [ pykodi ]; 428 428 "konnected" = ps: with ps; [ aiohttp-cors ]; # missing inputs: konnected 429 429 "kulersky" = ps: with ps; [ ]; # missing inputs: pykulersky 430 430 "kwb" = ps: with ps; [ ]; # missing inputs: pykwb
-35
pkgs/servers/http/apache-modules/mod_evasive/default.nix
··· 1 - { lib, stdenv, fetchurl, apacheHttpd }: 2 - 3 - if lib.versionAtLeast (lib.getVersion apacheHttpd) "2.4" then 4 - 5 - throw "mod_evasive is not supported on Apache httpd 2.4" 6 - 7 - else 8 - 9 - stdenv.mkDerivation { 10 - name = "mod_evasive-1.10.1"; 11 - 12 - src = fetchurl { 13 - url = "http://www.zdziarski.com/blog/wp-content/uploads/2010/02/mod_evasive_1.10.1.tar.gz"; 14 - sha256 = "0rsnx50rjv6xygbp9r0gyss7xqdkcb0hy3wh9949jf1im8wm3i07"; 15 - }; 16 - 17 - buildInputs = [ apacheHttpd ]; 18 - 19 - buildPhase = '' 20 - export APACHE_LIBEXECDIR=$out/modules 21 - export makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules) 22 - apxs -ca mod_evasive20.c 23 - ''; 24 - 25 - installPhase = '' 26 - mkdir -p $out/modules 27 - cp .libs/mod_evasive20.so $out/modules 28 - ''; 29 - 30 - meta = { 31 - homepage = "http://www.zdziarski.com/blog/?page_id=442"; 32 - description = "Evasive maneuvers module for Apache to provide evasive action in the event of an HTTP DoS or DDoS attack or brute force attack"; 33 - platforms = lib.platforms.linux; 34 - }; 35 - }
+2 -2
pkgs/servers/ldap/389/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchpatch, autoreconfHook, pkg-config, doxygen, perl, pam, nspr, nss, openldap 2 - , db, cyrus_sasl, svrcore, icu, net-snmp, kerberos, pcre, perlPackages, libevent, openssl, python 2 + , db, cyrus_sasl, svrcore, icu, net-snmp, kerberos, pcre, perlPackages, libevent, openssl, python3 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 14 14 nativeBuildInputs = [ autoreconfHook pkg-config doxygen ]; 15 15 buildInputs = [ 16 16 perl pam nspr nss openldap db cyrus_sasl svrcore icu 17 - net-snmp kerberos pcre libevent openssl python 17 + net-snmp kerberos pcre libevent openssl python3 18 18 ] ++ (with perlPackages; [ MozillaLdap NetAddrIP DBFile ]); 19 19 20 20 patches = [
+11 -7
pkgs/servers/sonarr/default.nix
··· 1 - { lib, stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, ... }: 1 + { lib, stdenv, fetchurl, mono, libmediainfo, sqlite, curl, makeWrapper, nixosTests }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sonarr"; 5 - version = "2.0.0.5344"; 5 + version = "3.0.5.1144"; 6 6 7 7 src = fetchurl { 8 - url = "https://download.sonarr.tv/v2/master/mono/NzbDrone.master.${version}.mono.tar.gz"; 9 - sha256 = "0bsxf7m2dir7gi0cfn8vdasr11q224b9mp6cixak9ss5zafwn59a"; 8 + url = "https://download.sonarr.tv/v3/main/${version}/Sonarr.main.${version}.linux.tar.gz"; 9 + sha256 = "1ajqh3hvjfsbs6rb2f8dnndxsycmlzamp0cwjwkh1j2dinbzdbvp"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ]; ··· 14 14 installPhase = '' 15 15 mkdir -p $out/bin 16 16 cp -r * $out/bin/ 17 - 18 17 makeWrapper "${mono}/bin/mono" $out/bin/NzbDrone \ 19 - --add-flags "$out/bin/NzbDrone.exe" \ 18 + --add-flags "$out/bin/Sonarr.exe" \ 20 19 --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ 21 20 curl sqlite libmediainfo ]} 22 21 ''; 23 22 23 + passthru = { 24 + updateScript = "./update.sh"; 25 + tests.smoke-test = nixosTests.sonarr; 26 + }; 27 + 24 28 meta = { 25 29 description = "Smart PVR for newsgroup and bittorrent users"; 26 30 homepage = "https://sonarr.tv/"; 27 - license = lib.licenses.gpl3; 31 + license = lib.licenses.gpl3Only; 28 32 maintainers = with lib.maintainers; [ fadenb purcell ]; 29 33 platforms = lib.platforms.all; 30 34 };
+7
pkgs/servers/sonarr/update.sh
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -i bash -p curl jq common-updater-scripts 3 + 4 + latestTag=$(curl https://api.github.com/repos/Sonarr/Sonarr/tags | jq -r '.[] | .name' | sort --version-sort | tail -1) 5 + version="$(expr $latestTag : 'v\(.*\)')" 6 + 7 + update-source-version sonarr "$version"
+3 -3
pkgs/servers/traefik/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "traefik"; 5 - version = "2.4.7"; 5 + version = "2.4.8"; 6 6 7 7 src = fetchzip { 8 8 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 9 - sha256 = "sha256-K1uSfsi/uC41ukDGaWaYIKX6A+SU59x3a/DYip9/LPI="; 9 + sha256 = "sha256-hCBhJazI0Y1qQjULF+CBfUfz6PvkgLXafvXKR6iKHmU="; 10 10 stripRoot = false; 11 11 }; 12 12 13 - vendorSha256 = "sha256-MCQbSy2TOSkZoqC2POIq8mDRld4fe245m0Xe0drxEq8="; 13 + vendorSha256 = "sha256-MW/JG4TbUvbo4dQnQbKIbLlLgkQvOqsfagpXILJ/BYQ="; 14 14 15 15 doCheck = false; 16 16
+4 -8
pkgs/servers/xandikos/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 3 , python3Packages 4 - , installShellFiles 4 + , nixosTests 5 5 }: 6 6 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "xandikos"; 9 - version = "0.2.5"; 9 + version = "0.2.6"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "jelmer"; 13 13 repo = "xandikos"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-/pr8ZqgYk24CdJNAETCDF4ZtufXkVEu1Zw25PcPEo7M="; 15 + sha256 = "sha256-Epy6NWtRY2Oj4MHTStdv8ZJ5SvSmUo6IlwL5PJV9pD0="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3Packages; [ ··· 25 25 prometheus_client 26 26 ]; 27 27 28 - nativeBuildInputs = [ installShellFiles ]; 29 - 30 - postInstall = '' 31 - installManPage xandikos.1 32 - ''; 28 + passthru.tests.xandikos = nixosTests.xandikos; 33 29 34 30 meta = with lib; { 35 31 description = "Lightweight CalDAV/CardDAV server";
+2 -2
pkgs/tools/admin/chkcrontab/default.nix
··· 1 - { python, lib }: 1 + { python3, lib }: 2 2 3 - with python.pkgs; 3 + with python3.pkgs; 4 4 5 5 buildPythonApplication rec { 6 6 pname = "chkcrontab";
+3 -3
pkgs/tools/admin/clair/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "clair"; 5 - version = "4.0.3"; 5 + version = "4.0.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "quay"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ztp3t55EOUQqTAEUZtHvHK8nTTVOAmYR9vN2hXLhpVw="; 11 + sha256 = "sha256-KY9POvwmyUVx9jcn02Ltcz2a1ULqyKW73A9Peb6rpYE="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-+0jp/TvUjpeJJxEs2drVkUb/ua9qqqxome4M9TkpfP4="; 14 + vendorSha256 = "sha256-+p3ucnvgOpSLS/uP9RAkWixCkaDoF64qCww013jPqSs="; 15 15 16 16 doCheck = false; 17 17
+28
pkgs/tools/admin/fioctl/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "fioctl"; 5 + version = "0.14.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "foundriesio"; 9 + repo = "fioctl"; 10 + rev = "v${version}"; 11 + sha256 = "1jbj2w2s78wcnrwyr80jyc11ipjysv5aab3486kphx8ysvvgcwfs"; 12 + }; 13 + 14 + vendorSha256 = "1a3x6cv18f0n01f4ac1kprzmby8dphygnwsdl98pmzs3gqqnh284"; 15 + 16 + runVend = true; 17 + 18 + buildFlagsArray = '' 19 + -ldflags=-s -w -X github.com/foundriesio/fioctl/subcommands/version.Commit=${src.rev} 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "A simple CLI to manage your Foundries Factory "; 24 + homepage = "https://github.com/foundriesio/fioctl"; 25 + license = licenses.asl20; 26 + maintainers = with maintainers; [ nixinator matthewcroughan ]; 27 + }; 28 + }
+2 -2
pkgs/tools/admin/procs/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security }: 1 + { lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security, libiconv }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "procs"; ··· 22 22 done 23 23 ''; 24 24 25 - buildInputs = lib.optional stdenv.isDarwin Security; 25 + buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ]; 26 26 27 27 meta = with lib; { 28 28 description = "A modern replacement for ps written in Rust";
+10 -5
pkgs/tools/backup/borg/default.nix
··· 1 - { lib, stdenv, python3, acl, libb2, lz4, zstd, openssl, openssh }: 1 + { lib, stdenv, python3, acl, libb2, lz4, zstd, openssl, openssh, nixosTests }: 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "borgbackup"; 5 - version = "1.1.15"; 5 + version = "1.1.16"; 6 6 7 7 src = python3.pkgs.fetchPypi { 8 8 inherit pname version; 9 - sha256 = "1g62sdzcw3zx4ccky125ciwnzx6z9kwyvskvp7ijmqxqk3nrxjs9"; 9 + sha256 = "0l1dqfwrd9l34rg30cmzmq5bs6yha6kg4vy313jq611jsqj94mmw"; 10 10 }; 11 11 12 12 nativeBuildInputs = with python3.pkgs; [ 13 + setuptools-scm 13 14 # For building documentation: 14 15 sphinx guzzle_sphinx_theme 15 16 ]; 16 17 buildInputs = [ 17 - libb2 lz4 zstd openssl python3.pkgs.setuptools_scm 18 + libb2 lz4 zstd openssl 18 19 ] ++ lib.optionals stdenv.isLinux [ acl ]; 19 20 propagatedBuildInputs = with python3.pkgs; [ 20 21 cython llfuse ··· 24 25 export BORG_OPENSSL_PREFIX="${openssl.dev}" 25 26 export BORG_LZ4_PREFIX="${lz4.dev}" 26 27 export BORG_LIBB2_PREFIX="${libb2}" 27 - export BORG_LIBZSTD_PREFIX="${zstd}" 28 + export BORG_LIBZSTD_PREFIX="${zstd.dev}" 28 29 ''; 29 30 30 31 makeWrapperArgs = [ ··· 60 61 61 62 # 64 failures, needs pytest-benchmark 62 63 doCheck = false; 64 + 65 + passthru.tests = { 66 + inherit (nixosTests) borgbackup; 67 + }; 63 68 64 69 meta = with lib; { 65 70 description = "Deduplicating archiver with compression and encryption";
+13 -2
pkgs/tools/compression/dtrx/default.nix
··· 1 - { lib, fetchurl, pythonPackages 1 + { lib, fetchurl, python2Packages 2 2 , gnutar, unzip, lhasa, rpm, binutils, cpio, gzip, p7zip, cabextract, unrar, unshield 3 3 , bzip2, xz, lzip 4 4 # unzip is handled by p7zip ··· 11 11 ++ lib.optional (unrarSupport) unrar 12 12 ++ [ bzip2 xz lzip ]); 13 13 14 - in pythonPackages.buildPythonApplication rec { 14 + in python2Packages.buildPythonApplication rec { 15 15 pname = "dtrx"; 16 16 version = "7.1"; 17 17 ··· 23 23 postInstall = '' 24 24 wrapProgram "$out/bin/dtrx" --prefix PATH : "${archivers}" 25 25 ''; 26 + 27 + checkPhase = '' 28 + python2 tests/compare.py 29 + ''; 30 + 31 + checkInputs = with python2Packages; [ 32 + pyyaml 33 + ]; 34 + 35 + # custom test suite fails 36 + doCheck = false; 26 37 27 38 meta = with lib; { 28 39 description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives";
+5 -3
pkgs/tools/filesystems/cryfs/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, fetchpatch 2 - , cmake, pkg-config, python, gtest 2 + , cmake, pkg-config, python3, gtest 3 3 , boost, cryptopp, curl, fuse, openssl 4 4 }: 5 5 ··· 44 44 --replace "(4.5L*1024*1024*1024)" "(0.5L*1024*1024*1024)" 45 45 ''; 46 46 47 - nativeBuildInputs = [ cmake gtest pkg-config python ]; 47 + nativeBuildInputs = [ cmake pkg-config python3 ]; 48 48 49 - buildInputs = [ boost cryptopp curl fuse openssl ]; 49 + strictDeps = true; 50 + 51 + buildInputs = [ boost cryptopp curl fuse openssl gtest ]; 50 52 51 53 cmakeFlags = [ 52 54 "-DCRYFS_UPDATE_CHECKS:BOOL=FALSE"
+2 -2
pkgs/tools/filesystems/fuse-overlayfs/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "fuse-overlayfs"; 5 - version = "1.4.0"; 5 + version = "1.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "containers"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-lus+1hkc4GxrTxtdfDJ0XqJp37dcjKp4/sI3CEh8cYA="; 11 + sha256 = "sha256-/gdmrQhYsE4a/1sxtJ5IfVUWjh08wTVrOr4V7Fkn1i0="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkg-config ];
+4 -2
pkgs/tools/graphics/blockhash/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, pkg-config, imagemagick, wafHook }: 1 + { lib, stdenv, fetchFromGitHub, python2, pkg-config, imagemagick, wafHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "blockhash"; ··· 11 11 sha256 = "0m7ikppl42iicgmwsb7baajmag7v0p1ab06xckifvrr0zm21bq9p"; 12 12 }; 13 13 14 - nativeBuildInputs = [ python pkg-config wafHook ]; 14 + nativeBuildInputs = [ python2 pkg-config wafHook ]; 15 15 buildInputs = [ imagemagick ]; 16 + 17 + strictDeps = true; 16 18 17 19 meta = with lib; { 18 20 homepage = "http://blockhash.io/";
+2 -4
pkgs/tools/graphics/escrotum/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonApplication 2 - , pygtk 3 - , numpy ? null 1 + { lib, python2Packages, fetchFromGitHub 4 2 }: 5 3 6 - buildPythonApplication { 4 + with python2Packages; buildPythonApplication { 7 5 name = "escrotum-2019-06-10"; 8 6 9 7 src = fetchFromGitHub {
+4 -2
pkgs/tools/misc/disper/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, xorg, makeWrapper }: 1 + { lib, stdenv, fetchFromGitHub, python2, xorg, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "disper"; ··· 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; 15 15 16 - buildInputs = [ python ]; 16 + strictDeps = true; 17 + 18 + buildInputs = [ python2 ]; 17 19 18 20 preConfigure = '' 19 21 export makeFlags="PREFIX=$out"
+28
pkgs/tools/misc/paperlike-go/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule { 7 + pname = "paperlike-go"; 8 + version = "unstable-2021-03-22"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "leoluk"; 12 + repo = "paperlike-go"; 13 + rev = "a7d89fd4d4cbcec7be016860e9063676ad4cca0f"; 14 + sha256 = "0ym340520a0j4gvgk4x091lcz1apsv9lnwx0nnha86qvzqcy528l"; 15 + }; 16 + 17 + subPackages = [ "cmd/paperlike-cli" ]; 18 + 19 + vendorSha256 = "00mn0zfivxp2h77s7gmyyjp8p5a1vysn73wwaalgajymvljxxx1r"; 20 + 21 + meta = with lib; { 22 + description = "paperlike-go is a Linux Go library and CLI utility to control a Dasung Paperlike display via I2C DDC."; 23 + homepage = "https://github.com/leoluk/paperlike-go"; 24 + license = lib.licenses.asl20; 25 + maintainers = [ lib.maintainers.adisbladis ]; 26 + platforms = lib.platforms.linux; 27 + }; 28 + }
+2 -2
pkgs/tools/misc/ytfzf/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "ytfzf"; 19 - version = "1.1.0"; 19 + version = "1.1.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "pystardust"; 23 23 repo = "ytfzf"; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-ATQRXYaIp1MKCO/EAPsopzFEZeNJzdk73/OcgjsMdkg="; 25 + sha256 = "sha256-286rN3g6leSnbZZ0VjWl43nhBAMPJDUMv7DhgVTsjKw="; 26 26 }; 27 27 28 28 patches = [
+5 -5
pkgs/tools/misc/ytfzf/no-update.patch
··· 1 1 diff --git a/ytfzf b/ytfzf 2 - index 5238682..c5c3a1a 100755 2 + index f7871c7..179c836 100755 3 3 --- a/ytfzf 4 4 +++ b/ytfzf 5 - @@ -757,23 +757,8 @@ clear_history () { 5 + @@ -829,23 +829,8 @@ send_notify () { 6 6 } 7 7 8 8 update_ytfzf () { 9 - - branch="$1" 10 - - updatefile="/tmp/ytfzf-update" 9 + - local branch="$1" 10 + - local updatefile="/tmp/ytfzf-update" 11 11 - curl -L "https://raw.githubusercontent.com/pystardust/ytfzf/$branch/ytfzf" -o "$updatefile" 12 12 - 13 13 - if sed -n '1p' < "$updatefile" | grep -q '#!/bin/sh' ; then ··· 27 27 + exit 1 28 28 } 29 29 30 - 30 + scrape_subscriptions () {
+5 -3
pkgs/tools/networking/bud/default.nix
··· 1 - { stdenv, lib, fetchgit, python, gyp, util-linux }: 1 + { stdenv, lib, fetchgit, python2, util-linux }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "bud"; ··· 11 11 sha256 = "08yr6l4lc2m6rng06253fcaznf6sq0v053wfr8bbym42c32z0xdh"; 12 12 }; 13 13 14 - buildInputs = [ 15 - python gyp 14 + nativeBuildInputs = [ 15 + python2 python2.pkgs.gyp 16 16 ] ++ lib.optional stdenv.isLinux util-linux; 17 + 18 + strictDeps = true; 17 19 18 20 buildPhase = '' 19 21 python ./gyp_bud -f make
+5 -3
pkgs/tools/networking/carddav-util/default.nix
··· 1 - { lib, stdenv, fetchgit, python, pythonPackages, makeWrapper }: 1 + { lib, stdenv, fetchgit, python3Packages, makeWrapper }: 2 2 3 3 stdenv.mkDerivation { 4 4 ··· 12 12 13 13 nativeBuildInputs = [ makeWrapper ]; 14 14 15 - propagatedBuildInputs = with pythonPackages; [ requests vobject lxml ]; 15 + propagatedBuildInputs = with python3Packages; [ requests vobject lxml ]; 16 + 17 + strictDeps = true; 16 18 17 19 doCheck = false; # no test 18 20 ··· 20 22 mkdir -p $out/bin 21 23 cp $src/carddav-util.py $out/bin 22 24 23 - pythondir="$out/lib/${python.libPrefix}/site-packages" 25 + pythondir="$out/lib/${python3Packages.python.sitePackages}" 24 26 mkdir -p "$pythondir" 25 27 cp $src/carddav.py "$pythondir" 26 28 '';
+4 -2
pkgs/tools/networking/ccnet/default.nix
··· 1 - {lib, stdenv, fetchurl, which, autoreconfHook, pkg-config, vala, python, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}: 1 + {lib, stdenv, fetchurl, which, autoreconfHook, pkg-config, vala, python3, libsearpc, libzdb, libuuid, libevent, sqlite, openssl}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "6.1.8"; ··· 10 10 sha256 = "0qlpnrz30ldrqnvbj59d54qdghxpxc5lsq6kf3dw2b93jnzkcmmm"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkg-config which autoreconfHook vala python ]; 13 + nativeBuildInputs = [ pkg-config which autoreconfHook vala python3 libsearpc ]; 14 14 propagatedBuildInputs = [ libsearpc libzdb libuuid libevent sqlite openssl ]; 15 15 16 16 configureFlags = [ "--enable-server" ]; 17 + 18 + strictDeps = true; 17 19 18 20 meta = with lib; { 19 21 homepage = "https://github.com/haiwen/ccnet";
+3 -3
pkgs/tools/networking/dd-agent/5.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python 1 + { lib, stdenv, fetchFromGitHub, python2 2 2 , unzip, makeWrapper }: 3 3 let 4 - python' = python.override { 4 + python' = python2.override { 5 5 packageOverrides = self: super: { 6 6 docker = self.buildPythonPackage rec { 7 7 name = "docker-${version}"; ··· 82 82 83 83 cat > $out/bin/dd-jmxfetch <<EOF 84 84 #!/usr/bin/env bash 85 - exec ${python}/bin/python $out/agent/jmxfetch.py $@ 85 + exec ${python'.interpreter} $out/agent/jmxfetch.py $@ 86 86 EOF 87 87 chmod a+x $out/bin/dd-jmxfetch 88 88
+25
pkgs/tools/networking/oapi-codegen/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "oapi-codegen"; 5 + version = "1.5.6"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "deepmap"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-edIm1O+LQdmKhH8/5WuSsxVtOcf3VlkObGjIY+30mms="; 12 + }; 13 + 14 + vendorSha256 = "sha256-lhWnPZavtBEa4A76rvr0xw3L5W6HYK1Uw+PW8z8gWuU="; 15 + 16 + # Tests use network 17 + doCheck = false; 18 + 19 + meta = with lib; { 20 + description = "Go client and server OpenAPI 3 generator"; 21 + homepage = "https://github.com/deepmap/oapi-codegen"; 22 + license = licenses.asl20; 23 + maintainers = [ maintainers.j4m3s ]; 24 + }; 25 + }
+4 -4
pkgs/tools/networking/sniffglue/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "sniffglue"; 5 - version = "0.11.1"; 5 + version = "0.12.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kpcyrd"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "0lkz25z0qy1giss4rnhkx9fvsdd8ckf4z1gqw46zl664x96bb705"; 11 + sha256 = "sha256-bvLkeC5Hm1enaWJtYmnnINgpSO3tlg1SsEzeMSF9OXk="; 12 12 }; 13 13 14 - cargoSha256 = "01ya9535whi2kviw57f25n8h05ckpb4bq1h7qav6srai97rm937s"; 14 + cargoSha256 = "sha256-BUo3Y2tLvhOrk2w2GzYeWKpXH7TAOEdBI6vVtW2/cCs="; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17 ··· 20 20 meta = with lib; { 21 21 description = "Secure multithreaded packet sniffer"; 22 22 homepage = "https://github.com/kpcyrd/sniffglue"; 23 - license = licenses.gpl3; 23 + license = licenses.gpl3Plus; 24 24 maintainers = with maintainers; [ xrelkd ]; 25 25 platforms = platforms.linux; 26 26 };
+14 -5
pkgs/tools/networking/xh/default.nix
··· 1 - { stdenv, lib, rustPlatform, fetchFromGitHub, Security }: 1 + { stdenv, lib, openssl, pkg-config, rustPlatform, fetchFromGitHub, Security 2 + , libiconv }: 2 3 3 4 rustPlatform.buildRustPackage rec { 4 5 pname = "xh"; 5 - version = "0.7.0"; 6 + version = "0.9.1"; 6 7 7 8 src = fetchFromGitHub { 8 9 owner = "ducaale"; 9 10 repo = "xh"; 10 11 rev = "v${version}"; 11 - sha256 = "0b7q0xbfbrhvpnxbm9bd1ncdza9k2kcmcir3qhqzb2pgsb5b5njx"; 12 + sha256 = "pRVlcaPfuO7IMH2p0AQfVrCIXCRyF37WIirOJQkcAJE="; 12 13 }; 13 14 14 - cargoSha256 = "02fgqys9qf0jzs2n230pyj151v6xbm6wm2rd9qm5gsib6zaq7gfa"; 15 + cargoSha256 = "dXo1+QvCW3CWN2OhsqGh2Q1xet6cmi2xVy1Xk7s1YR8="; 16 + 17 + nativeBuildInputs = [ pkg-config ]; 18 + 19 + buildInputs = if stdenv.isDarwin then [ Security libiconv ] else [ openssl ]; 15 20 16 - buildInputs = lib.optional stdenv.isDarwin Security; 21 + # Get openssl-sys to use pkg-config 22 + OPENSSL_NO_VENDOR = 1; 17 23 18 24 checkFlagsArray = [ "--skip=basic_options" ]; 19 25 26 + # Nix build happens in sandbox without internet connectivity 27 + # disable tests as some of them require internet due to nature of application 28 + doCheck = false; 20 29 doInstallCheck = true; 21 30 postInstallCheck = '' 22 31 $out/bin/xh --help > /dev/null
+2 -2
pkgs/tools/security/chipsec/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, pythonPackages, nasm, libelf 1 + { stdenv, lib, fetchFromGitHub, python2Packages, nasm, libelf 2 2 , kernel ? null, withDriver ? false }: 3 - pythonPackages.buildPythonApplication rec { 3 + python2Packages.buildPythonApplication rec { 4 4 pname = "chipsec"; 5 5 version = "1.5.1"; 6 6
+4 -2
pkgs/tools/security/cipherscan/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, openssl, makeWrapper, python, coreutils }: 1 + { stdenv, lib, fetchFromGitHub, openssl, makeWrapper, python3, coreutils }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cipherscan"; ··· 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; 15 - buildInputs = [ python ]; 15 + buildInputs = [ python3 ]; 16 + 17 + strictDeps = true; 16 18 17 19 buildPhase = '' 18 20 substituteInPlace cipherscan --replace '$0' 'cipherscan'
+4 -3
pkgs/tools/security/sops/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "sops"; 5 - version = "3.6.1"; 5 + version = "3.7.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "mozilla"; 10 10 repo = pname; 11 - sha256 = "0xl53rs8jzq5yz4wi0vzsr6ajsaf2x2n1h3x7krk02a9839y6f18"; 11 + sha256 = "1a0v1jgbz8n3dymzr2shg2ms9sxjwaci209ldzq8v4g737v10zgm"; 12 12 }; 13 13 14 - vendorSha256 = "1cpm06dyc6lb3a9apfggyi16alb2yijvyan1gbrl8r9fwlqvdpjk"; 14 + vendorSha256 = "1qaml2h3c8fhmi8ahp2fmd0hagqp5xqaf8jxjh4mfmbv2is3yz1l"; 15 15 16 16 doCheck = false; 17 17 18 18 meta = with lib; { 19 19 homepage = "https://github.com/mozilla/sops"; 20 20 description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files"; 21 + changelog = "https://github.com/mozilla/sops/raw/v${version}/CHANGELOG.rst"; 21 22 maintainers = [ maintainers.marsam ]; 22 23 license = licenses.mpl20; 23 24 };
+5 -3
pkgs/tools/system/evemu/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, pkg-config, pythonPackages 1 + { lib, stdenv, fetchgit, autoreconfHook, pkg-config, python3Packages 2 2 , libevdev 3 3 }: 4 4 ··· 14 14 sha256 = "1m38fxwy2s82vb2qm9aqxinws12akmqqq7q66is931lc3awqkbah"; 15 15 }; 16 16 17 - nativeBuildInputs = [ pkg-config autoreconfHook ]; 17 + nativeBuildInputs = [ pkg-config autoreconfHook python3Packages.python ]; 18 18 19 - buildInputs = [ pythonPackages.python pythonPackages.evdev libevdev ]; 19 + buildInputs = [ python3Packages.evdev libevdev ]; 20 + 21 + strictDeps = true; 20 22 21 23 meta = with lib; { 22 24 description = "Records and replays device descriptions and events to emulate input devices through the kernel's input system";
+4 -2
pkgs/tools/system/fio/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, makeWrapper 2 - , libaio, python, zlib 2 + , libaio, python3, zlib 3 3 , withGnuplot ? false, gnuplot ? null }: 4 4 5 5 stdenv.mkDerivation rec { ··· 13 13 sha256 = "sha256-/Si0McndJ6Xp3ifDr+BStv89LmZyAgof95QkHGT8MGQ="; 14 14 }; 15 15 16 - buildInputs = [ python zlib ] 16 + buildInputs = [ python3 zlib ] 17 17 ++ lib.optional (!stdenv.isDarwin) libaio; 18 18 19 19 nativeBuildInputs = [ makeWrapper ]; 20 + 21 + strictDeps = true; 20 22 21 23 enableParallelBuilding = true; 22 24
+33 -11
pkgs/tools/system/rocm-smi/default.nix
··· 1 - { lib, buildPythonApplication, fetchFromGitHub }: 1 + { lib, stdenv, fetchFromGitHub, cmake, python3 }: 2 2 3 - buildPythonApplication rec { 3 + stdenv.mkDerivation rec { 4 4 pname = "rocm-smi"; 5 - version = "4.0.0"; 5 + version = "4.1.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "RadeonOpenCompute"; 9 - repo = "ROC-smi"; 9 + repo = "rocm_smi_lib"; 10 10 rev = "rocm-${version}"; 11 - hash = "sha256-0QqaBMkqRVEl89x3hvWQGAgt7LbtMZPhuf7KenQYHaQ="; 11 + hash = "sha256-LEaC1XhmyoVWrpL05MhgN02LVT2rLKdnw9g2QdfM/uE="; 12 12 }; 13 13 14 - format = "other"; 14 + nativeBuildInputs = [ cmake python3.pkgs.wrapPython ]; 15 15 16 - dontConfigure = true; 17 - dontBuild = true; 16 + postPatch = '' 17 + # Upstream ROCm is installed in an /opt directory. For this reason, 18 + # it does not completely follow FHS layout, creating top-level 19 + # rocm_smi, oam, and bindings top-level directories. Since rocm-smi 20 + # is a package that is typically installed, we change the paths to 21 + # follow FHS more closely. 18 22 19 - installPhase = '' 20 - install -Dm0755 rocm_smi.py $out/bin/rocm-smi 23 + # rocm_smi libraries and headers go into lib and include. Bindings 24 + # go into lib/rocm_smi/bindings. 25 + substituteInPlace rocm_smi/CMakeLists.txt \ 26 + --replace "DESTINATION rocm_smi/" "DESTINATION " \ 27 + --replace "DESTINATION bindings" "DESTINATION lib/rocm_smi/bindings" \ 28 + --replace "../rocm_smi/bindings/rsmiBindings.py" "../lib/rocm_smi/bindings/rsmiBindings.py" \ 29 + --replace 'DESTINATION ''${ROCM_SMI}/' "DESTINATION " 30 + 31 + # oam libraries and headers go into lib and include. 32 + substituteInPlace oam/CMakeLists.txt \ 33 + --replace "DESTINATION oam/" "DESTINATION " \ 34 + --replace 'DESTINATION ''${OAM_NAME}/' "DESTINATION " 35 + 36 + # Update relative path to librocm_smi64 in the Python binding. 37 + substituteInPlace python_smi_tools/rsmiBindings.py \ 38 + --replace "/../lib/librocm_smi64.so" "/../../librocm_smi64.so" 39 + ''; 40 + 41 + postInstall = '' 42 + wrapPythonProgramsIn $out/bin 21 43 ''; 22 44 23 45 meta = with lib; { ··· 25 47 homepage = "https://github.com/RadeonOpenCompute/ROC-smi"; 26 48 license = with licenses; [ mit ]; 27 49 maintainers = with maintainers; [ danieldk ]; 28 - platforms = platforms.linux; 50 + platforms = [ "x86_64-linux" ]; 29 51 }; 30 52 }
+2 -2
pkgs/tools/text/miller/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 pname = "miller"; 5 5 6 - version = "5.10.0"; 6 + version = "5.10.1"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "johnkerl"; 10 10 repo = "miller"; 11 11 rev = "v${version}"; 12 - sha256 = "02jqbxnchljyqnmlbxjaf5zpdi03gxapfy38dfikl5j4f7yyxvjs"; 12 + sha256 = "sha256-S3OGc7rirNkP5aSnaASP6n7b7zYHSaDDWRVRWWTM2hc="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ autoreconfHook flex libtool ];
+4 -2
pkgs/tools/typesetting/biblatex-check/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python }: 1 + { lib, stdenv, fetchFromGitHub, python3 }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "biblatex-check"; ··· 11 11 sha256 = "1bq0yqckhssazwkivipdjmn1jpsf301i4ppyl88qhc5igx39wg25"; 12 12 }; 13 13 14 - buildInputs = [ python ]; 14 + buildInputs = [ python3 ]; 15 + 16 + strictDeps = true; 15 17 16 18 installPhase = '' 17 19 install -Dm755 biblatex_check.py $out/bin/biblatex-check
+3 -3
pkgs/tools/virtualization/shipyard/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "shipyard"; 5 - version = "0.2.15"; 5 + version = "0.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 rev = "v${version}"; 9 9 owner = "shipyard-run"; 10 10 repo = pname; 11 - sha256 = "sha256-QJn1A2l9bK4jUObnKfzO9/2LxY9i+ueGlZiefqCYZKA="; 11 + sha256 = "sha256-zN9anlm+KbSbFKphC8mLaK+w8cOuOSKrVw5YGNCjEeA="; 12 12 }; 13 - vendorSha256 = "sha256-bpPFtyDPelLfpxU5OGkEPrp6EvERThg1TzAQ6otg8B0="; 13 + vendorSha256 = "sha256-tTkPFftPDNXafIjAjNg6V6e/+2S/v5Do/YyAXPaGIqA="; 14 14 15 15 buildFlagsArray = [ 16 16 "-ldflags=-s -w -X main.version=${version}"
+60 -19
pkgs/top-level/all-packages.nix
··· 168 168 169 169 breakpad = callPackage ../development/misc/breakpad { }; 170 170 171 + buf = callPackage ../development/tools/buf { }; 172 + 171 173 # Zip file format only allows times after year 1980, which makes e.g. Python wheel building fail with: 172 174 # ValueError: ZIP does not support timestamps before 1980 173 175 ensureNewerSourcesForZipFilesHook = ensureNewerSourcesHook { year = "1980"; }; ··· 1609 1611 1610 1612 b3sum = callPackage ../tools/security/b3sum {}; 1611 1613 1612 - backblaze-b2 = python.pkgs.callPackage ../development/tools/backblaze-b2 { }; 1614 + backblaze-b2 = callPackage ../development/tools/backblaze-b2 { }; 1613 1615 1614 1616 bandwhich = callPackage ../tools/networking/bandwhich { 1615 1617 inherit (darwin.apple_sdk.frameworks) Security; ··· 2383 2385 2384 2386 fileshelter = callPackage ../servers/web-apps/fileshelter { }; 2385 2387 2388 + fioctl = callPackage ../tools/admin/fioctl { }; 2389 + 2386 2390 firecracker = callPackage ../applications/virtualization/firecracker { }; 2387 2391 2388 2392 firectl = callPackage ../applications/virtualization/firectl { }; ··· 2836 2840 2837 2841 procs = callPackage ../tools/admin/procs { 2838 2842 inherit (darwin.apple_sdk.frameworks) Security; 2843 + inherit (darwin) libiconv; 2839 2844 }; 2840 2845 2841 2846 psrecord = python3Packages.callPackage ../tools/misc/psrecord {}; ··· 3135 3140 librsync = librsync_0_9; 3136 3141 }; 3137 3142 3138 - bud = callPackage ../tools/networking/bud { 3139 - inherit (pythonPackages) gyp; 3140 - }; 3143 + bud = callPackage ../tools/networking/bud { }; 3141 3144 3142 3145 bump2version = python37Packages.callPackage ../applications/version-management/git-and-tools/bump2version { }; 3143 3146 ··· 3263 3266 clementine = libsForQt514.callPackage ../applications/audio/clementine { 3264 3267 gst_plugins = 3265 3268 with gst_all_1; [ gst-plugins-base gst-plugins-good gst-plugins-ugly gst-libav ]; 3269 + protobuf = protobuf3_14; 3266 3270 }; 3267 3271 3268 3272 clementineUnfree = clementine.unfree; ··· 3387 3391 skktools = callPackage ../tools/inputmethods/skk/skktools { }; 3388 3392 skk-dicts = callPackage ../tools/inputmethods/skk/skk-dicts { }; 3389 3393 3390 - libkkc-data = callPackage ../data/misc/libkkc-data { 3391 - inherit (pythonPackages) marisa; 3392 - }; 3394 + libkkc-data = callPackage ../data/misc/libkkc-data { }; 3393 3395 3394 3396 libkkc = callPackage ../tools/inputmethods/libkkc { }; 3395 3397 ··· 4033 4035 4034 4036 wrangler = callPackage ../development/tools/wrangler { 4035 4037 inherit (darwin.apple_sdk.frameworks) CoreFoundation CoreServices Security; 4038 + inherit (darwin) libiconv; 4036 4039 }; 4037 4040 4038 4041 wsl-open = callPackage ../tools/misc/wsl-open { }; ··· 4154 4157 4155 4158 epsxe = callPackage ../misc/emulators/epsxe { }; 4156 4159 4157 - escrotum = callPackage ../tools/graphics/escrotum { 4158 - inherit (pythonPackages) buildPythonApplication pygtk numpy; 4159 - }; 4160 + escrotum = callPackage ../tools/graphics/escrotum { }; 4160 4161 4161 4162 etcher = callPackage ../tools/misc/etcher { }; 4162 4163 ··· 6861 6862 nzbget = callPackage ../tools/networking/nzbget { }; 6862 6863 6863 6864 nzbhydra2 = callPackage ../servers/nzbhydra2 { }; 6865 + 6866 + oapi-codegen = callPackage ../tools/networking/oapi-codegen { }; 6864 6867 6865 6868 oathToolkit = callPackage ../tools/security/oath-toolkit { }; 6866 6869 ··· 9678 9681 jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 9679 9682 }; 9680 9683 9684 + adoptopenjdk-bin-16-packages-linux = import ../development/compilers/adoptopenjdk-bin/jdk16-linux.nix; 9685 + adoptopenjdk-bin-16-packages-darwin = import ../development/compilers/adoptopenjdk-bin/jdk16-darwin.nix; 9686 + 9687 + adoptopenjdk-hotspot-bin-16 = if stdenv.isLinux 9688 + then callPackage adoptopenjdk-bin-16-packages-linux.jdk-hotspot {} 9689 + else callPackage adoptopenjdk-bin-16-packages-darwin.jdk-hotspot {}; 9690 + adoptopenjdk-jre-hotspot-bin-16 = if stdenv.isLinux 9691 + then callPackage adoptopenjdk-bin-16-packages-linux.jre-hotspot {} 9692 + else callPackage adoptopenjdk-bin-16-packages-darwin.jre-hotspot {}; 9693 + 9694 + adoptopenjdk-openj9-bin-16 = if stdenv.isLinux 9695 + then callPackage adoptopenjdk-bin-16-packages-linux.jdk-openj9 {} 9696 + else callPackage adoptopenjdk-bin-16-packages-darwin.jdk-openj9 {}; 9697 + 9698 + adoptopenjdk-jre-openj9-bin-16 = if stdenv.isLinux 9699 + then callPackage adoptopenjdk-bin-16-packages-linux.jre-openj9 {} 9700 + else callPackage adoptopenjdk-bin-16-packages-darwin.jre-openj9 {}; 9701 + 9681 9702 adoptopenjdk-bin-15-packages-linux = import ../development/compilers/adoptopenjdk-bin/jdk15-linux.nix; 9682 9703 adoptopenjdk-bin-15-packages-darwin = import ../development/compilers/adoptopenjdk-bin/jdk15-darwin.nix; 9683 9704 ··· 10399 10420 graphviz = graphviz-nox; 10400 10421 }); 10401 10422 10402 - inherit (callPackage ../development/compilers/haxe { 10403 - ocamlPackages = ocaml-ng.ocamlPackages_4_05; 10404 - }) haxe_3_2 haxe_3_4; 10405 - haxe = haxe_3_4; 10423 + inherit (callPackage ../development/compilers/haxe { }) 10424 + haxe_4_2 10425 + haxe_3_4 10426 + haxe_3_2 10427 + ; 10428 + 10429 + haxe = haxe_4_2; 10406 10430 haxePackages = recurseIntoAttrs (callPackage ./haxe-packages.nix { }); 10407 10431 inherit (haxePackages) hxcpp; 10408 10432 ··· 11213 11237 jdk = oraclejdk; 11214 11238 }; 11215 11239 11216 - sqlx-cli = callPackage ../development/tools/rust/sqlx-cli { }; 11240 + sqlx-cli = callPackage ../development/tools/rust/sqlx-cli { 11241 + inherit (darwin.apple_sdk.frameworks) SystemConfiguration CoreFoundation Security; 11242 + }; 11217 11243 11218 11244 squeak = callPackage ../development/compilers/squeak { }; 11219 11245 ··· 12548 12574 jdk = jdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 12549 12575 }; 12550 12576 12551 - fedpkg = pythonPackages.callPackage ../development/tools/fedpkg { }; 12577 + fedpkg = callPackage ../development/tools/fedpkg { }; 12552 12578 12553 12579 flex_2_5_35 = callPackage ../development/tools/parsing/flex/2.5.35.nix { }; 12554 12580 flex = callPackage ../development/tools/parsing/flex { }; ··· 18005 18031 18006 18032 mod_dnssd = callPackage ../servers/http/apache-modules/mod_dnssd { }; 18007 18033 18008 - mod_evasive = callPackage ../servers/http/apache-modules/mod_evasive { }; 18034 + mod_evasive = throw "mod_evasive is not supported on Apache httpd 2.4"; 18009 18035 18010 18036 mod_perl = callPackage ../servers/http/apache-modules/mod_perl { }; 18011 18037 ··· 18024 18050 subversion = pkgs.subversion.override { httpServer = true; inherit apacheHttpd; }; 18025 18051 }; 18026 18052 18027 - apacheHttpdPackages_2_4 = dontRecurseIntoAttrs (apacheHttpdPackagesFor pkgs.apacheHttpd_2_4 pkgs.apacheHttpdPackages_2_4); 18053 + apacheHttpdPackages_2_4 = recurseIntoAttrs (apacheHttpdPackagesFor pkgs.apacheHttpd_2_4 pkgs.apacheHttpdPackages_2_4); 18028 18054 apacheHttpdPackages = apacheHttpdPackages_2_4; 18029 18055 18030 18056 appdaemon = callPackage ../servers/home-assistant/appdaemon.nix { }; ··· 21148 21174 21149 21175 papis = with python3Packages; toPythonApplication papis; 21150 21176 21177 + paperlike-go = callPackage ../tools/misc/paperlike-go { }; 21178 + 21151 21179 paps = callPackage ../tools/misc/paps { }; 21152 21180 21153 21181 pecita = callPackage ../data/fonts/pecita {}; ··· 22565 22593 22566 22594 grandorgue = callPackage ../applications/audio/grandorgue { }; 22567 22595 22596 + greetd = recurseIntoAttrs { 22597 + greetd = callPackage ../os-specific/linux/greetd { }; 22598 + gtkgreet = callPackage ../os-specific/linux/gtkgreet { }; 22599 + dlm = callPackage ../os-specific/linux/dlm { }; 22600 + wlgreet = callPackage ../os-specific/linux/wlgreet { }; 22601 + tuigreet = callPackage ../os-specific/linux/tuigreet { }; 22602 + }; 22603 + 22568 22604 goldendict = libsForQt5.callPackage ../applications/misc/goldendict { 22569 22605 inherit (darwin) libiconv; 22570 22606 }; ··· 23642 23678 ktorrent = libsForQt5.callPackage ../applications/networking/p2p/ktorrent { }; 23643 23679 23644 23680 kubecfg = callPackage ../applications/networking/cluster/kubecfg { }; 23681 + 23682 + kube-score = callPackage ../applications/networking/cluster/kube-score { }; 23645 23683 23646 23684 kubeval = callPackage ../applications/networking/cluster/kubeval { }; 23647 23685 ··· 28444 28482 28445 28483 dcmtk = callPackage ../applications/science/medicine/dcmtk { }; 28446 28484 28485 + xmedcon = callPackage ../applications/science/medicine/xmedcon { }; 28486 + 28447 28487 ### SCIENCE/PHYSICS 28448 28488 28449 28489 elmerfem = callPackage ../applications/science/physics/elmerfem {}; 28490 + 28491 + professor = callPackage ../applications/science/physics/professor { }; 28450 28492 28451 28493 sacrifice = callPackage ../applications/science/physics/sacrifice {}; 28452 28494 ··· 30480 30522 30481 30523 zettlr = callPackage ../applications/misc/zettlr { 30482 30524 texlive = texlive.combined.scheme-medium; 30483 - inherit (haskellPackages) pandoc-citeproc; 30484 30525 }; 30485 30526 30486 30527 unifi-poller = callPackage ../servers/monitoring/unifi-poller {};
+21 -3
pkgs/top-level/ocaml-packages.nix
··· 317 317 318 318 eliom = callPackage ../development/ocaml-modules/eliom { }; 319 319 320 - elpi = callPackage ../development/ocaml-modules/elpi { }; 320 + elpi = callPackage ../development/ocaml-modules/elpi ( 321 + let ppxlib_0_15 = if lib.versionAtLeast ppxlib.version "0.15" 322 + then ppxlib.override { version = "0.15.0"; } 323 + else ppxlib; in 324 + { 325 + ppx_deriving = ppx_deriving.override { ppxlib = ppxlib_0_15; }; 326 + ppxlib = ppxlib_0_15; 327 + } 328 + ); 321 329 322 330 encore = callPackage ../development/ocaml-modules/encore { }; 323 331 ··· 1031 1039 1032 1040 ppx_deriving_protobuf = callPackage ../development/ocaml-modules/ppx_deriving_protobuf {}; 1033 1041 1034 - ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc { }; 1042 + ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc { 1043 + ppxlib = ppxlib.override { version = "0.15.0"; }; 1044 + }; 1035 1045 1036 1046 ppx_deriving_yojson = callPackage ../development/ocaml-modules/ppx_deriving_yojson {}; 1037 1047 1038 1048 ppx_gen_rec = callPackage ../development/ocaml-modules/ppx_gen_rec {}; 1039 1049 1040 - ppx_import = callPackage ../development/ocaml-modules/ppx_import {}; 1050 + ppx_import = callPackage ../development/ocaml-modules/ppx_import ( 1051 + let ppxlib_0_15 = if lib.versionAtLeast ppxlib.version "0.15" 1052 + then ppxlib.override { version = "0.15.0"; } 1053 + else ppxlib; in 1054 + { 1055 + ppx_deriving = ppx_deriving.override { ppxlib = ppxlib_0_15; }; 1056 + ppxlib = ppxlib_0_15; 1057 + } 1058 + ); 1041 1059 1042 1060 ppx_irmin = callPackage ../development/ocaml-modules/irmin/ppx.nix { 1043 1061 };
+8 -4
pkgs/top-level/python-packages.nix
··· 1617 1617 cufflinks = callPackage ../development/python-modules/cufflinks { }; 1618 1618 1619 1619 cupy = callPackage ../development/python-modules/cupy { 1620 - cudatoolkit = pkgs.cudatoolkit_10_0; 1621 - cudnn = pkgs.cudnn_cudatoolkit_10_0; 1622 - nccl = pkgs.nccl_cudatoolkit_10; 1623 - cutensor = pkgs.cutensor_cudatoolkit_10; 1620 + cudatoolkit = pkgs.cudatoolkit_11; 1621 + cudnn = pkgs.cudnn_cudatoolkit_11; 1622 + nccl = pkgs.nccl_cudatoolkit_11; 1623 + cutensor = pkgs.cutensor_cudatoolkit_11; 1624 1624 }; 1625 1625 1626 1626 curio = callPackage ../development/python-modules/curio { }; ··· 3283 3283 imgaug = callPackage ../development/python-modules/imgaug { }; 3284 3284 3285 3285 imgsize = callPackage ../development/python-modules/imgsize { }; 3286 + 3287 + iminuit = callPackage ../development/python-modules/iminuit { }; 3286 3288 3287 3289 immutables = callPackage ../development/python-modules/immutables { }; 3288 3290 ··· 5861 5863 pykka = callPackage ../development/python-modules/pykka { }; 5862 5864 5863 5865 pykmtronic = callPackage ../development/python-modules/pykmtronic { }; 5866 + 5867 + pykodi = callPackage ../development/python-modules/pykodi { }; 5864 5868 5865 5869 pykwalify = callPackage ../development/python-modules/pykwalify { }; 5866 5870