Merge remote-tracking branch 'origin/master' into staging-next

Conflicts:
pkgs/development/python-modules/opensimplex/default.nix
pkgs/development/python-modules/pygame-gui/default.nix
pkgs/top-level/aliases.nix
pkgs/top-level/python-aliases.nix

+3464 -1760
+6
maintainers/maintainer-list.nix
··· 13842 13842 github = "AmeerTaweel"; 13843 13843 githubId = 20538273; 13844 13844 }; 13845 + nigelgbanks = { 13846 + name = "Nigel Banks"; 13847 + email = "nigel.g.banks@gmail.com"; 13848 + github = "nigelgbanks"; 13849 + githubId = 487373; 13850 + }; 13845 13851 }
+22
nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
··· 242 242 </listitem> 243 243 <listitem> 244 244 <para> 245 + <literal>pkgs.ghc.withPackages</literal> as well as 246 + <literal>haskellPackages.ghcWithPackages</literal> etc. now 247 + needs be overridden directly, as opposed to overriding the 248 + result of calling it. Additionally, the 249 + <literal>withLLVM</literal> parameter has been renamed to 250 + <literal>useLLVM</literal>. So instead of 251 + <literal>(ghc.withPackages (p: [])).override { withLLVM = true; }</literal>, 252 + one needs to use 253 + <literal>(ghc.withPackages.override { useLLVM = true; }) (p: [])</literal>. 254 + </para> 255 + </listitem> 256 + <listitem> 257 + <para> 245 258 <literal>pkgs.emacsPackages.orgPackages</literal> is removed 246 259 because org elpa is deprecated. The packages in the top level 247 260 of <literal>pkgs.emacsPackages</literal>, such as org and ··· 315 328 interpreter. Scripts have to be converted to Python 3 for use 316 329 with <literal>writers.writePython3</literal> or 317 330 <literal>writers.writePyPy2</literal> needs to be used. 331 + </para> 332 + </listitem> 333 + <listitem> 334 + <para> 335 + <literal>buildGoModule</literal> was updated to use 336 + <literal>go_1_17</literal>, third party derivations that 337 + specify &gt;= go 1.17 in the main <literal>go.mod</literal> 338 + will need to regenerate their <literal>vendorSha256</literal> 339 + hash. 318 340 </para> 319 341 </listitem> 320 342 <listitem>
+8
nixos/doc/manual/release-notes/rl-2205.section.md
··· 81 81 instead to ensure cross compilation keeps working (or switch to 82 82 `haskellPackages.callPackage`). 83 83 84 + - `pkgs.ghc.withPackages` as well as `haskellPackages.ghcWithPackages` etc. 85 + now needs be overridden directly, as opposed to overriding the result of 86 + calling it. Additionally, the `withLLVM` parameter has been renamed to 87 + `useLLVM`. So instead of `(ghc.withPackages (p: [])).override { withLLVM = true; }`, 88 + one needs to use `(ghc.withPackages.override { useLLVM = true; }) (p: [])`. 89 + 84 90 - `pkgs.emacsPackages.orgPackages` is removed because org elpa is deprecated. 85 91 The packages in the top level of `pkgs.emacsPackages`, such as org and 86 92 org-contrib, refer to the ones in `pkgs.emacsPackages.elpaPackages` and ··· 104 110 105 111 - The `writers.writePython2` and corresponding `writers.writePython2Bin` convenience functions to create executable Python 2 scripts in the store were removed in preparation of removal of the Python 2 interpreter. 106 112 Scripts have to be converted to Python 3 for use with `writers.writePython3` or `writers.writePyPy2` needs to be used. 113 + 114 + - `buildGoModule` was updated to use `go_1_17`, third party derivations that specify >= go 1.17 in the main `go.mod` will need to regenerate their `vendorSha256` hash. 107 115 108 116 - The `gnome-passwordsafe` package updated to [version 6.x](https://gitlab.gnome.org/World/secrets/-/tags/6.0) and renamed to `gnome-secrets`. 109 117
-1
nixos/modules/module-list.nix
··· 1075 1075 ./services/web-servers/phpfpm/default.nix 1076 1076 ./services/web-servers/pomerium.nix 1077 1077 ./services/web-servers/unit/default.nix 1078 - ./services/web-servers/shellinabox.nix 1079 1078 ./services/web-servers/tomcat.nix 1080 1079 ./services/web-servers/traefik.nix 1081 1080 ./services/web-servers/trafficserver/default.nix
+36 -4
nixos/modules/programs/command-not-found/command-not-found.pl
··· 21 21 "select package from Programs where system = ? and name = ?", 22 22 { Slice => {} }, $system, $program); 23 23 24 - if (!defined $res || scalar @$res == 0) { 24 + my $len = !defined $res ? 0 : scalar @$res; 25 + 26 + if ($len == 0) { 25 27 print STDERR "$program: command not found\n"; 26 - } elsif (scalar @$res == 1) { 28 + } elsif ($len == 1) { 27 29 my $package = @$res[0]->{package}; 28 30 if ($ENV{"NIX_AUTO_RUN"} // "") { 31 + if ($ENV{"NIX_AUTO_RUN_INTERACTIVE"} // "") { 32 + while (1) { 33 + print STDERR "'$program' from package '$package' will be run, confirm? [yn]: "; 34 + chomp(my $comfirm = <STDIN>); 35 + if (lc $comfirm eq "n") { 36 + exit 0; 37 + } elsif (lc $comfirm eq "y") { 38 + last; 39 + } 40 + } 41 + } 29 42 exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV)); 30 43 } else { 31 44 print STDERR <<EOF; ··· 35 48 EOF 36 49 } 37 50 } else { 38 - print STDERR <<EOF; 51 + if ($ENV{"NIX_AUTO_RUN"} // "") { 52 + print STDERR "Select a package that provides '$program':\n"; 53 + for my $i (0 .. $len - 1) { 54 + print STDERR " [", $i + 1, "]: @$res[$i]->{package}\n"; 55 + } 56 + my $choice = 0; 57 + while (1) { # exec will break this loop 58 + no warnings "numeric"; 59 + print STDERR "Your choice [1-${len}]: "; 60 + # 0 can be invalid user input like non-number string 61 + # so we start from 1 62 + $choice = <STDIN> + 0; 63 + if (1 <= $choice && $choice <= $len) { 64 + exec("nix-shell", "-p", @$res[$choice - 1]->{package}, 65 + "--run", shell_quote("exec", @ARGV)); 66 + } 67 + } 68 + } else { 69 + print STDERR <<EOF; 39 70 The program '$program' is not in your PATH. It is provided by several packages. 40 71 You can make it available in an ephemeral shell by typing one of the following: 41 72 EOF 42 - print STDERR " nix-shell -p $_->{package}\n" foreach @$res; 73 + print STDERR " nix-shell -p $_->{package}\n" foreach @$res; 74 + } 43 75 } 44 76 45 77 exit 127;
+2
nixos/modules/rename.nix
··· 88 88 The racoon module has been removed, because the software project was abandoned upstream. 89 89 '') 90 90 91 + (mkRemovedOptionModule [ "services" "shellinabox" ] "The corresponding package was removed from nixpkgs.") 92 + 91 93 # Do NOT add any option renames here, see top of the file 92 94 ]; 93 95 }
+2 -1
nixos/modules/services/hardware/udev.nix
··· 317 317 (isYes "NET") 318 318 ]; 319 319 320 - boot.extraModprobeConfig = "options firmware_class path=${config.hardware.firmware}/lib/firmware"; 320 + # We don't place this into `extraModprobeConfig` so that stage-1 ramdisk doesn't bloat. 321 + environment.etc."modprobe.d/firmware.conf".text = "options firmware_class path=${config.hardware.firmware}/lib/firmware"; 321 322 322 323 system.activationScripts.udevd = 323 324 ''
+1
nixos/modules/services/misc/autorandr.nix
··· 43 43 ExecStart = "${pkgs.autorandr}/bin/autorandr --batch --change --default ${cfg.defaultTarget}"; 44 44 Type = "oneshot"; 45 45 RemainAfterExit = false; 46 + KillMode = "process"; 46 47 }; 47 48 }; 48 49
+4 -2
nixos/modules/services/misc/packagekit.nix
··· 13 13 (iniFmt.generate "PackageKit.conf" (recursiveUpdate 14 14 { 15 15 Daemon = { 16 - DefaultBackend = "test_nop"; 16 + DefaultBackend = "nix"; 17 17 KeepCache = false; 18 18 }; 19 19 } ··· 35 35 in 36 36 { 37 37 imports = [ 38 - (mkRemovedOptionModule [ "services" "packagekit" "backend" ] "The only backend that doesn't blow up is `test_nop`.") 38 + (mkRemovedOptionModule [ "services" "packagekit" "backend" ] "Always set to Nix.") 39 39 ]; 40 40 41 41 options.services.packagekit = { ··· 61 61 config = mkIf cfg.enable { 62 62 63 63 services.dbus.packages = with pkgs; [ packagekit ]; 64 + 65 + environment.systemPackages = with pkgs; [ packagekit ]; 64 66 65 67 systemd.packages = with pkgs; [ packagekit ]; 66 68
+1 -1
nixos/modules/services/networking/firewall.nix
··· 326 326 type = types.package; 327 327 default = pkgs.iptables; 328 328 defaultText = literalExpression "pkgs.iptables"; 329 - example = literalExpression "pkgs.iptables-nftables-compat"; 329 + example = literalExpression "pkgs.iptables-legacy"; 330 330 description = 331 331 '' 332 332 The iptables package to use for running the firewall service."
+1 -1
nixos/modules/services/system/cloud-init.nix
··· 143 143 "sshd.service" "sshd-keygen.service" ]; 144 144 after = [ "network-online.target" "cloud-init-local.service" ]; 145 145 before = [ "sshd.service" "sshd-keygen.service" ]; 146 - requires = [ "network.target "]; 146 + requires = [ "network.target"]; 147 147 path = path; 148 148 serviceConfig = 149 149 { Type = "oneshot";
-122
nixos/modules/services/web-servers/shellinabox.nix
··· 1 - { config, lib, pkgs, ... }: 2 - 3 - with lib; 4 - 5 - let 6 - 7 - cfg = config.services.shellinabox; 8 - 9 - # If a certificate file is specified, shellinaboxd requires 10 - # a file descriptor to retrieve it 11 - fd = "3"; 12 - createFd = optionalString (cfg.certFile != null) "${fd}<${cfg.certFile}"; 13 - 14 - # Command line arguments for the shellinabox daemon 15 - args = [ "--background" ] 16 - ++ optional (! cfg.enableSSL) "--disable-ssl" 17 - ++ optional (cfg.certFile != null) "--cert-fd=${fd}" 18 - ++ optional (cfg.certDirectory != null) "--cert=${cfg.certDirectory}" 19 - ++ cfg.extraOptions; 20 - 21 - # Command to start shellinaboxd 22 - cmd = "${pkgs.shellinabox}/bin/shellinaboxd ${concatStringsSep " " args}"; 23 - 24 - # Command to start shellinaboxd if certFile is specified 25 - wrappedCmd = "${pkgs.bash}/bin/bash -c 'exec ${createFd} && ${cmd}'"; 26 - 27 - in 28 - 29 - { 30 - 31 - ###### interface 32 - 33 - options = { 34 - services.shellinabox = { 35 - enable = mkEnableOption "shellinabox daemon"; 36 - 37 - user = mkOption { 38 - type = types.str; 39 - default = "root"; 40 - description = '' 41 - User to run shellinaboxd as. If started as root, the server drops 42 - privileges by changing to nobody, unless overridden by the 43 - <literal>--user</literal> option. 44 - ''; 45 - }; 46 - 47 - enableSSL = mkOption { 48 - type = types.bool; 49 - default = false; 50 - description = '' 51 - Whether or not to enable SSL (https) support. 52 - ''; 53 - }; 54 - 55 - certDirectory = mkOption { 56 - type = types.nullOr types.path; 57 - default = null; 58 - example = "/var/certs"; 59 - description = '' 60 - The daemon will look in this directory far any certificates. 61 - If the browser negotiated a Server Name Identification the daemon 62 - will look for a matching certificate-SERVERNAME.pem file. If no SNI 63 - handshake takes place, it will fall back on using the certificate in the 64 - certificate.pem file. 65 - 66 - If no suitable certificate is installed, shellinaboxd will attempt to 67 - create a new self-signed certificate. This will only succeed if, after 68 - dropping privileges, shellinaboxd has write permissions for this 69 - directory. 70 - ''; 71 - }; 72 - 73 - certFile = mkOption { 74 - type = types.nullOr types.path; 75 - default = null; 76 - example = "/var/certificate.pem"; 77 - description = "Path to server SSL certificate."; 78 - }; 79 - 80 - extraOptions = mkOption { 81 - type = types.listOf types.str; 82 - default = [ ]; 83 - example = [ "--port=443" "--service /:LOGIN" ]; 84 - description = '' 85 - A list of strings to be appended to the command line arguments 86 - for shellinaboxd. Please see the manual page 87 - <link xlink:href="https://code.google.com/p/shellinabox/wiki/shellinaboxd_man"/> 88 - for a full list of available arguments. 89 - ''; 90 - }; 91 - 92 - }; 93 - }; 94 - 95 - ###### implementation 96 - 97 - config = mkIf cfg.enable { 98 - 99 - assertions = 100 - [ { assertion = cfg.enableSSL == true 101 - -> cfg.certDirectory != null || cfg.certFile != null; 102 - message = "SSL is enabled for shellinabox, but no certDirectory or certFile has been specefied."; } 103 - { assertion = ! (cfg.certDirectory != null && cfg.certFile != null); 104 - message = "Cannot set both certDirectory and certFile for shellinabox."; } 105 - ]; 106 - 107 - systemd.services.shellinaboxd = { 108 - description = "Shellinabox Web Server Daemon"; 109 - 110 - wantedBy = [ "multi-user.target" ]; 111 - requires = [ "sshd.service" ]; 112 - after = [ "sshd.service" ]; 113 - 114 - serviceConfig = { 115 - Type = "forking"; 116 - User = "${cfg.user}"; 117 - ExecStart = "${if cfg.certFile == null then "${cmd}" else "${wrappedCmd}"}"; 118 - ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 119 - }; 120 - }; 121 - }; 122 - }
+3
nixos/modules/system/boot/stage-1.nix
··· 350 350 ''; 351 351 symlink = "/etc/modprobe.d/ubuntu.conf"; 352 352 } 353 + { object = config.environment.etc."modprobe.d/nixos.conf".source; 354 + symlink = "/etc/modprobe.d/nixos.conf"; 355 + } 353 356 { object = pkgs.kmod-debian-aliases; 354 357 symlink = "/etc/modprobe.d/debian.conf"; 355 358 }
+10 -8
pkgs/applications/audio/easyeffects/default.nix
··· 4 4 , fetchFromGitHub 5 5 , calf 6 6 , fftwFloat 7 + , fmt 7 8 , glib 8 - , glibmm 9 9 , gtk4 10 - , gtkmm4 11 10 , itstool 11 + , libadwaita 12 12 , libbs2b 13 13 , libebur128 14 14 , libsamplerate 15 + , libsigcxx30 15 16 , libsndfile 16 17 , lilv 17 18 , lsp-plugins ··· 26 27 , rnnoise 27 28 , rubberband 28 29 , speexdsp 30 + , tbb 29 31 , wrapGAppsHook4 30 32 , zam-plugins 31 33 , zita-convolver ··· 33 35 34 36 stdenv.mkDerivation rec { 35 37 pname = "easyeffects"; 36 - version = "6.1.3"; 38 + version = "6.2.3"; 37 39 38 40 src = fetchFromGitHub { 39 41 owner = "wwmm"; 40 42 repo = "easyeffects"; 41 43 rev = "v${version}"; 42 - sha256 = "sha256-1UfeqPJxY4YT98UdqTZtG+QUBOZlKfK+7WbszhO22A0="; 44 + sha256 = "sha256-A1UanrAbmZFGCmDNIr1h+v5RVMsIl4qgM/veBirudQM="; 43 45 }; 44 46 45 47 nativeBuildInputs = [ ··· 54 56 55 57 buildInputs = [ 56 58 fftwFloat 59 + fmt 57 60 glib 58 - glibmm 59 61 gtk4 60 - gtkmm4 62 + libadwaita 61 63 libbs2b 62 64 libebur128 63 65 libsamplerate 66 + libsigcxx30 64 67 libsndfile 65 68 lilv 66 69 lv2 ··· 69 72 rnnoise 70 73 rubberband 71 74 speexdsp 75 + tbb 72 76 zita-convolver 73 77 ]; 74 78 75 79 postPatch = '' 76 80 chmod +x meson_post_install.py 77 81 patchShebangs meson_post_install.py 78 - # https://github.com/wwmm/easyeffects/pull/1205 79 - substituteInPlace meson_post_install.py --replace "gtk-update-icon-cache" "gtk4-update-icon-cache" 80 82 ''; 81 83 82 84 preFixup =
+64
pkgs/applications/audio/jamesdsp/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , pipewire 5 + , glibmm 6 + , qmake 7 + , makeDesktopItem 8 + , pkg-config 9 + , libarchive 10 + , fetchpatch 11 + }: 12 + 13 + mkDerivation rec{ 14 + pname = "jamesdsp"; 15 + version = "2.3"; 16 + src = fetchFromGitHub rec{ 17 + owner = "Audio4Linux"; 18 + repo = "JDSP4Linux"; 19 + fetchSubmodules = true; 20 + rev = version; 21 + hash = "sha256-Hkzurr+s+vvSyOMCYH9kHI+nIm6mL9yORGNzY2FXslc="; 22 + }; 23 + 24 + patches = [ 25 + # fixing /usr install assumption, remove on version bump 26 + (fetchpatch { 27 + url = "https://github.com/Audio4Linux/JDSP4Linux/commit/003c9e9fc426f83e269aed6e05be3ed55273931a.patch"; 28 + hash = "sha256-crll/a7C9pUq9eL5diq8/YgC5bNC6SrdijZEBxZpJ8E="; 29 + }) 30 + ]; 31 + 32 + nativeBuildInputs = [ qmake pkg-config ]; 33 + buildInputs = [ 34 + glibmm 35 + libarchive 36 + pipewire 37 + ]; 38 + 39 + desktopItems = [ 40 + (makeDesktopItem { 41 + name = "jamesdsp.desktop"; 42 + desktopName = "JamesDSP"; 43 + genericName = "Audio effects processor"; 44 + exec = "jamesdsp"; 45 + icon = "jamesdsp"; 46 + comment = "JamesDSP for Linux"; 47 + categories = "AudioVideo;Audio"; 48 + startupNotify = false; 49 + terminal = false; 50 + type = "Application"; 51 + extraDesktopEntries = { 52 + Keywords = "equalizer;audio;effect"; 53 + }; 54 + }) 55 + ]; 56 + 57 + meta = with lib;{ 58 + description = "An audio effect processor for PipeWire clients"; 59 + homepage = "https://github.com/Audio4Linux/JDSP4Linux"; 60 + license = licenses.gpl3Only; 61 + maintainers = with maintainers;[ pasqui23 ]; 62 + platforms = platforms.linux; 63 + }; 64 + }
+29
pkgs/applications/blockchains/besu/default.nix
··· 1 + { lib, stdenv, fetchurl, makeWrapper, jre }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "besu"; 5 + version = "21.10.8"; 6 + 7 + src = fetchurl { 8 + url = "https://hyperledger.jfrog.io/artifactory/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz"; 9 + sha256 = "sha256-0yXi42vDinB6nuv5IGj1AhYGqMa2Rku0tNWQCO+AFPw="; 10 + }; 11 + 12 + nativeBuildInputs = [ makeWrapper ]; 13 + 14 + installPhase = '' 15 + mkdir -p $out/bin 16 + cp -r bin $out/ 17 + mkdir -p $out/lib 18 + cp -r lib $out/ 19 + wrapProgram $out/bin/${pname} --set JAVA_HOME "${jre}" 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client"; 24 + homepage = "https://www.hyperledger.org/projects/besu"; 25 + license = licenses.asl20; 26 + platforms = platforms.all; 27 + maintainers = with maintainers; [ mmahut ]; 28 + }; 29 + }
+2 -2
pkgs/applications/blockchains/btcpayserver/default.nix
··· 3 3 4 4 buildDotnetModule rec { 5 5 pname = "btcpayserver"; 6 - version = "1.4.3"; 6 + version = "1.4.4"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = pname; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-CMa0+Djx07q77W/ezMhU+JP5EPXz4nfZ35TN8O6R/nc="; 12 + sha256 = "sha256-PW5a1Bw21skpboWDtlZHGWtFwfImznD7nYI92RT7GGQ="; 13 13 }; 14 14 15 15 projectFile = "BTCPayServer/BTCPayServer.csproj";
+2 -2
pkgs/applications/blockchains/ledger-live-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "ledger-live-desktop"; 5 - version = "2.37.2"; 5 + version = "2.38.2"; 6 6 name = "${pname}-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/LedgerHQ/${pname}/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage"; 10 - hash = "sha256-etbMd0qUAsd5B3QH+DBVI9QLROjZXkGr4sAUlO8cRek="; 10 + hash = "sha256-k6Rbxpe5BpRmlE+WL7iiFUtRCs5KlrLH2c3iSucUhqo="; 11 11 }; 12 12 13 13 appimageContents = appimageTools.extractType2 {
+3 -3
pkgs/applications/blockchains/lightning-loop/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "lightning-loop"; 8 - version = "0.16.0-beta"; 8 + version = "0.17.0-beta"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "lightninglabs"; 12 12 repo = "loop"; 13 13 rev = "v${version}"; 14 - sha256 = "0q4lk338mr30frilgnjr43gd55z7ryj2s260437b4pnp03hmbf10"; 14 + sha256 = "0hjawagn1dfgj67i52bvf3phvm9f9708z3jqs6cvyz0w7vp107py"; 15 15 }; 16 16 17 - vendorSha256 = "14862603rrss14p537j9i7iwflaaprwrnslmqm9hpb7hj52bxqfv"; 17 + vendorSha256 = "1fpc73hwdn3baz5ykrykvqdr5861gj9p6liy8qll5525kdv560f6"; 18 18 19 19 subPackages = [ "cmd/loop" "cmd/loopd" ]; 20 20
+2 -2
pkgs/applications/editors/android-studio/default.nix
··· 9 9 inherit buildFHSUserEnv; 10 10 }; 11 11 stableVersion = { 12 - version = "2021.1.1.20"; # "Android Studio Bumblebee (2021.1.1)" 13 - sha256Hash = "LwG5IDJBFpdlspDoTNpbi1togri2fvEOEDbkkiYvrJE="; 12 + version = "2021.1.1.21"; # "Android Studio Bumblebee (2021.1.1 Patch 1)" 13 + sha256Hash = "PeMJIILfaunTlpR4EV76qQlTlZDcWoKes61qe9W9oqQ="; 14 14 }; 15 15 betaVersion = { 16 16 version = "2021.2.1.8"; # "Android Studio Chipmunk (2021.2.1) Beta 1"
+3 -3
pkgs/applications/editors/jetbrains/common.nix
··· 82 82 libnotify 83 83 ] ++ extraLdPath)}" \ 84 84 ${lib.concatStringsSep " " extraWrapperArgs} \ 85 - --set JDK_HOME "$jdk" \ 85 + --set-default JDK_HOME "$jdk" \ 86 + --set-default ANDROID_JAVA_HOME "$jdk" \ 87 + --set-default JAVA_HOME "$jdk" \ 86 88 --set ${hiName}_JDK "$jdk" \ 87 - --set ANDROID_JAVA_HOME "$jdk" \ 88 - --set JAVA_HOME "$jdk" \ 89 89 --set ${hiName}_VM_OPTIONS ${vmoptsFile} 90 90 91 91 ln -s "$item/share/applications" $out/share
+7 -2
pkgs/applications/finance/odoo/default.nix
··· 5 5 , python3Packages 6 6 , nodePackages 7 7 , wkhtmltopdf 8 + , callPackage 8 9 }: 9 10 10 11 with python3Packages; 12 + 13 + let 14 + werkzeug = python3Packages.callPackage ../../../development/python-modules/werkzeug/1.nix {}; 15 + in 11 16 12 17 buildPythonApplication rec { 13 18 pname = "odoo"; 14 19 15 20 major = "15"; 16 21 minor = "0"; 17 - patch = "20211029"; 22 + patch = "20220126"; 18 23 19 24 version = "${major}.${minor}.${patch}"; 20 25 ··· 22 27 src = fetchurl { 23 28 url = "https://nightly.odoo.com/${major}.${minor}/nightly/src/odoo_${version}.tar.gz"; 24 29 name = "${pname}-${version}"; 25 - sha256 = "sha256-/E+bLBbiz7fRyTwP+0AMpqbuRkOpE4B4P6kREIB4m1Q="; 30 + hash = "sha256-mofV0mNCdyzJecp0XegZBR/5NzHjis9kbpsUA/KJbZg="; 26 31 }; 27 32 28 33 nativeBuildInputs = [
+1 -1
pkgs/applications/misc/dbeaver/default.nix
··· 52 52 dontFixup = true; 53 53 outputHashAlgo = "sha256"; 54 54 outputHashMode = "recursive"; 55 - outputHash = "sha256-pfYNHue7tZKYgU16kypZEfr2bXuDoPc4KorIAVjSylo="; 55 + outputHash = "sha256-fJs/XM8PZqm/CrhShtcy4R/4s8dCc1WdXIvYSCYZ4dw="; 56 56 }; 57 57 58 58 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/gpxsee/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gpxsee"; 5 - version = "10.1"; 5 + version = "10.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tumic0"; 9 9 repo = "GPXSee"; 10 10 rev = version; 11 - sha256 = "sha256-tU37dKBxzz+sxe4R7xbscpD28if8QOm6xpZEOdhK8lE="; 11 + sha256 = "sha256-rKUj2XeVI2KdyCinwqipINg9OO0IhCSFBjSeYBSMLcQ="; 12 12 }; 13 13 14 14 patches = (substituteAll {
+5 -10
pkgs/applications/misc/megacmd/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , autoconf 4 - , automake115x 4 + , automake 5 5 , c-ares 6 6 , cryptopp 7 7 , curl ··· 25 25 26 26 stdenv.mkDerivation rec { 27 27 pname = "megacmd"; 28 - version = "1.4.0"; 28 + version = "1.5.0"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "meganz"; 32 32 repo = "MEGAcmd"; 33 33 rev = "${version}_Linux"; 34 - sha256 = "sha256-Q1SZSDTPGgBA/W/ZVYfTQsiP41RE1LJ+esQ3PK9EjIc="; 34 + sha256 = "Y/FkbN9mTuBpcKCSQg0M+3/IPzJ58X4iZhX2kMVDv7A="; 35 35 fetchSubmodules = true; 36 36 }; 37 37 38 - nativeBuildInputs = [ 39 - autoconf 40 - automake115x 41 - libtool 42 - pkg-config 43 - ]; 38 + nativeBuildInputs = [ autoconf automake libtool pkg-config ]; 44 39 45 40 buildInputs = [ 46 41 c-ares ··· 82 77 83 78 meta = with lib; { 84 79 description = "MEGA Command Line Interactive and Scriptable Application"; 85 - homepage = "https://mega.nz/cmd"; 80 + homepage = "https://mega.io/cmd"; 86 81 license = with licenses; [ bsd2 gpl3Only ]; 87 82 platforms = [ "i686-linux" "x86_64-linux" ]; 88 83 maintainers = with maintainers; [ lunik1 ];
+2 -2
pkgs/applications/misc/osmium-tool/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "osmium-tool"; 17 - version = "1.13.2"; 17 + version = "1.14.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "osmcode"; 21 21 repo = "osmium-tool"; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-dLYmY2bS+DycYBLZdLw8CsRIIE8EfDJEx6RZ/r9yMS8="; 23 + sha256 = "sha256-xedunFzar44o+b/45isXWacDcC81wWkxgGwnpLPH/n0="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/pdfsam-basic/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pdfsam-basic"; 5 - version = "4.2.10"; 5 + version = "4.2.12"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/torakiki/pdfsam/releases/download/v${version}/pdfsam_${version}-1_amd64.deb"; 9 - sha256 = "sha256-YxUozMrsR65A7+xeerMaYxkGALobG1wLguWGZnoQYcU="; 9 + sha256 = "sha256-B9V3dw5A52yPoNfROI3+wAql+Y0hY4T3sTm9uN70TQQ="; 10 10 }; 11 11 12 12 unpackPhase = ''
+2 -2
pkgs/applications/misc/rofi-file-browser/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "rofi-file-browser-extended"; 5 - version = "1.3.0"; 5 + version = "1.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "marvinkreis"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-TNAAImQaIJRgvD8kFf2oHNj4bQiq1NhD8KkCgW5dSK8="; 11 + sha256 = "sha256-UEFv0skFzWhgFkmz1h8uV1ygW977zNq1Dw8VAawqUgw="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+2 -2
pkgs/applications/misc/spicetify-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "spicetify-cli"; 5 - version = "2.8.5"; 5 + version = "2.9.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "khanhas"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-cCIlKTHo+LyhIZkN6ncggBvZMwDBgXqDJVAfGWbUtj8="; 11 + sha256 = "sha256-PHKmrLN/JVPqefcK1FQByPWvMzNxHG5htXzgZ1D+Eds="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-g0RYIVIq4oMXdRZDBDnVYg7ombN5WEo/6O9hChQvOYs=";
+2 -1
pkgs/applications/misc/subsurface/default.nix
··· 20 20 inherit version; 21 21 22 22 src = subsurfaceSrc; 23 - sourceRoot = "source/libdivecomputer"; 23 + 24 + prePatch = "cd libdivecomputer"; 24 25 25 26 nativeBuildInputs = [ autoreconfHook ]; 26 27
+2 -10
pkgs/applications/networking/browsers/falkon/default.nix
··· 8 8 9 9 mkDerivation rec { 10 10 pname = "falkon"; 11 - version = "3.1.0"; 11 + version = "3.2.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "KDE"; 15 15 repo = "falkon"; 16 16 rev = "v${version}"; 17 - sha256 = "1w64slh9wpcfi4v7ds9wci1zvwh0dh787ndpi6hd4kmdgnswvsw7"; 17 + sha256 = "sha256-esi9YWd1PtQpDBhI1NtWEjZIoMoNUpAF+kQad67mLzE="; 18 18 }; 19 - 20 - patches = [ 21 - # fixes build with qt5 5.14 22 - (fetchpatch { 23 - url = "https://github.com/KDE/falkon/commit/bbde5c6955c43bc744ed2c4024598495de908f2a.diff"; 24 - sha256 = "0f7qcddvvdnij3di0acg7jwvwfwyd0xizlav4wccclbj8x7qp5ld"; 25 - }) 26 - ]; 27 19 28 20 preConfigure = '' 29 21 export NONBLOCK_JS_DIALOGS=true
+393 -393
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 1 { 2 - version = "96.0.3"; 2 + version = "97.0"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ach/firefox-96.0.3.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ach/firefox-97.0.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "aee9a5f570fec2c8c0566f70673a6db1f60a92bb2c165ceb30f434b0dcf1a65b"; 7 + sha256 = "1d02f86f1e903f97e36a90e89af2190c905e2c15bd78e252d4e52f77b347c7d4"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/af/firefox-96.0.3.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/af/firefox-97.0.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "f929516c277cfb2d45100e677ed9dd200f8b3a09166455f39c2474bad7cc4d74"; 12 + sha256 = "f82635fa7e2835fbdd998e0a0132c83c5831f5d4969ac8c2840a0b690ccba805"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/an/firefox-96.0.3.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/an/firefox-97.0.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "daee2330478c036da51128c1f32d372b73b5400c8c0f261d50bfd821456042c5"; 17 + sha256 = "cc817e42258c09944108bea46553ebea9859c99884b157b322f78f2550f9018b"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ar/firefox-96.0.3.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ar/firefox-97.0.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "51549041ec1cbf2e0caea181f4468f46d15dd1a7b6a620e359f6de533118f8af"; 22 + sha256 = "87b782af877baebae09aa2d0e0ab399b3ad9a9d6d8aa63ac8519fc7767f7cc60"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ast/firefox-96.0.3.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ast/firefox-97.0.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "6cbce2293f1982e3e1cc993104a46f3093bec3f420af9ea561eb2601776b9cf6"; 27 + sha256 = "f8889f0a843da8c681701e559bca94ce9bb6db446387cc142e2c4547115b5811"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/az/firefox-96.0.3.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/az/firefox-97.0.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "45ba4e47ef4a32d4a8daa7b873a3658de2ebe88532f33af2fead1619939c8294"; 32 + sha256 = "bab0951865aa8f62b6aa2b92437fc861caa4c6f2757848835d6523e0677e3bc4"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/be/firefox-96.0.3.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/be/firefox-97.0.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "58666c9b75862076b00144de96bbcdd8b0b3a5bf5bd0895065fb38d3c12a30ac"; 37 + sha256 = "fd6d94270bf1333d2f12229bcf843a43a9b1d9775bc9fa71ce6260d924176310"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/bg/firefox-96.0.3.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/bg/firefox-97.0.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "4ff97af116eb450edbb2a4c2d9864da3c0b07c5f6913f198b905779f2be48f98"; 42 + sha256 = "95a576e8624745e94087aeb51718cb9ef55a0ed3258e06a8f0341ea6b1e993d8"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/bn/firefox-96.0.3.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/bn/firefox-97.0.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "bda665d796fe62524f1d1c96afc4c8da569e9b264895a26aaeb20bab7c2f3030"; 47 + sha256 = "a27340668dde133d2526607cd67f5216c62b22ba9f46c943ada18b979d8fd010"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/br/firefox-96.0.3.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/br/firefox-97.0.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "2305e226c5e492505dfc82fe34f17c8725eeab2ea10b61b089c92ad7b85a5186"; 52 + sha256 = "2f66ff56c261d8b30614937fd7c1ccb3a89474b5cafe9573dab180279b3c18c6"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/bs/firefox-96.0.3.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/bs/firefox-97.0.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "6aeb690c82790a72906ff80d55ae5de2dc7aa5a430c45a0ef2861336a6e73b15"; 57 + sha256 = "d3fa9bcaf628cdfe067449e79abe378ef44fca46fcb43ab9a14fa73f75b817f1"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ca-valencia/firefox-96.0.3.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ca-valencia/firefox-97.0.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "86e2a4720b991d6ffd7c9ce996162db9ef9ccd80da96fd5ad184ef006ae8fb1a"; 62 + sha256 = "3339e4a2859893368534b9390ef1475d115a4ba1058dcc44dacbb7da80e0fef3"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ca/firefox-96.0.3.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ca/firefox-97.0.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "0e9675d739eec02c98812e4d707c37d352de7605e9567d9d4adccd0e6ab40e8e"; 67 + sha256 = "1c2e354248e8bf969ad026a472e6820dd125df35f23b9663aa65090a71af4398"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/cak/firefox-96.0.3.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/cak/firefox-97.0.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "35d5d2c5eef32819499b4078c7f31f23c848b44c40788ff42ba66d10b3771fda"; 72 + sha256 = "580c7fb31030d000bf9f1c807690a4df6d67a37a41c88a2b70d8aee10ed37b59"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/cs/firefox-96.0.3.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/cs/firefox-97.0.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "67f42b8ce23ef78aab9fd5e61abada98d7fba5dd76d8c57ceefb43a1783d29a5"; 77 + sha256 = "3be967c8cb22ae11587a48e0e2592097c486a9dfc2b5eb252442d7302cb04d6f"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/cy/firefox-96.0.3.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/cy/firefox-97.0.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "c6bb154bb341b88994d060f18430670184bd3646c662da6351df11e2ce9a6abb"; 82 + sha256 = "cc1c93fff75ea41e45020ed81d8d68a5663effe695993b7fc34d34c76f1b0d00"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/da/firefox-96.0.3.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/da/firefox-97.0.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "3c268391a116f9b8ada73a98020c44f67bb9f275fbb7462a188e6d2d8acede7a"; 87 + sha256 = "34d7952beb7d5dad269df9664faabb43ff94475ef5acb3f4bc726be5f92c4d10"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/de/firefox-96.0.3.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/de/firefox-97.0.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "dc5ce8991db83708bfbe686db8a3244e28e61077a754b6dc41f29946b8afb489"; 92 + sha256 = "475f14c65678178ef0581003a0a04c2fa3f8904f0261946387dd114a8c03d679"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/dsb/firefox-96.0.3.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/dsb/firefox-97.0.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "9afd277a20cc47de854ec48c9aa484118e274ce24532e53076eafeb78d4f8e0a"; 97 + sha256 = "d20671dedcf007a2d3e2be65bea9a13b98fa33c4cb34181a1996cb1629dc0de2"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/el/firefox-96.0.3.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/el/firefox-97.0.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "58130d71888ee7f3c40a1656ee0e7ab9f3538573f1dde104a93e850863ea1be9"; 102 + sha256 = "92daba146e93c9dd378208f85fb530d241f4e9fbaebc10670ba67f3e707e8c5b"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/en-CA/firefox-96.0.3.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/en-CA/firefox-97.0.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "2548098aa8527abd10b0f23203a1a4fafb231c6bf853d67c938006d6c230856a"; 107 + sha256 = "b7f9aeb6ecd2f0053f2df7e4e7a168b7ac425fb7c91435446d554042b55f38c0"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/en-GB/firefox-96.0.3.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/en-GB/firefox-97.0.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "c8f8e171e28b629fc9cfc4557409987e7a72aa9507a51fe2bf0f8347530cc962"; 112 + sha256 = "99f3af63a1ac4f16a0fbb714d42592881e0b20714c04cbdfe4ba51d1ead81213"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/en-US/firefox-96.0.3.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/en-US/firefox-97.0.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "2b642cfd2db0c2cb0f67453307a5a7d8c90e372a03274644212b51f60d503965"; 117 + sha256 = "3d0f74790fe6ff5e38324222ab0c47e10edb31970ed67c6dd7a1c84e7017d1a5"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/eo/firefox-96.0.3.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/eo/firefox-97.0.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "803ea1560568fb1c2af0bc0ff47a01ec7d854866b209bce7ceff8f7351a1cffc"; 122 + sha256 = "0ecc3d02a07c48076549ad9420c0ac9cf692470705ca390051ee5bc2a15af026"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-AR/firefox-96.0.3.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-AR/firefox-97.0.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "4ab03c3623f26785b09308ca3d334536b169aec7690050db2141e40a83bd7b0d"; 127 + sha256 = "7a4a3f330fb00c9e1083d65ded0006e44bbfc2b75f16acb93f49c257f3bf4243"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-CL/firefox-96.0.3.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-CL/firefox-97.0.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "578e4ae8697ddf6754c88e94c7676b1f1fb4d0cd65dadd833966f1b69a277f14"; 132 + sha256 = "4a2c44c4def2502a5606d4951d6436ff38de02a678a2c3385d0bb2ac60612d1e"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-ES/firefox-96.0.3.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-ES/firefox-97.0.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "91ed54c34aac2fa5f3345403f4123f154679759bdbc4d6453de093216db630d4"; 137 + sha256 = "31b3c7ca8f3f9bf46fcf6a3cf33b1182cbc3cecd09f4e1741ed9a3e1257c2eff"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-MX/firefox-96.0.3.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-MX/firefox-97.0.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "8cad63aedba46ae735a6d69e510c912f746ed5f1d0af8a8bc7f396a53ca9bd7d"; 142 + sha256 = "c9a2e2ed18dd3b08828cb08e1da038bd887429543e55ce4597a802169445240e"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/et/firefox-96.0.3.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/et/firefox-97.0.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "c12317af0fc4a4ae13a0ddb376192ba62ef3a2bc3205a0a87531ea4147707c5d"; 147 + sha256 = "5b929209e539d57d94ff0ce3e2bfd4da41ab06e60fe050e7351a09b91e08ee10"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/eu/firefox-96.0.3.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/eu/firefox-97.0.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "a244b1fbd2ef6197c739834177e6bf9c8f1241f9257baa77eeebac149da0919e"; 152 + sha256 = "285dac2db38f2cec56b1bb5c81790dac85f6097de2262038fafdca42680246fe"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fa/firefox-96.0.3.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fa/firefox-97.0.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "7eac238a916f009c83f8a95cb5f6d13e08461630094d85a78cfae041df7b9179"; 157 + sha256 = "fec85a746389ca7ee1e11d1e4b23f24fc31b4c72fd9628ca2772bdd544ff7f45"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ff/firefox-96.0.3.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ff/firefox-97.0.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "afd6d4635f3840287ac5497ec33555fa6399d0555e8a9a8cd8c58384d6aba6c3"; 162 + sha256 = "819c604b071e0f95cc3209d6ce0d6e733e4f15dc93a9154aa9b0a63c2b3c3af5"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fi/firefox-96.0.3.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fi/firefox-97.0.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "3e68e136d8a9a1522fe6477fec66df20fb454ab017d9337fbaab39cd4e607192"; 167 + sha256 = "92e242fd2ea40389d0710ce798d795df9509fc0e0bbd93ec69ac29df93609e66"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fr/firefox-96.0.3.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fr/firefox-97.0.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "5b1b622c122acba08315918969dfc14f952de946e121c7c037d53ca422fbc3d6"; 172 + sha256 = "44e95b2045e407f08be367f17573520ceadbb1198d16f0fc2c200d265f904c56"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fy-NL/firefox-96.0.3.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fy-NL/firefox-97.0.tar.bz2"; 175 175 locale = "fy-NL"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "c6588dc0436e8c96fe2660c356bd26dbd3065f04ab439aa034a154c28e5feb49"; 177 + sha256 = "abdc4e3bcf9e1d8b0aac777adc55ceb52cfca92e27523f22614b2347b6209ae4"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ga-IE/firefox-96.0.3.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ga-IE/firefox-97.0.tar.bz2"; 180 180 locale = "ga-IE"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "d289f690338b6191f6da0201745d361915c83839f829375913a004bf63482fd3"; 182 + sha256 = "699866a4b21d6c0015a0a65b937f784e4d66a24f0560f00b73c75b68ceaa2fb0"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gd/firefox-96.0.3.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gd/firefox-97.0.tar.bz2"; 185 185 locale = "gd"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "f007344cb0ff1a2999d87ab4563cde87c2afa416cf3e20f7c369c9e6d4f17193"; 187 + sha256 = "ad7a9847468cf3dd84f106b712ed9ff3824a9bcd8e15032fc371843b5357eb5f"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gl/firefox-96.0.3.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gl/firefox-97.0.tar.bz2"; 190 190 locale = "gl"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "d42233e3a6cce9d0464428bf8e2dbaecac1eebf2c03f58e0045f971d38a2d844"; 192 + sha256 = "efa8b59f8b7c7a3638adfcd31095dff88ba24016b8891f7cc496e9f286259559"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gn/firefox-96.0.3.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gn/firefox-97.0.tar.bz2"; 195 195 locale = "gn"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "333e9de73b08a2c86d3491ff15a39312c63fcd2ab46f45d271fc37244242f39f"; 197 + sha256 = "e850bd2e1940f755c7eaa1c517972e2d2e7ae2bdf5fc75142fda1c7aad05e0b0"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gu-IN/firefox-96.0.3.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gu-IN/firefox-97.0.tar.bz2"; 200 200 locale = "gu-IN"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "2ef9974b7281e17ba3469947365b299b821afca28d5369c374e18d9498a5d15f"; 202 + sha256 = "d74495e5369db197e614d99aefd2b26ab858511017b44c18da668d0a16a69a7d"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/he/firefox-96.0.3.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/he/firefox-97.0.tar.bz2"; 205 205 locale = "he"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "6df30dc08a3f85cb1c78269d05fc56af9651efed5d5bd2d09cbd1eba264e5eeb"; 207 + sha256 = "c9889e3356e2a7cd99519f97c9f7053f2b1ccaafa48a3462cd4bb3192f174e43"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hi-IN/firefox-96.0.3.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hi-IN/firefox-97.0.tar.bz2"; 210 210 locale = "hi-IN"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "1ddb67ff888a37dac8e92637a051d3cc4f632bf3b22d05b91bd58bbad223e04f"; 212 + sha256 = "3d02c2af702972412cc6923c426fd7235c7dafbf3a95f2a0703abc002813ef88"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hr/firefox-96.0.3.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hr/firefox-97.0.tar.bz2"; 215 215 locale = "hr"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "85425e1a026d9ae2a5d55b0ad2b355a715e35904ac88a706f027dbf18ba11a0b"; 217 + sha256 = "ac6eef6986bfea61aced2183eb592b2ff1d033e4ec60dbbfc4e2301947b3d40c"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hsb/firefox-96.0.3.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hsb/firefox-97.0.tar.bz2"; 220 220 locale = "hsb"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "abeee49422541d11d2eed2d159b7f20f3f0f36b7ce82505a2991368275f6bccb"; 222 + sha256 = "719e01cec8be4d16b6bef69d45bbe838a4ca8c3b84a1340c88de48511970379e"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hu/firefox-96.0.3.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hu/firefox-97.0.tar.bz2"; 225 225 locale = "hu"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "2c42e7ed59de20b5377c37a41bfe083279f0e481c61cba6249790ff83ce2977a"; 227 + sha256 = "3774aee9afd211b50605ab76a213d36ba6692ff695fdb464ccd116dcb0a64d4c"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hy-AM/firefox-96.0.3.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hy-AM/firefox-97.0.tar.bz2"; 230 230 locale = "hy-AM"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "74a0b038ca4cbccbfcd276b299ed0d127f4d4cdea159789cf01313095ee8874f"; 232 + sha256 = "d27c4148627a2f32bf4ee900e50b8f96805deaead292b4ccc33259c8fdabf626"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ia/firefox-96.0.3.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ia/firefox-97.0.tar.bz2"; 235 235 locale = "ia"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "c711c1cf38ab231ae74404852999d74e4d802f36c12e44835e9bc6916133eab9"; 237 + sha256 = "d1bd6d3f5c78a3ec6e7caf25cd5befe1e35125aa2456431cb0487d968375798a"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/id/firefox-96.0.3.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/id/firefox-97.0.tar.bz2"; 240 240 locale = "id"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "e03819b47694a6ded168212877294b187f3e3218ab78dcf888a947d90479fc30"; 242 + sha256 = "325af486e9faaa9202d013dcd9a6fd4e0b04237ccd54a132b79480475033e936"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/is/firefox-96.0.3.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/is/firefox-97.0.tar.bz2"; 245 245 locale = "is"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "94eabb7522d56e732ee816a7ee1236307d8dd7ebe22fafa6bf4a3ae14d3a0d8b"; 247 + sha256 = "2b980ba98d7edcb737bb47d3eced8fde9a3285e43e345a52fe0d375343e841e5"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/it/firefox-96.0.3.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/it/firefox-97.0.tar.bz2"; 250 250 locale = "it"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "5b73da04bfd5601fd199e1ad32cc02b41ccd056551e3e14ae975ae401baebb53"; 252 + sha256 = "b7f9c12f31e7306592a2640582b327c12f250f3237aed83848d37be0dc6a2647"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ja/firefox-96.0.3.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ja/firefox-97.0.tar.bz2"; 255 255 locale = "ja"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "2e8992b199d36c9857627942b43d3472f56e7657f929dc655cd4bc74b0441fe5"; 257 + sha256 = "7d535b695a0adf5a6068c33c03f0ab589fb00e33192fe855eca3953b94dd7a27"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ka/firefox-96.0.3.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ka/firefox-97.0.tar.bz2"; 260 260 locale = "ka"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "6c4059f00b2598bc28755f8051ef20159cf8cffc9732f1644822769799e886ca"; 262 + sha256 = "e712558a74a73600cb751b583be37294f7b23053b560bef3ba8468baf8614cd4"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/kab/firefox-96.0.3.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/kab/firefox-97.0.tar.bz2"; 265 265 locale = "kab"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "730e62f6d18da4519ae2ed46266d2014fd44260549d8d2dd4d0fd8b6174a2831"; 267 + sha256 = "f46c4c90bf3a3da559e7c4cadc9bd6fea92dba6635058bf82a276b1483640951"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/kk/firefox-96.0.3.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/kk/firefox-97.0.tar.bz2"; 270 270 locale = "kk"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "a7f4afdd9d43f0bfec34edf17dd5ff0d68d529731b51deb86e2a09d85e7b86b1"; 272 + sha256 = "379a45ae1b5f6fa2a039ab2bfdd342d40c5cc6ae556bd6f7ab54b79964533948"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/km/firefox-96.0.3.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/km/firefox-97.0.tar.bz2"; 275 275 locale = "km"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "c69f54f1a9775c76f7126a18c5c8c66f683737076e3e59479b3e36a34a6c30f6"; 277 + sha256 = "d619c47406d024691e63657e11dfb34624c01f120470f1acbffc2b39ab6f95a8"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/kn/firefox-96.0.3.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/kn/firefox-97.0.tar.bz2"; 280 280 locale = "kn"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "c9fb9ff1e2c79dc0ad804846bbcccf608a09ad380932bd7d68267e10cc9eeb65"; 282 + sha256 = "c058146a99dd06e71c61e780a232efca883e181b237ba03d0bc70942181109e2"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ko/firefox-96.0.3.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ko/firefox-97.0.tar.bz2"; 285 285 locale = "ko"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "43adfc767b7869adcbb2d39410813eeab6ca7d50df6398bc00106f1b73daa564"; 287 + sha256 = "f9d5f7d11c8ac517fc7f19b7d1c3dbf325a224c3a8993c6a91879e0aca05c3ba"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/lij/firefox-96.0.3.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/lij/firefox-97.0.tar.bz2"; 290 290 locale = "lij"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "812ebc60c69de188a12247cf82881824ee0efff571b91527fc343f50f216c27b"; 292 + sha256 = "2d450a105ff42bd396df813438085b88cf6a4fbd7c59af05be482a0e316e03df"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/lt/firefox-96.0.3.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/lt/firefox-97.0.tar.bz2"; 295 295 locale = "lt"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "375ce82258424250c48051f33551958adad2b72bff9c06f2109a54618fb0a038"; 297 + sha256 = "ecd64fb4eaa169e36a36e039563ecc5de9cf97f655fffce496373dadd5e4b49a"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/lv/firefox-96.0.3.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/lv/firefox-97.0.tar.bz2"; 300 300 locale = "lv"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "5b27b13ae0406e6ac0bdd612ab8523fab2665b8e4e146aaf2f47a83712453958"; 302 + sha256 = "a0fcb7699d6b76165b7274b2316c192dbd933ed39349148882a682c8d354497f"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/mk/firefox-96.0.3.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/mk/firefox-97.0.tar.bz2"; 305 305 locale = "mk"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "5215eb91572c7f863d79d44d23fff9181b1c910817d40383a83459d6ce0fffd5"; 307 + sha256 = "850f5589b9d4951738ed1d32bf14270191bfc34f7278243c42c7a745ee893e62"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/mr/firefox-96.0.3.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/mr/firefox-97.0.tar.bz2"; 310 310 locale = "mr"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "056491449edc305d2994f8eb985dad136d9687b3f0aaf9b95d134a352f72ea34"; 312 + sha256 = "bc13f72cde29dd1ba5e770b929376572a9cdd4a755fce685b44e34af757f240f"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ms/firefox-96.0.3.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ms/firefox-97.0.tar.bz2"; 315 315 locale = "ms"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "eb7244a97611860167f98dd038e4d1f60c3b52a2cf81fdf93c2402d780c1ecfd"; 317 + sha256 = "bbb9fb8ae7548ffe1e1d982925d7b3933fbcded03c5bc31df606282c4d4f538f"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/my/firefox-96.0.3.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/my/firefox-97.0.tar.bz2"; 320 320 locale = "my"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "93b93324e305b5ba0f9a005b73230de8acc6607ff0e284c5d3814892f95181a6"; 322 + sha256 = "05f5c5eca3d02480ec61b42ec92bd71c9d27a1e843439f527fa57ba7dc5762ab"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/nb-NO/firefox-96.0.3.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/nb-NO/firefox-97.0.tar.bz2"; 325 325 locale = "nb-NO"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "255056583e093d4b733326f732a529ddbe18010b64e5a093e6a17e09953f6c5b"; 327 + sha256 = "715a82164dd577d36100bb28859efa1468e7213993e622eb97a44c4423c5829a"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ne-NP/firefox-96.0.3.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ne-NP/firefox-97.0.tar.bz2"; 330 330 locale = "ne-NP"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "65fcb5475f2ad6e4e9471e4129ed26c615786e6b90c13e1f38c1c679b913b023"; 332 + sha256 = "d7c55ac4e78309718caf4b1e911999f6d4a1558b885f9831747d4fbd3bffba55"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/nl/firefox-96.0.3.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/nl/firefox-97.0.tar.bz2"; 335 335 locale = "nl"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "1197ff7d9bb843d56d081da51105283923768884cecee4ce9cb50a93952e909d"; 337 + sha256 = "6b539b2486aa1deff4b99828a319285ce73277c93bd863777f88b4a906b83c76"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/nn-NO/firefox-96.0.3.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/nn-NO/firefox-97.0.tar.bz2"; 340 340 locale = "nn-NO"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "47fe60e6c0115914630edf99a56447f5a1536da0e55e6253e58e4e9ac54c9eec"; 342 + sha256 = "42777f881c86b597f7c39cef1651d65aabdae9d616d8a115a0a993867adba92f"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/oc/firefox-96.0.3.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/oc/firefox-97.0.tar.bz2"; 345 345 locale = "oc"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "17d363269d5b0911d47ea3ba52e9a7b28f911e4f0a1eaa83849d749b4bfe906c"; 347 + sha256 = "76ad8b28abea06743e7e70a463ca39c6eae94dd406d7db27428246d190266aaf"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pa-IN/firefox-96.0.3.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pa-IN/firefox-97.0.tar.bz2"; 350 350 locale = "pa-IN"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "6c1f582c50b36055fb9f3b8c20db1bc823cbd2d56cf36c8495e7c18599a906a9"; 352 + sha256 = "8f30e7f2835c6421e41da2558d30448911d1eb4b84d4d9b076833d70450030b3"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pl/firefox-96.0.3.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pl/firefox-97.0.tar.bz2"; 355 355 locale = "pl"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "e4a1fdc104a58966e760a1ea78bd353f61272462920085c347693adbac769d43"; 357 + sha256 = "107b879c5c34608f1c5aca1cfc3c0722be2df4c1573a0bbc8cf0968742c11cf1"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pt-BR/firefox-96.0.3.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pt-BR/firefox-97.0.tar.bz2"; 360 360 locale = "pt-BR"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "90a1bff86400f555d284fd8094df9d7c13556ebad0ce982710508d901c6cb1ff"; 362 + sha256 = "83f52f48d55efa4b52ffead877ba7fcf69823d136a307d2d84640edf586c4108"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pt-PT/firefox-96.0.3.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pt-PT/firefox-97.0.tar.bz2"; 365 365 locale = "pt-PT"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "7e59d9ab9369f8f7ef00b85c6c6be62b4bb9da488071268ddab808367541892c"; 367 + sha256 = "523f082daad8c56e258eb053ba0d2383cbd36a8924b01b57cc2efdaa85292d3a"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/rm/firefox-96.0.3.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/rm/firefox-97.0.tar.bz2"; 370 370 locale = "rm"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "ca20e98f9703ccf00cde6793b2e1d28c0c429c0fff01a2eb592e4270181e8c1b"; 372 + sha256 = "798bdf60c52b331edbae3ed77734e1204696ba18c08b509b9465a999a7707484"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ro/firefox-96.0.3.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ro/firefox-97.0.tar.bz2"; 375 375 locale = "ro"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "55ac07f7ffa919ba37d29899f8fcbb13793db9f198e2a9cc0b5dda717b1d4116"; 377 + sha256 = "811d95d5ecfa02e2f315ac1c6065251d9b7e7f862748a9466b3464c02687088f"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ru/firefox-96.0.3.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ru/firefox-97.0.tar.bz2"; 380 380 locale = "ru"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "f05ba84219501f904d51f320fecd84df6c51cb1f4ad541afbdbf8a781e46699a"; 382 + sha256 = "dd9060448a645c7395d2abb75b1b6c0d33399ef7fc4ee7fa2474e4de4e5cd5ec"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sco/firefox-96.0.3.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sco/firefox-97.0.tar.bz2"; 385 385 locale = "sco"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "5186773e72363dd05e46ba418e58a9e4d80381fc530c509135c76c5e63353d48"; 387 + sha256 = "27f119009eae212234ce78dc77d66e99505c1a7058658b5cfd4952f5bd5b7732"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/si/firefox-96.0.3.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/si/firefox-97.0.tar.bz2"; 390 390 locale = "si"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "8bdc526c6d7b4c672d12c860376458d03efd5305f4823405c0827a4b75912a8c"; 392 + sha256 = "73f37697e72ebc8ee72583ab2061f10dedd09a7c91dfcd00f051f9d372e10700"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sk/firefox-96.0.3.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sk/firefox-97.0.tar.bz2"; 395 395 locale = "sk"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "bb17d52c6c549dc7861c32ec9a4f57a0df323845a6076a9499c1faa9ae3c8d28"; 397 + sha256 = "9aeb7a0a38defc38e7483c1fb6e939421cab6704dc69dd882b7dbf2c413af246"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sl/firefox-96.0.3.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sl/firefox-97.0.tar.bz2"; 400 400 locale = "sl"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "fecd2cf24bed949a02360ae74f6701ac9b65186a7a51f851249a2cee67ccb63a"; 402 + sha256 = "ff2020d595daf151fcf1d8c20614b848b8dac981f7ad9b9b11497fd3adb94a94"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/son/firefox-96.0.3.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/son/firefox-97.0.tar.bz2"; 405 405 locale = "son"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "c3130c49ad77912107c61d0b24e5290f20ec7dcf95d329682a0703f43c768c28"; 407 + sha256 = "eb758e0772b33a955f0a69e673dc53c419e83b29e7003b90161555567bd0c9c6"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sq/firefox-96.0.3.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sq/firefox-97.0.tar.bz2"; 410 410 locale = "sq"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "4cf2ac0f3957a205a26548655f00c3af0c35751ff6f69d25e5a38dde86dbc335"; 412 + sha256 = "8cfcd1863bb79e537547f296f08c6e34b441d110e0d360678aecb43564eaada7"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sr/firefox-96.0.3.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sr/firefox-97.0.tar.bz2"; 415 415 locale = "sr"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "7f3e01919220b39029bf48c651864dfe9970c858f4c379a0a458bbadc1cea666"; 417 + sha256 = "84246cd93b2762e06af5aee56139484b70bb37dc10d8077c58323bca88ca86a0"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sv-SE/firefox-96.0.3.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sv-SE/firefox-97.0.tar.bz2"; 420 420 locale = "sv-SE"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "bdeba12b07803a1bf86c7e38185fc1add59a10e09ed59aff7d135107d004f0bb"; 422 + sha256 = "b57f4a6ea4e8011c1fdf448d67afca9a028f76c9a08e399919937aaf3cd1bf84"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/szl/firefox-96.0.3.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/szl/firefox-97.0.tar.bz2"; 425 425 locale = "szl"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "f6b69c4e88e23da50b4f7f3b4961a92ddb3321dab8a988d29150fc1ad60258f5"; 427 + sha256 = "71f1b134dc8b363856596e4c0b398641702d37811e84008c9efe36b3722e8633"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ta/firefox-96.0.3.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ta/firefox-97.0.tar.bz2"; 430 430 locale = "ta"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "d7bb8645992788ac5161f3becf98248526b02b767cff958d5094ad24086cad06"; 432 + sha256 = "25cc66d29ad3e85be20a620c40426d0afe65df22f75001ecffec733122006841"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/te/firefox-96.0.3.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/te/firefox-97.0.tar.bz2"; 435 435 locale = "te"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "692b65313b3b792e35b1160ee830fd9c9ff082d6f6177af7be135dd6096efe09"; 437 + sha256 = "15dc00d56d31699e3d7089b82ad9e585be5a857b7b2e1056b678b2ecf9c50994"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/th/firefox-96.0.3.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/th/firefox-97.0.tar.bz2"; 440 440 locale = "th"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "c792a126f487b51f4832a56fec8a6fb502fe3a0a38dea7a8f3c5a7060b9d7576"; 442 + sha256 = "16629550b5eafbe3ad4c9137d3e89225050918dfca55bc898aa001084e1882bb"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/tl/firefox-96.0.3.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/tl/firefox-97.0.tar.bz2"; 445 445 locale = "tl"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "ef633b565abf5349aaa86afcd9934145b70abc036bcddc733075e5157a736406"; 447 + sha256 = "ad4ecfe3d7c103090d8642101543b6e2970fdefb3923afd28ac4f1602c926b3e"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/tr/firefox-96.0.3.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/tr/firefox-97.0.tar.bz2"; 450 450 locale = "tr"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "ef04eff4e101405dbf8291b0384f8ecc95febf6730aabdc28d8c8cfaf305810e"; 452 + sha256 = "5d8b1b1dd0ae04869be672f098ceb1ddd3b70be40fd5c09d52006120a434f3f9"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/trs/firefox-96.0.3.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/trs/firefox-97.0.tar.bz2"; 455 455 locale = "trs"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "0a5c709f86dd33c771aec4760a5df1dbfd7baade90c8d9519c46a1dee8f18aad"; 457 + sha256 = "f64a6a311034b7d02737bc1ed5aac991286a42463554c10eb96795cd1a5d169d"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/uk/firefox-96.0.3.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/uk/firefox-97.0.tar.bz2"; 460 460 locale = "uk"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "488baa16c6d60043d5da0aa667e3973eb0df141d50bef117effecc2a39a30019"; 462 + sha256 = "b0e98a5ddb7ec8bce8dd456c6587733ac6bde6f8058cfcd735f10751d4b95d92"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ur/firefox-96.0.3.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ur/firefox-97.0.tar.bz2"; 465 465 locale = "ur"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "039278fc25b62c6ccc024965ea296de4381f86c485b10cfa93cd5025d39f7e47"; 467 + sha256 = "d6fdbc3111b040a8b4880d81e22aa76abfe45ff05d551950324ffcbff2cb8eef"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/uz/firefox-96.0.3.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/uz/firefox-97.0.tar.bz2"; 470 470 locale = "uz"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "59c1a1f8a85f1f569112df4dbfeaaf15f4337210f50111193b36bdedf4d3b2b4"; 472 + sha256 = "4d806ff1b92ce4ec56f49d0ec474c5bcf01bbfb2aa46ce3ed3eb3297658cf185"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/vi/firefox-96.0.3.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/vi/firefox-97.0.tar.bz2"; 475 475 locale = "vi"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "e9a1a2330b1d09ae8f9ecb95613799db87a06f7a4fcd70265ebca2a6aa179bf9"; 477 + sha256 = "0ee797028b2464417fef119de35e78895e0c14d43c8344e3bb5332e71958fa76"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/xh/firefox-96.0.3.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/xh/firefox-97.0.tar.bz2"; 480 480 locale = "xh"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "8dd8816267c62f309206a45cab60bd6dd4d067b0de3002111d86b737f4f9d11e"; 482 + sha256 = "6c3acd60b0124f23403160c3194e3c1624d16c7c4450c2eeae929ba562e138c8"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/zh-CN/firefox-96.0.3.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/zh-CN/firefox-97.0.tar.bz2"; 485 485 locale = "zh-CN"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "b080362a5fa2a660770698915abbbc9230d85ce1eb3510e96ff9374ee19fbf94"; 487 + sha256 = "22606e4647d267ec369382ecca328e2022becaf6600449da482cc3d402fd60f3"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/zh-TW/firefox-96.0.3.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/zh-TW/firefox-97.0.tar.bz2"; 490 490 locale = "zh-TW"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "34f43a3dc69a116d5b9a136d89fe0180deee13907a94eb6d02ef2ffacb94ef49"; 492 + sha256 = "7046246516f83e6747706e164f75b03ea5358c9ef262a2eebe9091eb67037791"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ach/firefox-96.0.3.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ach/firefox-97.0.tar.bz2"; 495 495 locale = "ach"; 496 496 arch = "linux-i686"; 497 - sha256 = "b2f21e188e6ab08be9b57a1a50dc735c50cc6586a70c3243af1dc242def66f79"; 497 + sha256 = "8f2b6c27b89643661fb6c457daea22403787d9255da83f57cc1ece1c133ff6f7"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/af/firefox-96.0.3.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/af/firefox-97.0.tar.bz2"; 500 500 locale = "af"; 501 501 arch = "linux-i686"; 502 - sha256 = "c153b40cccdb36903e3ced9d8685443a9dd4550419b45f09c201fc5b9ef2d12c"; 502 + sha256 = "f0066a19fe65b6d4a32e202a09bd2e454d5265e424543235ce4dd5c440c6f492"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/an/firefox-96.0.3.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/an/firefox-97.0.tar.bz2"; 505 505 locale = "an"; 506 506 arch = "linux-i686"; 507 - sha256 = "0514725b38a83e6385362dfdac57b7d374a458e6621296c4285d769933aa7bdc"; 507 + sha256 = "7aeb5226c869c2ba438ba62a49e0a1b5dbaca2c4b7a427794ad2603e522024b5"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ar/firefox-96.0.3.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ar/firefox-97.0.tar.bz2"; 510 510 locale = "ar"; 511 511 arch = "linux-i686"; 512 - sha256 = "ba1003e913322f06aa113f61d6de5ce52e08bdb5644fd6c5c8d9f059765a7737"; 512 + sha256 = "6e8d27e6ce8051e918e0ce29976aa048d58a38b31fe6ade18965881bdb07268d"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ast/firefox-96.0.3.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ast/firefox-97.0.tar.bz2"; 515 515 locale = "ast"; 516 516 arch = "linux-i686"; 517 - sha256 = "c2983efe1ba2b201006581d10fa629e2704f70590290a2720817b49ea3cb6ec0"; 517 + sha256 = "e1814ef2b6f314fc46693e822a8bb7f6340bdda8af9a48d2534aa8a385e1646e"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/az/firefox-96.0.3.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/az/firefox-97.0.tar.bz2"; 520 520 locale = "az"; 521 521 arch = "linux-i686"; 522 - sha256 = "b4cf2197f83835fb580ed79e01851e7be2d9d7e319e1dcea3028e075f244d6f6"; 522 + sha256 = "14d3bcd5251620d59764c9c905c56f8332174ff1bbe78087cdb73e1803edf3cc"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/be/firefox-96.0.3.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/be/firefox-97.0.tar.bz2"; 525 525 locale = "be"; 526 526 arch = "linux-i686"; 527 - sha256 = "519c34bffab78065fcd3b9027eac4e0eda7ab864784f98474dcc04d887540bc4"; 527 + sha256 = "903eaf9f4ebe60d69605da083733cca327b25fa9842c9c9384600b4a4b6d6fbe"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/bg/firefox-96.0.3.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/bg/firefox-97.0.tar.bz2"; 530 530 locale = "bg"; 531 531 arch = "linux-i686"; 532 - sha256 = "fc897672d9eed6bcc835fa3e9e6e7fe07214192fd6899b2e7f85d64a0fbb1179"; 532 + sha256 = "e71e1fab1a87d4346e5f8a90b8f674eb10af292a5bf640a94cb7d765d6217b46"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/bn/firefox-96.0.3.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/bn/firefox-97.0.tar.bz2"; 535 535 locale = "bn"; 536 536 arch = "linux-i686"; 537 - sha256 = "67550724f06e82f430e398171715a96eb2b4aa6e902066faf7e7a1efc5bfcbb1"; 537 + sha256 = "f815f71dc8a1f288c7fc62978b8bfba1e53323459f99de0ac931d9f6c266e641"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/br/firefox-96.0.3.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/br/firefox-97.0.tar.bz2"; 540 540 locale = "br"; 541 541 arch = "linux-i686"; 542 - sha256 = "22d15a81ee580824465ff2bae1f134efc4525cb2b7e3707c365f8b720f8511b9"; 542 + sha256 = "4443dcd0d1e1fbaa7f52884734bdf2378caeeece0e2f62f36b56eb6aea8b73bc"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/bs/firefox-96.0.3.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/bs/firefox-97.0.tar.bz2"; 545 545 locale = "bs"; 546 546 arch = "linux-i686"; 547 - sha256 = "0d2bca33d770c88b808c74f3178e5f4782424f804e59acfdb884879e195e3ba4"; 547 + sha256 = "0d02992545c745b95c341204585b0163ce32938a7112903f7878c91196c883ba"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ca-valencia/firefox-96.0.3.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ca-valencia/firefox-97.0.tar.bz2"; 550 550 locale = "ca-valencia"; 551 551 arch = "linux-i686"; 552 - sha256 = "3214ba1b640b1802d1a22c0a76ed5a26f0f2c23785cced7ed1cc8eaecb0c0030"; 552 + sha256 = "bcd25813e25d30f4d6e3cfc999c02c014f2d6335e52ff4c46226540bdc0c720c"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ca/firefox-96.0.3.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ca/firefox-97.0.tar.bz2"; 555 555 locale = "ca"; 556 556 arch = "linux-i686"; 557 - sha256 = "07fa269368d120c547c6faad6c896c73cd95cfb1a99da9bb7bcdec1453e4c898"; 557 + sha256 = "dc5874fe3c9e9fb01cda7e7dfcf93ce3c9de2e8a65b7443e231e193ef4debb14"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/cak/firefox-96.0.3.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/cak/firefox-97.0.tar.bz2"; 560 560 locale = "cak"; 561 561 arch = "linux-i686"; 562 - sha256 = "3350662d19a2f4bf68688917c4b37565c9049f22c272ed860e1d47f6f11e3be0"; 562 + sha256 = "979008d2f21b0cdeb877841e66dd6013c32d8eb00a7bfe95fc3343d66bd3eff8"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/cs/firefox-96.0.3.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/cs/firefox-97.0.tar.bz2"; 565 565 locale = "cs"; 566 566 arch = "linux-i686"; 567 - sha256 = "2a70bc5fe26c427ac4d0c6ff75670dc485d9f4701926572ff46f6e6044a94d97"; 567 + sha256 = "27a831c18f74e449a624905c18485989391b4e8769f1ac2646e2567a6cccc91f"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/cy/firefox-96.0.3.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/cy/firefox-97.0.tar.bz2"; 570 570 locale = "cy"; 571 571 arch = "linux-i686"; 572 - sha256 = "d5e4177638e84295f2733357548791a179cd32e97c1080666a6b48270236f8e8"; 572 + sha256 = "a6cb71d9eb5d19a00818faf353b7f454e38316fadb242150948fb9ab485133ab"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/da/firefox-96.0.3.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/da/firefox-97.0.tar.bz2"; 575 575 locale = "da"; 576 576 arch = "linux-i686"; 577 - sha256 = "3d31f922d743c9ec84841bacfcc563c6c71716f75cef8b78b5331bfe6916dcb3"; 577 + sha256 = "2224b753fc1e9355ebffcf381adce940e1e517e33e11098d3a8e92ea36216eb7"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/de/firefox-96.0.3.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/de/firefox-97.0.tar.bz2"; 580 580 locale = "de"; 581 581 arch = "linux-i686"; 582 - sha256 = "2e1ff6056e589d420ae813a448317de248910694fa89ecfdce9b5545a647e2b5"; 582 + sha256 = "aa7f041d58eedb41b7460574d736cbed6bd990dc68de6687f143e9a2cd450ce1"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/dsb/firefox-96.0.3.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/dsb/firefox-97.0.tar.bz2"; 585 585 locale = "dsb"; 586 586 arch = "linux-i686"; 587 - sha256 = "73d2c7e568d7e6bf8831dc4405f407357e3066896446d3ea2bbaf7de45c1314f"; 587 + sha256 = "7d14ef8d451e8274c3a03af9111c3d1f09cc83fad57ee0a6f84366428bed417e"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/el/firefox-96.0.3.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/el/firefox-97.0.tar.bz2"; 590 590 locale = "el"; 591 591 arch = "linux-i686"; 592 - sha256 = "1669c35b9ab66367d998f1b15556ababbb3b80aa191bed6a7b7f34c6f29fef1c"; 592 + sha256 = "bebc24fd34af4d3a7d5820a0df0a2753956a82034603c4a71441b8cb66b99066"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/en-CA/firefox-96.0.3.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/en-CA/firefox-97.0.tar.bz2"; 595 595 locale = "en-CA"; 596 596 arch = "linux-i686"; 597 - sha256 = "c5aba93081eaf416dab845e0e8d2e5db10992c3aaeab209182c4af2e725dc5c6"; 597 + sha256 = "f39a52a27af7b68f683df373a35b29848fa990fb6fc251a511f0525061e6f930"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/en-GB/firefox-96.0.3.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/en-GB/firefox-97.0.tar.bz2"; 600 600 locale = "en-GB"; 601 601 arch = "linux-i686"; 602 - sha256 = "72acf998d686d34727ca307855d3c0139c620868b13614ef5c7a61953a3c2ac8"; 602 + sha256 = "858e86a232cf23be1ca2c6aff1954d28782f8e893c096d8263e486b92a6498f2"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/en-US/firefox-96.0.3.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/en-US/firefox-97.0.tar.bz2"; 605 605 locale = "en-US"; 606 606 arch = "linux-i686"; 607 - sha256 = "096169898ad97b2575b0b5e07c012f55f8749b7bc85f373c276d97948c3b7e08"; 607 + sha256 = "7df5164de2eea1c32657c6ba813664a15ba5a198ac1a19c32ab494f9fab1d39c"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/eo/firefox-96.0.3.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/eo/firefox-97.0.tar.bz2"; 610 610 locale = "eo"; 611 611 arch = "linux-i686"; 612 - sha256 = "365611e7265d56b3c9bab3a6aca71b838d48b945119b710624696080170443cd"; 612 + sha256 = "c48804fe31c7ec37676fe2f875b61faa992aa2dc1ff67bb5b3033b790e927d79"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-AR/firefox-96.0.3.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-AR/firefox-97.0.tar.bz2"; 615 615 locale = "es-AR"; 616 616 arch = "linux-i686"; 617 - sha256 = "49a54d184ea10380fac710f49f6c3e36c2e338e5324acf94b39535f6e06c91ce"; 617 + sha256 = "4aef2060aca1d24a2ae0ad8e6f9029ab0cc1296bc2efc53ce4f28073f6b15757"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-CL/firefox-96.0.3.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-CL/firefox-97.0.tar.bz2"; 620 620 locale = "es-CL"; 621 621 arch = "linux-i686"; 622 - sha256 = "3a5fbabf862c35f29db2c325e6b2e89af8a2fafea9c6613dbe4f367ce07e1abe"; 622 + sha256 = "5423bbcea8a0454202c099fb66a39eba4a274d2062f45464783c9a8aee5c2305"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-ES/firefox-96.0.3.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-ES/firefox-97.0.tar.bz2"; 625 625 locale = "es-ES"; 626 626 arch = "linux-i686"; 627 - sha256 = "241fb3c9a2d07276085d586cf51fc55eaa6293d188ec286f25c6f58eb1919f31"; 627 + sha256 = "cbc1dcbcf7c2e3602507826e9d2e299f213855c5e7aa1968cdc2fd19a1fee872"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-MX/firefox-96.0.3.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-MX/firefox-97.0.tar.bz2"; 630 630 locale = "es-MX"; 631 631 arch = "linux-i686"; 632 - sha256 = "066bfc95073b28afbf61accf2455e3294281749eb048bfab0670b21f920e51bf"; 632 + sha256 = "9225ef8b083b8b7fb91cd142ec204a53d74ef49518db6f9f5eb98851ecf52def"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/et/firefox-96.0.3.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/et/firefox-97.0.tar.bz2"; 635 635 locale = "et"; 636 636 arch = "linux-i686"; 637 - sha256 = "437b61d073054cfb81063991c03afeeb5be52a31bd4f3bd1a2e65bef0c92a1d5"; 637 + sha256 = "32d4dbf6ab64e7a54fed85c6ff58d514e43b4427a30e5009f157a21bf21997d8"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/eu/firefox-96.0.3.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/eu/firefox-97.0.tar.bz2"; 640 640 locale = "eu"; 641 641 arch = "linux-i686"; 642 - sha256 = "bf998de6b1b2dee067ee05d0a28d0128f63c9e6e7b788181d785b8afce8b0789"; 642 + sha256 = "576696120b4dfc64174a0a208506482dfb24cf45bc4794c4d4255796539b85d4"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fa/firefox-96.0.3.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fa/firefox-97.0.tar.bz2"; 645 645 locale = "fa"; 646 646 arch = "linux-i686"; 647 - sha256 = "efe1cd9c8acbb8cdd8d72eee6c81f100c17c90fe0e13784992c5cfbe712a1eaa"; 647 + sha256 = "96b394c28bc77fd4d650196b75e266c70774af5a4f6f49c813cdbd5d0ad6de9e"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ff/firefox-96.0.3.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ff/firefox-97.0.tar.bz2"; 650 650 locale = "ff"; 651 651 arch = "linux-i686"; 652 - sha256 = "dcd0dbe923403f1b078695257bb2705a4be9c91ad51fe065500ebfdfd0e8bf45"; 652 + sha256 = "d9aa3dac84c96163bf3c2a4370d7cf1a27045b8c506df3da2c8751bde80e1a44"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fi/firefox-96.0.3.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fi/firefox-97.0.tar.bz2"; 655 655 locale = "fi"; 656 656 arch = "linux-i686"; 657 - sha256 = "8c2288c2c7e96e2176b005227c504d7be001e03c43757f9e945f8a5a360dfc74"; 657 + sha256 = "594e1b265abd354aabd180af2e9099f5d22eaab05d66dbd7511468dee0fb31df"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fr/firefox-96.0.3.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fr/firefox-97.0.tar.bz2"; 660 660 locale = "fr"; 661 661 arch = "linux-i686"; 662 - sha256 = "dbb3ebec1fb7da951c30d9a9fb50d59fe4b10cc56354c6d988708b4912092ae7"; 662 + sha256 = "542441111026dca84050e6ecec1007dce9910d41d8f961a2dc6a4ed49a7aba6b"; 663 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fy-NL/firefox-96.0.3.tar.bz2"; 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fy-NL/firefox-97.0.tar.bz2"; 665 665 locale = "fy-NL"; 666 666 arch = "linux-i686"; 667 - sha256 = "510522af3fa4c2f264223ac1970222c6d77abee42cf41ae1725f615bc519ba0f"; 667 + sha256 = "40ea9e076c5df6c81a4c19960a2c96f83a8174817db33aff882d4c121e58d8de"; 668 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ga-IE/firefox-96.0.3.tar.bz2"; 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ga-IE/firefox-97.0.tar.bz2"; 670 670 locale = "ga-IE"; 671 671 arch = "linux-i686"; 672 - sha256 = "82225bd4f8a00ffd38af9c4ce19cc3d224bcced34f6523cbe02a9c7f3d228697"; 672 + sha256 = "b7839aeae2734ac52fad253311e255a5e5d203ae117730bb9bd8a414489f300a"; 673 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gd/firefox-96.0.3.tar.bz2"; 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gd/firefox-97.0.tar.bz2"; 675 675 locale = "gd"; 676 676 arch = "linux-i686"; 677 - sha256 = "5c11e2efaab296b436c6d21c7693612b910297681c49af90d376d9e1525b1aa8"; 677 + sha256 = "86820d66c8f6e7a03f4a73b564d0f94bd70477a4e5d74b27f7cfc23f70d0b559"; 678 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gl/firefox-96.0.3.tar.bz2"; 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gl/firefox-97.0.tar.bz2"; 680 680 locale = "gl"; 681 681 arch = "linux-i686"; 682 - sha256 = "8895ec691bdcebfc5eb13ef4a59fc1e08bd7aebd8ba336fc2a99db47608e03ca"; 682 + sha256 = "4c121697d38f717cbf66d48bf9af5d65d67e2e3458ad17ac72266b522e89c6c1"; 683 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gn/firefox-96.0.3.tar.bz2"; 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gn/firefox-97.0.tar.bz2"; 685 685 locale = "gn"; 686 686 arch = "linux-i686"; 687 - sha256 = "fb6f99ee38f85d45b4d529934acdb94e804c5d8e85ae54124667c302156523b0"; 687 + sha256 = "71a823797c386c3b50e4034bcd404197f40af00128eedc614638bda51a7bdeca"; 688 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gu-IN/firefox-96.0.3.tar.bz2"; 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gu-IN/firefox-97.0.tar.bz2"; 690 690 locale = "gu-IN"; 691 691 arch = "linux-i686"; 692 - sha256 = "69aaf403dc5fb15f92b95175a1be399452cd06ab751d3c6ff2a78c2ec9ebcab0"; 692 + sha256 = "498a2222df5fc34e2565b76a797723d8e01a7569c168fb549fe07cb6b1d20c2d"; 693 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/he/firefox-96.0.3.tar.bz2"; 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/he/firefox-97.0.tar.bz2"; 695 695 locale = "he"; 696 696 arch = "linux-i686"; 697 - sha256 = "eedd4f7d709b56e002f8f9955debe3bd4b2c4caef61b5160af78a44677f44530"; 697 + sha256 = "7b86815403bda8e156ad2d461391b81f869222ce93ead4bf40fadb2c687dc850"; 698 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hi-IN/firefox-96.0.3.tar.bz2"; 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hi-IN/firefox-97.0.tar.bz2"; 700 700 locale = "hi-IN"; 701 701 arch = "linux-i686"; 702 - sha256 = "3df9f781a68686c430da2f5aeafec68b983e1a9c64989701a78cec7a25830202"; 702 + sha256 = "068b26208c44b2c5fe46c29e5a1c4e98ee1eb81f335cde5935575e05088fd18a"; 703 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hr/firefox-96.0.3.tar.bz2"; 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hr/firefox-97.0.tar.bz2"; 705 705 locale = "hr"; 706 706 arch = "linux-i686"; 707 - sha256 = "e809039217112743f459f37ae9b8cda21bb63aa00a23641a5f869a65ac55a527"; 707 + sha256 = "876985390499fb65e29c91ae1410c41959d9baef96cf0857baf4988e7ac2e94f"; 708 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hsb/firefox-96.0.3.tar.bz2"; 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hsb/firefox-97.0.tar.bz2"; 710 710 locale = "hsb"; 711 711 arch = "linux-i686"; 712 - sha256 = "4ee840b8014aa7b0e8ef5262ac2d69e48049a7b2beab803ee7dc09c35dee8f03"; 712 + sha256 = "d366bf448d82abda3cf1728fb4bd57489010fef0885e5f0d4eb5c8d371e004ca"; 713 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hu/firefox-96.0.3.tar.bz2"; 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hu/firefox-97.0.tar.bz2"; 715 715 locale = "hu"; 716 716 arch = "linux-i686"; 717 - sha256 = "8e62842f1be4afd2d61c0ef9a9be05f6e3c133d1994a55d8b165d39560d96018"; 717 + sha256 = "5b080f77d0990a026a73bdc298ab1bfc3e1bbc07714646e3ebf0c064104b58f9"; 718 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hy-AM/firefox-96.0.3.tar.bz2"; 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hy-AM/firefox-97.0.tar.bz2"; 720 720 locale = "hy-AM"; 721 721 arch = "linux-i686"; 722 - sha256 = "e0fa7cbc6bc4679585ce832f8cc1380e7de0cb0ca46b93293c9ba08fb04f91d7"; 722 + sha256 = "86a9c6285a87ecb3f41f4c894f4b27f28975daf487cab8600e18c6a7f8446919"; 723 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ia/firefox-96.0.3.tar.bz2"; 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ia/firefox-97.0.tar.bz2"; 725 725 locale = "ia"; 726 726 arch = "linux-i686"; 727 - sha256 = "d20630531aba75aa0641422fadcfd2d3bc663fc817c22641a63e9bfc4cd29a76"; 727 + sha256 = "fdba1012d16a7b4fe98cabc7527a7c912f81383e09d7f3d195248b52072a3040"; 728 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/id/firefox-96.0.3.tar.bz2"; 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/id/firefox-97.0.tar.bz2"; 730 730 locale = "id"; 731 731 arch = "linux-i686"; 732 - sha256 = "b11550957bf6caf0f088e5791db67f7685d4626f7535691c4201764244649fd5"; 732 + sha256 = "0cde2aeae0bc24841d8487880d80b0842c3d738d110c6235a2b09b03df366e74"; 733 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/is/firefox-96.0.3.tar.bz2"; 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/is/firefox-97.0.tar.bz2"; 735 735 locale = "is"; 736 736 arch = "linux-i686"; 737 - sha256 = "d9112f5dc6c3fbc415d9bb9da52f36dbce325d36d8ec1843cf96b093d19d4b69"; 737 + sha256 = "76dccb349d505794a13863960d432f1362c1d24df25e0152e710aa661760d95c"; 738 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/it/firefox-96.0.3.tar.bz2"; 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/it/firefox-97.0.tar.bz2"; 740 740 locale = "it"; 741 741 arch = "linux-i686"; 742 - sha256 = "35f4350d1cec94cb4402b7b22f11e929e8a08b44a150f7910f278c9a5cb77324"; 742 + sha256 = "b8f85fdafff993e12e02cc9fda1c79e38c06a1cff6c04a75edfcf227e2e4b6f5"; 743 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ja/firefox-96.0.3.tar.bz2"; 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ja/firefox-97.0.tar.bz2"; 745 745 locale = "ja"; 746 746 arch = "linux-i686"; 747 - sha256 = "5fe015cc6d0250500912187edc04e697cbf62028b447e47e8d1532dfd0628d2c"; 747 + sha256 = "2880b426221b983e92248e7e1a58e7b5940c6a782d6f6abe8679b3dce09b675b"; 748 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ka/firefox-96.0.3.tar.bz2"; 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ka/firefox-97.0.tar.bz2"; 750 750 locale = "ka"; 751 751 arch = "linux-i686"; 752 - sha256 = "a696df24f1b95e5b228f53328514c77639020a8719cdb23f88017be7e6d2a037"; 752 + sha256 = "d2dd3f4061dce484eb40c4f7d8a3101bbf4e838e657c4cf3b7fd31efe5ac1556"; 753 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/kab/firefox-96.0.3.tar.bz2"; 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/kab/firefox-97.0.tar.bz2"; 755 755 locale = "kab"; 756 756 arch = "linux-i686"; 757 - sha256 = "4d9c7c0cf22aacd5c18f75eb511db2ebffc393019af1f01fb5d1dbb837da96a6"; 757 + sha256 = "c49cd9e7a5786fcd2d123bef197c1361b07644244e869bc038dd2ca1022da089"; 758 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/kk/firefox-96.0.3.tar.bz2"; 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/kk/firefox-97.0.tar.bz2"; 760 760 locale = "kk"; 761 761 arch = "linux-i686"; 762 - sha256 = "db9c1eee0cd6a696e24b7edb142aa3f04a89bb3b30ec46e76be3738e3787bbe4"; 762 + sha256 = "466dbe14d44fcc547d5bba6d8475f908af0cc8fc5a788edcc9ea314b74e01aae"; 763 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/km/firefox-96.0.3.tar.bz2"; 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/km/firefox-97.0.tar.bz2"; 765 765 locale = "km"; 766 766 arch = "linux-i686"; 767 - sha256 = "e05b5a315de970a2bb58276204a341870d0028214b2a402eef5db36ce8ca8190"; 767 + sha256 = "67499ddaf97d90f07cbb8e7bec337287346d964630a73e99a192be94ac38f19d"; 768 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/kn/firefox-96.0.3.tar.bz2"; 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/kn/firefox-97.0.tar.bz2"; 770 770 locale = "kn"; 771 771 arch = "linux-i686"; 772 - sha256 = "1c60915882ba74ddb257517036932c154a5081e9418b98e0fb533f1c71479eaf"; 772 + sha256 = "1c661152b25860acd10d6ca039107957ce8811b448c88c55df0627436ef35955"; 773 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ko/firefox-96.0.3.tar.bz2"; 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ko/firefox-97.0.tar.bz2"; 775 775 locale = "ko"; 776 776 arch = "linux-i686"; 777 - sha256 = "1c69656cf1e302973ee92d9064388cd537b70ca8e36882b2aba5ba477522192b"; 777 + sha256 = "d43000c9c03f855e2d3b061d085c4c1dddce06b511145370cacb0e11e272382e"; 778 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/lij/firefox-96.0.3.tar.bz2"; 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/lij/firefox-97.0.tar.bz2"; 780 780 locale = "lij"; 781 781 arch = "linux-i686"; 782 - sha256 = "bef0d7289833480363ab76d610e2cfecb286f5ed614d910ee84c9016da358c1c"; 782 + sha256 = "d330473b0a20100c9fcfbbb6488dbf367a21816683a1b21b861a729defbbcfc2"; 783 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/lt/firefox-96.0.3.tar.bz2"; 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/lt/firefox-97.0.tar.bz2"; 785 785 locale = "lt"; 786 786 arch = "linux-i686"; 787 - sha256 = "738746e5e17271ebc97963a890e6951c9338c7f9bdb6021c3db0de1f346eb66c"; 787 + sha256 = "0d89e5bb389c6d4ab91965141d5f16bc6e34b1cf2a7022e4d97db135501b3cce"; 788 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/lv/firefox-96.0.3.tar.bz2"; 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/lv/firefox-97.0.tar.bz2"; 790 790 locale = "lv"; 791 791 arch = "linux-i686"; 792 - sha256 = "d16713a766aecb20428d6642805fdb94a70523c0eb557b4a143c60afbc7ab623"; 792 + sha256 = "754b82aa04425353fb85a02fcfaa02a47f6f2e5218af4e814970c91282c77e82"; 793 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/mk/firefox-96.0.3.tar.bz2"; 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/mk/firefox-97.0.tar.bz2"; 795 795 locale = "mk"; 796 796 arch = "linux-i686"; 797 - sha256 = "f04eb09a5ccf6fb017a652ed8016d2e6f83202acb1f596a9f1b972caea8bc6ad"; 797 + sha256 = "e554245a73bca28a816c1f4605164554a8a2680fb098aee3020c972c1e535541"; 798 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/mr/firefox-96.0.3.tar.bz2"; 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/mr/firefox-97.0.tar.bz2"; 800 800 locale = "mr"; 801 801 arch = "linux-i686"; 802 - sha256 = "8cb8bdfe8b57fde90425e242de2a6c6a2fd76341efe32017febce6eb8189595b"; 802 + sha256 = "e3a0daf03fe745268e08a82b53a94c192dbf499d9f7fc556f835552a2002bf63"; 803 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ms/firefox-96.0.3.tar.bz2"; 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ms/firefox-97.0.tar.bz2"; 805 805 locale = "ms"; 806 806 arch = "linux-i686"; 807 - sha256 = "785a87e3cbd7521913c47b9ba0f3838ee44e729df17680d780c78735c2ede188"; 807 + sha256 = "dca49aebc098103f212a16ab135de42aa3a7eae98cf3775c9d3c8e48d27816e3"; 808 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/my/firefox-96.0.3.tar.bz2"; 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/my/firefox-97.0.tar.bz2"; 810 810 locale = "my"; 811 811 arch = "linux-i686"; 812 - sha256 = "6a555d259acd118123630f2da9c82c72fb95208b6aa02cec36ee8f803a94db82"; 812 + sha256 = "471986bf5b5aa0f63c9953a465cb2ce527699f497ed720defe80aef8b7dbe249"; 813 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/nb-NO/firefox-96.0.3.tar.bz2"; 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/nb-NO/firefox-97.0.tar.bz2"; 815 815 locale = "nb-NO"; 816 816 arch = "linux-i686"; 817 - sha256 = "a095c6f9991033a60015416f049e39f403368aafd85b3eb63dc3b7ab1183b9a0"; 817 + sha256 = "d184e4b06acca71983b6a075c5d4d70a5419162a96ba5ef612b9a7e9727759ec"; 818 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ne-NP/firefox-96.0.3.tar.bz2"; 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ne-NP/firefox-97.0.tar.bz2"; 820 820 locale = "ne-NP"; 821 821 arch = "linux-i686"; 822 - sha256 = "3e3d546d2c2671f026414c809ac29431e4497a609c429c549f3183b101282766"; 822 + sha256 = "7a8ebb648a0aac4c7d101e99da6a396ed5f3bb7688b59cee94f67aa6f627d4aa"; 823 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/nl/firefox-96.0.3.tar.bz2"; 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/nl/firefox-97.0.tar.bz2"; 825 825 locale = "nl"; 826 826 arch = "linux-i686"; 827 - sha256 = "5a0f987ddf354053e128a9c4d27b0eb73df227569643bfdca211aa2d4aef9208"; 827 + sha256 = "6f24663da51d9c38b1e66e0064a161630da5f0a9e8a5920f63b76ef96d7d6a93"; 828 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/nn-NO/firefox-96.0.3.tar.bz2"; 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/nn-NO/firefox-97.0.tar.bz2"; 830 830 locale = "nn-NO"; 831 831 arch = "linux-i686"; 832 - sha256 = "736ed19fe6aabe0db06c3b5ba8971b9f73ec7014d876ce5fc0b5caff491cdff9"; 832 + sha256 = "9f02fb57edac62277fd649f5da56d14eb52940581adbcf6b970883cb020ad0c2"; 833 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/oc/firefox-96.0.3.tar.bz2"; 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/oc/firefox-97.0.tar.bz2"; 835 835 locale = "oc"; 836 836 arch = "linux-i686"; 837 - sha256 = "abde35c0c8ec426bdf5b35d0d19d2076fb72091939dded1318af90234efdc795"; 837 + sha256 = "766c5f0ea370fc0c2fa3c39096a9bb1d0f1b71c6c0a410f34bdbd21469d932db"; 838 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pa-IN/firefox-96.0.3.tar.bz2"; 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pa-IN/firefox-97.0.tar.bz2"; 840 840 locale = "pa-IN"; 841 841 arch = "linux-i686"; 842 - sha256 = "f40fca6a7f15b21ed61ff1293f9ce26cd4331736c4f59dc3515fa895176a15af"; 842 + sha256 = "d5f44b2116490596780d4af5e14f815e40e344a1b29cae556957a0b537aaa8cc"; 843 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pl/firefox-96.0.3.tar.bz2"; 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pl/firefox-97.0.tar.bz2"; 845 845 locale = "pl"; 846 846 arch = "linux-i686"; 847 - sha256 = "37dbcf64865442c1e42d22cb926888dee9aed8f3d99e08c8a8da3fc3bbcc18a0"; 847 + sha256 = "5dab218cd9efe307e844913218769eb845b6abe4153191dad34b8f9853a2fd73"; 848 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pt-BR/firefox-96.0.3.tar.bz2"; 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pt-BR/firefox-97.0.tar.bz2"; 850 850 locale = "pt-BR"; 851 851 arch = "linux-i686"; 852 - sha256 = "60059b1fd78fd5dbf4df958274dc3c272142b4daaaf7fcd527491674bafbc234"; 852 + sha256 = "20d3a3f3f3e037780de788f858d3c9c4d778219a9158cbb1496ba968e9f50b32"; 853 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pt-PT/firefox-96.0.3.tar.bz2"; 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pt-PT/firefox-97.0.tar.bz2"; 855 855 locale = "pt-PT"; 856 856 arch = "linux-i686"; 857 - sha256 = "958dd069404ef0b5aa3426c0436f7cc2fb0665d7aeb17b894f555baa875b1808"; 857 + sha256 = "a97777d502c304541d1fb2c177198dc41d46e66052008f0adaa97141b4fb81c0"; 858 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/rm/firefox-96.0.3.tar.bz2"; 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/rm/firefox-97.0.tar.bz2"; 860 860 locale = "rm"; 861 861 arch = "linux-i686"; 862 - sha256 = "5d1379af25c004d0e16b3763fe2a78ddbd766a1ed8d3aa966a71bf44b65a8140"; 862 + sha256 = "b008b8767060459644fe8a1221b6b02710393d8074d685dc60f188424c6272fd"; 863 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ro/firefox-96.0.3.tar.bz2"; 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ro/firefox-97.0.tar.bz2"; 865 865 locale = "ro"; 866 866 arch = "linux-i686"; 867 - sha256 = "11ac629ea7b38db0043e9563fc5d75ea26ad75b0a3565d12798d56d2c7256992"; 867 + sha256 = "9716c8abba493f6f2f627276aeeb0e7a434301bf59142a0ec90a35f0d683df89"; 868 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ru/firefox-96.0.3.tar.bz2"; 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ru/firefox-97.0.tar.bz2"; 870 870 locale = "ru"; 871 871 arch = "linux-i686"; 872 - sha256 = "2cc4cc849625dfc20a3dcdfa3a964218b521d4271c0cc166312b016948944b33"; 872 + sha256 = "8cb413a6ca340356c9ba3500e6e683d7d6e807b56e44651f69252e82d31f2484"; 873 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sco/firefox-96.0.3.tar.bz2"; 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sco/firefox-97.0.tar.bz2"; 875 875 locale = "sco"; 876 876 arch = "linux-i686"; 877 - sha256 = "956160210c34a207a129a08667c3c3a3f978ad444a3f524e5cf4ce3406205c3b"; 877 + sha256 = "a6df0b4240863b6a41f8a10d3d73577e0391cb98fecc82b544ea33099cff2d15"; 878 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/si/firefox-96.0.3.tar.bz2"; 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/si/firefox-97.0.tar.bz2"; 880 880 locale = "si"; 881 881 arch = "linux-i686"; 882 - sha256 = "68b2d054ed0af6e2608b42f958e5790d22552882ae2c143fd5a35b755232577b"; 882 + sha256 = "bc7bbe3c418d78afca0ab5f1907ee6d95e7e1488101e2adea56e4efc3ee53584"; 883 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sk/firefox-96.0.3.tar.bz2"; 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sk/firefox-97.0.tar.bz2"; 885 885 locale = "sk"; 886 886 arch = "linux-i686"; 887 - sha256 = "5e5f318c5783feedcdd155afd7b2755fe0db513766378d823bec141a34245d73"; 887 + sha256 = "56f7be236c7d0135e6d3a9fe2e7d173c7f7c9c95dd46f170ed616dba8d1c4edc"; 888 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sl/firefox-96.0.3.tar.bz2"; 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sl/firefox-97.0.tar.bz2"; 890 890 locale = "sl"; 891 891 arch = "linux-i686"; 892 - sha256 = "75be9829bc9b3e9167eac5c24a9c1d091a7f932c99c496b7a07c0d438523ba13"; 892 + sha256 = "eb4c4c11ef6f853d88447a96381093ac37130728ef131a6ec7f74a84803298df"; 893 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/son/firefox-96.0.3.tar.bz2"; 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/son/firefox-97.0.tar.bz2"; 895 895 locale = "son"; 896 896 arch = "linux-i686"; 897 - sha256 = "eb18e65b5ff61953e8a8a2eff766dd13b9ecc5ce66179108eeb919b64219efcc"; 897 + sha256 = "49cad9188901a1fda74afab30dbc430c465c2a8f91b03499d5bf55f361ec9c97"; 898 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sq/firefox-96.0.3.tar.bz2"; 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sq/firefox-97.0.tar.bz2"; 900 900 locale = "sq"; 901 901 arch = "linux-i686"; 902 - sha256 = "e21779796d19e344b518cc06106d9da298430dea03842c37e7856676999e57f4"; 902 + sha256 = "c2080aa59871af97b1ebba2e25f32fc0ab88cf5c407c43f63406dcc3c2fa5087"; 903 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sr/firefox-96.0.3.tar.bz2"; 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sr/firefox-97.0.tar.bz2"; 905 905 locale = "sr"; 906 906 arch = "linux-i686"; 907 - sha256 = "12ff3eb22ea684b81909f9c03a4ce2ea802d6160bf1b7b939a808b28ad042d7e"; 907 + sha256 = "e4c0723595f741bc306a066b96c11f8c125c1e7cf2c70998548a8b77375fa8ad"; 908 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sv-SE/firefox-96.0.3.tar.bz2"; 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sv-SE/firefox-97.0.tar.bz2"; 910 910 locale = "sv-SE"; 911 911 arch = "linux-i686"; 912 - sha256 = "ed48713a2c50e806fa4ecb082bf87765e00f4b496f7087ac642d4b7d5287a373"; 912 + sha256 = "665d95546dbcf38e91102a559ad7063052b8554f5f8799c127231b93d0d75744"; 913 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/szl/firefox-96.0.3.tar.bz2"; 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/szl/firefox-97.0.tar.bz2"; 915 915 locale = "szl"; 916 916 arch = "linux-i686"; 917 - sha256 = "0a8335399ff54640d374c0c1035a4ba74a0a88b3940c02e7351c0372be4efd3e"; 917 + sha256 = "f85aca1b01a2ae08915c893d25ce6243c405fe3e32f18cc28e111451cae006b7"; 918 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ta/firefox-96.0.3.tar.bz2"; 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ta/firefox-97.0.tar.bz2"; 920 920 locale = "ta"; 921 921 arch = "linux-i686"; 922 - sha256 = "6d39220c2d88014acbfcb0d6ac93f1539a668b787a26acd31b80312f59f6be12"; 922 + sha256 = "3d263a4ab9991f25cdc130f42f8bf37212f06fd614966cec0f42a9e5e3585a1a"; 923 923 } 924 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/te/firefox-96.0.3.tar.bz2"; 924 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/te/firefox-97.0.tar.bz2"; 925 925 locale = "te"; 926 926 arch = "linux-i686"; 927 - sha256 = "f037e673f47ce4569eec2525be5c1b903ffe0df71e322eeda033c91cc92cdd0b"; 927 + sha256 = "59ad98ba6c2b4f9eab95c200ca36d884fc7b7d99e0c121fc7bd8867a2a1cad05"; 928 928 } 929 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/th/firefox-96.0.3.tar.bz2"; 929 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/th/firefox-97.0.tar.bz2"; 930 930 locale = "th"; 931 931 arch = "linux-i686"; 932 - sha256 = "dc7aae98e8b4928f7b3b703aeca5d07aa1a820efb5bf34b1d07d9360b2eefbec"; 932 + sha256 = "c1f73e025dad87d5314093abbeabef1e0107dd4f29c3a8cec2f7ab1c01d8a0e8"; 933 933 } 934 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/tl/firefox-96.0.3.tar.bz2"; 934 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/tl/firefox-97.0.tar.bz2"; 935 935 locale = "tl"; 936 936 arch = "linux-i686"; 937 - sha256 = "1fac0d3b63677d85d1921a7b9a9e81bb45be52a63ddeaa679022a9178acb2081"; 937 + sha256 = "a71fcb2727d70e02bb2d50e1284b4c783d227c2da3940c918c7e7eaa2cebbbda"; 938 938 } 939 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/tr/firefox-96.0.3.tar.bz2"; 939 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/tr/firefox-97.0.tar.bz2"; 940 940 locale = "tr"; 941 941 arch = "linux-i686"; 942 - sha256 = "d380b853b024daa0c11a34ce80c90b1840a2439b89b9f471ed1d483577c9e297"; 942 + sha256 = "597a37f249f46ec9bedc4605afb5c13b213c4eee1d1544a1f74a645446d92e1e"; 943 943 } 944 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/trs/firefox-96.0.3.tar.bz2"; 944 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/trs/firefox-97.0.tar.bz2"; 945 945 locale = "trs"; 946 946 arch = "linux-i686"; 947 - sha256 = "4b143569552d987f05fa482c481b846398cc45fa98edb59b257764762198a5f2"; 947 + sha256 = "f6a93b3835aabe44781fb73985193d6c704202cefdcc2823ea77cb13df8844ff"; 948 948 } 949 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/uk/firefox-96.0.3.tar.bz2"; 949 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/uk/firefox-97.0.tar.bz2"; 950 950 locale = "uk"; 951 951 arch = "linux-i686"; 952 - sha256 = "a6df28358b227cbc03887ecc6e3ef516a71b09050fed3ba19f13a7bba8fe7f3f"; 952 + sha256 = "ba11ca8bf215bf0190b273374228db3019baa6db85a5acb372dbe550d94148fa"; 953 953 } 954 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ur/firefox-96.0.3.tar.bz2"; 954 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ur/firefox-97.0.tar.bz2"; 955 955 locale = "ur"; 956 956 arch = "linux-i686"; 957 - sha256 = "0eb5d0680e985acc6bd5dc9602080c953a0664260e0ad62ba697b9a13b0282ca"; 957 + sha256 = "61e9becb283fdd38961bc79629e332946fc449d40b37163d46303de9dab2eb26"; 958 958 } 959 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/uz/firefox-96.0.3.tar.bz2"; 959 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/uz/firefox-97.0.tar.bz2"; 960 960 locale = "uz"; 961 961 arch = "linux-i686"; 962 - sha256 = "a1916a60680587dad773be1a63eb6a8959d84d08ffd3aaf9c062d12a7bb9f1fa"; 962 + sha256 = "9e47cd99a5a5309c7b388a4e17e0101558bfdd397ad0caee82902e8d56d652e0"; 963 963 } 964 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/vi/firefox-96.0.3.tar.bz2"; 964 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/vi/firefox-97.0.tar.bz2"; 965 965 locale = "vi"; 966 966 arch = "linux-i686"; 967 - sha256 = "b4072149b45d7514af7260f1f13605823dc3420c5f45198266503f3a9e42119f"; 967 + sha256 = "e2fb08af58be123b81edf9d7ec0dd532388fb81a7cf9a2952012b5758f5329f8"; 968 968 } 969 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/xh/firefox-96.0.3.tar.bz2"; 969 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/xh/firefox-97.0.tar.bz2"; 970 970 locale = "xh"; 971 971 arch = "linux-i686"; 972 - sha256 = "ed0c483448b2eeff1adac520be15dee6ecff162f0420669902e565eaf30e0dd2"; 972 + sha256 = "cc19114d522b0e9bf00dd2293e80643919229262afb01316e95e34f4fc18dbca"; 973 973 } 974 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/zh-CN/firefox-96.0.3.tar.bz2"; 974 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/zh-CN/firefox-97.0.tar.bz2"; 975 975 locale = "zh-CN"; 976 976 arch = "linux-i686"; 977 - sha256 = "c1416988cbff23e6a68a04ff54b65fe11909dba59e9a0b2709a5ce4599a9d8aa"; 977 + sha256 = "11c608bb9511dc12e8c55d31fbf322a2524aec99ce90fea35a5d83d7282976d0"; 978 978 } 979 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/zh-TW/firefox-96.0.3.tar.bz2"; 979 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/zh-TW/firefox-97.0.tar.bz2"; 980 980 locale = "zh-TW"; 981 981 arch = "linux-i686"; 982 - sha256 = "ee7b2c30ae3e685f631a132ef1992b6b59c189781385ef0823330ee24fd4d43e"; 982 + sha256 = "6a0268efa615f9559d258cfc05f113d54700d81c5ca0546054c10b9879d76d2d"; 983 983 } 984 984 ]; 985 985 }
+2 -3
pkgs/applications/networking/browsers/firefox/common.nix
··· 134 134 lib.optional (lib.versionAtLeast version "90" && lib.versionOlder version "95") ./no-buildconfig-ffx90.patch ++ 135 135 lib.optional (lib.versionAtLeast version "96") ./no-buildconfig-ffx96.patch ++ 136 136 137 - # Fix wayland 1.20 compatibility (https://bugzilla.mozilla.org/show_bug.cgi?id=1745560:) 138 - lib.optional (lib.versionOlder version "96") ./fix-build-with-wayland-1.20.patch ++ 139 - 140 137 patches; 141 138 142 139 # Ignore trivial whitespace changes in patches, this fixes compatibility of ··· 178 175 rm -rf obj-x86_64-pc-linux-gnu 179 176 substituteInPlace toolkit/xre/glxtest.cpp \ 180 177 --replace 'dlopen("libpci.so' 'dlopen("${pciutils}/lib/libpci.so' 178 + 179 + patchShebangs mach 181 180 ''; 182 181 183 182 nativeBuildInputs =
-13
pkgs/applications/networking/browsers/firefox/fix-build-with-wayland-1.20.patch
··· 1 - diff --git a/widget/gtk/mozwayland/mozwayland.c b/widget/gtk/mozwayland/mozwayland.c 2 - index 7a448e6..7792581 100644 3 - --- a/widget/gtk/mozwayland/mozwayland.c 4 - +++ b/widget/gtk/mozwayland/mozwayland.c 5 - @@ -200,3 +200,8 @@ MOZ_EXPORT int wl_list_empty(const struct wl_list* list) { return -1; } 6 - 7 - MOZ_EXPORT void wl_list_insert_list(struct wl_list* list, 8 - struct wl_list* other) {} 9 - + 10 - +MOZ_EXPORT struct wl_proxy * 11 - +wl_proxy_marshal_flags(struct wl_proxy *proxy, uint32_t opcode, 12 - + const struct wl_interface *interface, uint32_t version, 13 - + uint32_t flags, ...) { return NULL; }
+4 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 7 7 rec { 8 8 firefox = common rec { 9 9 pname = "firefox"; 10 - version = "96.0.3"; 10 + version = "97.0"; 11 11 src = fetchurl { 12 12 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 13 - sha512 = "3dd5fbc96e369d5f4fb3eca778c2bd3e2313d089f867de9fac3556810a797e9b5629ef1b8840fb2f22a18df7de95ea1993eee052f691d861a555cea544b05966"; 13 + sha512 = "a913695a42cb06ee9bda2a20e65cc573e40ca93e9f75b7ee0a43ebd1935b371e7e80d5fc8d5f126ad0712ab848635a8624bbeed43807e5c179537aa32c884186"; 14 14 }; 15 15 16 16 meta = { ··· 32 32 33 33 firefox-esr-91 = common rec { 34 34 pname = "firefox-esr"; 35 - version = "91.5.1esr"; 35 + version = "91.6.0esr"; 36 36 src = fetchurl { 37 37 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 38 - sha512 = "26239e7a94b79f1e24a6667d7cf1c398d75992e8850144affbc5d3f34f04b91f0c9b020cab662b2cd4927924839ff2ddd2f3605c537bb5494fd9ac0d951b14fa"; 38 + sha512 = "3dd1929f93cdd087a93fc3597f32d9005c986b59832954e01a8c2472b179c92ad611eaa73d3fc000a08b838a0b70da73ff5ba82d6009160655ba6894cf04520e"; 39 39 }; 40 40 41 41 meta = {
+4 -4
pkgs/applications/networking/cluster/fluxcd/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub, fetchzip, installShellFiles }: 2 2 3 3 let 4 - version = "0.26.1"; 5 - sha256 = "10l02cw0ypci9vaman1nm9z36fshqwwf0gk16rvsc82d02lv4iq5"; 6 - manifestsSha256 = "0gffjmcxsf9c4f6g60nwq88snm6lar0qd53xp0csr4n5sy7zg6dm"; 4 + version = "0.26.2"; 5 + sha256 = "1p99bjqlwyibycpby9fnzfmfd826zaw7k7d4f4p4gjpd7dphlrp1"; 6 + manifestsSha256 = "1s1hx754xa63s7in7gcrr146nkyvadba6vmy1bagjcxibxc3qdqy"; 7 7 8 8 manifests = fetchzip { 9 9 url = ··· 23 23 inherit sha256; 24 24 }; 25 25 26 - vendorSha256 = "sha256-IJGp4QWZbTzPHeawyjJI0aN4LP5ZV2mb5pUusfQ4rfE="; 26 + vendorSha256 = "sha256-9MMEqJiplg7kmMmbHnTBEQ+GF+dBL7bpzs5Q0IYcMXU="; 27 27 28 28 postUnpack = '' 29 29 cp -r ${manifests} source/cmd/flux/manifests
+34 -34
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 10 10 # Our generic constructor to build new providers. 11 11 # 12 12 # Is designed to combine with the terraform.withPlugins implementation. 13 - mkProvider = 14 - { owner 15 - , repo 16 - , rev 17 - , version 18 - , sha256 19 - , vendorSha256 ? throw "vendorSha256 missing: please use `buildGoModule`" /* added 2022/01 */ 20 - , deleteVendor ? false 21 - , proxyVendor ? false 22 - , # Looks like "registry.terraform.io/vancluever/acme" 23 - provider-source-address 24 - }@attrs: 25 - buildGoModule { 26 - pname = repo; 27 - inherit vendorSha256 version deleteVendor proxyVendor; 28 - subPackages = [ "." ]; 29 - doCheck = false; 30 - # https://github.com/hashicorp/terraform-provider-scaffolding/blob/a8ac8375a7082befe55b71c8cbb048493dd220c2/.goreleaser.yml 31 - # goreleaser (used for builds distributed via terraform registry) requires that CGO is disabled 32 - CGO_ENABLED = 0; 33 - ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${rev}" ]; 34 - src = fetchFromGitHub { 35 - inherit owner repo rev sha256; 36 - }; 13 + mkProvider = lib.makeOverridable 14 + ({ owner 15 + , repo 16 + , rev 17 + , version 18 + , sha256 19 + , vendorSha256 ? throw "vendorSha256 missing: please use `buildGoModule`" /* added 2022/01 */ 20 + , deleteVendor ? false 21 + , proxyVendor ? false 22 + , # Looks like "registry.terraform.io/vancluever/acme" 23 + provider-source-address 24 + }@attrs: 25 + buildGoModule { 26 + pname = repo; 27 + inherit vendorSha256 version deleteVendor proxyVendor; 28 + subPackages = [ "." ]; 29 + doCheck = false; 30 + # https://github.com/hashicorp/terraform-provider-scaffolding/blob/a8ac8375a7082befe55b71c8cbb048493dd220c2/.goreleaser.yml 31 + # goreleaser (used for builds distributed via terraform registry) requires that CGO is disabled 32 + CGO_ENABLED = 0; 33 + ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${rev}" ]; 34 + src = fetchFromGitHub { 35 + inherit owner repo rev sha256; 36 + }; 37 37 38 - # Move the provider to libexec 39 - postInstall = '' 40 - dir=$out/libexec/terraform-providers/${provider-source-address}/${version}/''${GOOS}_''${GOARCH} 41 - mkdir -p "$dir" 42 - mv $out/bin/* "$dir/terraform-provider-$(basename ${provider-source-address})_${version}" 43 - rmdir $out/bin 44 - ''; 38 + # Move the provider to libexec 39 + postInstall = '' 40 + dir=$out/libexec/terraform-providers/${provider-source-address}/${version}/''${GOOS}_''${GOARCH} 41 + mkdir -p "$dir" 42 + mv $out/bin/* "$dir/terraform-provider-$(basename ${provider-source-address})_${version}" 43 + rmdir $out/bin 44 + ''; 45 45 46 - # Keep the attributes around for later consumption 47 - passthru = attrs; 48 - }; 46 + # Keep the attributes around for later consumption 47 + passthru = attrs; 48 + }); 49 49 50 50 list = lib.importJSON ./providers.json; 51 51
+26 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 86 86 withPlugins (x: newplugins x ++ actualPlugins); 87 87 full = withPlugins (p: lib.filter lib.isDerivation (lib.attrValues p)); 88 88 89 - # Ouch 89 + # Expose wrappers around the override* functions of the terraform 90 + # derivation. 91 + # 92 + # Note that this does not behave as anyone would expect if plugins 93 + # are specified. The overrides are not on the user-visible wrapper 94 + # derivation but instead on the function application that eventually 95 + # generates the wrapper. This means: 96 + # 97 + # 1. When using overrideAttrs, only `passthru` attributes will 98 + # become visible on the wrapper derivation. Other overrides that 99 + # modify the derivation *may* still have an effect, but it can be 100 + # difficult to follow. 101 + # 102 + # 2. Other overrides may work if they modify the terraform 103 + # derivation, or they may have no effect, depending on what 104 + # exactly is being changed. 105 + # 106 + # 3. Specifying overrides on the wrapper is unsupported. 107 + # 108 + # See nixpkgs#158620 for details. 90 109 overrideDerivation = f: 91 110 (pluggable (terraform.overrideDerivation f)).withPlugins plugins; 92 111 overrideAttrs = f: ··· 105 124 inherit (terraform) name meta; 106 125 nativeBuildInputs = [ makeWrapper ]; 107 126 127 + # Expose the passthru set with the override functions 128 + # defined above, as well as any passthru values already 129 + # set on `terraform` at this point (relevant in case a 130 + # user overrides attributes). 131 + passthru = terraform.passthru // passthru; 132 + 108 133 buildCommand = '' 109 134 # Create wrappers for terraform plugins because Terraform only 110 135 # walks inside of a tree of files. ··· 128 153 --set NIX_TERRAFORM_PLUGIN_DIR $out/libexec/terraform-providers \ 129 154 --prefix PATH : "${lib.makeBinPath wrapperInputs}" 130 155 ''; 131 - 132 - inherit passthru; 133 156 }); 134 157 in 135 158 withPlugins (_: [ ]);
+2 -2
pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "jitsi-meet-electron"; 12 - version = "2.8.11"; 12 + version = "2022.1.1"; 13 13 14 14 src = fetchurl { 15 15 url = "https://github.com/jitsi/jitsi-meet-electron/releases/download/v${version}/jitsi-meet-x86_64.AppImage"; 16 - sha256 = "sha256-DznbSwA1UISw3EkIfM5hGgmIToeXsH1b1HB7UOgDTKU="; 16 + sha256 = "0x3fdqgjnsd570b7nszfx3h8l5c8x2kg32ig85n2a2g481c7xi6l"; 17 17 name = "${pname}-${version}.AppImage"; 18 18 }; 19 19
+4 -4
pkgs/applications/networking/instant-messengers/schildichat/pin.json
··· 1 1 { 2 - "version": "1.9.7-sc.1", 3 - "srcHash": "0qrjjwcxa141phsgdz325rrkfmjqdmxc3h917cs9c9kf6cblkxaq", 4 - "webYarnHash": "19c594pql2yz1z15phfdlkwcvrcbm8k058fcq7p0k6840dhif5fd", 5 - "desktopYarnHash": "058ihkljb1swjzvgf8gqci5ghvwapmpcf2bsab3yr66lhps7fhci" 2 + "version": "1.9.8-sc.1", 3 + "srcHash": "1ki4ccsa2i0mv10ypxg6bx9njikipdqkc5bsq5h7bi86scjm4lni", 4 + "webYarnHash": "1za6r0snrflh2605xw4m19p88chx19ip8jj592bqjdagildqm50l", 5 + "desktopYarnHash": "176ih0nzzx2yds6kp3lzdsrlp0glb9nqw146z0s1az7pjp6nrf18" 6 6 }
+2
pkgs/applications/networking/n8n/default.nix
··· 12 12 node-pre-gyp 13 13 ]; 14 14 15 + passthru.updateScript = ./generate-dependencies.sh; 16 + 15 17 meta = with lib; { 16 18 description = "Free and open fair-code licensed node based Workflow Automation Tool"; 17 19 maintainers = with maintainers; [ freezeboy k900 ];
+1
pkgs/applications/networking/n8n/generate-dependencies.sh
··· 10 10 # -> cpu-features 11 11 # -> node-gyp@3.8.0 -> python2 12 12 # -> cmake 13 + cd "$(dirname $(readlink -f $0))" 13 14 14 15 node2nix \ 15 16 --14 \
+213 -169
pkgs/applications/networking/n8n/node-packages.nix
··· 31 31 sha512 = "7CU6DmCHIZp5ZPiZ9r3J17lTKMmYsm/zGvNkjArQwPkrLlZ1TZ+EUYfGgh2X31OLMVAQCTJZW4cXHJi02EbJnA=="; 32 32 }; 33 33 }; 34 - "@azure/core-http-2.2.3" = { 34 + "@azure/core-http-2.2.4" = { 35 35 name = "_at_azure_slash_core-http"; 36 36 packageName = "@azure/core-http"; 37 - version = "2.2.3"; 37 + version = "2.2.4"; 38 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.3.tgz"; 40 - sha512 = "xr8AeszxP418rI//W38NfJDDr0kbVAPZkURZnZ+Fle+lLWeURjDE5zNIuocA1wUPoKSP8iXc0ApW6nPtbLGswA=="; 39 + url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.4.tgz"; 40 + sha512 = "QmmJmexXKtPyc3/rsZR/YTLDvMatzbzAypJmLzvlfxgz/SkgnqV/D4f6F2LsK6tBj1qhyp8BoXiOebiej0zz3A=="; 41 41 }; 42 42 }; 43 43 "@azure/core-lro-2.2.3" = { ··· 112 112 sha512 = "c8+Wz19xauW0bGkTCoqZH4dYfbtBniPiGiRQOn1ca6G5jsjr4azwaTk9gwjVY8r3vY2Taf95eivLzipfIfiS4A=="; 113 113 }; 114 114 }; 115 - "@babel/runtime-7.16.7" = { 115 + "@babel/runtime-7.17.0" = { 116 116 name = "_at_babel_slash_runtime"; 117 117 packageName = "@babel/runtime"; 118 - version = "7.16.7"; 118 + version = "7.17.0"; 119 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz"; 121 - sha512 = "9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ=="; 120 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.0.tgz"; 121 + sha512 = "etcO/ohMNaNA2UBdaXBBSX/3aEzFMRrVfaPv8Ptc0k+cWpWW0QFiGZ2XnVqQZI1Cf734LbPGmqBKWESfW4x/dQ=="; 122 122 }; 123 123 }; 124 124 "@dabh/diagnostics-2.0.2" = { ··· 130 130 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 131 131 }; 132 132 }; 133 - "@fontsource/open-sans-4.5.2" = { 133 + "@fontsource/open-sans-4.5.4" = { 134 134 name = "_at_fontsource_slash_open-sans"; 135 135 packageName = "@fontsource/open-sans"; 136 - version = "4.5.2"; 136 + version = "4.5.4"; 137 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.2.tgz"; 139 - sha512 = "aDQrW8s0KslG2aKb9nM5R6fiQR9iPomqWXf6iZCC30qv/UFlSY14SppodA3rE//+w37EqsJjyUq3BSEYzLdisg=="; 138 + url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.4.tgz"; 139 + sha512 = "iaEuU7l3VGA/bqWW9UsBD2bgFwCwDFwKlmOUft4Jps3pD3Zc9POMNYV0+mNyKbA4OIcIice32l+BMif8vY6pdg=="; 140 140 }; 141 141 }; 142 142 "@icetee/ftp-0.3.15" = { ··· 220 220 sha512 = "cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA=="; 221 221 }; 222 222 }; 223 + "@oclif/config-1.18.3" = { 224 + name = "_at_oclif_slash_config"; 225 + packageName = "@oclif/config"; 226 + version = "1.18.3"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.3.tgz"; 229 + sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA=="; 230 + }; 231 + }; 223 232 "@oclif/errors-1.3.5" = { 224 233 name = "_at_oclif_slash_errors"; 225 234 packageName = "@oclif/errors"; ··· 256 265 sha512 = "tXb0NKgSgNxmf6baN6naK+CCwOueaFk93FG9u202U7mTBHUKsioOUlw1SG/iPi9aJM3WE4pHLXmty59pci0OEw=="; 257 266 }; 258 267 }; 259 - "@opentelemetry/api-1.0.4" = { 268 + "@opentelemetry/api-1.1.0" = { 260 269 name = "_at_opentelemetry_slash_api"; 261 270 packageName = "@opentelemetry/api"; 262 - version = "1.0.4"; 271 + version = "1.1.0"; 263 272 src = fetchurl { 264 - url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.4.tgz"; 265 - sha512 = "BuJuXRSJNQ3QoKA6GWWDyuLpOUck+9hAXNMCnrloc1aWVoy6Xq6t9PUV08aBZ4Lutqq2LEHM486bpZqoViScog=="; 273 + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.1.0.tgz"; 274 + sha512 = "hf+3bwuBwtXsugA2ULBc95qxrOqP2pOekLz34BJhcAKawt94vfeNyUKpYc0lZQ/3sCP6LqRa7UAdHA7i5UODzQ=="; 266 275 }; 267 276 }; 268 277 "@rudderstack/rudder-sdk-node-1.0.6" = { ··· 454 463 sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 455 464 }; 456 465 }; 457 - "@types/node-12.20.42" = { 466 + "@types/node-12.20.43" = { 458 467 name = "_at_types_slash_node"; 459 468 packageName = "@types/node"; 460 - version = "12.20.42"; 469 + version = "12.20.43"; 461 470 src = fetchurl { 462 - url = "https://registry.npmjs.org/@types/node/-/node-12.20.42.tgz"; 463 - sha512 = "aI3/oo5DzyiI5R/xAhxxRzfZlWlsbbqdgxfTPkqu/Zt+23GXiJvMCyPJT4+xKSXOnLqoL8jJYMLTwvK2M3a5hw=="; 471 + url = "https://registry.npmjs.org/@types/node/-/node-12.20.43.tgz"; 472 + sha512 = "HCfJdaYqJX3BCzeihgZrD7b85Cu05OC/GVJ4kEYIflwUs4jbnUlLLWoq7hw1LBcdvUyehO+gr6P5JQ895/2ZfA=="; 464 473 }; 465 474 }; 466 - "@types/node-17.0.10" = { 475 + "@types/node-17.0.15" = { 467 476 name = "_at_types_slash_node"; 468 477 packageName = "@types/node"; 469 - version = "17.0.10"; 478 + version = "17.0.15"; 470 479 src = fetchurl { 471 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.10.tgz"; 472 - sha512 = "S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog=="; 480 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.15.tgz"; 481 + sha512 = "zWt4SDDv1S9WRBNxLFxFRHxdD9tvH8f5/kg5/IaLFdnSNXsDY4eL3Q3XXN+VxUnWIhyVFDwcsmAprvwXoM/ClA=="; 473 482 }; 474 483 }; 475 484 "@types/node-fetch-2.5.12" = { ··· 589 598 sha512 = "h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="; 590 599 }; 591 600 }; 592 - "accepts-1.3.7" = { 601 + "accepts-1.3.8" = { 593 602 name = "accepts"; 594 603 packageName = "accepts"; 595 - version = "1.3.7"; 604 + version = "1.3.8"; 596 605 src = fetchurl { 597 - url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"; 598 - sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; 606 + url = "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"; 607 + sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="; 599 608 }; 600 609 }; 601 610 "access-control-1.0.1" = { ··· 940 949 sha512 = "uUbetCWczQHbsKyX1C99XpQHBM8SWfovvaZhPIj23/1uV7SQf0WeRZbiLpw0JZm+LHTChfNgrLfDJOVoU2kU+A=="; 941 950 }; 942 951 }; 943 - "aws-sdk-2.1062.0" = { 952 + "aws-sdk-2.1069.0" = { 944 953 name = "aws-sdk"; 945 954 packageName = "aws-sdk"; 946 - version = "2.1062.0"; 955 + version = "2.1069.0"; 947 956 src = fetchurl { 948 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1062.0.tgz"; 949 - sha512 = "QIU8jwi7Uqyvw2HjsXXXUZv3V/6TinUzLewrdl2EdvonqZCXhwMgnZx2F9I2x62IKH1RqnINwFWdoK+OTgcAjA=="; 957 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1069.0.tgz"; 958 + sha512 = "AF7/5JotrVd8g/D3WWHgQto+IryB1V7iudIYm+H+qxmkGOU3xvL63ChhEoLTY/CxuK/diayg0oWILEsXUn3dfw=="; 950 959 }; 951 960 }; 952 961 "aws-sign2-0.7.0" = { ··· 1768 1777 sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 1769 1778 }; 1770 1779 }; 1771 - "core-js-3.20.3" = { 1780 + "core-js-3.21.0" = { 1772 1781 name = "core-js"; 1773 1782 packageName = "core-js"; 1774 - version = "3.20.3"; 1783 + version = "3.21.0"; 1775 1784 src = fetchurl { 1776 - url = "https://registry.npmjs.org/core-js/-/core-js-3.20.3.tgz"; 1777 - sha512 = "vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag=="; 1785 + url = "https://registry.npmjs.org/core-js/-/core-js-3.21.0.tgz"; 1786 + sha512 = "YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ=="; 1778 1787 }; 1779 1788 }; 1780 1789 "core-util-is-1.0.2" = { ··· 1786 1795 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 1787 1796 }; 1788 1797 }; 1789 - "crc-32-1.2.0" = { 1798 + "crc-32-1.2.1" = { 1790 1799 name = "crc-32"; 1791 1800 packageName = "crc-32"; 1792 - version = "1.2.0"; 1801 + version = "1.2.1"; 1793 1802 src = fetchurl { 1794 - url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz"; 1795 - sha512 = "1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA=="; 1803 + url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.1.tgz"; 1804 + sha512 = "Dn/xm/1vFFgs3nfrpEVScHoIslO9NZRITWGz/1E/St6u4xw99vfZzVkW0OSnzx2h9egej9xwMCEut6sqwokM/w=="; 1796 1805 }; 1797 1806 }; 1798 1807 "cron-1.7.2" = { ··· 2542 2551 sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 2543 2552 }; 2544 2553 }; 2545 - "flatted-2.0.2" = { 2554 + "flatted-3.2.5" = { 2546 2555 name = "flatted"; 2547 2556 packageName = "flatted"; 2548 - version = "2.0.2"; 2557 + version = "3.2.5"; 2549 2558 src = fetchurl { 2550 - url = "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"; 2551 - sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 2552 - }; 2553 - }; 2554 - "flatted-3.2.4" = { 2555 - name = "flatted"; 2556 - packageName = "flatted"; 2557 - version = "3.2.4"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz"; 2560 - sha512 = "8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw=="; 2559 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz"; 2560 + sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="; 2561 2561 }; 2562 2562 }; 2563 2563 "fn.name-1.1.0" = { ··· 3235 3235 sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; 3236 3236 }; 3237 3237 }; 3238 - "ioredis-4.28.3" = { 3238 + "ioredis-4.28.5" = { 3239 3239 name = "ioredis"; 3240 3240 packageName = "ioredis"; 3241 - version = "4.28.3"; 3241 + version = "4.28.5"; 3242 3242 src = fetchurl { 3243 - url = "https://registry.npmjs.org/ioredis/-/ioredis-4.28.3.tgz"; 3244 - sha512 = "9JOWVgBnuSxpIgfpjc1OeY1OLmA4t2KOWWURTDRXky+eWO0LZhI33pQNT9gYxANUXfh5p/zYephYni6GPRsksQ=="; 3243 + url = "https://registry.npmjs.org/ioredis/-/ioredis-4.28.5.tgz"; 3244 + sha512 = "3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A=="; 3245 3245 }; 3246 3246 }; 3247 3247 "ip-regex-2.1.0" = { ··· 3577 3577 sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 3578 3578 }; 3579 3579 }; 3580 - "isbot-3.4.0" = { 3580 + "isbot-3.4.1" = { 3581 3581 name = "isbot"; 3582 3582 packageName = "isbot"; 3583 - version = "3.4.0"; 3583 + version = "3.4.1"; 3584 3584 src = fetchurl { 3585 - url = "https://registry.npmjs.org/isbot/-/isbot-3.4.0.tgz"; 3586 - sha512 = "0WOb6bbJ6gtpWVHQ30r5MzqvSrCNbZ70wFXAJWdXt/0LulF59uvBQnPgA7IelbOXEpV+CtLWkDxLB4TU7f0+VA=="; 3585 + url = "https://registry.npmjs.org/isbot/-/isbot-3.4.1.tgz"; 3586 + sha512 = "CyapceDROQ9dp9uGUh2d0D7q/MDGDt2B3rl/da+BZ0maCBI9bNlZMk3fr4dEO+LEsRY7ur3mfYNQPavCRDRJxg=="; 3587 3587 }; 3588 3588 }; 3589 3589 "isexe-2.0.0" = { ··· 3820 3820 sha512 = "2Bm96d5ktnE217Ib1FldvUaPAaOst6GtZrsxJCwnJgi9lnsoAKIHyU0sae8rNx6DNYbjdqqh8lv5/b9poD8qOg=="; 3821 3821 }; 3822 3822 }; 3823 - "libphonenumber-js-1.9.44" = { 3823 + "libphonenumber-js-1.9.48" = { 3824 3824 name = "libphonenumber-js"; 3825 3825 packageName = "libphonenumber-js"; 3826 - version = "1.9.44"; 3826 + version = "1.9.48"; 3827 3827 src = fetchurl { 3828 - url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.9.44.tgz"; 3829 - sha512 = "zhw8nUMJuQf7jG1dZfEOKKOS6M3QYIv3HnvB/vGohNd0QfxIQcObH3a6Y6s350H+9xgBeOXClOJkS0hJ0yvS3g=="; 3828 + url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.9.48.tgz"; 3829 + sha512 = "2aiDGkr5Ty7LZRhKhnMeV9tfRbzd2zahgF12I0v11AFwEelSdiu5t8/Npf3UejKcuoO4anqTdjnIW3dEtj1xYQ=="; 3830 3830 }; 3831 3831 }; 3832 3832 "libqp-1.1.0" = { ··· 3991 3991 sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; 3992 3992 }; 3993 3993 }; 3994 + "lodash.merge-4.6.2" = { 3995 + name = "lodash.merge"; 3996 + packageName = "lodash.merge"; 3997 + version = "4.6.2"; 3998 + src = fetchurl { 3999 + url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; 4000 + sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 4001 + }; 4002 + }; 3994 4003 "lodash.once-4.1.1" = { 3995 4004 name = "lodash.once"; 3996 4005 packageName = "lodash.once"; ··· 4144 4153 sha512 = "etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg=="; 4145 4154 }; 4146 4155 }; 4147 - "mappersmith-2.36.3" = { 4156 + "mappersmith-2.37.1" = { 4148 4157 name = "mappersmith"; 4149 4158 packageName = "mappersmith"; 4150 - version = "2.36.3"; 4159 + version = "2.37.1"; 4151 4160 src = fetchurl { 4152 - url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.36.3.tgz"; 4153 - sha512 = "izy4Gc7+VafMR/fDQukiEEBAfFoPGRYLBzFxXqXMR1IwAHqlQgSPRX+g/uIkaVqGRh+eb5c7sy8HNaBq9opwkA=="; 4161 + url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.37.1.tgz"; 4162 + sha512 = "3QiXhRADHTK/it1riJMJm/sHmLlGdw3pfLgZJQu9MfT1CNeiO93keNY0BVLlRmpPBsMER/P7kj3mtcAK2V331Q=="; 4154 4163 }; 4155 4164 }; 4156 4165 "md5-2.3.0" = { ··· 4450 4459 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 4451 4460 }; 4452 4461 }; 4453 - "n8n-core-0.102.0" = { 4462 + "n8n-core-0.104.0" = { 4454 4463 name = "n8n-core"; 4455 4464 packageName = "n8n-core"; 4456 - version = "0.102.0"; 4465 + version = "0.104.0"; 4457 4466 src = fetchurl { 4458 - url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.102.0.tgz"; 4459 - sha512 = "9/suLELO/HBoEZ06bEv3cN7HZoR43qZlubM0BDXDhXJHBasfKcfegXYYacSfBxtTVX71cLffVgshJoJt8OtDcw=="; 4467 + url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.104.0.tgz"; 4468 + sha512 = "rh8ooCF0zeVjic6JWByuCzcltpeV/OJjUmLcChXU3S6peggCvazvxlU6GOF/+YT69CeQdHwhTmOXSEevu0uzVQ=="; 4460 4469 }; 4461 4470 }; 4462 - "n8n-design-system-0.9.0" = { 4471 + "n8n-design-system-0.11.0" = { 4463 4472 name = "n8n-design-system"; 4464 4473 packageName = "n8n-design-system"; 4465 - version = "0.9.0"; 4474 + version = "0.11.0"; 4466 4475 src = fetchurl { 4467 - url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.9.0.tgz"; 4468 - sha512 = "E1DoUDIvPTLAQ72mkg+MVS72QxDxa5UPxVqX4QeF/xAhUrXKfTWHveG5OxugW+mrEF5nO8IG08MEDOQCOzJZpQ=="; 4476 + url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.11.0.tgz"; 4477 + sha512 = "KL64XTr9sqqiBEEV7on2cdLooleHPyXClFL+THUy2oXDbGqdlyCGykukU7S4aX+nSjrJEQEDMaMcbw3NCHrumg=="; 4469 4478 }; 4470 4479 }; 4471 - "n8n-editor-ui-0.127.0" = { 4480 + "n8n-editor-ui-0.129.0" = { 4472 4481 name = "n8n-editor-ui"; 4473 4482 packageName = "n8n-editor-ui"; 4474 - version = "0.127.0"; 4483 + version = "0.129.0"; 4475 4484 src = fetchurl { 4476 - url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.127.0.tgz"; 4477 - sha512 = "XCiLwXing2nSidUfrEqcYxG7Zc7TBbJDxmUjSwv2fdH4SK4vMPcUINJbEQOHPIhc6GNEjSt1J/tbCEJJC/acbg=="; 4485 + url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.129.0.tgz"; 4486 + sha512 = "LEYqSL04FWh9dPM/YhL1yySOYCN7IB5uP7uLjfiDR+B7BQcmpq1Do6NzuKqdzfoN8MwMZy6avQrw691rq266nQ=="; 4478 4487 }; 4479 4488 }; 4480 - "n8n-nodes-base-0.158.0" = { 4489 + "n8n-nodes-base-0.160.0" = { 4481 4490 name = "n8n-nodes-base"; 4482 4491 packageName = "n8n-nodes-base"; 4483 - version = "0.158.0"; 4492 + version = "0.160.0"; 4484 4493 src = fetchurl { 4485 - url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.158.0.tgz"; 4486 - sha512 = "qs/T0S2BHrovOFh6mnCRpuY9qhKZxub160+qtvXMVsiUWCpKEW1eIA4owYHLH3DLYqW0izQJap0sGlZEzV3xTg=="; 4494 + url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.160.0.tgz"; 4495 + sha512 = "q1eJBZSRgafVZBoCgmqxP0vnGDbgUpru0SOgtPgvvZxceo02PiBn8X8N8UjZ5ZeqIekO25tWvbJjGZpyIQ5/sg=="; 4487 4496 }; 4488 4497 }; 4489 - "n8n-workflow-0.84.0" = { 4498 + "n8n-workflow-0.86.0" = { 4490 4499 name = "n8n-workflow"; 4491 4500 packageName = "n8n-workflow"; 4492 - version = "0.84.0"; 4501 + version = "0.86.0"; 4493 4502 src = fetchurl { 4494 - url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.84.0.tgz"; 4495 - sha512 = "ibZ/oCWd81DMhjUQcAMC5GNs2C/dm+4boKTIjRuFHmbGzF2elwpb5s2nlkRn5REj9aZseZ0N9bfJ6slcLbw/Sw=="; 4503 + url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.86.0.tgz"; 4504 + sha512 = "+Kdo5RMEsh7QJ8AkWNTSpyxYRtjpxPmPfifVAFg4HVguW7g5e7f74xlmqD2xnxQybC9B3f6jxvx6WMKbNcT/+A=="; 4496 4505 }; 4497 4506 }; 4498 4507 "named-placeholders-1.1.2" = { ··· 4549 4558 sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 4550 4559 }; 4551 4560 }; 4552 - "negotiator-0.6.2" = { 4561 + "negotiator-0.6.3" = { 4553 4562 name = "negotiator"; 4554 4563 packageName = "negotiator"; 4555 - version = "0.6.2"; 4564 + version = "0.6.3"; 4556 4565 src = fetchurl { 4557 - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"; 4558 - sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; 4566 + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"; 4567 + sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 4559 4568 }; 4560 4569 }; 4561 4570 "neo-async-2.6.2" = { ··· 5107 5116 sha512 = "v6ZJ/efsBpGrGGknjtq9J/oC8tZWq0KWL5vQrk2GlzLEQPUDB1ex+13Rmidl1neNN358Jn9EHZw5y07FFtaC7A=="; 5108 5117 }; 5109 5118 }; 5110 - "peek-readable-4.0.2" = { 5119 + "peek-readable-4.1.0" = { 5111 5120 name = "peek-readable"; 5112 5121 packageName = "peek-readable"; 5113 - version = "4.0.2"; 5122 + version = "4.1.0"; 5114 5123 src = fetchurl { 5115 - url = "https://registry.npmjs.org/peek-readable/-/peek-readable-4.0.2.tgz"; 5116 - sha512 = "9fMaz6zoxw9ypO1KZy5RDJgSupEtu0Q+g/OqqsVHX3rKGR8qehRLYzsFARZ4bVvdvfknKiXvuDbkMnO1g6cRpQ=="; 5124 + url = "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz"; 5125 + sha512 = "ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg=="; 5117 5126 }; 5118 5127 }; 5119 5128 "performance-now-2.1.0" = { ··· 5134 5143 sha512 = "7bdYcv7V6U3KAtWjpQJJBww0UEsWuh4yQ/EjNf2HeO/NnvKjpvhEIe/A/TleP6wtmSKnUnghs5A9jUoK6iDdkA=="; 5135 5144 }; 5136 5145 }; 5146 + "pg-8.7.3" = { 5147 + name = "pg"; 5148 + packageName = "pg"; 5149 + version = "8.7.3"; 5150 + src = fetchurl { 5151 + url = "https://registry.npmjs.org/pg/-/pg-8.7.3.tgz"; 5152 + sha512 = "HPmH4GH4H3AOprDJOazoIcpI49XFsHCe8xlrjHkWiapdbHK+HLtbm/GQzXYAZwmPju/kzKhjaSfMACG+8cgJcw=="; 5153 + }; 5154 + }; 5137 5155 "pg-connection-string-2.5.0" = { 5138 5156 name = "pg-connection-string"; 5139 5157 packageName = "pg-connection-string"; ··· 5161 5179 sha512 = "1KdmFGGTP6jplJoI8MfvRlfvMiyBivMRP7/ffh4a11RUFJ7kC2J0ZHlipoKiH/1hz+DVgceon9U2qbaHpPeyPg=="; 5162 5180 }; 5163 5181 }; 5164 - "pg-pool-3.4.1" = { 5182 + "pg-pool-3.5.1" = { 5165 5183 name = "pg-pool"; 5166 5184 packageName = "pg-pool"; 5167 - version = "3.4.1"; 5185 + version = "3.5.1"; 5168 5186 src = fetchurl { 5169 - url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.4.1.tgz"; 5170 - sha512 = "TVHxR/gf3MeJRvchgNHxsYsTCHQ+4wm3VIHSS19z8NC0+gioEhq1okDY1sm/TYbfoP6JLFx01s0ShvZ3puP/iQ=="; 5187 + url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.1.tgz"; 5188 + sha512 = "6iCR0wVrro6OOHFsyavV+i6KYL4lVNyYAB9RD18w66xSzN+d8b66HiwuP30Gp1SH5O9T82fckkzsRjlrhD0ioQ=="; 5171 5189 }; 5172 5190 }; 5173 5191 "pg-promise-10.11.1" = { ··· 5332 5350 sha512 = "sanczS6xOJOg7IKDvi4sGOUOe7c1tsEzjwlLFH/zgwx/uyImVM9/rgBkc8AfiQa/Vg54nRd8mkm9yI7WV/O+WA=="; 5333 5351 }; 5334 5352 }; 5335 - "printj-1.3.0" = { 5353 + "printj-1.3.1" = { 5336 5354 name = "printj"; 5337 5355 packageName = "printj"; 5338 - version = "1.3.0"; 5356 + version = "1.3.1"; 5339 5357 src = fetchurl { 5340 - url = "https://registry.npmjs.org/printj/-/printj-1.3.0.tgz"; 5341 - sha512 = "017o8YIaz8gLhaNxRB9eBv2mWXI2CtzhPJALnQTP+OPpuUfP0RMWqr/mHCzqVeu1AQxfzSfAtAq66vKB8y7Lzg=="; 5358 + url = "https://registry.npmjs.org/printj/-/printj-1.3.1.tgz"; 5359 + sha512 = "GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg=="; 5342 5360 }; 5343 5361 }; 5344 5362 "process-0.11.10" = { ··· 5971 5989 sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw=="; 5972 5990 }; 5973 5991 }; 5992 + "safe-stable-stringify-2.3.1" = { 5993 + name = "safe-stable-stringify"; 5994 + packageName = "safe-stable-stringify"; 5995 + version = "2.3.1"; 5996 + src = fetchurl { 5997 + url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz"; 5998 + sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg=="; 5999 + }; 6000 + }; 5974 6001 "safer-buffer-2.1.2" = { 5975 6002 name = "safer-buffer"; 5976 6003 packageName = "safer-buffer"; ··· 6169 6196 sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 6170 6197 }; 6171 6198 }; 6172 - "signal-exit-3.0.6" = { 6199 + "signal-exit-3.0.7" = { 6173 6200 name = "signal-exit"; 6174 6201 packageName = "signal-exit"; 6175 - version = "3.0.6"; 6202 + version = "3.0.7"; 6176 6203 src = fetchurl { 6177 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz"; 6178 - sha512 = "sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ=="; 6204 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 6205 + sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 6179 6206 }; 6180 6207 }; 6181 6208 "simple-git-2.48.0" = { ··· 6322 6349 sha512 = "+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g=="; 6323 6350 }; 6324 6351 }; 6325 - "ssh2-1.5.0" = { 6352 + "ssh2-1.6.0" = { 6326 6353 name = "ssh2"; 6327 6354 packageName = "ssh2"; 6328 - version = "1.5.0"; 6355 + version = "1.6.0"; 6329 6356 src = fetchurl { 6330 - url = "https://registry.npmjs.org/ssh2/-/ssh2-1.5.0.tgz"; 6331 - sha512 = "iUmRkhH9KGeszQwDW7YyyqjsMTf4z+0o48Cp4xOwlY5LjtbIAvyd3fwnsoUZW/hXmTCRA3yt7S/Jb9uVjErVlA=="; 6357 + url = "https://registry.npmjs.org/ssh2/-/ssh2-1.6.0.tgz"; 6358 + sha512 = "lxc+uvXqOxyQ99N2M7k5o4pkYDO5GptOTYduWw7hIM41icxvoBcCNHcj+LTKrjkL0vFcAl+qfZekthoSFRJn2Q=="; 6332 6359 }; 6333 6360 }; 6334 - "ssh2-sftp-client-7.2.1" = { 6361 + "ssh2-sftp-client-7.2.2" = { 6335 6362 name = "ssh2-sftp-client"; 6336 6363 packageName = "ssh2-sftp-client"; 6337 - version = "7.2.1"; 6364 + version = "7.2.2"; 6338 6365 src = fetchurl { 6339 - url = "https://registry.npmjs.org/ssh2-sftp-client/-/ssh2-sftp-client-7.2.1.tgz"; 6340 - sha512 = "kr5QFL+d8Ta28wGhlRqkHo812PjMhKrBK7oTaYGNHqTvXAUjxZR6SeWRXbwKASE3dh2xeDz5aXHcg01bzfAeCA=="; 6366 + url = "https://registry.npmjs.org/ssh2-sftp-client/-/ssh2-sftp-client-7.2.2.tgz"; 6367 + sha512 = "qZYivU1zezyRomCf+TtsCYVAsc0TDQWzxJMMUN8NknEPonm2TYGxJAzrW8acUh2ILYgA0ZPOJElLV/qp9nRVYQ=="; 6341 6368 }; 6342 6369 }; 6343 6370 "sshpk-1.17.0" = { ··· 6493 6520 sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 6494 6521 }; 6495 6522 }; 6496 - "strtok3-6.2.4" = { 6523 + "strtok3-6.3.0" = { 6497 6524 name = "strtok3"; 6498 6525 packageName = "strtok3"; 6499 - version = "6.2.4"; 6526 + version = "6.3.0"; 6500 6527 src = fetchurl { 6501 - url = "https://registry.npmjs.org/strtok3/-/strtok3-6.2.4.tgz"; 6502 - sha512 = "GO8IcFF9GmFDvqduIspUBwCzCbqzegyVKIsSymcMgiZKeCfrN9SowtUoi8+b59WZMAjIzVZic/Ft97+pynR3Iw=="; 6528 + url = "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz"; 6529 + sha512 = "fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw=="; 6503 6530 }; 6504 6531 }; 6505 6532 "supports-color-2.0.0" = { ··· 7186 7213 sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="; 7187 7214 }; 7188 7215 }; 7189 - "winston-3.4.0" = { 7216 + "winston-3.5.1" = { 7190 7217 name = "winston"; 7191 7218 packageName = "winston"; 7192 - version = "3.4.0"; 7219 + version = "3.5.1"; 7193 7220 src = fetchurl { 7194 - url = "https://registry.npmjs.org/winston/-/winston-3.4.0.tgz"; 7195 - sha512 = "FqilVj+5HKwCfIHQzMxrrd5tBIH10JTS3koFGbLVWBODjiIYq7zir08rFyBT4rrTYG/eaTqDcfSIbcjSM78YSw=="; 7221 + url = "https://registry.npmjs.org/winston/-/winston-3.5.1.tgz"; 7222 + sha512 = "tbRtVy+vsSSCLcZq/8nXZaOie/S2tPXPFt4be/Q3vI/WtYwm7rrwidxVw2GRa38FIXcJ1kUM6MOZ9Jmnk3F3UA=="; 7196 7223 }; 7197 7224 }; 7198 - "winston-transport-4.4.2" = { 7225 + "winston-transport-4.5.0" = { 7199 7226 name = "winston-transport"; 7200 7227 packageName = "winston-transport"; 7201 - version = "4.4.2"; 7228 + version = "4.5.0"; 7202 7229 src = fetchurl { 7203 - url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.2.tgz"; 7204 - sha512 = "9jmhltAr5ygt5usgUTQbEiw/7RYXpyUbEAFRCSicIacpUzPkrnQsQZSPGEI12aLK9Jth4zNcYJx3Cvznwrl8pw=="; 7230 + url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz"; 7231 + sha512 = "YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q=="; 7205 7232 }; 7206 7233 }; 7207 7234 "wmf-1.0.2" = { ··· 7426 7453 n8n = nodeEnv.buildNodePackage { 7427 7454 name = "n8n"; 7428 7455 packageName = "n8n"; 7429 - version = "0.160.0"; 7456 + version = "0.162.0"; 7430 7457 src = fetchurl { 7431 - url = "https://registry.npmjs.org/n8n/-/n8n-0.160.0.tgz"; 7432 - sha512 = "mdjD4tKohZP8kMbFa+gGWx5rYXLz9HprXr2tPHUpAvZ6x7JGb06uY2ieNifSAH9Ap3CR+qfg6HkPgSKe183CIA=="; 7458 + url = "https://registry.npmjs.org/n8n/-/n8n-0.162.0.tgz"; 7459 + sha512 = "76fcq99iZXy+j+BiuZMrR1rgeBgWRGOVwNeqlEqWCJ3u8kg6iDsGRuo9nSdx11OzP17hAJJKLtYHxLfTBV3kUw=="; 7433 7460 }; 7434 7461 dependencies = [ 7435 7462 (sources."@azure/abort-controller-1.0.5" // { ··· 7443 7470 sources."tslib-2.3.1" 7444 7471 ]; 7445 7472 }) 7446 - (sources."@azure/core-http-2.2.3" // { 7473 + (sources."@azure/core-http-2.2.4" // { 7447 7474 dependencies = [ 7448 7475 sources."tough-cookie-4.0.0" 7449 7476 sources."tslib-2.3.1" ··· 7481 7508 sources."tslib-2.3.1" 7482 7509 ]; 7483 7510 }) 7484 - sources."@babel/runtime-7.16.7" 7511 + sources."@babel/runtime-7.17.0" 7485 7512 (sources."@dabh/diagnostics-2.0.2" // { 7486 7513 dependencies = [ 7487 7514 sources."enabled-2.0.0" 7488 7515 sources."kuler-2.0.0" 7489 7516 ]; 7490 7517 }) 7491 - sources."@fontsource/open-sans-4.5.2" 7518 + sources."@fontsource/open-sans-4.5.4" 7492 7519 sources."@icetee/ftp-0.3.15" 7493 7520 sources."@kafkajs/confluent-schema-registry-1.0.6" 7494 7521 sources."@kwsites/file-exists-1.1.1" ··· 7497 7524 sources."@nodelib/fs.stat-2.0.5" 7498 7525 sources."@nodelib/fs.walk-1.2.8" 7499 7526 sources."@oclif/command-1.8.16" 7500 - (sources."@oclif/config-1.18.2" // { 7527 + (sources."@oclif/config-1.18.3" // { 7501 7528 dependencies = [ 7502 7529 sources."tslib-2.3.1" 7503 7530 ]; ··· 7507 7534 sources."wrap-ansi-7.0.0" 7508 7535 ]; 7509 7536 }) 7510 - sources."@oclif/help-1.0.1" 7537 + (sources."@oclif/help-1.0.1" // { 7538 + dependencies = [ 7539 + sources."@oclif/config-1.18.2" 7540 + sources."tslib-2.3.1" 7541 + ]; 7542 + }) 7511 7543 sources."@oclif/linewrap-1.0.0" 7512 7544 (sources."@oclif/parser-3.8.6" // { 7513 7545 dependencies = [ 7514 7546 sources."tslib-2.3.1" 7515 7547 ]; 7516 7548 }) 7517 - sources."@opentelemetry/api-1.0.4" 7549 + sources."@opentelemetry/api-1.1.0" 7518 7550 sources."@rudderstack/rudder-sdk-node-1.0.6" 7519 7551 sources."@segment/loosely-validate-event-2.0.0" 7520 7552 sources."@selderee/plugin-htmlparser2-0.6.0" ··· 7535 7567 sources."@types/lodash-4.14.178" 7536 7568 sources."@types/lossless-json-1.0.1" 7537 7569 sources."@types/mime-1.3.2" 7538 - sources."@types/node-17.0.10" 7570 + sources."@types/node-17.0.15" 7539 7571 (sources."@types/node-fetch-2.5.12" // { 7540 7572 dependencies = [ 7541 7573 sources."form-data-3.0.1" ··· 7553 7585 sources."@xmldom/xmldom-0.7.5" 7554 7586 sources."abbrev-1.1.1" 7555 7587 sources."abort-controller-3.0.0" 7556 - sources."accepts-1.3.7" 7588 + sources."accepts-1.3.8" 7557 7589 sources."access-control-1.0.1" 7558 7590 (sources."adal-node-0.2.3" // { 7559 7591 dependencies = [ ··· 7602 7634 ]; 7603 7635 }) 7604 7636 sources."avsc-5.7.3" 7605 - (sources."aws-sdk-2.1062.0" // { 7637 + (sources."aws-sdk-2.1069.0" // { 7606 7638 dependencies = [ 7607 7639 sources."buffer-4.9.2" 7608 7640 sources."events-1.1.1" ··· 7697 7729 sources."printj-1.2.3" 7698 7730 ]; 7699 7731 }) 7700 - sources."printj-1.3.0" 7732 + sources."printj-1.3.1" 7701 7733 ]; 7702 7734 }) 7703 7735 sources."chalk-4.1.2" ··· 7776 7808 sources."convict-6.2.1" 7777 7809 sources."cookie-0.4.1" 7778 7810 sources."cookie-signature-1.0.6" 7779 - sources."core-js-3.20.3" 7811 + sources."core-js-3.21.0" 7780 7812 sources."core-util-is-1.0.2" 7781 - sources."crc-32-1.2.0" 7813 + (sources."crc-32-1.2.1" // { 7814 + dependencies = [ 7815 + sources."printj-1.3.1" 7816 + ]; 7817 + }) 7782 7818 sources."cron-1.7.2" 7783 7819 sources."cron-parser-2.18.0" 7784 7820 (sources."cross-spawn-4.0.2" // { ··· 7884 7920 sources."ms-2.0.0" 7885 7921 ]; 7886 7922 }) 7887 - sources."flatted-2.0.2" 7923 + sources."flatted-3.2.5" 7888 7924 sources."fn.name-1.1.0" 7889 7925 sources."follow-redirects-1.14.7" 7890 7926 sources."for-each-0.3.3" ··· 7977 8013 sources."ini-1.3.8" 7978 8014 sources."inquirer-7.3.3" 7979 8015 sources."internal-slot-1.0.3" 7980 - sources."ioredis-4.28.3" 8016 + sources."ioredis-4.28.5" 7981 8017 sources."ip-regex-2.1.0" 7982 8018 sources."ipaddr.js-1.9.1" 7983 8019 sources."is-absolute-1.0.0" ··· 8012 8048 sources."is-windows-1.0.2" 8013 8049 sources."is-wsl-2.2.0" 8014 8050 sources."isarray-0.0.1" 8015 - sources."isbot-3.4.0" 8051 + sources."isbot-3.4.1" 8016 8052 sources."isexe-2.0.0" 8017 8053 sources."iso-639-1-2.1.12" 8018 8054 sources."isstream-0.1.2" ··· 8045 8081 sources."iconv-lite-0.6.2" 8046 8082 ]; 8047 8083 }) 8048 - sources."libphonenumber-js-1.9.44" 8084 + sources."libphonenumber-js-1.9.48" 8049 8085 sources."libqp-1.1.0" 8050 8086 sources."limiter-1.1.5" 8051 8087 sources."linkify-it-3.0.3" ··· 8068 8104 sources."lodash.isnumber-3.0.3" 8069 8105 sources."lodash.isplainobject-4.0.6" 8070 8106 sources."lodash.isstring-4.0.1" 8107 + sources."lodash.merge-4.6.2" 8071 8108 sources."lodash.once-4.1.1" 8072 8109 sources."lodash.set-4.3.2" 8073 8110 sources."lodash.uniqby-4.7.0" 8074 8111 sources."lodash.unset-4.5.2" 8075 - sources."logform-2.3.2" 8112 + (sources."logform-2.3.2" // { 8113 + dependencies = [ 8114 + sources."safe-stable-stringify-1.1.1" 8115 + ]; 8116 + }) 8076 8117 sources."long-4.0.0" 8077 8118 sources."lossless-json-1.0.5" 8078 8119 (sources."lower-case-2.0.2" // { ··· 8101 8142 }) 8102 8143 sources."make-error-1.3.6" 8103 8144 sources."make-error-cause-2.3.0" 8104 - sources."mappersmith-2.36.3" 8145 + sources."mappersmith-2.37.1" 8105 8146 sources."md5-2.3.0" 8106 8147 sources."media-typer-0.3.0" 8107 8148 sources."merge-descriptors-1.0.1" ··· 8157 8198 ]; 8158 8199 }) 8159 8200 sources."mz-2.7.0" 8160 - (sources."n8n-core-0.102.0" // { 8201 + (sources."n8n-core-0.104.0" // { 8161 8202 dependencies = [ 8162 - sources."flatted-3.2.4" 8163 8203 sources."qs-6.10.3" 8164 8204 ]; 8165 8205 }) 8166 - sources."n8n-design-system-0.9.0" 8167 - sources."n8n-editor-ui-0.127.0" 8168 - (sources."n8n-nodes-base-0.158.0" // { 8206 + sources."n8n-design-system-0.11.0" 8207 + sources."n8n-editor-ui-0.129.0" 8208 + (sources."n8n-nodes-base-0.160.0" // { 8169 8209 dependencies = [ 8170 8210 sources."iconv-lite-0.6.3" 8171 8211 ]; 8172 8212 }) 8173 - sources."n8n-workflow-0.84.0" 8213 + sources."n8n-workflow-0.86.0" 8174 8214 (sources."named-placeholders-1.1.2" // { 8175 8215 dependencies = [ 8176 8216 sources."lru-cache-4.1.5" ··· 8190 8230 sources."debug-3.2.7" 8191 8231 ]; 8192 8232 }) 8193 - sources."negotiator-0.6.2" 8233 + sources."negotiator-0.6.3" 8194 8234 sources."neo-async-2.6.2" 8195 8235 (sources."no-case-3.0.4" // { 8196 8236 dependencies = [ ··· 8289 8329 sources."debug-3.2.7" 8290 8330 ]; 8291 8331 }) 8292 - sources."peek-readable-4.0.2" 8332 + sources."peek-readable-4.1.0" 8293 8333 sources."performance-now-2.1.0" 8294 - sources."pg-8.7.1" 8334 + sources."pg-8.7.3" 8295 8335 sources."pg-connection-string-2.5.0" 8296 8336 sources."pg-int8-1.0.1" 8297 8337 sources."pg-minify-1.6.2" 8298 - sources."pg-pool-3.4.1" 8299 - sources."pg-promise-10.11.1" 8338 + sources."pg-pool-3.5.1" 8339 + (sources."pg-promise-10.11.1" // { 8340 + dependencies = [ 8341 + sources."pg-8.7.1" 8342 + ]; 8343 + }) 8300 8344 sources."pg-protocol-1.5.0" 8301 8345 sources."pg-types-2.2.0" 8302 8346 (sources."pgpass-1.0.5" // { ··· 8401 8445 sources."run-parallel-1.2.0" 8402 8446 sources."rxjs-6.6.7" 8403 8447 sources."safe-buffer-5.2.1" 8404 - sources."safe-stable-stringify-1.1.1" 8448 + sources."safe-stable-stringify-2.3.1" 8405 8449 sources."safer-buffer-2.1.2" 8406 8450 sources."sax-1.2.4" 8407 8451 sources."sb-promise-queue-2.1.0" ··· 8433 8477 sources."sha.js-2.4.11" 8434 8478 sources."shell-escape-0.2.0" 8435 8479 sources."side-channel-1.0.4" 8436 - sources."signal-exit-3.0.6" 8480 + sources."signal-exit-3.0.7" 8437 8481 sources."simple-git-2.48.0" 8438 8482 sources."simple-lru-cache-0.0.2" 8439 8483 sources."simple-swizzle-0.2.2" ··· 8467 8511 sources."sqlstring-2.3.2" 8468 8512 sources."sse-channel-3.1.1" 8469 8513 sources."ssf-0.11.2" 8470 - sources."ssh2-1.5.0" 8471 - sources."ssh2-sftp-client-7.2.1" 8514 + sources."ssh2-1.6.0" 8515 + sources."ssh2-sftp-client-7.2.2" 8472 8516 sources."sshpk-1.17.0" 8473 8517 sources."stack-trace-0.0.10" 8474 8518 sources."standard-as-callback-2.1.0" ··· 8482 8526 sources."string_decoder-0.10.31" 8483 8527 sources."strip-ansi-6.0.1" 8484 8528 sources."strip-json-comments-2.0.1" 8485 - sources."strtok3-6.2.4" 8529 + sources."strtok3-6.3.0" 8486 8530 sources."supports-color-7.2.0" 8487 8531 (sources."tar-4.4.19" // { 8488 8532 dependencies = [ ··· 8494 8538 sources."tdigest-0.1.1" 8495 8539 (sources."tedious-6.7.1" // { 8496 8540 dependencies = [ 8497 - sources."@types/node-12.20.42" 8541 + sources."@types/node-12.20.43" 8498 8542 sources."bl-3.0.1" 8499 8543 sources."depd-2.0.0" 8500 8544 sources."iconv-lite-0.5.2" ··· 8601 8645 sources."which-boxed-primitive-1.0.2" 8602 8646 sources."wide-align-1.1.5" 8603 8647 sources."widest-line-3.1.0" 8604 - (sources."winston-3.4.0" // { 8648 + (sources."winston-3.5.1" // { 8605 8649 dependencies = [ 8606 8650 sources."async-3.2.3" 8607 8651 sources."readable-stream-3.6.0" 8608 8652 sources."string_decoder-1.3.0" 8609 8653 ]; 8610 8654 }) 8611 - (sources."winston-transport-4.4.2" // { 8655 + (sources."winston-transport-4.5.0" // { 8612 8656 dependencies = [ 8613 8657 sources."readable-stream-3.6.0" 8614 8658 sources."string_decoder-1.3.0"
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 5 5 6 6 mkDerivation rec { 7 7 pname = "qownnotes"; 8 - version = "22.1.11"; 8 + version = "22.2.1"; 9 9 10 10 src = fetchurl { 11 11 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 12 12 # Fetch the checksum of current version with curl: 13 13 # curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256 14 - sha256 = "7fa21ca9b8b0df6f1bda7a7dc21d53642eccf8de6a31a9a29a251e0a17c00c83"; 14 + sha256 = "26dfd41430e9efa5cc93c2d67156387a564efd0843c2020284658100b298d54c"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ qmake qttools ];
+3 -3
pkgs/applications/science/logic/lean/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "lean"; 5 - version = "3.39.0"; 5 + version = "3.39.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "leanprover-community"; ··· 11 11 # from. this is then used to check whether an olean file should be 12 12 # rebuilt. don't use a tag as rev because this will get replaced into 13 13 # src/githash.h.in in preConfigure. 14 - rev = "85c581588857624e9cd562aaa0301a951c497833"; 15 - sha256 = "1v9rqvpgm2hw0mvsg1arp7xp4r9h9p286364hn3if55pg3h8bjzn"; 14 + rev = "1781ded0d0062f40a7eaf3ead8dcbef4429c6321"; 15 + sha256 = "0xdpbfjfa1q4cnf87nl7l760ivr4agpqmy3i1f2b132sgbjzm1xx"; 16 16 }; 17 17 18 18 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/applications/version-management/git-and-tools/git-branchless/default.nix
··· 15 15 16 16 rustPlatform.buildRustPackage rec { 17 17 pname = "git-branchless"; 18 - version = "0.3.8"; 18 + version = "0.3.9"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "arxanas"; 22 22 repo = "git-branchless"; 23 23 rev = "v${version}"; 24 - sha256 = "sha256-eDVC1tvAkCioV0Mi5f/Qkc0MMTNaoFXuvWXpllZ7PgE="; 24 + sha256 = "sha256-SEmIZy8ql1MxcFR6zeif03DVha/SRZHajVwt3QOBBYU="; 25 25 }; 26 26 27 - cargoSha256 = "sha256-wtG/WTmZ13jxIawI9j9QKQm7jPx5TUs7MjqX+lq/Vf0="; 27 + cargoSha256 = "sha256-mKfPxU1JoN/xLdPdwy3vo1M0qF9ag0T4Ls4dfvHn6Pc="; 28 28 29 29 nativeBuildInputs = [ pkg-config ]; 30 30
+24
pkgs/development/compilers/gforth/boot-forth.nix
··· 1 + { lib, stdenv, fetchurl, m4 }: 2 + 3 + let 4 + version = "0.7.3"; 5 + in 6 + stdenv.mkDerivation { 7 + pname = "gforth-boot"; 8 + inherit version; 9 + src = fetchurl { 10 + url = "https://ftp.gnu.org/gnu/gforth/gforth-${version}.tar.gz"; 11 + sha256 = "1c1bahc9ypmca8rv2dijiqbangm1d9av286904yw48ph7ciz4qig"; 12 + }; 13 + 14 + buildInputs = [ m4 ]; 15 + 16 + configureFlags = lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ]; 17 + 18 + meta = { 19 + description = "The Forth implementation of the GNU project (outdated version used to bootstrap)"; 20 + homepage = "https://www.gnu.org/software/gforth/"; 21 + license = lib.licenses.gpl3; 22 + platforms = lib.platforms.all; 23 + }; 24 + }
+23 -10
pkgs/development/compilers/gforth/default.nix
··· 1 - { lib, stdenv, fetchurl, m4 }: 1 + { lib, stdenv, fetchFromGitHub, callPackage 2 + , autoreconfHook, texinfo, libffi 3 + }: 2 4 3 5 let 4 - version = "0.7.3"; 5 - in 6 - stdenv.mkDerivation { 6 + swig = callPackage ./swig.nix { }; 7 + bootForth = callPackage ./boot-forth.nix { }; 8 + in stdenv.mkDerivation rec { 9 + 7 10 pname = "gforth"; 8 - inherit version; 9 - src = fetchurl { 10 - url = "https://ftp.gnu.org/gnu/gforth/gforth-${version}.tar.gz"; 11 - sha256 = "1c1bahc9ypmca8rv2dijiqbangm1d9av286904yw48ph7ciz4qig"; 11 + version = "0.7.9_20220127"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "forthy42"; 15 + repo = "gforth"; 16 + rev = version; 17 + sha256 = "sha256-3+ObHhsPvW44UFiN0GWOhwo7aiqhjwxNY8hw2Wv4MK0="; 12 18 }; 13 19 14 - buildInputs = [ m4 ]; 20 + nativeBuildInputs = [ 21 + autoreconfHook texinfo bootForth swig 22 + ]; 23 + buildInputs = [ 24 + libffi 25 + ]; 26 + 27 + passthru = { inherit bootForth; }; 15 28 16 29 configureFlags = lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ]; 17 30 ··· 22 35 23 36 meta = { 24 37 description = "The Forth implementation of the GNU project"; 25 - homepage = "https://www.gnu.org/software/gforth/"; 38 + homepage = "https://github.com/forthy42/gforth"; 26 39 license = lib.licenses.gpl3; 27 40 platforms = lib.platforms.all; 28 41 };
+16
pkgs/development/compilers/gforth/swig.nix
··· 1 + { swig3, fetchFromGitHub }: 2 + 3 + ## for updating to swig4, see 4 + ## https://github.com/GeraldWodni/swig/pull/6 5 + swig3.overrideDerivation (old: { 6 + version = "3.0.9-forth"; 7 + src = fetchFromGitHub { 8 + owner = "GeraldWodni"; 9 + repo = "swig"; 10 + rev = "a45b807e5f9d8ca1a43649c8265d2741a393862a"; 11 + sha256 = "sha256-6nOOPFGFNaQInEkul0ZAh+ks9n3wqCQ6/tbduvG/To0="; 12 + }; 13 + configureFlags = old.configureFlags ++ [ 14 + "--enable-forth" 15 + ]; 16 + })
+3 -2
pkgs/development/compilers/jetbrains-jdk/default.nix
··· 2 2 3 3 openjdk11.overrideAttrs (oldAttrs: rec { 4 4 pname = "jetbrains-jdk"; 5 - version = "11_0_11-b1504.13"; 5 + version = "11_0_13-b1751.25"; 6 + 6 7 src = fetchFromGitHub { 7 8 owner = "JetBrains"; 8 9 repo = "JetBrainsRuntime"; 9 10 rev = "jb${version}"; 10 - sha256 = "1xpgsgmmj5jp5qyw98hqmik6a7z3hfwmij023ij3qqymyj3nhm2i"; 11 + sha256 = "sha256-TPNYZUkAoiZfp7Ci3fslKnRNGY1lnyIhXYUt6J31lwI="; 11 12 }; 12 13 patches = []; 13 14 meta = with lib; {
+2 -2
pkgs/development/compilers/julia/1.7-bin.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "julia-bin"; 5 - version = "1.7.1"; 5 + version = "1.7.2"; 6 6 7 7 src = { 8 8 x86_64-linux = fetchurl { 9 9 url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz"; 10 - sha256 = "04czipzai5628v1npa2y2xff0bd4rj8d2fcjnnsvkqj5gff8wra4"; 10 + sha256 = "15dsfdcxvx0wizkkn85ldz0mg0h7cjziz1lw4kky0b9v9xr48lm7"; 11 11 }; 12 12 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 13 13
+1 -6
pkgs/development/haskell-modules/configuration-nix.nix
··· 595 595 sha256 = "1hjdprm990vyxz86fgq14ajn0lkams7i00h8k2i2g1a0hjdwppq6"; 596 596 }; 597 597 598 - spagoWithOverrides = super.spago.override { 599 - # spago has not yet been updated for the latest dhall. 600 - dhall = self.dhall_1_38_1; 601 - }; 602 - 603 598 spagoDocs = overrideCabal (drv: { 604 599 postUnpack = (drv.postUnpack or "") + '' 605 600 # Spago includes the following two files directly into the binary ··· 625 620 "$sourceRoot/templates/docs-search-app-0.0.11.js" \ 626 621 "$sourceRoot/templates/purescript-docs-search-0.0.11" 627 622 ''; 628 - }) spagoWithOverrides; 623 + }) super.spago; 629 624 630 625 # Tests require network access. 631 626 spagoWithoutChecks = dontCheck spagoDocs;
+15
pkgs/development/haskell-modules/with-packages-wrapper.nix
··· 164 164 passthru = { 165 165 preferLocalBuild = true; 166 166 inherit (ghc) version meta; 167 + 168 + # Inform users about backwards incompatibilities with <= 21.05 169 + override = _: throw '' 170 + The ghc.withPackages wrapper itself can now be overridden, but no longer 171 + the result of calling it (as before). Consequently overrides need to be 172 + adjusted: Instead of 173 + 174 + (ghc.withPackages (p: [ p.my-package ])).override { withLLLVM = true; } 175 + 176 + use 177 + 178 + (ghc.withPackages.override { useLLVM = true; }) (p: [ p.my-package ]) 179 + 180 + Also note that withLLVM has been renamed to useLLVM for consistency with 181 + the GHC Nix expressions.''; 167 182 }; 168 183 }
+30 -8
pkgs/development/interpreters/bats/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, bash, makeWrapper, coreutils, gnugrep, ncurses, doCheck ? true }: 1 + { resholvePackage 2 + , lib 3 + , fetchFromGitHub 4 + , bash 5 + , coreutils 6 + , gnugrep 7 + , ncurses 8 + , doInstallCheck ? true 9 + }: 2 10 3 - stdenv.mkDerivation rec { 11 + resholvePackage rec { 4 12 pname = "bats"; 5 13 version = "1.5.0"; 6 14 ··· 11 19 sha256 = "sha256-MEkMi2w8G9FZhE3JvzzbqObcErQ9WFXy5mtKwQOoxbk="; 12 20 }; 13 21 14 - nativeBuildInputs = [ makeWrapper ]; 15 - 16 22 patchPhase = '' 17 23 patchShebangs . 18 24 ''; 19 25 20 26 installPhase = '' 21 27 ./install.sh $out 22 - wrapProgram $out/bin/bats --suffix PATH : "${lib.makeBinPath [ bash coreutils gnugrep ]}" 23 28 ''; 24 29 25 - inherit doCheck; 26 - checkInputs = [ ncurses ]; 27 - checkPhase = '' 30 + solutions = { 31 + bats = { 32 + scripts = [ "bin/bats" ]; 33 + interpreter = "${bash}/bin/bash"; 34 + inputs = [ bash coreutils gnugrep ]; 35 + fake = { 36 + external = [ "greadlink" ]; 37 + }; 38 + fix = { 39 + "$BATS_ROOT" = [ "${placeholder "out"}" ]; 40 + }; 41 + keep = { 42 + "${placeholder "out"}/libexec/bats-core/bats" = true; 43 + }; 44 + }; 45 + }; 46 + 47 + inherit doInstallCheck; 48 + installCheckInputs = [ ncurses ]; 49 + installCheckPhase = '' 28 50 # TODO: cut if https://github.com/bats-core/bats-core/issues/418 allows 29 51 sed -i '/test works even if PATH is reset/a skip' test/bats.bats 30 52
+25
pkgs/development/libraries/SDL2_ttf/2.0.15.nix
··· 1 + { lib, stdenv, pkg-config, darwin, fetchurl, SDL2, freetype, libGL }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "SDL2_ttf"; 5 + version = "2.0.15"; 6 + 7 + src = fetchurl { 8 + url = "https://www.libsdl.org/projects/SDL_ttf/release/${pname}-${version}.tar.gz"; 9 + sha256 = "0cyd48dipc0m399qy8s03lci8b0bpiy8xlkvrm2ia7wcv0dfpv59"; 10 + }; 11 + 12 + configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest"; 13 + 14 + nativeBuildInputs = [ pkg-config ]; 15 + 16 + buildInputs = [ SDL2 freetype libGL ] 17 + ++ lib.optional stdenv.isDarwin darwin.libobjc; 18 + 19 + meta = with lib; { 20 + description = "SDL TrueType library"; 21 + platforms = platforms.unix; 22 + license = licenses.zlib; 23 + homepage = "https://www.libsdl.org/projects/SDL_ttf/"; 24 + }; 25 + }
+3 -3
pkgs/development/libraries/libnats-c/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "libnats"; 8 - version = "2.1.0"; 8 + version = "3.2.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "nats-io"; 12 12 repo = "nats.c"; 13 - rev = "refs/tags/v${version}"; 14 - sha256 = "16a0f0gvrmyrqvmh6vinqny3qhm6wyzw5ijnn3r82b1gqlpws0fz"; 13 + rev = "v${version}"; 14 + sha256 = "1ngji3sa44y27lnq4x5dzbd117s9psx4w0j50b4c2b72cf2z139q"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/libosmium/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libosmium"; 5 - version = "2.17.3"; 5 + version = "2.18.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "osmcode"; 9 9 repo = "libosmium"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-XpC5gb19jPakYS3QSgOU6WnGad+VEoEtxyT38d9Beug="; 11 + sha256 = "sha256-IPdaBT6hRNHo8kuOsiKdyiQkRxA/l+44U3qGGG89BTo="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -11
pkgs/development/libraries/pipewire/wireplumber.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "wireplumber"; 30 - version = "0.4.7"; 30 + version = "0.4.8"; 31 31 32 32 outputs = [ "out" "dev" ] ++ lib.optional enableDocs "doc"; 33 33 ··· 36 36 owner = "pipewire"; 37 37 repo = "wireplumber"; 38 38 rev = version; 39 - sha256 = "sha256-yp4xtp+s+h+43LGVtYonoJ2tQaLRfwyMY4fp8z1l0CM="; 39 + sha256 = "sha256-xwfggrjKHh5mZdvH6dKqQo6o1ltxuYdjoGYaWl31C/Y="; 40 40 }; 41 - 42 - patches = [ 43 - # backport a fix for default device selection 44 - # FIXME remove this after 0.4.8 45 - (fetchpatch { 46 - url = "https://gitlab.freedesktop.org/pipewire/wireplumber/-/commit/211f1e6b6cd4898121e4c2b821fae4dea6cc3317.patch"; 47 - sha256 = "sha256-EGcbJ8Rq/5ft6SV0VC+mTkhVE7Ycze4TL6AVc9KH7+M="; 48 - }) 49 - ]; 50 41 51 42 nativeBuildInputs = [ 52 43 meson
+2 -2
pkgs/development/libraries/simgear/default.nix
··· 4 4 , curl 5 5 }: 6 6 let 7 - version = "2020.3.11"; 7 + version = "2020.3.12"; 8 8 shortVersion = builtins.substring 0 6 version; 9 9 in 10 10 stdenv.mkDerivation rec { ··· 13 13 14 14 src = fetchurl { 15 15 url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 16 - sha256 = "sha256-u438vCo7AUPR/88B0alh5WbvId0z2cx2jW2apYcdTzw="; 16 + sha256 = "sha256-W7KZzFU5qZE6tOv9YSzH3yoNi8YET2yzmThMcl23140="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
+4 -12
pkgs/development/libraries/zeitgeist/default.nix
··· 1 - { lib, stdenv 1 + { stdenv 2 + , lib 2 3 , fetchFromGitLab 3 - , fetchpatch 4 4 , pkg-config 5 5 , glib 6 6 , sqlite ··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "zeitgeist"; 23 - version = "1.0.3"; 23 + version = "1.0.4"; 24 24 25 25 outputs = [ "out" "lib" "dev" "man" ] ++ lib.optional pythonSupport "py"; 26 26 ··· 29 29 owner = pname; 30 30 repo = pname; 31 31 rev = "v${version}"; 32 - sha256 = "0y6fyzxl5np4yskcxibd0p03h619w9ir907nhf40h02y0pk1kgkp"; 32 + sha256 = "kG1N8DXgjYAJ8fbrGHsp7eTqB20H5smzRnW0PSRUYR0="; 33 33 }; 34 - 35 - patches = [ 36 - # Fix build with Vala 0.52 37 - (fetchpatch { 38 - url = "https://gitlab.freedesktop.org/zeitgeist/zeitgeist/commit/64ac3a6f94cd299e5e14945dc31b48f009dec152.patch"; 39 - sha256 = "Dw1kNE3JoFdmgcQ0eFoFLYvmxlPjXNj56Jkn2meINz4="; 40 - }) 41 - ]; 42 34 43 35 nativeBuildInputs = [ 44 36 autoconf
+2 -2
pkgs/development/ocaml-modules/janestreet/default.nix
··· 299 299 }; 300 300 301 301 core = janePackage { 302 - version = "0.11.2"; 302 + version = "0.11.3"; 303 303 pname = "core"; 304 - hash = "0vpsvd75lxb09il2rnzyib9mlr51v1hzqdc9fdxgx353pb5agh8a"; 304 + hash = "0pzl8n09z4f3i7z2wq4cjxfqrr8mj6xcdp7rbg0nxap2zdhjgvrq"; 305 305 propagatedBuildInputs = [ core_kernel spawn ]; 306 306 meta.description = "Jane Street's standard library overlay"; 307 307 };
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "adafruit-platformdetect"; 9 - version = "3.19.4"; 9 + version = "3.19.5"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchPypi { 13 13 pname = "Adafruit-PlatformDetect"; 14 14 inherit version; 15 - sha256 = "sha256-b/uAmrFdAtmXUjaW038mKeZgWHCSIEzCZvCy/9Z3ghw="; 15 + sha256 = "sha256-vbiMD0En11VDJUGnEc5ww0AhQ12vkbTCm/pqF7wnywI="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+9 -4
pkgs/development/python-modules/adguardhome/default.nix
··· 23 23 sha256 = "sha256-HAgt52Bo2NOUkpr5xvWTcRyrLKpfcBDlVAZxgDNI7hY="; 24 24 }; 25 25 26 + postPatch = '' 27 + substituteInPlace pyproject.toml \ 28 + --replace "--cov" "" \ 29 + --replace '"0.0.0"' '"${version}"' 30 + 31 + substituteInPlace tests/test_adguardhome.py \ 32 + --replace 0.0.0 ${version} 33 + ''; 34 + 26 35 nativeBuildInputs = [ poetry-core ]; 27 36 28 37 propagatedBuildInputs = [ ··· 35 44 pytest-asyncio 36 45 pytestCheckHook 37 46 ]; 38 - 39 - postPatch = '' 40 - substituteInPlace pyproject.toml --replace "--cov" "" 41 - ''; 42 47 43 48 pythonImportsCheck = [ "adguardhome" ]; 44 49
+5 -1
pkgs/development/python-modules/aiomusiccast/default.nix
··· 11 11 version = "0.14.3"; 12 12 13 13 format = "pyproject"; 14 - 15 14 disabled = pythonOlder "3.8"; 16 15 17 16 src = fetchFromGitHub { ··· 20 19 rev = version; 21 20 hash = "sha256-ELdNxeU9dajWr4VeOyuvNrSi7B+ImVJM/BlZsw3tcKE="; 22 21 }; 22 + 23 + postPatch = '' 24 + substituteInPlace pyproject.toml \ 25 + --replace '"0.0.0"' '"${version}"' 26 + ''; 23 27 24 28 nativeBuildInputs = [ 25 29 poetry-core
+2 -2
pkgs/development/python-modules/aionanoleaf/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aionanoleaf"; 10 - version = "0.1.1"; 10 + version = "0.2.0"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.8"; ··· 16 16 owner = "milanmeu"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "10gi8fpv3xkdjaqig84723m3j0kxgxvqwqvjxmysq2sw4cjmsvz6"; 19 + sha256 = "sha256-bz568DlodWtSu2WTTd/QMhdiX9IkllW7UYVXuNlKFaY="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aiooncue/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aiooncue"; 10 - version = "0.3.2"; 10 + version = "0.3.3"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 16 16 owner = "bdraco"; 17 17 repo = pname; 18 18 rev = version; 19 - hash = "sha256-6GnXuYpggUMisfeOnl52xvWFIZRV+oCwsFKAjPwscTU="; 19 + hash = "sha256-rzgSvgVfpz2AVwqnat+TO+QhA3KcXV/a1HDNAP1fNPM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+39
pkgs/development/python-modules/aiosenseme/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , ifaddr 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "aiosenseme"; 10 + version = "0.6.1"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "bdraco"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + hash = "sha256-ShK4DP1lAtAFI6z2kf5T1ecbNTKUn2kqUjps2ABRegg="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + ifaddr 24 + ]; 25 + 26 + pythonImportsCheck = [ 27 + "aiosenseme" 28 + ]; 29 + 30 + # Module has no tests 31 + doCheck = false; 32 + 33 + meta = with lib; { 34 + description = "Module to interact with SenseME fans and lights by Big Ass Fans"; 35 + homepage = "https://github.com/bdraco/aiosenseme"; 36 + license = with licenses; [ gpl3Only ]; 37 + maintainers = with maintainers; [ fab ]; 38 + }; 39 + }
+5
pkgs/development/python-modules/astropy-extension-helpers/default.nix
··· 3 3 , fetchPypi 4 4 , findutils 5 5 , pytestCheckHook 6 + , setuptools-scm 6 7 }: 7 8 8 9 buildPythonPackage rec { ··· 14 15 inherit pname version; 15 16 sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc"; 16 17 }; 18 + 19 + nativeBuildInputs = [ 20 + setuptools-scm 21 + ]; 17 22 18 23 patches = [ ./permissions.patch ]; 19 24
-54
pkgs/development/python-modules/asyncio-nats-client/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , ed25519 4 - , fetchFromGitHub 5 - , nats-server 6 - , pytestCheckHook 7 - , pythonOlder 8 - , uvloop 9 - }: 10 - 11 - buildPythonPackage rec { 12 - pname = "asyncio-nats-client"; 13 - version = "0.11.5"; 14 - disabled = pythonOlder "3.6"; 15 - 16 - src = fetchFromGitHub { 17 - owner = "nats-io"; 18 - repo = "nats.py"; 19 - rev = "v${version}"; 20 - sha256 = "0zwiijaswmfdk71diqmdpb6nx54fmgi8hy0vwx2m3ihhsyjxj82h"; 21 - }; 22 - 23 - propagatedBuildInputs = [ 24 - ed25519 25 - ]; 26 - 27 - checkInputs = [ 28 - nats-server 29 - pytestCheckHook 30 - uvloop 31 - ]; 32 - 33 - postPatch = '' 34 - substituteInPlace setup.cfg \ 35 - --replace "--cov=nats --cov-report html" "" 36 - ''; 37 - 38 - disabledTests = [ 39 - # RuntimeError: Event loop is closed 40 - "test_subscribe_no_echo" 41 - "test_reconnect_to_new_server_with_auth" 42 - "test_drain_connection" 43 - "test_discover_servers_on_first_connect" 44 - ]; 45 - 46 - pythonImportsCheck = [ "nats.aio" ]; 47 - 48 - meta = with lib; { 49 - description = "Python client for NATS.io"; 50 - homepage = "https://github.com/nats-io/nats.py"; 51 - license = with licenses; [ asl20 ]; 52 - maintainers = with maintainers; [ fab ]; 53 - }; 54 - }
+18 -4
pkgs/development/python-modules/atlassian-python-api/default.nix
··· 7 7 , requests_oauthlib 8 8 , six 9 9 , pytestCheckHook 10 + , pythonOlder 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "atlassian-python-api"; 14 - version = "3.18.1"; 15 + version = "3.19.0"; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.7"; 15 19 16 20 src = fetchFromGitHub { 17 21 owner = "atlassian-api"; 18 22 repo = pname; 19 23 rev = version; 20 - sha256 = "09xvkbdfhkrdkn8axb6bhi7p12lm2z1z84rx1wksfw9mffqk90v9"; 24 + sha256 = "sha256-SJsqk8TM+5UztN1ZDyYrOjNIWDLhm5XtLxPflIGPxKQ="; 21 25 }; 22 26 27 + propagatedBuildInputs = [ 28 + deprecated 29 + oauthlib 30 + requests 31 + requests_oauthlib 32 + six 33 + ]; 34 + 23 35 checkInputs = [ 24 36 pytestCheckHook 25 37 ]; 26 38 27 - propagatedBuildInputs = [ deprecated oauthlib requests requests_oauthlib six ]; 39 + pythonImportsCheck = [ 40 + "atlassian" 41 + ]; 28 42 29 43 meta = with lib; { 30 44 description = "Python Atlassian REST API Wrapper"; 31 45 homepage = "https://github.com/atlassian-api/atlassian-python-api"; 32 46 license = licenses.asl20; 33 - maintainers = [ maintainers.arnoldfarkas ]; 47 + maintainers = with maintainers; [ arnoldfarkas ]; 34 48 }; 35 49 }
+2 -2
pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-mgmt-iothubprovisioningservices"; 13 - version = "1.0.0"; 13 + version = "1.1.0"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 17 extension = "zip"; 18 - sha256 = "e5871b03488b5ae6dfc441cdbda40cb39c000635ee57c513053792b3c15826a9"; 18 + sha256 = "sha256-04OoJuff93L62G6IozpmHpEaUbHHHD6nKlkMHVoJvJ4="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+4 -2
pkgs/development/python-modules/boost-histogram/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, isPy3k, boost, numpy, pytestCheckHook, pytest-benchmark }: 1 + { lib, fetchPypi, buildPythonPackage, isPy3k, boost, numpy, pytestCheckHook, pytest-benchmark, setuptools-scm }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "boost-histogram"; ··· 11 11 sha256 = "a27842b2f1cfecc509382da2b25b03056354696482b38ec3c0220af0fc9b7579"; 12 12 }; 13 13 14 + nativeBuildInputs = [ setuptools-scm ]; 15 + 14 16 buildInputs = [ boost ]; 17 + 15 18 propagatedBuildInputs = [ numpy ]; 16 19 17 20 checkInputs = [ pytestCheckHook pytest-benchmark ]; ··· 20 23 description = "Python bindings for the C++14 Boost::Histogram library"; 21 24 homepage = "https://github.com/scikit-hep/boost-histogram"; 22 25 license = licenses.bsd3; 23 - platforms = platforms.unix; 24 26 maintainers = with maintainers; [ veprbl ]; 25 27 }; 26 28 }
+8 -7
pkgs/development/python-modules/cartopy/default.nix
··· 1 1 { buildPythonPackage, lib, fetchPypi 2 2 , pytestCheckHook, filelock, mock, pep8 3 - , cython 3 + , cython, setuptools-scm 4 4 , six, pyshp, shapely, geos, numpy 5 5 , gdal, pillow, matplotlib, pyepsg, pykdtree, scipy, owslib, fiona 6 6 , proj, flufl_lock ··· 23 23 --replace "test_epsg(" "dont_test_epsg(" 24 24 ''; 25 25 26 + nativeBuildInputs = [ 27 + cython 28 + geos # for geos-config 29 + proj 30 + setuptools-scm 31 + ]; 32 + 26 33 buildInputs = [ 27 34 geos proj 28 35 ]; ··· 46 53 "test_nightshade_image" 47 54 "background_img" 48 55 "test_gridliner_labels_bbox_style" 49 - ]; 50 - 51 - nativeBuildInputs = [ 52 - cython 53 - geos # for geos-config 54 - proj 55 56 ]; 56 57 57 58 meta = with lib; {
+4 -1
pkgs/development/python-modules/casa-formats-io/default.nix
··· 4 4 , astropy 5 5 , dask 6 6 , numpy 7 + , setuptools-scm 7 8 }: 8 9 9 10 buildPythonPackage rec { ··· 15 16 inherit pname version; 16 17 sha256 = "16rypj65wdfxxrilxfhbk563lxv86if4vvs9zfq3f8bkzdr8xl9s"; 17 18 }; 19 + 20 + nativeBuildInputs = [ setuptools-scm ]; 18 21 19 22 propagatedBuildInputs = [ astropy dask numpy ]; 20 23 ··· 25 28 26 29 meta = { 27 30 description = "Dask-based reader for CASA data"; 28 - homepage = "http://radio-astro-tools.github.io"; 31 + homepage = "https://casa-formats-io.readthedocs.io/"; 29 32 license = lib.licenses.lgpl2Only; 30 33 maintainers = with lib.maintainers; [ smaret ]; 31 34 };
+2 -2
pkgs/development/python-modules/cdcs/default.nix
··· 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 - version = "0.1.5"; 12 + version = "0.1.6"; 13 13 pname = "cdcs"; 14 14 format = "setuptools"; 15 15 ··· 19 19 owner = "usnistgov"; 20 20 repo = "pycdcs"; 21 21 rev = "v${version}"; 22 - sha256 = "0sd0s0mka2bvpxxiz98cjc2h5ncsb7d03af1q3w9w8pmvfsgj7pc"; 22 + sha256 = "sha256-w9CBNOK9oXTIUa+SsnepRN0wAz7WPZGfUNDSbtVn1L8="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+14 -1
pkgs/development/python-modules/click-configfile/default.nix
··· 4 4 , click 5 5 , six 6 6 , pytestCheckHook 7 + , pythonOlder 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "click-configfile"; 11 12 version = "0.2.3"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 12 16 13 17 src = fetchPypi { 14 18 inherit pname version; 15 - sha256 = "lb7sE77pUOmPQ8gdzavvT2RAkVWepmKY+drfWTUdkNE="; 19 + hash = "sha256-lb7sE77pUOmPQ8gdzavvT2RAkVWepmKY+drfWTUdkNE="; 16 20 }; 17 21 18 22 propagatedBuildInputs = [ ··· 22 26 23 27 checkInputs = [ 24 28 pytestCheckHook 29 + ]; 30 + 31 + postPatch = '' 32 + substituteInPlace setup.py \ 33 + --replace "install_requires=install_requires," 'install_requires=["click >= 6.6", "six >= 1.10"],' 34 + ''; 35 + 36 + pythonImportsCheck = [ 37 + "click_configfile" 25 38 ]; 26 39 27 40 disabledTests = [
+2 -2
pkgs/development/python-modules/cocotb/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "cocotb"; 15 - version = "1.6.1"; 15 + version = "1.6.2"; 16 16 17 17 # - we need to use the tarball from PyPi 18 18 # or the full git checkout (with .git) ··· 20 20 # because it does not include required metadata 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - sha256 = "b644a15ea1e62c55041176468976541cba30a8a5e99a5e9a2c07ee595c2b4e95"; 23 + sha256 = "sha256-SY+1727DbWMg6CnmHw8k/VP0dwBRYszn+YyyvZXgvUs="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ setuptools-scm ];
+17 -6
pkgs/development/python-modules/csvw/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pythonAtLeast 4 5 , pythonOlder 5 6 , attrs 6 7 , isodate 7 8 , python-dateutil 8 9 , rfc3986 9 10 , uritemplate 10 - , mock 11 11 , pytestCheckHook 12 12 , pytest-mock 13 13 }: ··· 15 15 buildPythonPackage rec { 16 16 pname = "csvw"; 17 17 version = "1.11.0"; 18 + format = "setuptools"; 19 + 18 20 disabled = pythonOlder "3.6"; 19 21 20 22 src = fetchFromGitHub { ··· 24 26 sha256 = "1393xwqawaxsflbq62vks92vv4zch8p6dd1mdvdi7j4vvf0zljkg"; 25 27 }; 26 28 27 - patchPhase = '' 28 - substituteInPlace setup.cfg --replace "--cov" "" 29 - ''; 30 - 31 29 propagatedBuildInputs = [ 32 30 attrs 33 31 isodate ··· 37 35 ]; 38 36 39 37 checkInputs = [ 40 - mock 41 38 pytestCheckHook 42 39 pytest-mock 43 40 ]; 44 41 42 + patchPhase = '' 43 + substituteInPlace setup.cfg \ 44 + --replace "--cov" "" 45 + ''; 46 + 45 47 disabledTests = [ 46 48 # this test is flaky on darwin because it depends on the resolution of filesystem mtimes 47 49 # https://github.com/cldf/csvw/blob/45584ad63ff3002a9b3a8073607c1847c5cbac58/tests/test_db.py#L257 48 50 "test_write_file_exists" 51 + ] ++ lib.optionals (pythonAtLeast "3.10") [ 52 + # https://github.com/cldf/csvw/issues/58 53 + "test_roundtrip_escapechar" 54 + "test_escapequote_escapecharquotechar_final" 55 + "test_doubleQuote" 56 + ]; 57 + 58 + pythonImportsCheck = [ 59 + "csvw" 49 60 ]; 50 61 51 62 meta = with lib; {
+2 -2
pkgs/development/python-modules/deep-translator/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "deep-translator"; 5 - version = "1.6.1"; 5 + version = "1.7.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "2611c54209b234730f3e5e6481cb875e120e49d9ec1a27a1fa89850150485975"; 9 + sha256 = "sha256-k4RhUZN/aC9D1NKkmCGZGZNU9In577RobBnDagMYHbo="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/deezer-python/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "deezer-python"; 16 - version = "5.1.0"; 16 + version = "5.1.1"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.6"; ··· 22 22 owner = "browniebroke"; 23 23 repo = pname; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-hBZBbREPxfAkGf2KRZtO3BpscFGlYiecQjM5l1/Edo0="; 25 + sha256 = "sha256-gzavZ6/8k/JfcOlwWuMV+4AQxbkfWWgbBrHNcnuU51E="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+7 -7
pkgs/development/python-modules/devolo-home-control-api/default.nix
··· 5 5 , pytestCheckHook 6 6 , pythonOlder 7 7 , requests 8 + , setuptools-scm 8 9 , websocket-client 9 10 , zeroconf 10 11 }: ··· 20 21 rev = "v${version}"; 21 22 sha256 = "sha256-N/48Q2IEL194vCzrPPuy+mRNejXfkoXy2t2oe0Y6ug4="; 22 23 }; 24 + 25 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 26 + 27 + nativeBuildInputs = [ 28 + setuptools-scm 29 + ]; 23 30 24 31 propagatedBuildInputs = [ 25 32 requests ··· 31 38 pytestCheckHook 32 39 pytest-mock 33 40 ]; 34 - 35 - postPatch = '' 36 - # setup.py is not able to detect the version with setuptools_scm 37 - substituteInPlace setup.py \ 38 - --replace "setuptools_scm" "" \ 39 - --replace 'use_scm_version=True' 'use_scm_version="${version}"' 40 - ''; 41 41 42 42 # Disable test that requires network access 43 43 disabledTests = [
+8 -2
pkgs/development/python-modules/django-auth-ldap/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi, isPy27 4 - , ldap , django 3 + , fetchPypi 4 + , isPy27 5 + , ldap 6 + , django 5 7 , mock 8 + , setuptools-scm 6 9 }: 7 10 8 11 buildPythonPackage rec { ··· 14 17 sha256 = "276f79e624ce083ce13f161387f65ff1c0efe83ef8a42f2b9830d43317b15239"; 15 18 }; 16 19 20 + nativeBuildInputs = [ setuptools-scm ]; 21 + 17 22 propagatedBuildInputs = [ ldap django ]; 23 + 18 24 checkInputs = [ mock ]; 19 25 20 26 # django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings
+107
pkgs/development/python-modules/django/4.nix
··· 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchPypi 5 + , pythonOlder 6 + , substituteAll 7 + 8 + # patched in 9 + , geos 10 + , gdal 11 + , withGdal ? false 12 + 13 + # propagated 14 + , asgiref 15 + , backports-zoneinfo 16 + , sqlparse 17 + 18 + # tests 19 + , aiosmtpd 20 + , argon2_cffi 21 + , bcrypt 22 + , docutils 23 + , geoip2 24 + , jinja2 25 + , memcached 26 + , numpy 27 + , pillow 28 + , pylibmc 29 + , pymemcache 30 + , python 31 + , pytz 32 + , pywatchman 33 + , pyyaml 34 + , redis 35 + , selenium 36 + , tblib 37 + , tzdata 38 + }: 39 + 40 + buildPythonPackage rec { 41 + pname = "Django"; 42 + version = "4.0.2"; 43 + format = "pyproject"; 44 + 45 + disabled = pythonOlder "3.8"; 46 + 47 + src = fetchPypi { 48 + inherit pname version; 49 + hash = "sha256-EQ+1j7Euylngcq1Z/ELXcc1kLdei8kFlgqqdp6jvlUo="; 50 + }; 51 + 52 + patches = lib.optional withGdal 53 + (substituteAll { 54 + src = ./django_4_set_geos_gdal_lib.patch; 55 + geos = geos; 56 + gdal = gdal; 57 + extension = stdenv.hostPlatform.extensions.sharedLibrary; 58 + }); 59 + 60 + propagatedBuildInputs = [ 61 + asgiref 62 + sqlparse 63 + ] ++ lib.optionals (pythonOlder "3.9") [ 64 + backports-zoneinfo 65 + ]; 66 + 67 + # Fails to import asgiref in ~200 tests 68 + # ModuleNotFoundError: No module named 'asgiref' 69 + doCheck = false; 70 + 71 + checkInputs = [ 72 + aiosmtpd 73 + argon2_cffi 74 + asgiref 75 + bcrypt 76 + docutils 77 + geoip2 78 + jinja2 79 + memcached 80 + numpy 81 + pillow 82 + pylibmc 83 + pymemcache 84 + pytz 85 + pywatchman 86 + pyyaml 87 + redis 88 + selenium 89 + tblib 90 + tzdata 91 + ]; 92 + 93 + checkPhase = '' 94 + runHook preCheck 95 + 96 + ${python.interpreter} tests/runtests.py 97 + 98 + runHook postCheck 99 + ''; 100 + 101 + meta = with lib; { 102 + description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design."; 103 + homepage = "https://www.djangoproject.com"; 104 + license = licenses.bsd3; 105 + maintainers = with maintainers; [ hexa ]; 106 + }; 107 + }
+26
pkgs/development/python-modules/django/django_4_set_geos_gdal_lib.patch
··· 1 + diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py 2 + index 05b5732..91fafee 100644 3 + --- a/django/contrib/gis/gdal/libgdal.py 4 + +++ b/django/contrib/gis/gdal/libgdal.py 5 + @@ -14,7 +14,7 @@ try: 6 + from django.conf import settings 7 + lib_path = settings.GDAL_LIBRARY_PATH 8 + except (AttributeError, ImportError, ImproperlyConfigured, OSError): 9 + - lib_path = None 10 + + lib_path = ""@gdal@/lib/libgdal@extension@" 11 + 12 + if lib_path: 13 + lib_names = None 14 + diff --git a/django/contrib/gis/geos/libgeos.py b/django/contrib/gis/geos/libgeos.py 15 + index 2cdb5d3..fac2d04 100644 16 + --- a/django/contrib/gis/geos/libgeos.py 17 + +++ b/django/contrib/gis/geos/libgeos.py 18 + @@ -24,7 +24,7 @@ def load_geos(): 19 + from django.conf import settings 20 + lib_path = settings.GEOS_LIBRARY_PATH 21 + except (AttributeError, ImportError, ImproperlyConfigured, OSError): 22 + - lib_path = None 23 + + lib_path = "@geos@/lib/libgeos_c@extension@" 24 + 25 + # Setting the appropriate names for the GEOS-C library. 26 + if lib_path:
+5
pkgs/development/python-modules/doc8/default.nix
··· 8 8 , pytestCheckHook 9 9 , pythonOlder 10 10 , restructuredtext_lint 11 + , setuptools-scm 11 12 , stevedore 12 13 }: 13 14 ··· 22 23 inherit pname version; 23 24 sha256 = "376e50f4e70a1ae935416ddfcf93db35dd5d4cc0e557f2ec72f0667d0ace4548"; 24 25 }; 26 + 27 + nativeBuildInputs = [ 28 + setuptools-scm 29 + ]; 25 30 26 31 buildInputs = [ 27 32 pbr
+5
pkgs/development/python-modules/drms/default.nix
··· 8 8 , pytestCheckHook 9 9 , pytest-doctestplus 10 10 , pythonOlder 11 + , setuptools-scm 11 12 }: 12 13 13 14 buildPythonPackage rec { ··· 20 21 inherit pname version; 21 22 sha256 = "sha256-Id8rPK8qq71gHn5DKnEi7Lp081GFbcFtGU+v89Vlt9o="; 22 23 }; 24 + 25 + nativeBuildInputs = [ 26 + setuptools-scm 27 + ]; 23 28 24 29 propagatedBuildInputs = [ 25 30 numpy
+5
pkgs/development/python-modules/fastnumbers/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fastnumbers 4 5 , fetchFromGitHub ··· 25 26 propagatedBuildInputs = [ 26 27 typing-extensions 27 28 ]; 29 + 30 + # Tests fail due to numeric precision differences on ARM 31 + # See https://github.com/SethMMorton/fastnumbers/issues/28 32 + doCheck = !(stdenv.isAarch64 || stdenv.isAarch32); 28 33 29 34 checkInputs = [ 30 35 hypothesis
+2 -2
pkgs/development/python-modules/fiona/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "fiona"; 9 - version = "1.8.20"; 9 + version = "1.8.21"; 10 10 11 11 src = fetchPypi { 12 12 pname = "Fiona"; 13 13 inherit version; 14 - sha256 = "a70502d2857b82f749c09cb0dea3726787747933a2a1599b5ab787d74e3c143b"; 14 + sha256 = "sha256-Og7coqegcNtAXXEYchSkPSMzpXtAl1RKP8woIGali/w="; 15 15 }; 16 16 17 17 CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";
+33 -17
pkgs/development/python-modules/flowlogs_reader/default.nix
··· 1 1 { lib 2 + , boto3 3 + , botocore 2 4 , buildPythonPackage 3 - , fetchPypi 4 - , isPy27 5 - , botocore 6 - , boto3 7 - , docutils 8 - , unittest2 9 - , mock 5 + , fetchFromGitHub 6 + , parquet 7 + , pytestCheckHook 8 + , python-dateutil 9 + , pythonOlder 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 - pname = "flowlogs_reader"; 14 - version = "3.1.0"; 15 - disabled = isPy27; 13 + pname = "flowlogs-reader"; 14 + version = "3.2.0"; 15 + format = "setuptools"; 16 16 17 - src = fetchPypi { 18 - inherit pname version; 19 - sha256 = "d99636423abc83bb4042d63edd56852ede9e2949cadcc3339eda8f3367826dd4"; 17 + disabled = pythonOlder "3.6"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "obsrvbl"; 21 + repo = pname; 22 + # https://github.com/obsrvbl/flowlogs-reader/issues/57 23 + rev = "fac4c6c63348ff67fd0a8f51d391ba7c9f59e5ed"; 24 + hash = "sha256-bGb2CLp33aIr0R/lBPWAF3CbtVTWpqmcvYgZ6bcARTc="; 20 25 }; 21 26 22 - propagatedBuildInputs = [ botocore boto3 docutils ]; 23 - buildInputs = [ unittest2 mock ]; 27 + propagatedBuildInputs = [ 28 + botocore 29 + boto3 30 + parquet 31 + python-dateutil 32 + ]; 33 + 34 + checkInputs = [ 35 + pytestCheckHook 36 + ]; 37 + 38 + pythonImportsCheck = [ 39 + "flowlogs_reader" 40 + ]; 24 41 25 42 meta = with lib; { 26 43 description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier"; 27 44 homepage = "https://github.com/obsrvbl/flowlogs-reader"; 28 - maintainers = with maintainers; [ cransom ]; 29 45 license = licenses.asl20; 46 + maintainers = with maintainers; [ cransom ]; 30 47 }; 31 - 32 48 }
+2 -2
pkgs/development/python-modules/flux-led/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "flux-led"; 11 - version = "0.28.21"; 11 + version = "0.28.22"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; ··· 17 17 owner = "Danielhiversen"; 18 18 repo = "flux_led"; 19 19 rev = version; 20 - sha256 = "sha256-Vt+vlJlOznGShPUUQUt4zL9ht52TvNWbRRO9v9C0cqg="; 20 + sha256 = "sha256-GNuc8WAiC0S4WFFUYgayU6c0treWCPfPhbyteZ68eWs="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2
pkgs/development/python-modules/forecast-solar/default.nix
··· 18 18 sha256 = "sha256-UrLy+j8YDWuS9pciEDKb/+UoCcw54XWiIUAEYC72/W0="; 19 19 }; 20 20 21 + PACKAGE_VERSION = version; 22 + 21 23 propagatedBuildInputs = [ 22 24 aiodns 23 25 aiohttp
+6 -1
pkgs/development/python-modules/garages-amsterdam/default.nix
··· 19 19 sha256 = "16f2742r9p3mrg2nz8lnkgsxabbjga2qnp9vzq59026q6mmfwkm9"; 20 20 }; 21 21 22 + postPatch = '' 23 + substituteInPlace pyproject.toml \ 24 + --replace '"0.0.0"' '"${version}"' 25 + ''; 26 + 22 27 nativeBuildInputs = [ 23 28 poetry-core 24 29 ]; ··· 34 39 35 40 meta = with lib; { 36 41 description = "Python client for getting garage occupancy in Amsterdam"; 37 - homepage = "https://github.com/klaasnicolaas/garages_amsterdam"; 42 + homepage = "https://github.com/klaasnicolaas/python-garages-amsterdam"; 38 43 license = licenses.mit; 39 44 maintainers = with maintainers; [ fab ]; 40 45 };
+2 -2
pkgs/development/python-modules/google-cloud-bigtable/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-cloud-bigtable"; 15 - version = "2.4.0"; 15 + version = "2.5.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "b8472c91b05159f20121fcca6ebdc2a3b5648d68158ec747860914279b6b983b"; 19 + sha256 = "sha256-R7HGbURhqOxPXUlKN3+mk5+qP6Em5HmxBAa7LHsjJJk="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-spanner"; 17 - version = "3.12.1"; 17 + version = "3.13.0"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "98e53298a7c79f0af351c80e6fc0b57bc735afdec764424e459179ef04f5a40f"; 21 + sha256 = "sha256-Y+MA7Nlx3+8eaBptI6eZgSPGc4MvxSrA9YA+K+VSblw="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-resumable-media/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "google-resumable-media"; 15 - version = "2.1.0"; 15 + version = "2.2.0"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "725b989e0dd387ef2703d1cc8e86217474217f4549593c477fd94f4024a0f911"; 19 + sha256 = "sha256-nzDOf80TuO8Vmyy5WD1Km7mef3uFgWsRIFmwMvLwhKA="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ google-auth google-crc32c requests ];
+16 -4
pkgs/development/python-modules/graphene/default.nix
··· 1 1 { lib 2 + , aniso8601 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 - , aniso8601 5 5 , graphql-core 6 6 , graphql-relay 7 7 , promise 8 - , pytestCheckHook 9 8 , pytest-asyncio 10 9 , pytest-benchmark 11 10 , pytest-mock 11 + , pytestCheckHook 12 + , pythonAtLeast 13 + , pythonOlder 12 14 , pytz 13 15 , snapshottest 14 16 }: ··· 16 18 buildPythonPackage rec { 17 19 pname = "graphene"; 18 20 version = "3.0.0"; 21 + format = "setuptools"; 22 + 23 + disabled = pythonOlder "3.7"; 19 24 20 25 src = fetchFromGitHub { 21 26 owner = "graphql-python"; ··· 40 45 snapshottest 41 46 ]; 42 47 43 - pytestFlagsArray = [ "--benchmark-disable" ]; 48 + pytestFlagsArray = [ 49 + "--benchmark-disable" 50 + ]; 44 51 45 52 disabledTests = [ 46 53 # Expects different Exeception classes, but receives none of them 47 54 # https://github.com/graphql-python/graphene/issues/1346 48 55 "test_unexpected_error" 56 + ] ++ lib.optionals (pythonAtLeast "3.10") [ 57 + "test_objecttype_as_container_extra_args" 58 + "test_objecttype_as_container_invalid_kwargs" 49 59 ]; 50 60 51 - pythonImportsCheck = [ "graphene" ]; 61 + pythonImportsCheck = [ 62 + "graphene" 63 + ]; 52 64 53 65 meta = with lib; { 54 66 description = "GraphQL Framework for Python";
+6
pkgs/development/python-modules/greeclimate/default.nix
··· 22 22 hash = "sha256-Y8IgqrU8zzV020qwyyb57Tp2j7laQ3JsCOCYBuf8vsQ="; 23 23 }; 24 24 25 + postPatch = '' 26 + # upstream issue for proper solution https://github.com/cmroche/greeclimate/issues/46 27 + substituteInPlace setup.py \ 28 + --replace 'name="greeclimate",' 'name="greeclimate",version="${version}",' 29 + ''; 30 + 25 31 propagatedBuildInputs = [ 26 32 netifaces 27 33 pycryptodome
+2 -2
pkgs/development/python-modules/heatzypy/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "heatzypy"; 12 - version = "2.0.1"; 12 + version = "2.0.2"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 18 18 owner = "Cyr-ius"; 19 19 repo = pname; 20 20 rev = version; 21 - sha256 = "sha256-PnDsgTfr2F/fgbONP2qvuPhbw3X50AqriEmsFFjll2Y="; 21 + sha256 = "sha256-VdvgrTZLFTtOu34lWxoPkHAI6Z2Me1/3xauQxzIBJNs="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -1
pkgs/development/python-modules/hwi/default.nix
··· 39 39 postPatch = '' 40 40 substituteInPlace setup.py \ 41 41 --replace 'libusb1>=1.7,<2.0' 'libusb1>=1.7' \ 42 - --replace "'python_requires': '>=3.6,<3.10'," "'python_requires': '>=3.6,<4'," 42 + --replace "'python_requires': '>=3.6,<3.10'," "'python_requires': '>=3.6,<4'," \ 43 + --replace 'typing-extensions>=3.7,<4.0' 'typing-extensions>=3.7' 43 44 ''; 44 45 45 46 # tests require to clone quite a few firmwares
+2 -2
pkgs/development/python-modules/ipyvuetify/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "ipyvuetify"; 10 - version = "1.8.1"; 10 + version = "1.8.2"; 11 11 12 12 # GitHub version tries to run npm (Node JS) 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "2d17367ce7da45a2622107d55c8b4c5475aace99ed5d95e5d7d3f93aa4c0c566"; 15 + sha256 = "sha256-uFjS7lv8kDRultRqqu2++1eieLs67dLolVurTXWls8A="; 16 16 }; 17 17 18 18 propagatedBuildInputs = [ ipyvue ];
+2 -2
pkgs/development/python-modules/librosa/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "librosa"; 17 - version = "0.8.1"; 17 + version = "0.9.0"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "c53d05e768ae4a3e553ae21c2e5015293e5efbfd5c12d497f1104cb519cca6b3"; 21 + sha256 = "sha256-zSFnXTuYWPjRs7FDKzYONoFFvtN4B+HxOwcRqozTkP0="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [ joblib matplotlib six scikit-learn decorator audioread resampy soundfile pooch ];
+6 -1
pkgs/development/python-modules/mat2/default.nix
··· 47 47 ./executable-name.patch 48 48 # hardcode path to mat2 executable 49 49 ./tests.patch 50 + # fix gobject-introspection typelib path for Nautilus extension 51 + (substituteAll { 52 + src = ./fix_poppler.patch; 53 + poppler_path = "${poppler_gi}/lib/girepository-1.0"; 54 + }) 50 55 ]; 51 56 52 57 postPatch = '' ··· 76 81 install -Dm 444 data/mat2.svg -t "$out/share/icons/hicolor/scalable/apps" 77 82 install -Dm 444 doc/mat2.1 -t "$out/share/man/man1" 78 83 install -Dm 444 nautilus/mat2.py -t "$out/share/nautilus-python/extensions" 79 - buildPythonPath "$out $pythonPath" 84 + buildPythonPath "$out $pythonPath $propagatedBuildInputs" 80 85 patchPythonScript "$out/share/nautilus-python/extensions/mat2.py" 81 86 '' + lib.optionalString dolphinIntegration '' 82 87 install -Dm 444 dolphin/mat2.desktop -t "$out/share/kservices5/ServiceMenus"
+14
pkgs/development/python-modules/mat2/fix_poppler.patch
··· 1 + diff --git a/nautilus/mat2.py b/nautilus/mat2.py 2 + index 11e6986..5a0e68f 100644 3 + --- a/nautilus/mat2.py 4 + +++ b/nautilus/mat2.py 5 + @@ -22,6 +22,9 @@ import gi 6 + gi.require_version('Nautilus', '3.0') 7 + gi.require_version('Gtk', '3.0') 8 + gi.require_version('GdkPixbuf', '2.0') 9 + +gi.require_version('GIRepository', '2.0') 10 + +from gi.repository import GIRepository 11 + +GIRepository.Repository.prepend_search_path('@poppler_path@') 12 + from gi.repository import Nautilus, GObject, Gtk, Gio, GLib, GdkPixbuf 13 + 14 + from libmat2 import parser_factory
+6
pkgs/development/python-modules/moonraker-api/default.nix
··· 21 21 sha256 = "1hhm3jnl9qm44y4k927fzw1n32c3551kgsk7i57qw25nca9x3k61"; 22 22 }; 23 23 24 + postPatch = '' 25 + # see comment on https://github.com/cmroche/moonraker-api/commit/e5ca8ab60d2839e150a81182fbe65255d84b4e4e 26 + substituteInPlace setup.py \ 27 + --replace 'name="moonraker-api",' 'name="moonraker-api",version="${version}",' 28 + ''; 29 + 24 30 propagatedBuildInputs = [ 25 31 aiohttp 26 32 ];
+2 -2
pkgs/development/python-modules/motionblinds/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "motionblinds"; 10 - version = "0.5.10"; 10 + version = "0.5.11"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 16 16 owner = "starkillerOG"; 17 17 repo = "motion-blinds"; 18 18 rev = version; 19 - sha256 = "0zz5ardnik370pdfpl77m0hln8rj7ikkvrkyc6fm0vd0w12sihmm"; 19 + sha256 = "sha256-XvxEYOIYjr1NcviyQ6N8xHPCnUO+IgMKFsiRa5YnLDM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+27 -13
pkgs/development/python-modules/nagiosplugin/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , twine 3 + , fetchPypi 4 4 , numpy 5 - , pytest 6 - , fetchPypi 5 + , pytestCheckHook 6 + , pythonOlder 7 + , twine 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "nagiosplugin"; 11 - version = "1.3.2"; 12 + version = "1.3.3"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 12 16 13 17 src = fetchPypi { 14 18 inherit pname version; 15 - sha256 = "1vr3zy0zfvbrqc4nf81zxv4gs2q82sv5sjamdm4573ld529mk2nv"; 19 + hash = "sha256-vOr67DWfAyOT3dVgrizI0WNhODPsY8k85xifhZBOU9Y="; 16 20 }; 17 21 18 - nativeBuildInputs = [ twine ]; 19 - checkInputs = [ pytest numpy ]; 22 + nativeBuildInputs = [ 23 + twine 24 + ]; 20 25 21 - checkPhase = '' 22 - # this test relies on who, which does not work in the sandbox 23 - pytest -k "not test_check_users" tests/ 24 - ''; 26 + checkInputs = [ 27 + numpy 28 + pytestCheckHook 29 + ]; 30 + 31 + disabledTests = [ 32 + # Test relies on who, which does not work in the sandbox 33 + "test_check_users" 34 + ]; 35 + 36 + pythonImportsCheck = [ 37 + "nagiosplugin" 38 + ]; 25 39 26 40 meta = with lib; { 27 - description = "A Python class library which helps with writing Nagios (Icinga) compatible plugins"; 28 - homepage = "https://github.com/mpounsett/nagiosplugin"; 41 + description = "Python class library which helps with writing Nagios (Icinga) compatible plugins"; 42 + homepage = "https://github.com/mpounsett/nagiosplugin"; 29 43 license = licenses.zpl21; 30 44 maintainers = with maintainers; [ symphorien ]; 31 45 };
+68
pkgs/development/python-modules/nats-py/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , ed25519 4 + , fetchFromGitHub 5 + , nats-server 6 + , pytestCheckHook 7 + , pythonOlder 8 + , uvloop 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "nats-py"; 13 + version = "2.0.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "nats-io"; 20 + repo = "nats.py"; 21 + rev = "v${version}"; 22 + hash = "sha256-BraT30J7OIcW2NXAwjcg9PYu+kgf8f1iDjKiN9J6l7Y="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + ed25519 27 + ]; 28 + 29 + checkInputs = [ 30 + nats-server 31 + pytestCheckHook 32 + uvloop 33 + ]; 34 + 35 + postPatch = '' 36 + substituteInPlace setup.cfg \ 37 + --replace "--cov=nats --cov-report html" "" 38 + ''; 39 + 40 + disabledTests = [ 41 + # RuntimeError: Event loop is closed 42 + "test_subscribe_no_echo" 43 + "test_publish" 44 + "test_publish_verbose" 45 + "test_fetch_max_waiting_fetch_one" 46 + "test_fetch_n" 47 + "test_consumer_management" 48 + "test_ephemeral_subscribe" 49 + "test_queue_subscribe_deliver_group" 50 + "test_subscribe_push_bound" 51 + "test_double_acking_subscribe" 52 + "test_flow_control" 53 + "test_ordered_consumer" 54 + "test_ordered_consumer_single_loss" 55 + "test_kv_simple" 56 + ]; 57 + 58 + pythonImportsCheck = [ 59 + "nats" 60 + ]; 61 + 62 + meta = with lib; { 63 + description = "Python client for NATS.io"; 64 + homepage = "https://github.com/nats-io/nats.py"; 65 + license = with licenses; [ asl20 ]; 66 + maintainers = with maintainers; [ fab ]; 67 + }; 68 + }
+2 -2
pkgs/development/python-modules/od/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "od"; 5 - version = "2.0.1"; 5 + version = "2.0.2"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "180fb0d13c3af1384047b8296c95683816b5d0c68a60c22d07c703be8bd755cb"; 9 + sha256 = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk="; 10 10 }; 11 11 12 12 # repeated_test no longer exists in nixpkgs
+8 -7
pkgs/development/python-modules/opensimplex/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , nose 4 + , numpy 5 + , pytestCheckHook 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "opensimplex"; 9 - version = "0.4"; 10 + version = "0.4.2"; 10 11 11 12 src = fetchFromGitHub { 12 13 owner = "lmas"; 13 14 repo = pname; 14 15 rev = "v${version}"; 15 - sha256 = "0djc50v3hcay04a3i2g9qpviniyx98rkxsc6gmmrz2fyxsa5z5ya"; 16 + sha256 = "zljS0yu3cHF2Vz3rFkwLXiHnKjo970MDIrC/56FoHa4="; 16 17 }; 17 18 18 - checkInputs = [ nose ]; 19 - checkPhase = '' 20 - nosetests tests/ 21 - ''; 19 + propagatedBuildInputs = [ numpy ]; 20 + 21 + checkInputs = [ pytestCheckHook ]; 22 + pytestFlagsArray = [ "tests/test_opensimplex.py" ]; 22 23 pythonImportsCheck = [ "opensimplex" ]; 23 24 24 25 meta = with lib; {
+2 -2
pkgs/development/python-modules/packageurl-python/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "packageurl-python"; 5 - version = "0.9.6"; 5 + version = "0.9.7"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "c01fbaf62ad2eb791e97158d1f30349e830bee2dd3e9503a87f6c3ffae8d1cf0"; 9 + sha256 = "sha256-1D22r2o1AJnjLp4F5zcBPQQJKHt2H6WcWKA+VdvDZIo="; 10 10 }; 11 11 12 12 checkInputs = [ pytestCheckHook ];
+9 -5
pkgs/development/python-modules/pijuice/default.nix
··· 14 14 src = fetchFromGitHub { 15 15 owner = "PiSupply"; 16 16 repo = "PiJuice"; 17 - # rev hash retrieved from the latest modification on file Software/Source/VERSION, as this project 18 - # does not use Github tags facility 19 - rev = "3ba6719ab614a3dc7495d5d9c900dd4ea977c7e3"; 20 - sha256 = "GoNN07YgVaktpeY5iYDbfpy5fxkU1x0V3Sb1hgGAQt4="; 17 + # Latest commit that fixes using the library against python 3.9 by renaming 18 + # isAlive() to is_alive(). The former function was removed in python 3.9. 19 + rev = "e2dca1f8dcfa12e009952a882c0674a545d193d6"; 20 + sha256 = "07Jr7RSjqI8j0tT0MNAjrN1sjF1+mI+V0vtKInvtxj8="; 21 21 }; 22 22 23 23 patches = [ ··· 28 28 ]; 29 29 30 30 PIJUICE_BUILD_BASE = 1; 31 + PIJUICE_VERSION = version; 31 32 32 33 preBuild = '' 33 34 cd Software/Source ··· 50 51 rm $out/bin/pijuice_sys.py 51 52 rm $out/bin/pijuiceboot 52 53 mv $out/bin/pijuice_cli.py $out/bin/pijuice_cli 53 - ''; 54 + ''; 55 + 56 + # no tests 57 + doCheck = false; 54 58 55 59 meta = with lib; { 56 60 description = "Library and resources for PiJuice HAT for Raspberry Pi";
+2 -2
pkgs/development/python-modules/plexapi/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "plexapi"; 12 - version = "4.9.1"; 12 + version = "4.9.2"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; ··· 18 18 owner = "pkkid"; 19 19 repo = "python-plexapi"; 20 20 rev = version; 21 - sha256 = "0c0zhbq6ggn5ck4cgbr92440xhfk3iz5a8fm25909idlx8vw0s3q"; 21 + sha256 = "sha256-93qMSOnCl18dRZQB8v2Cxv21vsdFzHefQ7zttQAuPKk="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+51 -9
pkgs/development/python-modules/plumbum/default.nix
··· 1 - { buildPythonPackage 2 - , fetchPypi 3 - , pytest 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , openssh 5 + , ps 6 + , psutil 7 + , pytest-mock 8 + , pytest-timeout 9 + , pytestCheckHook 10 + , setuptools-scm 4 11 }: 5 12 6 13 buildPythonPackage rec { 7 14 pname = "plumbum"; 8 15 version = "1.7.2"; 9 16 10 - checkInputs = [ pytest ]; 17 + src = fetchFromGitHub { 18 + owner = "tomerfiliba"; 19 + repo = "plumbum"; 20 + rev = "v${version}"; 21 + sha256 = "sha256-bCCcNFz+ZsbKSF7aCfy47lBHb873tDYN0qFuSCxJp1w="; 22 + }; 11 23 12 - # No tests in archive 13 - doCheck = false; 24 + postPatch = '' 25 + substituteInPlace setup.cfg \ 26 + --replace "--cov-config=setup.cfg" "" 27 + ''; 14 28 15 - src = fetchPypi { 16 - inherit pname version; 17 - sha256 = "0d1bf908076bbd0484d16412479cb97d6843069ee19f99e267e11dd980040523"; 29 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 30 + 31 + nativeBuildInputs = [ 32 + setuptools-scm 33 + ]; 34 + 35 + checkInputs = [ 36 + openssh 37 + ps 38 + psutil 39 + pytest-mock 40 + pytest-timeout 41 + pytestCheckHook 42 + ]; 43 + 44 + preCheck = '' 45 + export HOME=$TMP 46 + ''; 47 + 48 + disabledTests = [ 49 + # broken in nix env 50 + "test_change_env" 51 + "test_dictlike" 52 + "test_local" 53 + ]; 54 + 55 + meta = with lib; { 56 + description = " Plumbum: Shell Combinators "; 57 + homepage = " https://github.com/tomerfiliba/plumbum "; 58 + license = licenses.mit; 59 + maintainers = with maintainers; [ ]; 18 60 }; 19 61 }
+8 -1
pkgs/development/python-modules/prance/default.nix
··· 4 4 , chardet 5 5 , requests 6 6 , ruamel-yaml 7 + , setuptools-scm 7 8 , six 8 9 , semver 9 10 , pytestCheckHook ··· 21 22 fetchSubmodules = true; 22 23 sha256 = "sha256-kGANMHfWwhW3ZBw2ZVCJZR/bV2EPhcydMKhDeDTVwcQ="; 23 24 }; 25 + 26 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 27 + 28 + nativeBuildInputs = [ 29 + setuptools-scm 30 + ]; 24 31 25 32 propagatedBuildInputs = [ 26 33 chardet ··· 51 58 52 59 meta = with lib; { 53 60 description = "Resolving Swagger/OpenAPI 2.0 and 3.0.0 Parser"; 54 - homepage = "https://github.com/jfinkhaeuser/prance"; 61 + homepage = "https://github.com/RonnyPfannschmidt/prance"; 55 62 license = licenses.mit; 56 63 maintainers = [ maintainers.costrouc ]; 57 64 };
+10 -4
pkgs/development/python-modules/pygame-gui/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 5 , pygame 6 + , python-i18n 6 7 , pytestCheckHook 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "pygame-gui"; 11 - version = "060"; 12 + version = "0.6.4"; 13 + # nixpkgs-update: no auto update 12 14 13 15 src = fetchFromGitHub { 14 16 owner = "MyreMylar"; 15 17 repo = "pygame_gui"; 16 - rev = "v_${version}"; 17 - sha256 = "1bw1nxfkjyn3h3xizz5s9lz6rgi9fav3y4cf5dq2hv9f5sads02g"; 18 + rev = "v_${lib.replaceStrings ["."] [""] version}"; 19 + sha256 = "13+fK1hYxiMh0T+xbbmHViZjyBoQfRyIDc05fIJ/46U="; 18 20 }; 19 21 20 - propagatedBuildInputs = [ pygame ]; 22 + propagatedBuildInputs = [ pygame python-i18n ]; 21 23 22 24 postPatch = '' 23 25 substituteInPlace pygame_gui/core/utility.py \ ··· 42 44 "test_process_event_text_ctrl_v_select_range" 43 45 "test_process_event_text_ctrl_a" 44 46 "test_process_event_text_ctrl_x" 47 + ]; 48 + 49 + disabledTestPaths = [ 50 + "tests/test_performance/test_text_performance.py" 45 51 ]; 46 52 47 53 meta = with lib; {
+47
pkgs/development/python-modules/pyhumps/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , poetry-core 5 + , pytestCheckHook 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pyhumps"; 11 + version = "3.5.0"; 12 + format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.7"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "nficano"; 18 + repo = "humps"; 19 + rev = "v${version}"; 20 + hash = "sha256-dnNtx0VTD2e89yXMz0+acDhOaLBSkAA7n2io6qypN5E="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + poetry-core 25 + ]; 26 + 27 + checkInputs = [ 28 + pytestCheckHook 29 + ]; 30 + 31 + postPatch = '' 32 + # https://github.com/nficano/humps/pull/240 33 + substituteInPlace pyproject.toml \ 34 + --replace 'version = "3.0.2"' 'version = "${version}"' 35 + ''; 36 + 37 + pythonImportsCheck = [ 38 + "humps" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "Module to convert strings (and dictionary keys) between snake case, camel case and pascal case"; 43 + homepage = "https://github.com/nficano/humps"; 44 + license = with licenses; [ unlicense ]; 45 + maintainers = with maintainers; [ fab ]; 46 + }; 47 + }
+2 -2
pkgs/development/python-modules/pymavlink/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pymavlink"; 5 - version = "2.4.19"; 5 + version = "2.4.20"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "8518f71c221c263770322355d0745da2fffc48238d04eb48bcf3ef6c35e5f722"; 9 + sha256 = "sha256-QdYlmlDZzVH8tErGdgAz6FjT/L7jexduvrffKVEqMfY="; 10 10 }; 11 11 12 12 propagatedBuildInputs = [ future lxml ];
+5 -2
pkgs/development/python-modules/pysiaalarm/default.nix
··· 4 4 , fetchPypi 5 5 , dataclasses-json 6 6 , pycryptodome 7 - , setuptools 7 + , setuptools-scm 8 8 , pytest-asyncio 9 9 , pytest-cases 10 10 , pytestCheckHook ··· 28 28 --replace "--cov pysiaalarm --cov-report term-missing" "" 29 29 ''; 30 30 31 + nativeBuildInputs = [ 32 + setuptools-scm 33 + ]; 34 + 31 35 propagatedBuildInputs = [ 32 36 dataclasses-json 33 37 pycryptodome 34 - setuptools 35 38 ]; 36 39 37 40 checkInputs = [
+2 -2
pkgs/development/python-modules/pytest-cases/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pytest-cases"; 13 - version = "3.6.8"; 13 + version = "3.6.9"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.6"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "d423e87b30e1080cc162d86c72bfa35861cccfe3539125e81c68ba142ab974bc"; 20 + sha256 = "sha256-Bf9favhlHcGj8nf1JxTkMjpo8hMyfBHgMCilOcIL2Sk="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+24
pkgs/development/python-modules/python-i18n/default.nix
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pyyaml }: 2 + 3 + buildPythonPackage rec { 4 + pname = "python-i18n"; 5 + version = "0.3.9"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "danhper"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "6FahoHZqaOWYGaT9RqLARCm2kLfUIlYuauB6+0eX7jA="; 12 + }; 13 + 14 + checkInputs = [ pytestCheckHook pyyaml ]; 15 + 16 + pytestFlagsArray = [ "i18n/tests/run_tests.py" ]; 17 + 18 + meta = with lib; { 19 + description = "Easy to use i18n library"; 20 + homepage = "https://github.com/danhper/python-i18n"; 21 + license = with licenses; [ mit ]; 22 + maintainers = with maintainers; [ angustrau ]; 23 + }; 24 + }
+2 -2
pkgs/development/python-modules/python-ipmi/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "python-ipmi"; 13 - version = "0.5.1"; 13 + version = "0.5.2"; 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "kontron"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "0rcix3q845zsmfj5857kq1r5b8m7m3sad34i23k65m0p58clwdqm"; 20 + sha256 = "sha256-VXWSoVRfgJWf9rOT4SE1mTJdeNmzR3TRc2pc6Pp1M5U="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+27 -9
pkgs/development/python-modules/python-nest/default.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, python-dateutil, requests 2 - , six, sseclient-py }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , python-dateutil 5 + , requests 6 + , six 7 + , sseclient-py 8 + , pythonOlder 9 + }: 3 10 4 11 buildPythonPackage rec { 5 12 pname = "python-nest"; 6 - version = "4.1.0"; 13 + version = "4.2.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 7 17 8 18 src = fetchPypi { 9 19 inherit pname version; 10 - sha256 = "12iyypbl92ybh8w1bf4z0c2g0sb9id2c07c89vzvnlxgjylw3wbi"; 20 + hash = "sha256-01hoZbDssbJ10NA72gOtlzjZMGjsUBUoVDVM35uAOLU="; 11 21 }; 12 22 13 - propagatedBuildInputs = [ python-dateutil requests six sseclient-py ]; 14 - # has no tests 23 + propagatedBuildInputs = [ 24 + python-dateutil 25 + requests 26 + six 27 + sseclient-py 28 + ]; 29 + 30 + # Module has no tests 15 31 doCheck = false; 16 - pythonImportsCheck = [ "nest" ]; 32 + 33 + pythonImportsCheck = [ 34 + "nest" 35 + ]; 17 36 18 37 meta = with lib; { 19 - description = 20 - "Python API and command line tool for talking to the Nest™ Thermostat"; 38 + description = "Python API and command line tool for talking to the Nest™ Thermostat"; 21 39 homepage = "https://github.com/jkoelker/python-nest"; 22 40 license = licenses.cc-by-nc-sa-40; 23 41 maintainers = with maintainers; [ jamiemagee ];
+2 -2
pkgs/development/python-modules/pywizlight/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pywizlight"; 13 - version = "0.5"; 13 + version = "0.5.2"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "sbidy"; 20 20 repo = pname; 21 21 rev = "v${version}"; 22 - sha256 = "sha256-hw8fNguIqQslea44hiLgh6FntfKHFG1UeVYIvmu5nTw="; 22 + sha256 = "sha256-/euT77CAcfM9gMBV4SQsJWn6+JWcmqGNN8NGGX93xSg="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+7
pkgs/development/python-modules/rxv/default.nix
··· 10 10 , pythonOlder 11 11 , requests 12 12 , requests-mock 13 + , setuptools-scm 13 14 }: 14 15 15 16 buildPythonPackage rec { ··· 25 26 rev = "v${version}"; 26 27 sha256 = "0jldnlzbfg5jm1nbgv91mlvcqkswd9f2n3qj9aqlbmj1cxq19yz8"; 27 28 }; 29 + 30 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 31 + 32 + nativeBuildInputs = [ 33 + setuptools-scm 34 + ]; 28 35 29 36 propagatedBuildInputs = [ 30 37 defusedxml
+2
pkgs/development/python-modules/scikit-survival/default.nix
··· 8 8 , numpy 9 9 , osqp 10 10 , pandas 11 + , setuptools-scm 11 12 , scikit-learn 12 13 , scipy 13 14 , pytestCheckHook ··· 24 25 25 26 nativeBuildInputs = [ 26 27 cython 28 + setuptools-scm 27 29 ]; 28 30 29 31 propagatedBuildInputs = [
+2 -1
pkgs/development/python-modules/secp256k1/default.nix
··· 36 36 ''; 37 37 38 38 postPatch = '' 39 - sed -i '38,45d' setup.py 39 + # don't do hacky tarball download + setuptools check 40 + sed -i '38,54d' setup.py 40 41 substituteInPlace setup.py --replace ", 'pytest-runner==2.6.2'" "" 41 42 ''; 42 43
+12 -1
pkgs/development/python-modules/setupmeta/default.nix
··· 23 23 sha256 = "21hABRiY8CTKkpFjePgBAtjs4/G5eFS3aPNMCBC41CY="; 24 24 }; 25 25 26 + preBuild = '' 27 + export PYGRADLE_PROJECT_VERSION=${version}; 28 + ''; 29 + 30 + nativeBuildInputs = [ 31 + setuptools-scm 32 + ]; 33 + 26 34 checkInputs = [ 27 35 git 28 36 mock 29 37 pep440 30 38 pytestCheckHook 31 - setuptools-scm 32 39 ]; 40 + 41 + preCheck = '' 42 + unset PYGRADLE_PROJECT_VERSION 43 + ''; 33 44 34 45 disabledTests = [ 35 46 # Tests want to scan site-packages
+2 -2
pkgs/development/python-modules/skodaconnect/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "skodaconnect"; 15 - version = "1.1.17"; 15 + version = "1.1.18"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "lendy007"; 22 22 repo = pname; 23 23 rev = version; 24 - hash = "sha256-aMyowz5+4Iu7bb8FSnHzx6QGp1WzzMXQZI23OZcr/kM="; 24 + hash = "sha256-etcNdiuCgOe08HkOL+kXACoBAouDGUBqpaKUercud84="; 25 25 }; 26 26 27 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+13 -5
pkgs/development/python-modules/thinc/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , buildPythonPackage 4 + , python 4 5 , fetchPypi 5 6 , pytestCheckHook 6 7 , blis ··· 39 40 sha256 = "sha256-R2YqOuM9RFp3tup7dyREgFx7uomR8SLjUNr3Le3IFxo="; 40 41 }; 41 42 43 + postPatch = '' 44 + substituteInPlace setup.cfg \ 45 + --replace "pydantic>=1.7.4,!=1.8,!=1.8.1,<1.9.0" "pydantic" 46 + ''; 47 + 42 48 buildInputs = [ 43 49 cython 44 50 ] ++ lib.optionals stdenv.isDarwin [ ··· 73 79 pytestCheckHook 74 80 ]; 75 81 76 - # Cannot find cython modules. 77 - doCheck = false; 82 + # Add native extensions. 83 + preCheck = '' 84 + export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH 78 85 79 - pytestFlagsArray = [ 80 - "thinc/tests" 81 - ]; 86 + # avoid local paths, relative imports wont resolve correctly 87 + mv thinc/tests tests 88 + rm -r thinc 89 + ''; 82 90 83 91 pythonImportsCheck = [ 84 92 "thinc"
+7
pkgs/development/python-modules/tomli/default.nix
··· 3 3 , callPackage 4 4 , fetchFromGitHub 5 5 , flit-core 6 + 7 + # important downstream dependencies 8 + , flit 9 + , black 10 + , mypy 11 + , setuptools-scm 6 12 }: 7 13 8 14 buildPythonPackage rec { ··· 41 47 42 48 passthru.tests = { 43 49 pytest = callPackage ./tests.nix { }; 50 + inherit flit black mypy setuptools-scm; 44 51 }; 45 52 46 53 meta = with lib; {
+2 -2
pkgs/development/python-modules/types-setuptools/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "types-setuptools"; 8 - version = "57.4.8"; 8 + version = "57.4.9"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "sha256-1VRfKrPa0k9cscAbp0way3QHqzGyYY1CMVj8hAhRYPE="; 13 + sha256 = "sha256-U273R0T44eS+T8cZiH+IbnTkzzx5K0oGmEMgvk30ULU="; 14 14 }; 15 15 16 16 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/velbus-aio/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "velbus-aio"; 13 - version = "2022.02.1"; 13 + version = "2022.2.3"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "Cereal2nd"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "sha256-YVihR7XSI2Ve1Tur4mnNfFKzs8PN1DWO8JYUrYTL4xo="; 22 + sha256 = "sha256-EgykuIz/IGFy4GTZZYpY3D5QvsCmY4H9d9Wxbof3DyQ="; 23 23 fetchSubmodules = true; 24 24 }; 25 25
+49
pkgs/development/python-modules/warrant-lite/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + , boto3 6 + , envs 7 + , python-jose 8 + , requests 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "warrant-lite"; 13 + version = "1.0.4"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchPypi { 19 + inherit pname version; 20 + hash = "sha256-FunWoslZn3o0WHet2+LtggO3bbbe2ULMXW93q07GxJ4="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + boto3 25 + envs 26 + python-jose 27 + requests 28 + ]; 29 + 30 + postPatch = '' 31 + # requirements.txt is not part of the source 32 + substituteInPlace setup.py \ 33 + --replace "parse_requirements('requirements.txt')," "[]," 34 + ''; 35 + 36 + # Tests require credentials 37 + doCheck = false; 38 + 39 + pythonImportsCheck = [ 40 + "warrant_lite" 41 + ]; 42 + 43 + meta = with lib; { 44 + description = "Module for process SRP requests for AWS Cognito"; 45 + homepage = "https://github.com/capless/warrant-lite"; 46 + license = with licenses; [ asl20 ]; 47 + maintainers = with maintainers; [ fab ]; 48 + }; 49 + }
+62
pkgs/development/python-modules/werkzeug/1.nix
··· 1 + { lib, stdenv, buildPythonPackage, fetchPypi 2 + , itsdangerous, hypothesis 3 + , pytestCheckHook, requests 4 + , pytest-timeout 5 + , isPy3k 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "Werkzeug"; 10 + version = "1.0.1"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c"; 15 + }; 16 + 17 + propagatedBuildInputs = [ itsdangerous ]; 18 + checkInputs = [ pytestCheckHook requests hypothesis pytest-timeout ]; 19 + 20 + postPatch = '' 21 + # ResourceWarning causes tests to fail 22 + rm tests/test_routing.py 23 + ''; 24 + 25 + disabledTests = [ 26 + "test_save_to_pathlib_dst" 27 + "test_cookie_maxsize" 28 + "test_cookie_samesite_attribute" 29 + "test_cookie_samesite_invalid" 30 + "test_range_parsing" 31 + "test_content_range_parsing" 32 + "test_http_date_lt_1000" 33 + "test_best_match_works" 34 + "test_date_to_unix" 35 + "test_easteregg" 36 + 37 + # Seems to be a problematic test-case: 38 + # 39 + # > warnings.warn(pytest.PytestUnraisableExceptionWarning(msg)) 40 + # E pytest.PytestUnraisableExceptionWarning: Exception ignored in: <_io.FileIO [closed]> 41 + # E 42 + # E Traceback (most recent call last): 43 + # E File "/nix/store/cwv8aj4vsqvimzljw5dxsxy663vjgibj-python3.9-Werkzeug-1.0.1/lib/python3.9/site-packages/werkzeug/formparser.py", line 318, in parse_multipart_headers 44 + # E return Headers(result) 45 + # E ResourceWarning: unclosed file <_io.FileIO name=11 mode='rb+' closefd=True> 46 + "test_basic_routing" 47 + "test_merge_slashes_match" 48 + "test_merge_slashes_build" 49 + "TestMultiPart" 50 + "TestHTTPUtility" 51 + ] ++ lib.optionals stdenv.isDarwin [ 52 + "test_get_machine_id" 53 + ]; 54 + 55 + meta = with lib; { 56 + homepage = "https://palletsprojects.com/p/werkzeug/"; 57 + description = "A WSGI utility library for Python"; 58 + license = licenses.bsd3; 59 + maintainers = [ ]; 60 + }; 61 + } 62 +
+2 -2
pkgs/development/python-modules/whodap/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "whodap"; 13 - version = "0.1.3"; 13 + version = "0.1.4"; 14 14 15 15 disabled = pythonOlder "3.6"; 16 16 ··· 18 18 owner = "pogzyb"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - sha256 = "1pcn2jwqfvp67wz19lcpwnw0dkbc61bnbkzxlmac1yf2pz9ndn6l"; 21 + sha256 = "sha256-L8fSf9AhmWbRvLKvf0aowKoal+5dG1SJXcA7Ssrhj6o="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/zigpy-zigate/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "zigpy-zigate"; 15 - version = "0.7.4"; 15 + version = "0.8.0"; 16 16 # https://github.com/Martiusweb/asynctest/issues/152 17 17 # broken by upstream python bug with asynctest and 18 18 # is used exclusively by home-assistant with python 3.8 ··· 22 22 owner = "zigpy"; 23 23 repo = "zigpy-zigate"; 24 24 rev = version; 25 - sha256 = "0xl8qgljvmypi602f52m89iv9pcrzsdal3jw619vrcavp40rc04d"; 25 + sha256 = "sha256-rFmcgfn87XS1fvbSdJG6pItXRMkeogp4faKMe7pCxkM="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+5 -5
pkgs/development/r-modules/default.nix
··· 321 321 Biostrings = [ pkgs.zlib ]; 322 322 bnpmr = [ pkgs.gsl ]; 323 323 cairoDevice = [ pkgs.gtk2.dev ]; 324 - Cairo = with pkgs; [ libtiff libjpeg cairo.dev x11 fontconfig.lib ]; 324 + Cairo = with pkgs; [ libtiff libjpeg cairo.dev xlibsWrapper fontconfig.lib ]; 325 325 Cardinal = [ pkgs.which ]; 326 326 chebpol = [ pkgs.fftw ]; 327 327 ChemmineOB = with pkgs; [ openbabel pkg-config ]; 328 328 curl = [ pkgs.curl.dev ]; 329 329 data_table = [ pkgs.zlib.dev ] ++ lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp; 330 - devEMF = with pkgs; [ xorg.libXft.dev x11 ]; 330 + devEMF = with pkgs; [ xorg.libXft.dev xlibsWrapper ]; 331 331 diversitree = with pkgs; [ gsl fftw ]; 332 332 exactextractr = [ pkgs.geos ]; 333 333 EMCluster = [ pkgs.lapack ]; ··· 346 346 haven = with pkgs; [ libiconv zlib.dev ]; 347 347 h5vc = [ pkgs.zlib.dev ]; 348 348 HiCseg = [ pkgs.gsl ]; 349 - imager = [ pkgs.x11 ]; 349 + imager = [ pkgs.xlibsWrapper ]; 350 350 iBMQ = [ pkgs.gsl ]; 351 351 igraph = with pkgs; [ gmp libxml2.dev ]; 352 352 JavaGD = [ pkgs.jdk ]; ··· 644 644 PING = [ pkgs.gsl ]; 645 645 RcppAlgos = [ pkgs.gmp.dev ]; 646 646 RcppBigIntAlgos = [ pkgs.gmp.dev ]; 647 - HilbertVisGUI = [ pkgs.gnome2.gtkmm.dev ]; 647 + HilbertVisGUI = [ pkgs.gtkmm2.dev ]; 648 648 textshaping = with pkgs; [ harfbuzz.dev freetype.dev fribidi libpng ]; 649 649 DropletUtils = [ pkgs.zlib.dev ]; 650 650 RMariaDB = [ pkgs.libmysqlclient.dev ]; ··· 1114 1114 patchShebangs configure 1115 1115 ''; 1116 1116 1117 - R_MAKEVARS_SITE = lib.optionalString (pkgs.system == "aarch64-linux") 1117 + R_MAKEVARS_SITE = lib.optionalString (pkgs.stdenv.system == "aarch64-linux") 1118 1118 (pkgs.writeText "Makevars" '' 1119 1119 CXX14PICFLAGS = -fPIC 1120 1120 '');
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.0.795"; 25 + version = "2.0.805"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "bridgecrewio"; 29 29 repo = pname; 30 30 rev = version; 31 - hash = "sha256-Mlyjw9ngLlzhhgtNARWaA1KCuZkKUEcElPIH8tjmlBQ="; 31 + hash = "sha256-vQ5BJUwjik9Wfh4eFGuefpMuTcEV83hYEJKa5/n+kRc="; 32 32 }; 33 33 34 34 nativeBuildInputs = with py.pkgs; [
+2 -2
pkgs/development/tools/analysis/tfsec/default.nix
··· 5 5 6 6 buildGoPackage rec { 7 7 pname = "tfsec"; 8 - version = "1.0.11"; 8 + version = "1.1.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aquasecurity"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-YdoEPU0qXBJ6kD9mWNFxdeQE9e4vkrtVdEOcuFVDpOk="; 14 + sha256 = "sha256-RoXk/wzizlND+WuFy5ZFfryKC9vS31b6SgZH7dPt3Ds="; 15 15 }; 16 16 17 17 goPackagePath = "github.com/aquasecurity/tfsec";
+12 -1
pkgs/development/tools/electron/default.nix
··· 15 15 , libxkbcommon 16 16 , libappindicator-gtk3 17 17 , libxshmfence 18 + , libglvnd 18 19 }@args: 19 20 20 21 let ··· 22 23 in 23 24 rec { 24 25 25 - electron = electron_16; 26 + electron = electron_17; 26 27 27 28 electron_7 = mkElectron "7.3.3" { 28 29 x86_64-linux = "a947228a859149bec5bd937f9f3c03eb0aa4d78cfe4dfa9aead60d3646a357f9"; ··· 118 119 x86_64-darwin = "a3c5e5368165304fc9392e3a5b59480965cf0f91f7d889257e6a622f48051cbf"; 119 120 aarch64-darwin = "dc8414d7b9a967bda530c83a81720519931aebf541cfaed142ee2042c16e683a"; 120 121 headers = "042gz036dzwbvvxvgbgkdb5nq7p8a7vcan6c35l7imgv1hd4g5v4"; 122 + }; 123 + 124 + electron_17 = mkElectron "17.0.0" { 125 + armv7l-linux = "29b31c5e77d4d6d9e1a4340fdf08c28ae6698ea9e20d636cec8a59dc758815ef"; 126 + aarch64-linux = "e7bf2ec09b8a7018ba417fc670a15594fb8f3e930626485f2423e9a89e2dcbd0"; 127 + x86_64-linux = "dc74e28719a79f05dd741cda8c22c2bb164dec178c6d560af085910b37cf000b"; 128 + i686-linux = "6f6fe5fa0452e871abe82dbd25d7cf92ab7011995b3b2b15d04d8691ddc9e9de"; 129 + x86_64-darwin = "c35d81af3a3f156059a53436d7874a46770cbf6e4e5087f7caee269e66abb636"; 130 + aarch64-darwin = "7dc5eabc7e582a031d5bd079eeadc9582f5605446085b4cbd1dc7e7c9e978c45"; 131 + headers = "1i3sx1xy62i4f68zbsz1a7jgqw7shx0653w9fyvcdly2nraxldil"; 121 132 }; 122 133 }
+3 -1
pkgs/development/tools/electron/generic.nix
··· 15 15 , libxkbcommon 16 16 , libappindicator-gtk3 17 17 , libxshmfence 18 + , libglvnd 18 19 }: 19 20 20 21 version: hashes: ··· 28 29 maintainers = with maintainers; [ travisbhartwell manveru prusnak ]; 29 30 platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" "armv7l-linux" "aarch64-linux" ] 30 31 ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ]; 31 - knownVulnerabilities = optional (versionOlder version "13.0.0") "Electron version ${version} is EOL"; 32 + knownVulnerabilities = optional (versionOlder version "14.0.0") "Electron version ${version} is EOL"; 32 33 }; 33 34 34 35 fetcher = vers: tag: hash: fetchurl { ··· 64 65 ++ optionals (! versionOlder version "9.0.0") [ libdrm mesa ] 65 66 ++ optionals (! versionOlder version "11.0.0") [ libxkbcommon ] 66 67 ++ optionals (! versionOlder version "12.0.0") [ libxshmfence ] 68 + ++ optionals (! versionOlder version "17.0.0") [ libglvnd ] 67 69 ); 68 70 69 71 linux = {
+21 -6
pkgs/development/tools/ginkgo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "ginkgo"; 5 - version = "2.1.0"; 5 + version = "2.1.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "onsi"; 9 9 repo = "ginkgo"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-GF96AOyQcVI01dP6yqMwyPmXMDRVxrScu1UL76jF2qA="; 11 + sha256 = "sha256-iAXqPbNBNNR6PGhIjrDqTYUu0XYgvS5aM8n68qQNurQ="; 12 12 }; 13 13 vendorSha256 = "sha256-kMQ60HdsorZU27qoOY52DpwFwP+Br2bp8mRx+ZwnQlI="; 14 - doCheck = false; 14 + 15 + # integration tests expect more file changes 16 + # types tests are missing CodeLocation 17 + excludedPackages = "\\(integration\\|types\\)"; 15 18 16 19 meta = with lib; { 17 - description = "BDD Testing Framework for Go"; 18 - homepage = "https://github.com/onsi/ginkgo"; 20 + homepage = "https://onsi.github.io/ginkgo/"; 21 + changelog = "https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md"; 22 + description = "A Modern Testing Framework for Go"; 23 + longDescription = '' 24 + Ginkgo is a testing framework for Go designed to help you write expressive 25 + tests. It is best paired with the Gomega matcher library. When combined, 26 + Ginkgo and Gomega provide a rich and expressive DSL 27 + (Domain-specific Language) for writing tests. 28 + 29 + Ginkgo is sometimes described as a "Behavior Driven Development" (BDD) 30 + framework. In reality, Ginkgo is a general purpose testing framework in 31 + active use across a wide variety of testing contexts: unit tests, 32 + integration tests, acceptance test, performance tests, etc. 33 + ''; 19 34 license = licenses.mit; 20 - maintainers = with maintainers; [ saschagrunert ]; 35 + maintainers = with maintainers; [ saschagrunert jk ]; 21 36 }; 22 37 }
+13 -13
pkgs/development/tools/gotests/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "gotests"; 5 - version = "1.5.3"; 6 - rev = "v${version}"; 7 - 8 - goPackagePath = "github.com/cweill/gotests"; 9 - excludedPackages = "testdata"; 10 - goDeps = ./deps.nix; 5 + version = "1.6.0"; 11 6 12 7 src = fetchFromGitHub { 13 - inherit rev; 14 8 owner = "cweill"; 15 9 repo = "gotests"; 16 - sha256 = "1c0hly31ax0wk01zdx0l0yl40xybaizjfb3gjxia2z0mgx330dq9"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-6IzUpAsFUgF2FwiC17OfDn1M+8WYFQPpRyXbkpHIztw="; 17 12 }; 18 13 19 - meta = { 14 + vendorSha256 = "sha256-WMeHZN3s+8pIYEVaSLjI3Bz+rPTWHr1AkZ8lydjBwCw="; 15 + 16 + # tests are broken in nix environment 17 + doCheck = false; 18 + 19 + meta = with lib; { 20 20 description = "Generate Go tests from your source code"; 21 21 homepage = "https://github.com/cweill/gotests"; 22 - maintainers = with lib.maintainers; [ vdemeester ]; 23 - license = lib.licenses.asl20; 22 + maintainers = with maintainers; [ vdemeester ]; 23 + license = licenses.asl20; 24 24 }; 25 25 }
-12
pkgs/development/tools/gotests/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.3.0 2 - [ 3 - { 4 - goPackagePath = "golang.org/x/tools"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://go.googlesource.com/tools"; 8 - rev = "23463209683dad3f2b9cc7f7c2663e1847c59017"; 9 - sha256 = "1shzfl4zixhj78v4f6y04bcmfl705yr5q8hp72ndbbma0mh09g8f"; 10 - }; 11 - } 12 - ]
+2 -2
pkgs/development/tools/omnisharp-roslyn/create-deps.sh
··· 1 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -I nixpkgs=../../../../.. -i bash -p msbuild dotnet-sdk_3 jq xmlstarlet curl 2 + #!nix-shell -I nixpkgs=../../../../.. -i bash -p dotnet-sdk_6 jq xmlstarlet curl 3 3 set -euo pipefail 4 4 5 5 cat << EOL ··· 18 18 done 19 19 ) 20 20 21 - msbuild -t:restore -p:Configuration=Release -p:RestorePackagesPath="$tmpdir" \ 21 + dotnet msbuild -t:restore -p:Configuration=Release -p:RestorePackagesPath="$tmpdir" \ 22 22 -p:RestoreNoCache=true -p:RestoreForce=true \ 23 23 src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj >&2 24 24
+9 -19
pkgs/development/tools/omnisharp-roslyn/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 3 , fetchurl 4 - , mono6 5 - , msbuild 6 4 , dotnetCorePackages 7 5 , makeWrapper 8 6 , unzip ··· 11 9 12 10 let 13 11 14 - dotnet-sdk = dotnetCorePackages.sdk_5_0; 12 + dotnet-sdk = dotnetCorePackages.sdk_6_0; 15 13 16 14 deps = map (package: stdenv.mkDerivation (with package; { 17 15 inherit pname version src; ··· 67 65 in stdenv.mkDerivation rec { 68 66 69 67 pname = "omnisharp-roslyn"; 70 - version = "1.37.15"; 68 + version = "1.38.0"; 71 69 72 70 src = fetchFromGitHub { 73 71 owner = "OmniSharp"; 74 72 repo = pname; 75 73 rev = "v${version}"; 76 - sha256 = "070wqs667si3f78fy6w4rrfm8qncnabg0yckjhll0yv1pzbj9q42"; 74 + sha256 = "00V+7Z1IoCSuSM0RClM81IslzCzC/FNYxHIKtnI9QDg="; 77 75 }; 78 76 79 - nativeBuildInputs = [ makeWrapper msbuild ]; 77 + nativeBuildInputs = [ makeWrapper dotnet-sdk ]; 80 78 81 79 buildPhase = '' 82 80 runHook preBuild 83 81 84 - HOME=$(pwd)/fake-home msbuild -r \ 82 + HOME=$(pwd)/fake-home dotnet msbuild -r \ 85 83 -p:Configuration=Release \ 86 84 -p:RestoreConfigFile=${nuget-config} \ 87 85 src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj ··· 91 89 92 90 installPhase = '' 93 91 mkdir -p $out/bin 94 - cp -r bin/Release/OmniSharp.Stdio.Driver/net472 $out/src 95 - cp bin/Release/OmniSharp.Host/net472/SQLitePCLRaw* $out/src 96 - mkdir $out/src/.msbuild 97 - ln -s ${msbuild}/lib/mono/xbuild/* $out/src/.msbuild/ 98 - rm $out/src/.msbuild/Current 99 - mkdir $out/src/.msbuild/Current 100 - ln -s ${msbuild}/lib/mono/xbuild/Current/* $out/src/.msbuild/Current/ 101 - ln -s ${msbuild}/lib/mono/msbuild/Current/bin $out/src/.msbuild/Current/Bin 102 - 103 - makeWrapper ${mono6}/bin/mono $out/bin/omnisharp \ 104 - --suffix PATH : ${dotnet-sdk}/bin \ 105 - --add-flags "$out/src/OmniSharp.exe" 92 + cp -r bin/Release/OmniSharp.Stdio.Driver/net6.0 $out/src 93 + makeWrapper $out/src/OmniSharp $out/bin/omnisharp \ 94 + --prefix DOTNET_ROOT : ${dotnet-sdk} \ 95 + --suffix PATH : ${dotnet-sdk}/bin 106 96 ''; 107 97 108 98 meta = with lib; {
+739 -259
pkgs/development/tools/omnisharp-roslyn/deps.nix
··· 1 1 { fetchurl }: [ 2 2 { 3 3 pname = "cake.scripting.abstractions"; 4 - version = "0.6.4"; 4 + version = "0.8.1"; 5 5 src = fetchurl { 6 - url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.abstractions/0.6.4/cake.scripting.abstractions.0.6.4.nupkg"; 7 - sha256 = "14fcixlj2xazf6cb46gw8jgbsz89c6s8fnhvppxs8q12pygmkx0l"; 6 + url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.abstractions/0.8.1/cake.scripting.abstractions.0.8.1.nupkg"; 7 + sha256 = "0hrr7a3z1qddfm21pp21wr94q2f85w5kq1gavn5dylajiaqz505c"; 8 8 }; 9 9 } 10 10 { 11 11 pname = "cake.scripting.transport"; 12 - version = "0.6.4"; 12 + version = "0.8.1"; 13 13 src = fetchurl { 14 - url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.transport/0.6.4/cake.scripting.transport.0.6.4.nupkg"; 15 - sha256 = "08cwj572mvmlagj5jry11j2l2fqc6yl4sw0szvql4ard9cx7j51n"; 14 + url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.transport/0.8.1/cake.scripting.transport.0.8.1.nupkg"; 15 + sha256 = "0pfpgyr62r74s9h4i3kdxb92d21x14pmvwa1bfk3v2s5qdb3fxj8"; 16 16 }; 17 17 } 18 18 { ··· 64 64 }; 65 65 } 66 66 { 67 - pname = "messagepack"; 68 - version = "2.1.152"; 67 + pname = "microsoft.aspnetcore.app.runtime.win-arm64"; 68 + version = "6.0.0"; 69 69 src = fetchurl { 70 - url = "https://api.nuget.org/v3-flatcontainer/messagepack/2.1.152/messagepack.2.1.152.nupkg"; 71 - sha256 = "1ks1w6pn96zm8nhz3ff6qdrmf0abppglwaa6vw83kj3d2qw74sw1"; 70 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.win-arm64/6.0.0/microsoft.aspnetcore.app.runtime.win-arm64.6.0.0.nupkg"; 71 + sha256 = "0k2011d3jbfblfm4qspwjyv5pg1xqac408vblshgmf4sz7hlyzb3"; 72 72 }; 73 73 } 74 74 { 75 - pname = "messagepackanalyzer"; 76 - version = "2.1.152"; 75 + pname = "microsoft.aspnetcore.app.runtime.win-x64"; 76 + version = "6.0.0"; 77 77 src = fetchurl { 78 - url = "https://api.nuget.org/v3-flatcontainer/messagepackanalyzer/2.1.152/messagepackanalyzer.2.1.152.nupkg"; 79 - sha256 = "18iacmw5v3dp8lma9c0rh5jh8g1hkxnkq78kx7n00wkwxa58badx"; 78 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.win-x64/6.0.0/microsoft.aspnetcore.app.runtime.win-x64.6.0.0.nupkg"; 79 + sha256 = "1j8cn97swc67ly7ca7m05akczrswbg0gjsk7473vad6770ph79vm"; 80 80 }; 81 81 } 82 82 { 83 - pname = "messagepack.annotations"; 84 - version = "2.1.152"; 83 + pname = "microsoft.aspnetcore.app.runtime.win-x86"; 84 + version = "6.0.0"; 85 85 src = fetchurl { 86 - url = "https://api.nuget.org/v3-flatcontainer/messagepack.annotations/2.1.152/messagepack.annotations.2.1.152.nupkg"; 87 - sha256 = "196swfxaz7l26hiyfv1mix0y80amhlq48krc4g5p9894wx1az3c3"; 88 - }; 89 - } 90 - { 91 - pname = "microsoft.aspnetcore.app.ref"; 92 - version = "3.1.10"; 93 - src = fetchurl { 94 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.ref/3.1.10/microsoft.aspnetcore.app.ref.3.1.10.nupkg"; 95 - sha256 = "0xn4zh7shvijqlr03fqsmps6gz856isd9bg9rk4z2c4599ggal77"; 96 - }; 97 - } 98 - { 99 - pname = "microsoft.bcl.asyncinterfaces"; 100 - version = "1.1.0"; 101 - src = fetchurl { 102 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/1.1.0/microsoft.bcl.asyncinterfaces.1.1.0.nupkg"; 103 - sha256 = "1dq5yw7cy6s42193yl4iqscfw5vzkjkgv0zyy32scr4jza6ni1a1"; 86 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.win-x86/6.0.0/microsoft.aspnetcore.app.runtime.win-x86.6.0.0.nupkg"; 87 + sha256 = "0l64rphcqjwlbsxvfc8albzs494xyhl3bgw6ll68h3imhml193k5"; 104 88 }; 105 89 } 106 90 { ··· 120 104 }; 121 105 } 122 106 { 107 + pname = "microsoft.bcl.asyncinterfaces"; 108 + version = "6.0.0"; 109 + src = fetchurl { 110 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg"; 111 + sha256 = "15gqy2m14fdlvy1g59207h5kisznm355kbw010gy19vh47z8gpz3"; 112 + }; 113 + } 114 + { 123 115 pname = "microsoft.build"; 124 - version = "16.10.0"; 116 + version = "17.0.0"; 125 117 src = fetchurl { 126 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build/16.10.0/microsoft.build.16.10.0.nupkg"; 127 - sha256 = "1ran3fp016wvj8d2ahv0cmwhm6hjjh64w82s7cy52s7qffrgjk46"; 118 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build/17.0.0/microsoft.build.17.0.0.nupkg"; 119 + sha256 = "166brl88y8xn9llc0hmn911k6y74gapmk1mrnfxbv73qj77jxsn1"; 128 120 }; 129 121 } 130 122 { 131 123 pname = "microsoft.build.framework"; 132 - version = "16.10.0"; 124 + version = "17.0.0"; 133 125 src = fetchurl { 134 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/16.10.0/microsoft.build.framework.16.10.0.nupkg"; 135 - sha256 = "17a8qxgq0jzxpjannhxkcg0941b64yb7z0yq75gz6hsq9ln3agja"; 126 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/17.0.0/microsoft.build.framework.17.0.0.nupkg"; 127 + sha256 = "08c257dmfa6n41lq4fxb34khi8jbwlqfy1168x7h7zsbh3wss7yq"; 136 128 }; 137 129 } 138 130 { ··· 145 137 } 146 138 { 147 139 pname = "microsoft.build.tasks.core"; 148 - version = "16.10.0"; 140 + version = "17.0.0"; 149 141 src = fetchurl { 150 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.tasks.core/16.10.0/microsoft.build.tasks.core.16.10.0.nupkg"; 151 - sha256 = "0yc3p4bksxmbq1n8wfqgn6b6x9ccyzq229f0mn08z4jfima3cnxg"; 142 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.tasks.core/17.0.0/microsoft.build.tasks.core.17.0.0.nupkg"; 143 + sha256 = "087mn3rz5plnj7abjqk2di5is35mmfgmdjf0kcdn7jld8rbhk5hx"; 152 144 }; 153 145 } 154 146 { ··· 161 153 } 162 154 { 163 155 pname = "microsoft.build.utilities.core"; 164 - version = "16.10.0"; 156 + version = "17.0.0"; 165 157 src = fetchurl { 166 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/16.10.0/microsoft.build.utilities.core.16.10.0.nupkg"; 167 - sha256 = "1rh3gzrz8mmzilvs33cxngv0a805nb47s615rvj4xk5igm384w14"; 158 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/17.0.0/microsoft.build.utilities.core.17.0.0.nupkg"; 159 + sha256 = "0b7kylnvdqs81nmxdw7alwij8b19wm00iqicb9gkiklxjfyd8xav"; 168 160 }; 169 161 } 170 162 { ··· 185 177 } 186 178 { 187 179 pname = "microsoft.codeanalysis.common"; 188 - version = "4.0.0-4.21427.11"; 180 + version = "4.0.0-6.21526.21"; 189 181 src = fetchurl { 190 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.common/4.0.0-4.21427.11/microsoft.codeanalysis.common.4.0.0-4.21427.11.nupkg"; 191 - sha256 = "15q6a2z3ms2vyrfk4y7biniygy0brr3ddb8mn700zg4sl84vphcz"; 182 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.common/4.0.0-6.21526.21/microsoft.codeanalysis.common.4.0.0-6.21526.21.nupkg"; 183 + sha256 = "0sv5hxadf9pbclssc9kq2cnvfkrnb0f2f4gmqhp2cy4xkr9fjn92"; 192 184 }; 193 185 } 194 186 { 195 187 pname = "microsoft.codeanalysis.csharp"; 196 - version = "4.0.0-4.21427.11"; 188 + version = "4.0.0-6.21526.21"; 197 189 src = fetchurl { 198 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.4.0.0-4.21427.11.nupkg"; 199 - sha256 = "0x3l774higkpbbk4f1naf57c039g8qvvdvb3963m7g54qn4zhvdh"; 190 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.4.0.0-6.21526.21.nupkg"; 191 + sha256 = "0cgp6rjw0lj3hr19sg5xvb5g29amrnng6y23rzcv5knw7a6zavs7"; 200 192 }; 201 193 } 202 194 { 203 195 pname = "microsoft.codeanalysis.csharp.features"; 204 - version = "4.0.0-4.21427.11"; 196 + version = "4.0.0-6.21526.21"; 205 197 src = fetchurl { 206 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.features/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.features.4.0.0-4.21427.11.nupkg"; 207 - sha256 = "0w0wrssv0ix4z9609a34k6a5kc4p85gy76p676fdg6hyf6pzd78m"; 198 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.features/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.features.4.0.0-6.21526.21.nupkg"; 199 + sha256 = "1a8xhrc4g2xlhmangcj0hv9872fw3zv1bcq52b54vczm6aym39pj"; 208 200 }; 209 201 } 210 202 { 211 203 pname = "microsoft.codeanalysis.csharp.scripting"; 212 - version = "4.0.0-4.21427.11"; 204 + version = "4.0.0-6.21526.21"; 213 205 src = fetchurl { 214 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.scripting/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.scripting.4.0.0-4.21427.11.nupkg"; 215 - sha256 = "0lmfbkxqp8p52wg2lsyxpavabk318s6ci02cxzgmxydc2pd9r70v"; 206 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.scripting/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.scripting.4.0.0-6.21526.21.nupkg"; 207 + sha256 = "1mlf75v2nabfi9hwx9q2d14mcxlz3n8gdkczpyvvyfh3f72pl4x3"; 216 208 }; 217 209 } 218 210 { 219 211 pname = "microsoft.codeanalysis.csharp.workspaces"; 220 - version = "4.0.0-4.21427.11"; 212 + version = "4.0.0-6.21526.21"; 221 213 src = fetchurl { 222 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.workspaces/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.workspaces.4.0.0-4.21427.11.nupkg"; 223 - sha256 = "0j5c9v4nfahvnasz895czk1cp46b2d98px1gdar2ik9c5630vxwi"; 214 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.workspaces/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.workspaces.4.0.0-6.21526.21.nupkg"; 215 + sha256 = "04r6crnqml1c8mabsfrjzxc6bq6ndc9wwqwy8zsal80gwa54yj3v"; 224 216 }; 225 217 } 226 218 { 227 219 pname = "microsoft.codeanalysis.externalaccess.omnisharp"; 228 - version = "4.0.0-4.21427.11"; 220 + version = "4.0.0-6.21526.21"; 229 221 src = fetchurl { 230 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp/4.0.0-4.21427.11/microsoft.codeanalysis.externalaccess.omnisharp.4.0.0-4.21427.11.nupkg"; 231 - sha256 = "0qy8xiv1j8awmbbgy16b2y9rhymxhx8kcmfylhxi1ryqql4mrpg2"; 222 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp/4.0.0-6.21526.21/microsoft.codeanalysis.externalaccess.omnisharp.4.0.0-6.21526.21.nupkg"; 223 + sha256 = "1f7wp5829wz8nrafqwlr74p3xgw86591cl2d9dnhs8cp9p6y5ah9"; 232 224 }; 233 225 } 234 226 { 235 227 pname = "microsoft.codeanalysis.externalaccess.omnisharp.csharp"; 236 - version = "4.0.0-4.21427.11"; 228 + version = "4.0.0-6.21526.21"; 237 229 src = fetchurl { 238 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp.csharp/4.0.0-4.21427.11/microsoft.codeanalysis.externalaccess.omnisharp.csharp.4.0.0-4.21427.11.nupkg"; 239 - sha256 = "0mp1gkfdrdjcryqdj76ilpmjh0w8z4h313djjplcawwk76369mnc"; 230 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp.csharp/4.0.0-6.21526.21/microsoft.codeanalysis.externalaccess.omnisharp.csharp.4.0.0-6.21526.21.nupkg"; 231 + sha256 = "1mc9h0svsqdrmr8bk1zgvjn1awc06mwhsp34q8grcb6n1w641hsp"; 240 232 }; 241 233 } 242 234 { 243 235 pname = "microsoft.codeanalysis.features"; 244 - version = "4.0.0-4.21427.11"; 236 + version = "4.0.0-6.21526.21"; 245 237 src = fetchurl { 246 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.features/4.0.0-4.21427.11/microsoft.codeanalysis.features.4.0.0-4.21427.11.nupkg"; 247 - sha256 = "03vclmmxch3jrjamr9lg899s9wsfxw9yf53p9yfwvcr8wml4cwpz"; 238 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.features/4.0.0-6.21526.21/microsoft.codeanalysis.features.4.0.0-6.21526.21.nupkg"; 239 + sha256 = "0bg93pzv89v0s74mn52ng4cz2ys2bk8z96b3ml06r9wa3piz08la"; 248 240 }; 249 241 } 250 242 { 251 243 pname = "microsoft.codeanalysis.scripting.common"; 252 - version = "4.0.0-4.21427.11"; 244 + version = "4.0.0-6.21526.21"; 253 245 src = fetchurl { 254 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.scripting.common/4.0.0-4.21427.11/microsoft.codeanalysis.scripting.common.4.0.0-4.21427.11.nupkg"; 255 - sha256 = "15fkbw651v9lliqdmg1k61dqzasrssahyhrhwg24m111rgh86fbn"; 246 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.scripting.common/4.0.0-6.21526.21/microsoft.codeanalysis.scripting.common.4.0.0-6.21526.21.nupkg"; 247 + sha256 = "0s5h10zj2qyfs0a09agdba06vc09pcq2wamr7pf8dx415vkjswyj"; 256 248 }; 257 249 } 258 250 { 259 251 pname = "microsoft.codeanalysis.workspaces.common"; 260 - version = "4.0.0-4.21427.11"; 252 + version = "4.0.0-6.21526.21"; 261 253 src = fetchurl { 262 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.workspaces.common/4.0.0-4.21427.11/microsoft.codeanalysis.workspaces.common.4.0.0-4.21427.11.nupkg"; 263 - sha256 = "0k4qjkkg4mllizialzm463ssm3faqcqjnw19kbcnrzm5cd72i7cy"; 254 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.workspaces.common/4.0.0-6.21526.21/microsoft.codeanalysis.workspaces.common.4.0.0-6.21526.21.nupkg"; 255 + sha256 = "0kp2l72zpfydfqv5cm8wqvk86wpgh946j8sw9hvhm3xwzflchl7b"; 256 + }; 257 + } 258 + { 259 + pname = "microsoft.csharp"; 260 + version = "4.0.1"; 261 + src = fetchurl { 262 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1/microsoft.csharp.4.0.1.nupkg"; 263 + sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; 264 264 }; 265 265 } 266 266 { ··· 289 289 } 290 290 { 291 291 pname = "microsoft.extensions.caching.abstractions"; 292 - version = "5.0.0"; 292 + version = "6.0.0"; 293 293 src = fetchurl { 294 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/5.0.0/microsoft.extensions.caching.abstractions.5.0.0.nupkg"; 295 - sha256 = "0j83zapqhgqb4v5f6kn891km095pfhvsqha357a86ccclmv2czvb"; 294 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg"; 295 + sha256 = "0qn30d3pg4rx1x2k525jj4x5g1fxm2v5m0ksz2dmk1gmqalpask8"; 296 296 }; 297 297 } 298 298 { 299 299 pname = "microsoft.extensions.caching.memory"; 300 - version = "5.0.0"; 300 + version = "6.0.0"; 301 301 src = fetchurl { 302 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/5.0.0/microsoft.extensions.caching.memory.5.0.0.nupkg"; 303 - sha256 = "0l8spndl3kvccjlay202msm31iy5iig0i9ddbsdy92wbcjr97lca"; 302 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/6.0.0/microsoft.extensions.caching.memory.6.0.0.nupkg"; 303 + sha256 = "0dq1x7962zsp926rj76i4akk4hsy7r5ldys8r4xsd78rq5f67rhq"; 304 304 }; 305 305 } 306 306 { ··· 313 313 } 314 314 { 315 315 pname = "microsoft.extensions.configuration"; 316 - version = "5.0.0"; 316 + version = "6.0.0"; 317 317 src = fetchurl { 318 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/5.0.0/microsoft.extensions.configuration.5.0.0.nupkg"; 319 - sha256 = "01m9vzlq0vg0lhckj2dimwq42niwny8g3lm13c9a401hlyg90z1p"; 318 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg"; 319 + sha256 = "1zdyai2rzngmsp3706d12qrdk315c1s3ja218fzb3nc3wd1vz0s8"; 320 320 }; 321 321 } 322 322 { ··· 329 329 } 330 330 { 331 331 pname = "microsoft.extensions.configuration.abstractions"; 332 - version = "5.0.0"; 332 + version = "6.0.0"; 333 333 src = fetchurl { 334 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/5.0.0/microsoft.extensions.configuration.abstractions.5.0.0.nupkg"; 335 - sha256 = "0fqxkc9pjxkqylsdf26s9q21ciyk56h1w33pz3v1v4wcv8yv1v6k"; 334 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg"; 335 + sha256 = "0w6wwxv12nbc3sghvr68847wc9skkdgsicrz3fx4chgng1i3xy0j"; 336 336 }; 337 337 } 338 338 { ··· 345 345 } 346 346 { 347 347 pname = "microsoft.extensions.configuration.binder"; 348 - version = "5.0.0"; 348 + version = "6.0.0"; 349 349 src = fetchurl { 350 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/5.0.0/microsoft.extensions.configuration.binder.5.0.0.nupkg"; 351 - sha256 = "0sld0bh2k5kss32i3nf8mwqkjagmw0d1cdfmxm87ckiicwm413a0"; 350 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg"; 351 + sha256 = "15hb2rbzgri1fq8wpj4ll7czm3rxqzszs02phnhjnncp90m5rmpc"; 352 352 }; 353 353 } 354 354 { 355 355 pname = "microsoft.extensions.configuration.commandline"; 356 - version = "5.0.0"; 356 + version = "6.0.0"; 357 357 src = fetchurl { 358 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/5.0.0/microsoft.extensions.configuration.commandline.5.0.0.nupkg"; 359 - sha256 = "084hnz5l0vr15ay23rksqipslqnz3pp30w9hsirpx1iqdm5688mc"; 358 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/6.0.0/microsoft.extensions.configuration.commandline.6.0.0.nupkg"; 359 + sha256 = "1hb4qrq9xdxzh2px515pv1vkz1jigwaxw1hfg9w8s6pgl8z04l4c"; 360 360 }; 361 361 } 362 362 { 363 363 pname = "microsoft.extensions.configuration.environmentvariables"; 364 - version = "5.0.0"; 364 + version = "6.0.0"; 365 365 src = fetchurl { 366 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/5.0.0/microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg"; 367 - sha256 = "03gvckj10ljk1mir9g8cf3cajsnihhvmh8z8341gkr9h5653qkv0"; 366 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/6.0.0/microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg"; 367 + sha256 = "19w2vxliz1xangbach3hkx72x2pxqhc9n9c3kc3l8mhicl8w6vdl"; 368 368 }; 369 369 } 370 370 { 371 371 pname = "microsoft.extensions.configuration.fileextensions"; 372 - version = "5.0.0"; 372 + version = "6.0.0"; 373 373 src = fetchurl { 374 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/5.0.0/microsoft.extensions.configuration.fileextensions.5.0.0.nupkg"; 375 - sha256 = "1wq229r3xcmm9wh9sqdpvmfv4qpbp2zms9x6xk7g7sbb8h32hnz3"; 374 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg"; 375 + sha256 = "02nna984iwnyyz4jjh9vs405nlj0yk1g5vz4v2x30z2c89mx5f9w"; 376 376 }; 377 377 } 378 378 { 379 379 pname = "microsoft.extensions.configuration.json"; 380 - version = "5.0.0"; 380 + version = "6.0.0"; 381 381 src = fetchurl { 382 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/5.0.0/microsoft.extensions.configuration.json.5.0.0.nupkg"; 383 - sha256 = "0hq5i483bjbvprp1la9l3si82x1ydxbvkpfc7r3s7zgxg957fyp9"; 382 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg"; 383 + sha256 = "1c6l5szma1pdn61ncq1kaqibg0dz65hbma2xl626a8d1m6awn353"; 384 384 }; 385 385 } 386 386 { ··· 393 393 } 394 394 { 395 395 pname = "microsoft.extensions.dependencyinjection"; 396 - version = "5.0.0"; 396 + version = "6.0.0"; 397 397 src = fetchurl { 398 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/5.0.0/microsoft.extensions.dependencyinjection.5.0.0.nupkg"; 399 - sha256 = "15sdwcyzz0qlybwbdq854bn3jk6kx7awx28gs864c4shhbqkppj4"; 398 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg"; 399 + sha256 = "1wlhb2vygzfdjbdzy7waxblmrx0q3pdcqvpapnpmq9fcx5m8r6w1"; 400 400 }; 401 401 } 402 402 { ··· 409 409 } 410 410 { 411 411 pname = "microsoft.extensions.dependencyinjection.abstractions"; 412 - version = "5.0.0"; 412 + version = "6.0.0"; 413 413 src = fetchurl { 414 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/5.0.0/microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg"; 415 - sha256 = "17cz6s80va0ch0a6nqa1wbbbp3p8sqxb96lj4qcw67ivkp2yxiyj"; 414 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg"; 415 + sha256 = "1vi67fw7q99gj7jd64gnnfr4d2c0ijpva7g9prps48ja6g91x6a9"; 416 416 }; 417 417 } 418 418 { 419 419 pname = "microsoft.extensions.dependencymodel"; 420 - version = "5.0.0"; 420 + version = "6.0.0"; 421 421 src = fetchurl { 422 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/5.0.0/microsoft.extensions.dependencymodel.5.0.0.nupkg"; 423 - sha256 = "1mma1zxi0b40972cwfvkj9y0w9r7vjbi74784jzcb22pric00k5x"; 422 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/6.0.0/microsoft.extensions.dependencymodel.6.0.0.nupkg"; 423 + sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; 424 424 }; 425 425 } 426 426 { 427 427 pname = "microsoft.extensions.fileproviders.abstractions"; 428 - version = "5.0.0"; 428 + version = "6.0.0"; 429 429 src = fetchurl { 430 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/5.0.0/microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg"; 431 - sha256 = "01ahgd0b2z2zycrr2lcsq2cl59fn04bh51hdwdp9dcsdkpvnasj1"; 430 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg"; 431 + sha256 = "1fbqmfapxdz77drcv1ndyj2ybvd2rv4c9i9pgiykcpl4fa6dc65q"; 432 432 }; 433 433 } 434 434 { 435 435 pname = "microsoft.extensions.fileproviders.physical"; 436 - version = "5.0.0"; 436 + version = "6.0.0"; 437 437 src = fetchurl { 438 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/5.0.0/microsoft.extensions.fileproviders.physical.5.0.0.nupkg"; 439 - sha256 = "00vii8148a6pk12l9jl0rhjp7apil5q5qcy7v1smnv17lj4p8szd"; 438 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg"; 439 + sha256 = "1ikc3kf325xig6njbi2aj5kmww4xlaq9lsrpc8v764fsm4x10474"; 440 440 }; 441 441 } 442 442 { 443 443 pname = "microsoft.extensions.filesystemglobbing"; 444 - version = "5.0.0"; 444 + version = "6.0.0"; 445 445 src = fetchurl { 446 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/5.0.0/microsoft.extensions.filesystemglobbing.5.0.0.nupkg"; 447 - sha256 = "0lm6n9vbyjh0l17qcc2y9qwn1cns3dyjmkvbxjp0g9sll32kjpmb"; 446 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg"; 447 + sha256 = "09gyyv4fwy9ys84z3aq4lm9y09b7bd1d4l4gfdinmg0z9678f1a4"; 448 448 }; 449 449 } 450 450 { ··· 457 457 } 458 458 { 459 459 pname = "microsoft.extensions.logging"; 460 - version = "5.0.0"; 460 + version = "6.0.0"; 461 461 src = fetchurl { 462 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/5.0.0/microsoft.extensions.logging.5.0.0.nupkg"; 463 - sha256 = "1qa1l18q2jh9azya8gv1p8anzcdirjzd9dxxisb4911i9m1648i3"; 462 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg"; 463 + sha256 = "0fd9jii3y3irfcwlsiww1y9npjgabzarh33rn566wpcz24lijszi"; 464 464 }; 465 465 } 466 466 { ··· 481 481 } 482 482 { 483 483 pname = "microsoft.extensions.logging.abstractions"; 484 - version = "5.0.0"; 484 + version = "6.0.0"; 485 485 src = fetchurl { 486 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/5.0.0/microsoft.extensions.logging.abstractions.5.0.0.nupkg"; 487 - sha256 = "1yza38675dbv1qqnnhqm23alv2bbaqxp0pb7zinjmw8j2mr5r6wc"; 486 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/6.0.0/microsoft.extensions.logging.abstractions.6.0.0.nupkg"; 487 + sha256 = "0b75fmins171zi6bfdcq1kcvyrirs8n91mknjnxy4c3ygi1rrnj0"; 488 488 }; 489 489 } 490 490 { 491 491 pname = "microsoft.extensions.logging.configuration"; 492 - version = "5.0.0"; 492 + version = "6.0.0"; 493 493 src = fetchurl { 494 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.configuration/5.0.0/microsoft.extensions.logging.configuration.5.0.0.nupkg"; 495 - sha256 = "1kmjax24w0ph362jr64rr6f8pyn6ayq39k502q9yrgr7zgrv65pa"; 494 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.configuration/6.0.0/microsoft.extensions.logging.configuration.6.0.0.nupkg"; 495 + sha256 = "0plx785hk61arjxf0m3ywy9hl5nii25raj4523n3ql7mmv6hxqr1"; 496 496 }; 497 497 } 498 498 { 499 499 pname = "microsoft.extensions.logging.console"; 500 - version = "5.0.0"; 500 + version = "6.0.0"; 501 501 src = fetchurl { 502 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/5.0.0/microsoft.extensions.logging.console.5.0.0.nupkg"; 503 - sha256 = "162akclrhk5r62fza8yr30p5824inwmrpq2s510c3a64v76v9cqz"; 502 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/6.0.0/microsoft.extensions.logging.console.6.0.0.nupkg"; 503 + sha256 = "1383b0r33dzz0hrch9cqzzxr9vxr21qq0a5vnrpkfq71m2fky31d"; 504 504 }; 505 505 } 506 506 { ··· 513 513 } 514 514 { 515 515 pname = "microsoft.extensions.options"; 516 - version = "5.0.0"; 516 + version = "6.0.0"; 517 517 src = fetchurl { 518 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/5.0.0/microsoft.extensions.options.5.0.0.nupkg"; 519 - sha256 = "1rdmgpg770x8qwaaa6ryc27zh93p697fcyvn5vkxp0wimlhqkbay"; 518 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg"; 519 + sha256 = "008pnk2p50i594ahz308v81a41mbjz9mwcarqhmrjpl2d20c868g"; 520 520 }; 521 521 } 522 522 { ··· 529 529 } 530 530 { 531 531 pname = "microsoft.extensions.options.configurationextensions"; 532 - version = "5.0.0"; 532 + version = "6.0.0"; 533 533 src = fetchurl { 534 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options.configurationextensions/5.0.0/microsoft.extensions.options.configurationextensions.5.0.0.nupkg"; 535 - sha256 = "1085yrfgc70am43v8i5rxh14kal3bhdd5q85vgny5qp7y1rw0xyw"; 534 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options.configurationextensions/6.0.0/microsoft.extensions.options.configurationextensions.6.0.0.nupkg"; 535 + sha256 = "1k6q91vrhq1r74l4skibn7wzxzww9l74ibxb2i8gg4q6fzbiivba"; 536 536 }; 537 537 } 538 538 { ··· 545 545 } 546 546 { 547 547 pname = "microsoft.extensions.primitives"; 548 - version = "5.0.0"; 548 + version = "6.0.0"; 549 + src = fetchurl { 550 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg"; 551 + sha256 = "1kjiw6s4yfz9gm7mx3wkhp06ghnbs95icj9hi505shz9rjrg42q2"; 552 + }; 553 + } 554 + { 555 + pname = "microsoft.netcore.app.host.win-arm64"; 556 + version = "6.0.0"; 557 + src = fetchurl { 558 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.host.win-arm64/6.0.0/microsoft.netcore.app.host.win-arm64.6.0.0.nupkg"; 559 + sha256 = "1cbqpyha0ys7f6pm90mxmr0f070imhqfnn9kgvi3hqszbv9fv808"; 560 + }; 561 + } 562 + { 563 + pname = "microsoft.netcore.app.host.win-x64"; 564 + version = "6.0.0"; 565 + src = fetchurl { 566 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.host.win-x64/6.0.0/microsoft.netcore.app.host.win-x64.6.0.0.nupkg"; 567 + sha256 = "1016ld3kg4dav2yxxh0i32cy0ixv7s0wl9czydbhkbs2d8669kfx"; 568 + }; 569 + } 570 + { 571 + pname = "microsoft.netcore.app.host.win-x86"; 572 + version = "6.0.0"; 573 + src = fetchurl { 574 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.host.win-x86/6.0.0/microsoft.netcore.app.host.win-x86.6.0.0.nupkg"; 575 + sha256 = "19fyd762mhgjw6zr65hms0gi32pg0iinsrzz88i00n75y6cmyg36"; 576 + }; 577 + } 578 + { 579 + pname = "microsoft.netcore.app.runtime.win-arm64"; 580 + version = "6.0.0"; 581 + src = fetchurl { 582 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.win-arm64/6.0.0/microsoft.netcore.app.runtime.win-arm64.6.0.0.nupkg"; 583 + sha256 = "0jd3h6q09v4wfam9dbl6yfkjy6b7y1wn87gqv2gzf088q9hfc1mc"; 584 + }; 585 + } 586 + { 587 + pname = "microsoft.netcore.app.runtime.win-x64"; 588 + version = "6.0.0"; 549 589 src = fetchurl { 550 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/5.0.0/microsoft.extensions.primitives.5.0.0.nupkg"; 551 - sha256 = "0swqcknyh87ns82w539z1mvy804pfwhgzs97cr3nwqk6g5s42gd6"; 590 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.win-x64/6.0.0/microsoft.netcore.app.runtime.win-x64.6.0.0.nupkg"; 591 + sha256 = "13x1nkigy3nhbr8gxalij7krmzxpciyq4i8k7jdy9278zs1lm5a6"; 552 592 }; 553 593 } 554 594 { 555 - pname = "microsoft.netcore.app.ref"; 556 - version = "3.1.0"; 595 + pname = "microsoft.netcore.app.runtime.win-x86"; 596 + version = "6.0.0"; 557 597 src = fetchurl { 558 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.ref/3.1.0/microsoft.netcore.app.ref.3.1.0.nupkg"; 559 - sha256 = "08svsiilx9spvjamcnjswv0dlpdrgryhr3asdz7cvnl914gjzq4y"; 598 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.win-x86/6.0.0/microsoft.netcore.app.runtime.win-x86.6.0.0.nupkg"; 599 + sha256 = "0p0y3njb618l4ihbsh033jhd8yn1sp8gfhwn722my2166saisjg5"; 560 600 }; 561 601 } 562 602 { ··· 589 629 src = fetchurl { 590 630 url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/2.1.2/microsoft.netcore.platforms.2.1.2.nupkg"; 591 631 sha256 = "1507hnpr9my3z4w1r6xk5n0s1j3y6a2c2cnynj76za7cphxi1141"; 632 + }; 633 + } 634 + { 635 + pname = "microsoft.netcore.platforms"; 636 + version = "3.0.0"; 637 + src = fetchurl { 638 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/3.0.0/microsoft.netcore.platforms.3.0.0.nupkg"; 639 + sha256 = "1bk8r4r3ihmi6322jmcag14jmw11mjqys202azqjzglcx59pxh51"; 592 640 }; 593 641 } 594 642 { ··· 657 705 } 658 706 { 659 707 pname = "microsoft.testplatform.objectmodel"; 660 - version = "16.9.4"; 708 + version = "17.0.0"; 661 709 src = fetchurl { 662 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.objectmodel/16.9.4/microsoft.testplatform.objectmodel.16.9.4.nupkg"; 663 - sha256 = "1jizkbrnm4pv60zch29ki7gj8m7j5whk141x9cwx4kwsd6cfzwi6"; 710 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.objectmodel/17.0.0/microsoft.testplatform.objectmodel.17.0.0.nupkg"; 711 + sha256 = "1bh5scbvl6ndldqv20sl34h4y257irm9ziv2wyfc3hka6912fhn7"; 664 712 }; 665 713 } 666 714 { 667 715 pname = "microsoft.testplatform.translationlayer"; 668 - version = "16.9.4"; 669 - src = fetchurl { 670 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.translationlayer/16.9.4/microsoft.testplatform.translationlayer.16.9.4.nupkg"; 671 - sha256 = "0y5w2zflvq06jim2i6d49qi45ix0b8vlyf024w29n5g1lb570qf0"; 672 - }; 673 - } 674 - { 675 - pname = "microsoft.visualstudio.debugger.contracts"; 676 - version = "17.2.0-beta.21417.1"; 716 + version = "17.0.0"; 677 717 src = fetchurl { 678 - url = "https://pkgs.dev.azure.com/azure-public/3ccf6661-f8ce-4e8a-bb2e-eff943ddd3c7/_packaging/78665e4c-b767-412b-9804-2b1ef7a48b8a/nuget/v3/flat2/microsoft.visualstudio.debugger.contracts/17.2.0-beta.21417.1/microsoft.visualstudio.debugger.contracts.17.2.0-beta.21417.1.nupkg"; 679 - sha256 = "14v8d0hp6p1jn4i6b12r6vx4cvxycpb37a0zh0amz0qkg4afr12d"; 718 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.translationlayer/17.0.0/microsoft.testplatform.translationlayer.17.0.0.nupkg"; 719 + sha256 = "08c6d9aiicpj8hsjb77rz7d2vmw7ivkcc0l1vgdgxddzjhjpy0pi"; 680 720 }; 681 721 } 682 722 { ··· 777 817 } 778 818 { 779 819 pname = "netstandard.library"; 820 + version = "2.0.0"; 821 + src = fetchurl { 822 + url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg"; 823 + sha256 = "1bc4ba8ahgk15m8k4nd7x406nhi0kwqzbgjk2dmw52ss553xz7iy"; 824 + }; 825 + } 826 + { 827 + pname = "netstandard.library"; 780 828 version = "2.0.3"; 781 829 src = fetchurl { 782 830 url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg"; ··· 793 841 } 794 842 { 795 843 pname = "newtonsoft.json"; 796 - version = "12.0.3"; 844 + version = "13.0.1"; 797 845 src = fetchurl { 798 - url = "https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3/newtonsoft.json.12.0.3.nupkg"; 799 - sha256 = "17dzl305d835mzign8r15vkmav2hq8l6g7942dfjpnzr17wwl89x"; 846 + url = "https://api.nuget.org/v3-flatcontainer/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg"; 847 + sha256 = "0fijg0w6iwap8gvzyjnndds0q4b8anwxxvik7y8vgq97dram4srb"; 800 848 }; 801 849 } 802 850 { ··· 809 857 } 810 858 { 811 859 pname = "nuget.common"; 812 - version = "5.10.0"; 813 - src = fetchurl { 814 - url = "https://api.nuget.org/v3-flatcontainer/nuget.common/5.10.0/nuget.common.5.10.0.nupkg"; 815 - sha256 = "0qy6blgppgvxpfcricmvva3qzddk18dza5vy851jrbqshvf9g7kx"; 816 - }; 817 - } 818 - { 819 - pname = "nuget.common"; 820 860 version = "5.2.0"; 821 861 src = fetchurl { 822 862 url = "https://api.nuget.org/v3-flatcontainer/nuget.common/5.2.0/nuget.common.5.2.0.nupkg"; ··· 824 864 }; 825 865 } 826 866 { 827 - pname = "nuget.configuration"; 828 - version = "5.10.0"; 867 + pname = "nuget.common"; 868 + version = "6.0.0"; 829 869 src = fetchurl { 830 - url = "https://api.nuget.org/v3-flatcontainer/nuget.configuration/5.10.0/nuget.configuration.5.10.0.nupkg"; 831 - sha256 = "0xb1n94lrwa6k83i9xcsq68202086p2gj74gzlbhlvb8c2pw6lbb"; 870 + url = "https://api.nuget.org/v3-flatcontainer/nuget.common/6.0.0/nuget.common.6.0.0.nupkg"; 871 + sha256 = "0vbvmx2zzg54fv6617afi3z49cala70qj7jfxqnldjbc1z2c4b7r"; 832 872 }; 833 873 } 834 874 { ··· 840 880 }; 841 881 } 842 882 { 843 - pname = "nuget.dependencyresolver.core"; 844 - version = "5.10.0"; 883 + pname = "nuget.configuration"; 884 + version = "6.0.0"; 845 885 src = fetchurl { 846 - url = "https://api.nuget.org/v3-flatcontainer/nuget.dependencyresolver.core/5.10.0/nuget.dependencyresolver.core.5.10.0.nupkg"; 847 - sha256 = "0dhhclm281ihpfsjzxw34l6zlw49nwzyjiynkmsbcj9icfkp3y4r"; 886 + url = "https://api.nuget.org/v3-flatcontainer/nuget.configuration/6.0.0/nuget.configuration.6.0.0.nupkg"; 887 + sha256 = "1qnrahn4rbb55ra4zg9c947kbm9wdiv344f12c3b4c5i7bfmivx3"; 848 888 }; 849 889 } 850 890 { ··· 856 896 }; 857 897 } 858 898 { 859 - pname = "nuget.frameworks"; 860 - version = "5.0.0"; 899 + pname = "nuget.dependencyresolver.core"; 900 + version = "6.0.0"; 861 901 src = fetchurl { 862 - url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/5.0.0/nuget.frameworks.5.0.0.nupkg"; 863 - sha256 = "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr"; 902 + url = "https://api.nuget.org/v3-flatcontainer/nuget.dependencyresolver.core/6.0.0/nuget.dependencyresolver.core.6.0.0.nupkg"; 903 + sha256 = "04w7wbfsb647apqrrzx3gj2jjlg09wdzmxj62bx43ngr34i4q83n"; 864 904 }; 865 905 } 866 906 { 867 907 pname = "nuget.frameworks"; 868 - version = "5.10.0"; 908 + version = "5.0.0"; 869 909 src = fetchurl { 870 - url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/5.10.0/nuget.frameworks.5.10.0.nupkg"; 871 - sha256 = "0gb6n8rg2jpjp52icgpb3wjdfs3qllh5vbcz8hbcix3l7dncy3v2"; 910 + url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/5.0.0/nuget.frameworks.5.0.0.nupkg"; 911 + sha256 = "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr"; 872 912 }; 873 913 } 874 914 { ··· 880 920 }; 881 921 } 882 922 { 883 - pname = "nuget.librarymodel"; 884 - version = "5.10.0"; 923 + pname = "nuget.frameworks"; 924 + version = "6.0.0"; 885 925 src = fetchurl { 886 - url = "https://api.nuget.org/v3-flatcontainer/nuget.librarymodel/5.10.0/nuget.librarymodel.5.10.0.nupkg"; 887 - sha256 = "0b6mmq2mqfr06ypc772dmcd8bz55gkyfrgn0j3nrgkcdww4fzf9q"; 926 + url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/6.0.0/nuget.frameworks.6.0.0.nupkg"; 927 + sha256 = "11p6mhh36s3vmnylfzw125fqivjk1xj75bvcxdav8n4sbk7d3gqs"; 888 928 }; 889 929 } 890 930 { ··· 896 936 }; 897 937 } 898 938 { 899 - pname = "nuget.packaging"; 900 - version = "5.10.0"; 939 + pname = "nuget.librarymodel"; 940 + version = "6.0.0"; 901 941 src = fetchurl { 902 - url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging/5.10.0/nuget.packaging.5.10.0.nupkg"; 903 - sha256 = "11g0v061axhp0nisclq5cm2mc92d69z92giz9l40ih478c5nishw"; 942 + url = "https://api.nuget.org/v3-flatcontainer/nuget.librarymodel/6.0.0/nuget.librarymodel.6.0.0.nupkg"; 943 + sha256 = "0pg4m6v2j5vvld7s57fvx28ix7wlah6dakhi55qpavmkmnzp6g3f"; 904 944 }; 905 945 } 906 946 { ··· 912 952 }; 913 953 } 914 954 { 915 - pname = "nuget.packaging.core"; 916 - version = "5.10.0"; 955 + pname = "nuget.packaging"; 956 + version = "6.0.0"; 917 957 src = fetchurl { 918 - url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging.core/5.10.0/nuget.packaging.core.5.10.0.nupkg"; 919 - sha256 = "1frxwwl583qwsj84rjgvd7il6icgxzxxps6yng75qx8ppf99dsr6"; 958 + url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging/6.0.0/nuget.packaging.6.0.0.nupkg"; 959 + sha256 = "0vlcda74h6gq3q569kbbz4n3d26vihxaldvvi2md3phqf8jpvhjb"; 920 960 }; 921 961 } 922 962 { 923 - pname = "nuget.projectmodel"; 924 - version = "5.10.0"; 963 + pname = "nuget.packaging.core"; 964 + version = "6.0.0"; 925 965 src = fetchurl { 926 - url = "https://api.nuget.org/v3-flatcontainer/nuget.projectmodel/5.10.0/nuget.projectmodel.5.10.0.nupkg"; 927 - sha256 = "1cqg319n986wciskrqsfawfhqp1d7a7i2qjd0qplpckyw8msng2i"; 966 + url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging.core/6.0.0/nuget.packaging.core.6.0.0.nupkg"; 967 + sha256 = "1kk7rf7cavdicxb4bmwcgwykr53nrk38m6r49hvs85jhhvg9jmyf"; 928 968 }; 929 969 } 930 970 { ··· 936 976 }; 937 977 } 938 978 { 939 - pname = "nuget.protocol"; 940 - version = "5.10.0"; 979 + pname = "nuget.projectmodel"; 980 + version = "6.0.0"; 941 981 src = fetchurl { 942 - url = "https://api.nuget.org/v3-flatcontainer/nuget.protocol/5.10.0/nuget.protocol.5.10.0.nupkg"; 943 - sha256 = "0cs9qp169zx6g2w5bzrlhxv0q1i8mb8dxlb2nkiq7pkvah86rxkc"; 982 + url = "https://api.nuget.org/v3-flatcontainer/nuget.projectmodel/6.0.0/nuget.projectmodel.6.0.0.nupkg"; 983 + sha256 = "1fldxlw88jqgy0cfgfa7drqpxf909kfchcvk4nxj7vyhza2q715y"; 944 984 }; 945 985 } 946 986 { ··· 952 992 }; 953 993 } 954 994 { 955 - pname = "nuget.versioning"; 956 - version = "5.10.0"; 995 + pname = "nuget.protocol"; 996 + version = "6.0.0"; 957 997 src = fetchurl { 958 - url = "https://api.nuget.org/v3-flatcontainer/nuget.versioning/5.10.0/nuget.versioning.5.10.0.nupkg"; 959 - sha256 = "10vvw6vjpx0c26rlxh7dnpyp4prahn25717ccd8bzkjmyzhm90cs"; 998 + url = "https://api.nuget.org/v3-flatcontainer/nuget.protocol/6.0.0/nuget.protocol.6.0.0.nupkg"; 999 + sha256 = "16rs9hfra4bly8jp0lxsg0gbpi9wvxh7nrxrdkbjm01vb0azw823"; 960 1000 }; 961 1001 } 962 1002 { ··· 965 1005 src = fetchurl { 966 1006 url = "https://api.nuget.org/v3-flatcontainer/nuget.versioning/5.2.0/nuget.versioning.5.2.0.nupkg"; 967 1007 sha256 = "08ay8bhddj9yiq6h9lk814l65fpx5gh1iprkl7pcp78g57a6k45k"; 1008 + }; 1009 + } 1010 + { 1011 + pname = "nuget.versioning"; 1012 + version = "6.0.0"; 1013 + src = fetchurl { 1014 + url = "https://api.nuget.org/v3-flatcontainer/nuget.versioning/6.0.0/nuget.versioning.6.0.0.nupkg"; 1015 + sha256 = "0xxrz0p9vd2ax8hcrdxcp3h6gv8qcy6mngp49dvg1ijjjr1jb85k"; 968 1016 }; 969 1017 } 970 1018 { ··· 1008 1056 }; 1009 1057 } 1010 1058 { 1059 + pname = "runtime.any.system.collections"; 1060 + version = "4.3.0"; 1061 + src = fetchurl { 1062 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg"; 1063 + sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; 1064 + }; 1065 + } 1066 + { 1067 + pname = "runtime.any.system.diagnostics.tools"; 1068 + version = "4.3.0"; 1069 + src = fetchurl { 1070 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg"; 1071 + sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; 1072 + }; 1073 + } 1074 + { 1075 + pname = "runtime.any.system.diagnostics.tracing"; 1076 + version = "4.3.0"; 1077 + src = fetchurl { 1078 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg"; 1079 + sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; 1080 + }; 1081 + } 1082 + { 1083 + pname = "runtime.any.system.globalization"; 1084 + version = "4.3.0"; 1085 + src = fetchurl { 1086 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg"; 1087 + sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; 1088 + }; 1089 + } 1090 + { 1091 + pname = "runtime.any.system.globalization.calendars"; 1092 + version = "4.3.0"; 1093 + src = fetchurl { 1094 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.globalization.calendars/4.3.0/runtime.any.system.globalization.calendars.4.3.0.nupkg"; 1095 + sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201"; 1096 + }; 1097 + } 1098 + { 1099 + pname = "runtime.any.system.io"; 1100 + version = "4.3.0"; 1101 + src = fetchurl { 1102 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg"; 1103 + sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; 1104 + }; 1105 + } 1106 + { 1107 + pname = "runtime.any.system.reflection"; 1108 + version = "4.3.0"; 1109 + src = fetchurl { 1110 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg"; 1111 + sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; 1112 + }; 1113 + } 1114 + { 1115 + pname = "runtime.any.system.reflection.extensions"; 1116 + version = "4.3.0"; 1117 + src = fetchurl { 1118 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg"; 1119 + sha256 = "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33"; 1120 + }; 1121 + } 1122 + { 1123 + pname = "runtime.any.system.reflection.primitives"; 1124 + version = "4.3.0"; 1125 + src = fetchurl { 1126 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg"; 1127 + sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; 1128 + }; 1129 + } 1130 + { 1131 + pname = "runtime.any.system.resources.resourcemanager"; 1132 + version = "4.3.0"; 1133 + src = fetchurl { 1134 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg"; 1135 + sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; 1136 + }; 1137 + } 1138 + { 1139 + pname = "runtime.any.system.runtime"; 1140 + version = "4.3.0"; 1141 + src = fetchurl { 1142 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg"; 1143 + sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; 1144 + }; 1145 + } 1146 + { 1147 + pname = "runtime.any.system.runtime.handles"; 1148 + version = "4.3.0"; 1149 + src = fetchurl { 1150 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg"; 1151 + sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; 1152 + }; 1153 + } 1154 + { 1155 + pname = "runtime.any.system.runtime.interopservices"; 1156 + version = "4.3.0"; 1157 + src = fetchurl { 1158 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg"; 1159 + sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; 1160 + }; 1161 + } 1162 + { 1163 + pname = "runtime.any.system.text.encoding"; 1164 + version = "4.3.0"; 1165 + src = fetchurl { 1166 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg"; 1167 + sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; 1168 + }; 1169 + } 1170 + { 1171 + pname = "runtime.any.system.text.encoding.extensions"; 1172 + version = "4.3.0"; 1173 + src = fetchurl { 1174 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg"; 1175 + sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; 1176 + }; 1177 + } 1178 + { 1179 + pname = "runtime.any.system.threading.tasks"; 1180 + version = "4.3.0"; 1181 + src = fetchurl { 1182 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg"; 1183 + sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; 1184 + }; 1185 + } 1186 + { 1187 + pname = "runtime.any.system.threading.timer"; 1188 + version = "4.3.0"; 1189 + src = fetchurl { 1190 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.threading.timer/4.3.0/runtime.any.system.threading.timer.4.3.0.nupkg"; 1191 + sha256 = "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086"; 1192 + }; 1193 + } 1194 + { 1011 1195 pname = "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl"; 1012 1196 version = "4.3.0"; 1013 1197 src = fetchurl { ··· 1136 1320 }; 1137 1321 } 1138 1322 { 1323 + pname = "runtime.win10-arm64.runtime.native.system.io.compression"; 1324 + version = "4.3.0"; 1325 + src = fetchurl { 1326 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.runtime.native.system.io.compression/4.3.0/runtime.win10-arm64.runtime.native.system.io.compression.4.3.0.nupkg"; 1327 + sha256 = "1jrmrmqscn8cn2n3piar8n85gfsra7vlai23w9ldzprh0y4dw3v1"; 1328 + }; 1329 + } 1330 + { 1331 + pname = "runtime.win7.system.private.uri"; 1332 + version = "4.3.0"; 1333 + src = fetchurl { 1334 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win7.system.private.uri/4.3.0/runtime.win7.system.private.uri.4.3.0.nupkg"; 1335 + sha256 = "0bxkcmklp556dc43bra8ngc8wymcbbflcydi0xwq0j22gm66xf2m"; 1336 + }; 1337 + } 1338 + { 1339 + pname = "runtime.win7-x64.runtime.native.system.io.compression"; 1340 + version = "4.3.0"; 1341 + src = fetchurl { 1342 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win7-x64.runtime.native.system.io.compression/4.3.0/runtime.win7-x64.runtime.native.system.io.compression.4.3.0.nupkg"; 1343 + sha256 = "1dmbmksnxg12fk2p0k7rzy16448mddr2sfrnqs0rhhrzl0z22zi5"; 1344 + }; 1345 + } 1346 + { 1347 + pname = "runtime.win7-x86.runtime.native.system.io.compression"; 1348 + version = "4.3.0"; 1349 + src = fetchurl { 1350 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win7-x86.runtime.native.system.io.compression/4.3.0/runtime.win7-x86.runtime.native.system.io.compression.4.3.0.nupkg"; 1351 + sha256 = "08ppln62lcq3bz2kyxqyvh98payd5a7w8fzmb53mznkcfv32n55b"; 1352 + }; 1353 + } 1354 + { 1355 + pname = "runtime.win.microsoft.win32.primitives"; 1356 + version = "4.3.0"; 1357 + src = fetchurl { 1358 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.microsoft.win32.primitives/4.3.0/runtime.win.microsoft.win32.primitives.4.3.0.nupkg"; 1359 + sha256 = "0k1h8nnp1s0p8rjwgjyj1387cc1yycv0k22igxc963lqdzrx2z36"; 1360 + }; 1361 + } 1362 + { 1363 + pname = "runtime.win.system.console"; 1364 + version = "4.3.0"; 1365 + src = fetchurl { 1366 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.console/4.3.0/runtime.win.system.console.4.3.0.nupkg"; 1367 + sha256 = "0x2yajfrbc5zc6g7nmlr44xpjk6p1hxjq47jn3xki5j7i33zw9jc"; 1368 + }; 1369 + } 1370 + { 1371 + pname = "runtime.win.system.diagnostics.debug"; 1372 + version = "4.3.0"; 1373 + src = fetchurl { 1374 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.diagnostics.debug/4.3.0/runtime.win.system.diagnostics.debug.4.3.0.nupkg"; 1375 + sha256 = "16fbn4bcynad1ygdq0yk1wmckvs8jvrrf104xa5dc2hlc8y3x58f"; 1376 + }; 1377 + } 1378 + { 1379 + pname = "runtime.win.system.io.filesystem"; 1380 + version = "4.3.0"; 1381 + src = fetchurl { 1382 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.io.filesystem/4.3.0/runtime.win.system.io.filesystem.4.3.0.nupkg"; 1383 + sha256 = "1c01nklbxywszsbfaxc76hsz7gdxac3jkphrywfkdsi3v4bwd6g8"; 1384 + }; 1385 + } 1386 + { 1387 + pname = "runtime.win.system.net.primitives"; 1388 + version = "4.3.0"; 1389 + src = fetchurl { 1390 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.net.primitives/4.3.0/runtime.win.system.net.primitives.4.3.0.nupkg"; 1391 + sha256 = "1dixh195bi7473n17hspll6i562gghdz9m4jk8d4kzi1mlzjk9cf"; 1392 + }; 1393 + } 1394 + { 1395 + pname = "runtime.win.system.net.sockets"; 1396 + version = "4.3.0"; 1397 + src = fetchurl { 1398 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.net.sockets/4.3.0/runtime.win.system.net.sockets.4.3.0.nupkg"; 1399 + sha256 = "0lr3zki831vs6qhk5wckv2b9qbfk9rcj0ds2926qvj1b9y9m6sck"; 1400 + }; 1401 + } 1402 + { 1403 + pname = "runtime.win.system.runtime.extensions"; 1404 + version = "4.3.0"; 1405 + src = fetchurl { 1406 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.runtime.extensions/4.3.0/runtime.win.system.runtime.extensions.4.3.0.nupkg"; 1407 + sha256 = "1700famsxndccfbcdz9q14qb20p49lax67mqwpgy4gx3vja1yczr"; 1408 + }; 1409 + } 1410 + { 1139 1411 pname = "sqlitepclraw.bundle_green"; 1140 1412 version = "2.0.4"; 1141 1413 src = fetchurl { ··· 1201 1473 } 1202 1474 { 1203 1475 pname = "system.buffers"; 1204 - version = "4.5.0"; 1205 - src = fetchurl { 1206 - url = "https://api.nuget.org/v3-flatcontainer/system.buffers/4.5.0/system.buffers.4.5.0.nupkg"; 1207 - sha256 = "1ywfqn4md6g3iilpxjn5dsr0f5lx6z0yvhqp4pgjcamygg73cz2c"; 1208 - }; 1209 - } 1210 - { 1211 - pname = "system.buffers"; 1212 1476 version = "4.5.1"; 1213 1477 src = fetchurl { 1214 1478 url = "https://api.nuget.org/v3-flatcontainer/system.buffers/4.5.1/system.buffers.4.5.1.nupkg"; ··· 1272 1536 }; 1273 1537 } 1274 1538 { 1539 + pname = "system.componentmodel.annotations"; 1540 + version = "5.0.0"; 1541 + src = fetchurl { 1542 + url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/5.0.0/system.componentmodel.annotations.5.0.0.nupkg"; 1543 + sha256 = "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j"; 1544 + }; 1545 + } 1546 + { 1275 1547 pname = "system.componentmodel.composition"; 1276 1548 version = "4.5.0"; 1277 1549 src = fetchurl { ··· 1345 1617 } 1346 1618 { 1347 1619 pname = "system.diagnostics.debug"; 1620 + version = "4.0.11"; 1621 + src = fetchurl { 1622 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg"; 1623 + sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; 1624 + }; 1625 + } 1626 + { 1627 + pname = "system.diagnostics.debug"; 1348 1628 version = "4.3.0"; 1349 1629 src = fetchurl { 1350 1630 url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg"; ··· 1361 1641 } 1362 1642 { 1363 1643 pname = "system.diagnostics.diagnosticsource"; 1364 - version = "5.0.0"; 1644 + version = "6.0.0"; 1365 1645 src = fetchurl { 1366 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/5.0.0/system.diagnostics.diagnosticsource.5.0.0.nupkg"; 1367 - sha256 = "0phd2qizshjvglhzws1jd0cq4m54gscz4ychzr3x6wbgl4vvfrga"; 1646 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg"; 1647 + sha256 = "0rrihs9lnb1h6x4h0hn6kgfnh58qq7hx8qq99gh6fayx4dcnx3s5"; 1648 + }; 1649 + } 1650 + { 1651 + pname = "system.diagnostics.process"; 1652 + version = "4.3.0"; 1653 + src = fetchurl { 1654 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg"; 1655 + sha256 = "0g4prsbkygq8m21naqmcp70f24a1ksyix3dihb1r1f71lpi3cfj7"; 1656 + }; 1657 + } 1658 + { 1659 + pname = "system.diagnostics.tools"; 1660 + version = "4.0.1"; 1661 + src = fetchurl { 1662 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg"; 1663 + sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; 1368 1664 }; 1369 1665 } 1370 1666 { ··· 1389 1685 src = fetchurl { 1390 1686 url = "https://api.nuget.org/v3-flatcontainer/system.drawing.common/4.7.0/system.drawing.common.4.7.0.nupkg"; 1391 1687 sha256 = "0yfw7cpl54mgfcylvlpvrl0c8r1b0zca6p7r3rcwkvqy23xqcyhg"; 1688 + }; 1689 + } 1690 + { 1691 + pname = "system.dynamic.runtime"; 1692 + version = "4.3.0"; 1693 + src = fetchurl { 1694 + url = "https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg"; 1695 + sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; 1392 1696 }; 1393 1697 } 1394 1698 { ··· 1465 1769 } 1466 1770 { 1467 1771 pname = "system.io.filesystem"; 1772 + version = "4.0.1"; 1773 + src = fetchurl { 1774 + url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg"; 1775 + sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; 1776 + }; 1777 + } 1778 + { 1779 + pname = "system.io.filesystem"; 1468 1780 version = "4.3.0"; 1469 1781 src = fetchurl { 1470 1782 url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg"; 1471 1783 sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; 1784 + }; 1785 + } 1786 + { 1787 + pname = "system.io.filesystem.primitives"; 1788 + version = "4.0.1"; 1789 + src = fetchurl { 1790 + url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg"; 1791 + sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; 1472 1792 }; 1473 1793 } 1474 1794 { ··· 1497 1817 } 1498 1818 { 1499 1819 pname = "system.linq"; 1820 + version = "4.1.0"; 1821 + src = fetchurl { 1822 + url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.1.0/system.linq.4.1.0.nupkg"; 1823 + sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; 1824 + }; 1825 + } 1826 + { 1827 + pname = "system.linq"; 1500 1828 version = "4.3.0"; 1501 1829 src = fetchurl { 1502 1830 url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg"; 1503 1831 sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; 1832 + }; 1833 + } 1834 + { 1835 + pname = "system.linq.expressions"; 1836 + version = "4.1.0"; 1837 + src = fetchurl { 1838 + url = "https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg"; 1839 + sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; 1504 1840 }; 1505 1841 } 1506 1842 { ··· 1536 1872 }; 1537 1873 } 1538 1874 { 1875 + pname = "system.net.http"; 1876 + version = "4.3.4"; 1877 + src = fetchurl { 1878 + url = "https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.4/system.net.http.4.3.4.nupkg"; 1879 + sha256 = "0kdp31b8819v88l719j6my0yas6myv9d1viql3qz5577mv819jhl"; 1880 + }; 1881 + } 1882 + { 1883 + pname = "system.net.nameresolution"; 1884 + version = "4.3.0"; 1885 + src = fetchurl { 1886 + url = "https://api.nuget.org/v3-flatcontainer/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg"; 1887 + sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; 1888 + }; 1889 + } 1890 + { 1539 1891 pname = "system.net.primitives"; 1540 1892 version = "4.3.0"; 1541 1893 src = fetchurl { ··· 1577 1929 } 1578 1930 { 1579 1931 pname = "system.objectmodel"; 1932 + version = "4.0.12"; 1933 + src = fetchurl { 1934 + url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg"; 1935 + sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; 1936 + }; 1937 + } 1938 + { 1939 + pname = "system.objectmodel"; 1580 1940 version = "4.3.0"; 1581 1941 src = fetchurl { 1582 1942 url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg"; 1583 1943 sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 1944 + }; 1945 + } 1946 + { 1947 + pname = "system.private.uri"; 1948 + version = "4.3.0"; 1949 + src = fetchurl { 1950 + url = "https://api.nuget.org/v3-flatcontainer/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg"; 1951 + sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; 1584 1952 }; 1585 1953 } 1586 1954 { ··· 1617 1985 } 1618 1986 { 1619 1987 pname = "system.reflection.emit"; 1988 + version = "4.0.1"; 1989 + src = fetchurl { 1990 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg"; 1991 + sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; 1992 + }; 1993 + } 1994 + { 1995 + pname = "system.reflection.emit"; 1620 1996 version = "4.3.0"; 1621 1997 src = fetchurl { 1622 1998 url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg"; ··· 1624 2000 }; 1625 2001 } 1626 2002 { 1627 - pname = "system.reflection.emit"; 1628 - version = "4.6.0"; 2003 + pname = "system.reflection.emit.ilgeneration"; 2004 + version = "4.0.1"; 1629 2005 src = fetchurl { 1630 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.6.0/system.reflection.emit.4.6.0.nupkg"; 1631 - sha256 = "18h375q5bn9h7swxnk4krrxym1dxmi9bm26p89xps9ygrj4q6zqw"; 2006 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg"; 2007 + sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; 1632 2008 }; 1633 2009 } 1634 2010 { ··· 1640 2016 }; 1641 2017 } 1642 2018 { 1643 - pname = "system.reflection.emit.ilgeneration"; 1644 - version = "4.6.0"; 2019 + pname = "system.reflection.emit.lightweight"; 2020 + version = "4.0.1"; 1645 2021 src = fetchurl { 1646 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.6.0/system.reflection.emit.ilgeneration.4.6.0.nupkg"; 1647 - sha256 = "0jxc26k5q0rwrldi30bfbrfw4jh3kvribzwc8ryzr24kmhr3vv96"; 2022 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg"; 2023 + sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; 1648 2024 }; 1649 2025 } 1650 2026 { ··· 1656 2032 }; 1657 2033 } 1658 2034 { 1659 - pname = "system.reflection.emit.lightweight"; 1660 - version = "4.6.0"; 2035 + pname = "system.reflection.extensions"; 2036 + version = "4.0.1"; 1661 2037 src = fetchurl { 1662 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.6.0/system.reflection.emit.lightweight.4.6.0.nupkg"; 1663 - sha256 = "0hry2k6b7kicg4zxnq0hhn0ys52711pxy7l9v5sp7gvp9cicwpgp"; 2038 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg"; 2039 + sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; 1664 2040 }; 1665 2041 } 1666 2042 { ··· 1705 2081 } 1706 2082 { 1707 2083 pname = "system.reflection.typeextensions"; 2084 + version = "4.1.0"; 2085 + src = fetchurl { 2086 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg"; 2087 + sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; 2088 + }; 2089 + } 2090 + { 2091 + pname = "system.reflection.typeextensions"; 1708 2092 version = "4.3.0"; 1709 2093 src = fetchurl { 1710 2094 url = "https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg"; ··· 1777 2161 } 1778 2162 { 1779 2163 pname = "system.runtime.compilerservices.unsafe"; 1780 - version = "4.7.0"; 1781 - src = fetchurl { 1782 - url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.0/system.runtime.compilerservices.unsafe.4.7.0.nupkg"; 1783 - sha256 = "16r6sn4czfjk8qhnz7bnqlyiaaszr0ihinb7mq9zzr1wba257r54"; 1784 - }; 1785 - } 1786 - { 1787 - pname = "system.runtime.compilerservices.unsafe"; 1788 2164 version = "4.7.1"; 1789 2165 src = fetchurl { 1790 2166 url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.1/system.runtime.compilerservices.unsafe.4.7.1.nupkg"; ··· 1800 2176 }; 1801 2177 } 1802 2178 { 2179 + pname = "system.runtime.compilerservices.unsafe"; 2180 + version = "6.0.0"; 2181 + src = fetchurl { 2182 + url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg"; 2183 + sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; 2184 + }; 2185 + } 2186 + { 1803 2187 pname = "system.runtime.extensions"; 1804 2188 version = "4.1.0"; 1805 2189 src = fetchurl { ··· 1877 2261 src = fetchurl { 1878 2262 url = "https://api.nuget.org/v3-flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg"; 1879 2263 sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 2264 + }; 2265 + } 2266 + { 2267 + pname = "system.runtime.serialization.primitives"; 2268 + version = "4.1.1"; 2269 + src = fetchurl { 2270 + url = "https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg"; 2271 + sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k"; 1880 2272 }; 1881 2273 } 1882 2274 { ··· 1904 2296 }; 1905 2297 } 1906 2298 { 2299 + pname = "system.security.claims"; 2300 + version = "4.3.0"; 2301 + src = fetchurl { 2302 + url = "https://api.nuget.org/v3-flatcontainer/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg"; 2303 + sha256 = "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn"; 2304 + }; 2305 + } 2306 + { 1907 2307 pname = "system.security.cryptography.algorithms"; 1908 2308 version = "4.3.0"; 1909 2309 src = fetchurl { ··· 1993 2393 } 1994 2394 { 1995 2395 pname = "system.security.cryptography.protecteddata"; 2396 + version = "4.3.0"; 2397 + src = fetchurl { 2398 + url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/4.3.0/system.security.cryptography.protecteddata.4.3.0.nupkg"; 2399 + sha256 = "1kg264xmqabyz8gfg8ymp6qp6aw43vawfp0znf0909d7b5jd3dq9"; 2400 + }; 2401 + } 2402 + { 2403 + pname = "system.security.cryptography.protecteddata"; 1996 2404 version = "4.4.0"; 1997 2405 src = fetchurl { 1998 2406 url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/4.4.0/system.security.cryptography.protecteddata.4.4.0.nupkg"; ··· 2040 2448 }; 2041 2449 } 2042 2450 { 2451 + pname = "system.security.principal"; 2452 + version = "4.3.0"; 2453 + src = fetchurl { 2454 + url = "https://api.nuget.org/v3-flatcontainer/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg"; 2455 + sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; 2456 + }; 2457 + } 2458 + { 2459 + pname = "system.security.principal.windows"; 2460 + version = "4.3.0"; 2461 + src = fetchurl { 2462 + url = "https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.0.nupkg"; 2463 + sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; 2464 + }; 2465 + } 2466 + { 2043 2467 pname = "system.security.principal.windows"; 2044 2468 version = "4.5.0"; 2045 2469 src = fetchurl { ··· 2097 2521 } 2098 2522 { 2099 2523 pname = "system.text.encoding.extensions"; 2524 + version = "4.0.11"; 2525 + src = fetchurl { 2526 + url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg"; 2527 + sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; 2528 + }; 2529 + } 2530 + { 2531 + pname = "system.text.encoding.extensions"; 2100 2532 version = "4.3.0"; 2101 2533 src = fetchurl { 2102 2534 url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg"; ··· 2105 2537 } 2106 2538 { 2107 2539 pname = "system.text.encodings.web"; 2108 - version = "4.7.0"; 2540 + version = "5.0.1"; 2109 2541 src = fetchurl { 2110 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/4.7.0/system.text.encodings.web.4.7.0.nupkg"; 2111 - sha256 = "0sd3bihfar5rwm6nib4lhyys306nkm02qvk6p6sgzmnlfmma2wn3"; 2542 + url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/5.0.1/system.text.encodings.web.5.0.1.nupkg"; 2543 + sha256 = "00yg63qnp94q2qryxxggzigi276bibb8b3b96gcvsyrxy7b703n9"; 2112 2544 }; 2113 2545 } 2114 2546 { 2115 2547 pname = "system.text.encodings.web"; 2116 - version = "5.0.0"; 2548 + version = "6.0.0"; 2117 2549 src = fetchurl { 2118 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/5.0.0/system.text.encodings.web.5.0.0.nupkg"; 2119 - sha256 = "144pgy65jc3bkar7d4fg1c0rq6qmkx68gj9k1ldk97558w22v1r1"; 2550 + url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg"; 2551 + sha256 = "06n9ql3fmhpjl32g3492sj181zjml5dlcc5l76xq2h38c4f87sai"; 2120 2552 }; 2121 2553 } 2122 2554 { 2123 2555 pname = "system.text.json"; 2124 - version = "4.7.0"; 2556 + version = "5.0.2"; 2125 2557 src = fetchurl { 2126 - url = "https://api.nuget.org/v3-flatcontainer/system.text.json/4.7.0/system.text.json.4.7.0.nupkg"; 2127 - sha256 = "0fp3xrysccm5dkaac4yb51d793vywxks978kkl5x4db9gw29rfdr"; 2558 + url = "https://api.nuget.org/v3-flatcontainer/system.text.json/5.0.2/system.text.json.5.0.2.nupkg"; 2559 + sha256 = "0vd0wd29cdhgcjngl9sw391sn2s8xm974y15zvym0whsdgjwiqfx"; 2128 2560 }; 2129 2561 } 2130 2562 { 2131 2563 pname = "system.text.json"; 2132 - version = "5.0.0"; 2564 + version = "6.0.0"; 2133 2565 src = fetchurl { 2134 - url = "https://api.nuget.org/v3-flatcontainer/system.text.json/5.0.0/system.text.json.5.0.0.nupkg"; 2135 - sha256 = "1gpgl18z6qrgmqrikgh99xkjwzb1didrjp77bch7nrlra21gr4ks"; 2566 + url = "https://api.nuget.org/v3-flatcontainer/system.text.json/6.0.0/system.text.json.6.0.0.nupkg"; 2567 + sha256 = "1si2my1g0q0qv1hiqnji4xh9wd05qavxnzj9dwgs23iqvgjky0gl"; 2568 + }; 2569 + } 2570 + { 2571 + pname = "system.text.regularexpressions"; 2572 + version = "4.1.0"; 2573 + src = fetchurl { 2574 + url = "https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg"; 2575 + sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; 2136 2576 }; 2137 2577 } 2138 2578 { ··· 2160 2600 }; 2161 2601 } 2162 2602 { 2603 + pname = "system.threading.overlapped"; 2604 + version = "4.3.0"; 2605 + src = fetchurl { 2606 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg"; 2607 + sha256 = "1nahikhqh9nk756dh8p011j36rlcp1bzz3vwi2b4m1l2s3vz8idm"; 2608 + }; 2609 + } 2610 + { 2163 2611 pname = "system.threading.tasks"; 2164 2612 version = "4.0.11"; 2165 2613 src = fetchurl { ··· 2185 2633 } 2186 2634 { 2187 2635 pname = "system.threading.tasks.extensions"; 2188 - version = "4.3.0"; 2636 + version = "4.0.0"; 2189 2637 src = fetchurl { 2190 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg"; 2191 - sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 2638 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg"; 2639 + sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; 2192 2640 }; 2193 2641 } 2194 2642 { 2195 2643 pname = "system.threading.tasks.extensions"; 2196 - version = "4.5.2"; 2644 + version = "4.3.0"; 2197 2645 src = fetchurl { 2198 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.5.2/system.threading.tasks.extensions.4.5.2.nupkg"; 2199 - sha256 = "1sh63dz0dymqcwmprp0nadm77b83vmm7lyllpv578c397bslb8hj"; 2646 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg"; 2647 + sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 2200 2648 }; 2201 2649 } 2202 2650 { ··· 2216 2664 }; 2217 2665 } 2218 2666 { 2667 + pname = "system.threading.thread"; 2668 + version = "4.3.0"; 2669 + src = fetchurl { 2670 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.3.0/system.threading.thread.4.3.0.nupkg"; 2671 + sha256 = "0y2xiwdfcph7znm2ysxanrhbqqss6a3shi1z3c779pj2s523mjx4"; 2672 + }; 2673 + } 2674 + { 2675 + pname = "system.threading.threadpool"; 2676 + version = "4.3.0"; 2677 + src = fetchurl { 2678 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg"; 2679 + sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; 2680 + }; 2681 + } 2682 + { 2219 2683 pname = "system.threading.timer"; 2220 2684 version = "4.3.0"; 2221 2685 src = fetchurl { ··· 2241 2705 } 2242 2706 { 2243 2707 pname = "system.xml.readerwriter"; 2708 + version = "4.0.11"; 2709 + src = fetchurl { 2710 + url = "https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg"; 2711 + sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; 2712 + }; 2713 + } 2714 + { 2715 + pname = "system.xml.readerwriter"; 2244 2716 version = "4.3.0"; 2245 2717 src = fetchurl { 2246 2718 url = "https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg"; 2247 2719 sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; 2720 + }; 2721 + } 2722 + { 2723 + pname = "system.xml.xdocument"; 2724 + version = "4.0.11"; 2725 + src = fetchurl { 2726 + url = "https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg"; 2727 + sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; 2248 2728 }; 2249 2729 } 2250 2730 {
+3 -3
pkgs/development/tools/purescript/spago/spago.nix
··· 14 14 }: 15 15 mkDerivation { 16 16 pname = "spago"; 17 - version = "0.20.4"; 17 + version = "0.20.5"; 18 18 src = fetchgit { 19 19 url = "https://github.com/purescript/spago.git"; 20 - sha256 = "0dj7z2yr4s2kqjklbjdzsrmc5lqli322wg5k412jixxpmlx11a5f"; 21 - rev = "33da63176fe07967761f43c83af9715f104013f0"; 20 + sha256 = "1qjlag5wm1hls54gb1rjym3xj28xww2p3m58f38g6icar9qz4a72"; 21 + rev = "2a70306d87ddb2a7a61cf5ac61fccd7d91ecae6c"; 22 22 fetchSubmodules = true; 23 23 }; 24 24 isLibrary = true;
+3 -3
pkgs/development/tools/rust/cargo-cache/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-cache"; 5 - version = "0.7.0"; 5 + version = "0.8.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "matthiaskrgr"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-MPU+hmYfmWftVEkdT/sZx9ESgCPTb7m4lEnYf5bOSYU="; 11 + sha256 = "sha256-e9mT+OpPDTBtvQx3BVekr38azzD2DaT715wYLHYkjtk="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-6Ffgg5/B1IFnTlSjzhAsnhxz8jBcgk01RIkwgLqlsvc="; 14 + cargoSha256 = "sha256-pVa7OLRlWMy7ZlLGTeePt86kK5y0OULOLYrq9GtOFRA="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 17 17
+4 -4
pkgs/development/tools/rust/cargo-fuzz/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-fuzz"; 5 - version = "0.10.2"; 5 + version = "0.11.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rust-fuzz"; 9 9 repo = "cargo-fuzz"; 10 - rev = version; 11 - sha256 = "sha256-5dHEUGn2CrEpSTJsbnSRx/hKXx6dLCDcuD1dPOH49d4="; 10 + rev = "v${version}"; 11 + sha256 = "sha256-vjKo0L7sYrC7qWdOGSJDWpL04tmNjO3QRwAIRHN/DiI="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-vZPd8Zzyp0PgIdyp5qY57ex0cCihplw/FY+xf3etuu8="; 14 + cargoSha256 = "sha256-8XVRMwrBEJ1duQtXzNpuN5wJPUgziJlka4n/nAIqeEc="; 15 15 16 16 buildInputs = lib.optional stdenv.isDarwin libiconv; 17 17
+79
pkgs/games/7kaa/default.nix
··· 1 + { lib 2 + , stdenv 3 + , gccStdenv 4 + , autoreconfHook 5 + , pkg-config 6 + , fetchurl 7 + , fetchFromGitHub 8 + , openal 9 + , libtool 10 + , enet 11 + , SDL2 12 + , curl 13 + , gettext 14 + , libiconv 15 + }: 16 + 17 + let 18 + 19 + name = "7kaa"; 20 + versionMajor = "2.15"; 21 + versionMinor = "4p1"; 22 + 23 + music = stdenv.mkDerivation rec { 24 + pname = "${name}-music"; 25 + version = "${versionMajor}"; 26 + 27 + src = fetchurl { 28 + url = "https://www.7kfans.com/downloads/${name}-music-${versionMajor}.tar.bz2"; 29 + sha256 = "sha256-sNdntuJXGaFPXzSpN0SoAi17wkr2YnW+5U38eIaVwcM="; 30 + }; 31 + 32 + installPhase = '' 33 + mkdir -p $out 34 + cp -r * $out/ 35 + ''; 36 + 37 + meta.license = lib.licenses.unfree; 38 + 39 + }; 40 + 41 + in 42 + 43 + gccStdenv.mkDerivation rec { 44 + pname = "${name}"; 45 + version = "v${versionMajor}.${versionMinor}"; 46 + 47 + src = fetchFromGitHub { 48 + owner = "the3dfxdude"; 49 + repo = pname; 50 + rev = "9db2a43e1baee25a44b7aa7e9cedde9a107ed34b"; 51 + sha256 = "sha256-OAKaRuPP0/n8pO3wIUvGKs6n+U+EmZXUTywXYDAan1o="; 52 + }; 53 + 54 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 55 + buildInputs = [ openal enet SDL2 curl gettext libiconv ]; 56 + 57 + preAutoreconf = '' 58 + autoupdate 59 + ''; 60 + 61 + hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ]; 62 + 63 + postInstall = '' 64 + mkdir $out/share/7kaa/MUSIC 65 + cp -R ${music}/MUSIC $out/share/7kaa/ 66 + cp ${music}/COPYING-Music.txt $out/share/7kaa/MUSIC 67 + cp ${music}/COPYING-Music.txt $out/share/doc/7kaa 68 + ''; 69 + 70 + # Multiplayer is auto-disabled for non-x86 system 71 + 72 + meta = with lib; { 73 + homepage = "https://www.7kfans.com"; 74 + description = "GPL release of the Seven Kingdoms with multiplayer (available only on x86 platforms)"; 75 + license = licenses.gpl2Only; 76 + platforms = platforms.x86_64 ++ platforms.aarch64; 77 + maintainers = with maintainers; [ _1000101 ]; 78 + }; 79 + }
+3 -3
pkgs/games/cl-wordle/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cl-wordle"; 5 - version = "0.1.2"; 5 + version = "0.2.0"; 6 6 7 7 src = fetchCrate { 8 8 inherit pname version; 9 - sha256 = "sha256-mcPC2Lj+Vsytfl3+ghYn74QRfM6U4dQLUybtCqkjKlk="; 9 + sha256 = "sha256-M2ljFrfIOyM1Slwsk7ZJ+PhJIVSUvFcFck2Q2e9nOwc="; 10 10 }; 11 11 12 - cargoSha256 = "sha256-3Ef8gLFWIAYpKdPixvILvDee5Gezh68hc9TR5+zRX0I="; 12 + cargoSha256 = "sha256-bB6MzpJc8QS2+8GSS8RbSF5QcJyRT8FkmChpf1x2i/E="; 13 13 14 14 patches = [ ./rust-1-57.diff ]; 15 15
+12 -12
pkgs/games/cl-wordle/rust-1-57.diff
··· 1 - diff --git a/src/bin/wordle/game.rs b/src/bin/wordle/game.rs 2 - index 8500732..6f26e2a 100644 3 - --- a/src/bin/wordle/game.rs 4 - +++ b/src/bin/wordle/game.rs 5 - @@ -235,7 +235,7 @@ impl Display for GameShare { 6 - score = self.score 7 - )?; 8 - for m in &self.matches { 9 - - write!(f, "\n{m}")?; 10 - + write!(f, "\n{}", m)?; 1 + diff --git a/src/state.rs b/src/state.rs 2 + index 5fac0a3..41cbde4 100644 3 + --- a/src/state.rs 4 + +++ b/src/state.rs 5 + @@ -74,7 +74,7 @@ impl State { 6 + 'X' 7 + }; 8 + 9 + - write!(w, "{score}/6",)?; 10 + + write!(w, "{:?}/6", score)?; 11 + for Guess(_, m) in self.guesses() { 12 + write!(w, "\n{}", m)?; 11 13 } 12 - Ok(()) 13 - }
+38
pkgs/games/linthesia/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, python3, libGL, libGLU 2 + , alsa-lib, glibmm, sqlite, SDL2, SDL2_ttf_2_0_15, SDL2_image, gtk3, wrapGAppsHook }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "linthesia"; 6 + version = "0.8.0"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "linthesia"; 10 + repo = "linthesia"; 11 + rev = version; 12 + sha256 = "sha256-bdW0RlV14ttnK8NizfNfXmZ7zlJOqZCpVvt8vT2Pjys="; 13 + }; 14 + 15 + postPatch = '' 16 + patchShebangs meson_post_install.py 17 + ''; 18 + 19 + nativeBuildInputs = [ meson ninja pkg-config python3 wrapGAppsHook ]; 20 + buildInputs = [ 21 + libGL 22 + libGLU 23 + alsa-lib 24 + glibmm 25 + sqlite 26 + SDL2 27 + SDL2_ttf_2_0_15 28 + SDL2_image 29 + gtk3.out # icon cache 30 + ]; 31 + 32 + meta = with lib; { 33 + description = "A game of playing music using a MIDI keyboard following a MIDI file"; 34 + inherit (src.meta) homepage; 35 + license = licenses.gpl2Plus; 36 + platforms = platforms.linux; 37 + }; 38 + }
+2 -1
pkgs/games/minecraft-servers/update.py
··· 4 4 import json 5 5 from dataclasses import dataclass, field 6 6 from datetime import datetime 7 + from pathlib import Path 7 8 from typing import Any, Dict, List, Optional 8 9 9 10 import requests ··· 150 151 151 152 152 153 if __name__ == "__main__": 153 - with open("versions.json", "w") as file: 154 + with open(Path(__file__).parent / "versions.json", "w") as file: 154 155 json.dump(generate(), file, indent=2) 155 156 file.write("\n")
+42 -15
pkgs/games/toppler/default.nix
··· 1 - { lib, stdenv 2 - , fetchurl 3 - , SDL 4 - , SDL_mixer 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + 5 + , pkg-config 6 + , gettext 7 + , povray 8 + , imagemagick 9 + , gimp 10 + 11 + , SDL2 12 + , SDL2_mixer 13 + , SDL2_image 14 + , libpng 5 15 , zlib 6 16 }: 7 17 8 18 stdenv.mkDerivation rec { 9 19 pname = "toppler"; 10 - version = "1.1.6"; 20 + version = "1.3"; 11 21 12 - src = fetchurl { 13 - url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 14 - sha256 = "0ifccissd8sh78kpwh7dafx4ah7hkhqz6nf4z2hdnalw702jkg3x"; 22 + src = fetchFromGitLab { 23 + owner = "roever"; 24 + repo = "toppler"; 25 + rev = "v${version}"; 26 + sha256 = "sha256-ecEaELu52Nmov/BD9VzcUw6wyWeHJcsKQkEzTnaW330="; 15 27 }; 16 28 29 + nativeBuildInputs = [ 30 + pkg-config 31 + gettext 32 + povray 33 + imagemagick 34 + gimp 35 + ]; 36 + 17 37 buildInputs = [ 18 - SDL 19 - SDL_mixer 38 + SDL2 39 + SDL2_mixer 40 + SDL2_image 41 + libpng 20 42 zlib 21 43 ]; 22 44 23 - # The conftest hangs on Hydra runners, because they are not logged in. 24 - configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest"; 45 + # GIMP needs a writable home 46 + preBuild = '' 47 + export HOME=$(mktemp -d) 48 + ''; 49 + 50 + makeFlags = [ "PREFIX=$(out)" ]; 51 + 52 + hardeningDisable = [ "format" ]; 25 53 26 54 meta = with lib; { 27 55 description = "Jump and run game, reimplementation of Tower Toppler/Nebulus"; 28 - homepage = "http://toppler.sourceforge.net/"; 29 - license = licenses.gpl2; 56 + homepage = "https://gitlab.com/roever/toppler"; 57 + license = licenses.gpl2Plus; 30 58 maintainers = with maintainers; [ fgaz ]; 31 59 platforms = platforms.all; 32 60 }; 33 61 } 34 -
+4 -4
pkgs/misc/emulators/dolphin-emu/master.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "dolphin-emu"; 13 - version = "5.0-15445"; 13 + version = "5.0-15993"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "dolphin-emu"; 17 17 repo = "dolphin"; 18 - rev = "db02b50d2ecdfbbc21e19aadc57253c353069f77"; 19 - sha256 = "l2vbTZOcjfyZjKOI3n5ig2f7cDYR22GcqKS479LMtP8="; 18 + rev = "5e595616379a694789fe749e40a27ef069f0090e"; 19 + sha256 = "1kid8qjn8r7dxh2yc1y6yal6qkfxij0ymi3zryxsnym3rjh1jds9"; 20 20 fetchSubmodules = true; 21 21 }; 22 22 ··· 79 79 homepage = "https://dolphin-emu.org"; 80 80 description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; 81 81 license = licenses.gpl2Plus; 82 - maintainers = with maintainers; [ MP2E ashkitten ]; 82 + maintainers = with maintainers; [ MP2E ashkitten xfix ]; 83 83 branch = "master"; 84 84 # x86_32 is an unsupported platform. 85 85 # Enable generic build if you really want a JIT-less binary.
+6 -6
pkgs/misc/tmux-plugins/default.nix
··· 132 132 133 133 cpu = mkTmuxPlugin { 134 134 pluginName = "cpu"; 135 - version = "unstable-2020-07-25"; 135 + version = "unstable-2021-12-15"; 136 136 src = fetchFromGitHub { 137 137 owner = "tmux-plugins"; 138 138 repo = "tmux-cpu"; 139 - rev = "20120a38ade17057441482b43eb5390e6ea2c1c1"; 140 - sha256 = "1gdz2awyd9icvyiw2p40gwymh6ngjhb9mkiv63ix53snp9ii794i"; 139 + rev = "9eb3dba66672c5b43065e144cc3a1031f77ad67e"; 140 + sha256 = "sha256-v/jZxsa+JwsSKjmA32VK/4gBNHP/SyOzTaYSSz2c0+4="; 141 141 }; 142 142 }; 143 143 ··· 523 523 tmux-fzf = mkTmuxPlugin { 524 524 pluginName = "tmux-fzf"; 525 525 rtpFilePath = "main.tmux"; 526 - version = "unstable-2020-12-07"; 526 + version = "unstable-2021-10-20"; 527 527 src = fetchFromGitHub { 528 528 owner = "sainnhe"; 529 529 repo = "tmux-fzf"; 530 - rev = "5efeb91086040a3becf5372fb38258acd0579954"; 531 - sha256 = "1z0zmsf8asxs9wbwvkiyd81h93wb2ikl8nxxc26sdpi6l333q5s9"; 530 + rev = "1801dd525b39154745ea668fb6916035023949e3"; 531 + sha256 = "e929Jqletmobp3WAR1tPU3pJuYTYVynxc5CvB80gig8="; 532 532 }; 533 533 postInstall = '' 534 534 find $target -type f -print0 | xargs -0 sed -i -e 's|fzf |${pkgs.fzf}/bin/fzf |g'
+122 -62
pkgs/misc/vim-plugins/generated.nix
··· 41 41 42 42 aerial-nvim = buildVimPluginFrom2Nix { 43 43 pname = "aerial.nvim"; 44 - version = "2022-02-04"; 44 + version = "2022-02-07"; 45 45 src = fetchFromGitHub { 46 46 owner = "stevearc"; 47 47 repo = "aerial.nvim"; 48 - rev = "91350456c176fe5ef72e342dd3a75f726805454d"; 49 - sha256 = "18kj8rb6zdqaw255zi767si84jk5lbr3k1vhqjfi265399iwgii7"; 48 + rev = "ee369de02aebc52e7d34506298556e15030c52dc"; 49 + sha256 = "0d31lkaiqn5f8rg1asinp72hlngmfbih7rffb4q4zm5hwayyqi3p"; 50 50 }; 51 51 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 52 52 }; ··· 77 77 78 78 ale = buildVimPluginFrom2Nix { 79 79 pname = "ale"; 80 - version = "2022-02-06"; 80 + version = "2022-02-08"; 81 81 src = fetchFromGitHub { 82 82 owner = "dense-analysis"; 83 83 repo = "ale"; 84 - rev = "6d9399d863e6e921c87c1a95795109b872bd3925"; 85 - sha256 = "0rdrdli1fqqasp3jl508ikv0g6qp5y8fzrn8sq9x7fkmg4sazqg3"; 84 + rev = "82a3e444b299cff3127809b02ea63c819486f285"; 85 + sha256 = "0y18dpf5c5xria1wxxgsqf0wb5cmkm1k3ydyk885mcyjkzy9s8yk"; 86 86 }; 87 87 meta.homepage = "https://github.com/dense-analysis/ale/"; 88 88 }; ··· 171 171 meta.homepage = "https://github.com/prabirshrestha/async.vim/"; 172 172 }; 173 173 174 + asyncomplete-lsp-vim = buildVimPluginFrom2Nix { 175 + pname = "asyncomplete-lsp.vim"; 176 + version = "2021-12-17"; 177 + src = fetchFromGitHub { 178 + owner = "prabirshrestha"; 179 + repo = "asyncomplete-lsp.vim"; 180 + rev = "f6d6a6354ff279ba707c20292aef0dfaadc436a3"; 181 + sha256 = "1y0wpq982nw0ibqhvcvb7md58jvadygkxc1ibg99zxw1kznfpla6"; 182 + }; 183 + meta.homepage = "https://github.com/prabirshrestha/asyncomplete-lsp.vim/"; 184 + }; 185 + 174 186 asyncomplete-vim = buildVimPluginFrom2Nix { 175 187 pname = "asyncomplete.vim"; 176 188 version = "2021-12-06"; ··· 473 485 474 486 catppuccin-nvim = buildVimPluginFrom2Nix { 475 487 pname = "catppuccin-nvim"; 476 - version = "2022-02-04"; 488 + version = "2022-02-08"; 477 489 src = fetchFromGitHub { 478 490 owner = "catppuccin"; 479 491 repo = "nvim"; 480 - rev = "d48d3926b10ac1f9ef77cbcac35a4c7160cff6bf"; 481 - sha256 = "1vvn4qh849rdswvz4cnqci3ahp0z6jppqzg6rlavh8aayppw89lk"; 492 + rev = "406fdf2f2d2372df52d503e9f7bef96d89901c9f"; 493 + sha256 = "17b07krgc9pzqhmwls2d50xbiqs4fgzmdi61qrz1v5n0bgs011mr"; 482 494 }; 483 495 meta.homepage = "https://github.com/catppuccin/nvim/"; 484 496 }; ··· 497 509 498 510 chadtree = buildVimPluginFrom2Nix { 499 511 pname = "chadtree"; 500 - version = "2022-02-07"; 512 + version = "2022-02-08"; 501 513 src = fetchFromGitHub { 502 514 owner = "ms-jpq"; 503 515 repo = "chadtree"; 504 - rev = "7287befe22ee7fac9b83c3b3499571f6fc8143ae"; 505 - sha256 = "16rfwpmrz7y8d0s8xn8fx90q9b3gnnmnrm9ls7ss83ay7mfvsriy"; 516 + rev = "aa250cb8dbe80792e32d45d1bd4d63850652f771"; 517 + sha256 = "1ykj74ysla1vqq6qjdb593w7r26rapffv2jav6kipigna71bg6j8"; 506 518 }; 507 519 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 508 520 }; ··· 1182 1194 1183 1195 coq_nvim = buildVimPluginFrom2Nix { 1184 1196 pname = "coq_nvim"; 1185 - version = "2022-02-07"; 1197 + version = "2022-02-08"; 1186 1198 src = fetchFromGitHub { 1187 1199 owner = "ms-jpq"; 1188 1200 repo = "coq_nvim"; 1189 - rev = "98bc8a70b66c4ac05f6e648c43a278a6ff46b7a4"; 1190 - sha256 = "15p77qk7a6p9viczl0ym5izdvfbq2d67pgv597zcy7cxmxf5vgcs"; 1201 + rev = "47988a87e9dc594b590f820250784ebc2f7cd4fb"; 1202 + sha256 = "0qsdwvr518vlm3w5xhayh7ahdnazxh7xyvjcmljby3scdcdsfjfn"; 1191 1203 }; 1192 1204 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1193 1205 }; ··· 2327 2339 2328 2340 gitsigns-nvim = buildVimPluginFrom2Nix { 2329 2341 pname = "gitsigns.nvim"; 2330 - version = "2022-02-07"; 2342 + version = "2022-02-08"; 2331 2343 src = fetchFromGitHub { 2332 2344 owner = "lewis6991"; 2333 2345 repo = "gitsigns.nvim"; 2334 - rev = "11425117a9dcd533e5d42e083248ee0caea88b04"; 2335 - sha256 = "0lsd4c446q8f6ylf5g5vyi0gb81v59a4zlcwasvxw29giwxz3grv"; 2346 + rev = "e2b2730254df7648c79794555978f10fceb4b163"; 2347 + sha256 = "1kmbhfphf128psrxps7iyb1kb2s1lbc63qkxwla1cl3ywnl7f8gl"; 2336 2348 }; 2337 2349 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 2338 2350 }; ··· 3240 3252 3241 3253 litee-calltree-nvim = buildVimPluginFrom2Nix { 3242 3254 pname = "litee-calltree.nvim"; 3243 - version = "2022-01-20"; 3255 + version = "2022-02-07"; 3244 3256 src = fetchFromGitHub { 3245 3257 owner = "ldelossa"; 3246 3258 repo = "litee-calltree.nvim"; 3247 - rev = "be1c8d67ef80dc4cdfc164d3a95a45d8d551b3eb"; 3248 - sha256 = "0qqyws79a4d4kn1vgb7p8iw7vlx2flb3ra2y2xvjilyvzz4ppqrq"; 3259 + rev = "ba1a0f49e71849863b4212ca0ac1974aeb7c7032"; 3260 + sha256 = "1y55p429rd7z8jph30ils2g35vmqam4qk1ii9s88jwfl545g7qga"; 3249 3261 }; 3250 3262 meta.homepage = "https://github.com/ldelossa/litee-calltree.nvim/"; 3251 3263 }; ··· 3264 3276 3265 3277 litee-symboltree-nvim = buildVimPluginFrom2Nix { 3266 3278 pname = "litee-symboltree.nvim"; 3267 - version = "2022-01-13"; 3279 + version = "2022-02-07"; 3268 3280 src = fetchFromGitHub { 3269 3281 owner = "ldelossa"; 3270 3282 repo = "litee-symboltree.nvim"; 3271 - rev = "9baa027c79abdadc0a63bdd14d248241a1333b99"; 3272 - sha256 = "0lr203px4ydakqnqavymd2f08gj5mid1nhb63rww72i7i959hz7v"; 3283 + rev = "07545e1c5bd5c081c7e28540591275cbb46b7d02"; 3284 + sha256 = "0pld9i7db4w4wqwc1nnmymfgr7miia60l1rj0pakfkgyf1g5w61s"; 3273 3285 }; 3274 3286 meta.homepage = "https://github.com/ldelossa/litee-symboltree.nvim/"; 3275 3287 }; ··· 3371 3383 3372 3384 lspsaga-nvim = buildVimPluginFrom2Nix { 3373 3385 pname = "lspsaga.nvim"; 3374 - version = "2022-02-02"; 3386 + version = "2022-02-08"; 3375 3387 src = fetchFromGitHub { 3376 3388 owner = "tami5"; 3377 3389 repo = "lspsaga.nvim"; 3378 - rev = "ca8bc243e6ae36fa3eeab53191f302ca84660a3c"; 3379 - sha256 = "1967vi3an7f5gp6hdwbkrd5nm71nb1i82jh3ygy1k7i2y4fa6apr"; 3390 + rev = "d8073a0e4d19d71da900fb77dcc5f23d72bb8707"; 3391 + sha256 = "0f5qzi9kk02z6siqzwz2zak687zb4q2nkg66x3pnnqvhfqazjb5q"; 3380 3392 }; 3381 3393 meta.homepage = "https://github.com/tami5/lspsaga.nvim/"; 3382 3394 }; ··· 3419 3431 3420 3432 luasnip = buildVimPluginFrom2Nix { 3421 3433 pname = "luasnip"; 3422 - version = "2022-02-06"; 3434 + version = "2022-02-08"; 3423 3435 src = fetchFromGitHub { 3424 3436 owner = "l3mon4d3"; 3425 3437 repo = "luasnip"; 3426 - rev = "0997bc216a136f2847343d96040c9b0c90b661c9"; 3427 - sha256 = "1iyjbk6l7y35f72cpffddsj97j140vgg0kk5iyaq6mg8rcsq49lq"; 3438 + rev = "132eff7cb39d9aeeceb80c816ccbda5bca2d60bb"; 3439 + sha256 = "1day60kqq1fgdwcvwm3nx9y2ibkv33c5s75ndv22ajk8cmdrrzdw"; 3428 3440 }; 3429 3441 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 3430 3442 }; ··· 3551 3563 3552 3564 mini-nvim = buildVimPluginFrom2Nix { 3553 3565 pname = "mini.nvim"; 3554 - version = "2022-02-05"; 3566 + version = "2022-02-08"; 3555 3567 src = fetchFromGitHub { 3556 3568 owner = "echasnovski"; 3557 3569 repo = "mini.nvim"; 3558 - rev = "6cb7cdb1cd7f111784d5d971fa41a655e11df4b3"; 3559 - sha256 = "1jsn2vf8gn61qzzibxngsf29cm4xhr2nidzsjg02l6ayhd7rlhgl"; 3570 + rev = "f2ccb9339c979968b19db48b5f8b31c6f0ee7481"; 3571 + sha256 = "0f7yw2mjdimmi70liya75wnbbrk37xi2sncpsg0awh15sibynq05"; 3560 3572 }; 3561 3573 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 3562 3574 }; ··· 4295 4307 4296 4308 null-ls-nvim = buildVimPluginFrom2Nix { 4297 4309 pname = "null-ls.nvim"; 4298 - version = "2022-02-05"; 4310 + version = "2022-02-08"; 4299 4311 src = fetchFromGitHub { 4300 4312 owner = "jose-elias-alvarez"; 4301 4313 repo = "null-ls.nvim"; 4302 - rev = "e8a666829a3d803844f24daa4932e4f5fe76cbeb"; 4303 - sha256 = "0inl9dizwq2j3r2z7jsxdqmrq5iyq7b123x2n23dfzsvvv5s3279"; 4314 + rev = "b1dbbc3807fcb82d6f562145debe6321610bef98"; 4315 + sha256 = "1jbi3lxpbky9y0k7c80shq451l5l3pbbr4wwaqrr76mjwrh49vq7"; 4304 4316 }; 4305 4317 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4306 4318 }; ··· 4667 4679 4668 4680 nvim-lsp-ts-utils = buildVimPluginFrom2Nix { 4669 4681 pname = "nvim-lsp-ts-utils"; 4670 - version = "2022-01-26"; 4682 + version = "2022-02-08"; 4671 4683 src = fetchFromGitHub { 4672 4684 owner = "jose-elias-alvarez"; 4673 4685 repo = "nvim-lsp-ts-utils"; 4674 - rev = "64d233a8859e27139c55472248147114e0be1652"; 4675 - sha256 = "1isnz4pys9wdf7w4qfiyjl4a2h66b0iwnxlbs88pn0r7hc8kgr74"; 4686 + rev = "337e4fa31d88e5553edeb05ac572bacd4a24d867"; 4687 + sha256 = "1xa2zxyqfgzp4zjccrjnj9djdb4f4i9gr2m4gxa6cqz01b21xwmq"; 4676 4688 }; 4677 4689 meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/"; 4678 4690 }; ··· 4815 4827 src = fetchFromGitHub { 4816 4828 owner = "kyazdani42"; 4817 4829 repo = "nvim-tree.lua"; 4818 - rev = "e42a4337d0d9de4de5c0d4ab960f2101ef33f273"; 4819 - sha256 = "125j1ng5xr12wpqg9wymxlxgzw9v2alqb9fmpwg0mbf9aybip27k"; 4830 + rev = "ea92e7bf7ccd1815b60342706356c373bb7df216"; 4831 + sha256 = "0dj0kcawslqv6iczgkr4b31449zplpz8k4xw5vw327mh9ciyb0xm"; 4820 4832 }; 4821 4833 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 4822 4834 }; 4823 4835 4824 4836 nvim-treesitter = buildVimPluginFrom2Nix { 4825 4837 pname = "nvim-treesitter"; 4826 - version = "2022-02-07"; 4838 + version = "2022-02-08"; 4827 4839 src = fetchFromGitHub { 4828 4840 owner = "nvim-treesitter"; 4829 4841 repo = "nvim-treesitter"; 4830 - rev = "d6e6581a256061449a8a039c792a93a4b4e86b85"; 4831 - sha256 = "1m1cm1lynaa8wslpy01hkxdp5kxnwxx570wpj2wy5x1xjl5pglgz"; 4842 + rev = "c867d483a5daee60ba6fb7ec9151c5578e4e96ed"; 4843 + sha256 = "03m6wljyh4rqzjzir22q71hmcrijvk6rylyqmz088fsh214mss5l"; 4832 4844 }; 4833 4845 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 4834 4846 }; ··· 4871 4883 4872 4884 nvim-treesitter-textobjects = buildVimPluginFrom2Nix { 4873 4885 pname = "nvim-treesitter-textobjects"; 4874 - version = "2022-02-04"; 4886 + version = "2022-02-07"; 4875 4887 src = fetchFromGitHub { 4876 4888 owner = "nvim-treesitter"; 4877 4889 repo = "nvim-treesitter-textobjects"; 4878 - rev = "438d2cfa3922a58ef828803d6ca9c944b4b4c996"; 4879 - sha256 = "0lycnr6q304z1n146phcyjsv4z2rr02yxpq9aj2gvybqljb16m18"; 4890 + rev = "fea609aa58b3390a09e8df0e96902fd4b094d8b7"; 4891 + sha256 = "0221ax71334ghsr8xznp9jk2iv9r0bin47ch8r7hsfh4r0wgc5w7"; 4880 4892 }; 4881 4893 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 4882 4894 }; ··· 6616 6628 meta.homepage = "https://github.com/ternjs/tern_for_vim/"; 6617 6629 }; 6618 6630 6631 + tex-conceal-vim = buildVimPluginFrom2Nix { 6632 + pname = "tex-conceal.vim"; 6633 + version = "2022-01-15"; 6634 + src = fetchFromGitHub { 6635 + owner = "KeitaNakamura"; 6636 + repo = "tex-conceal.vim"; 6637 + rev = "93ae39d9222b0892684d02324b85ee9d3647bf8e"; 6638 + sha256 = "05nqqfxkxd8f9xky9mnfxw9g16z1005ka8zxaw52i0n35dg4gg8y"; 6639 + }; 6640 + meta.homepage = "https://github.com/KeitaNakamura/tex-conceal.vim/"; 6641 + }; 6642 + 6619 6643 thesaurus_query-vim = buildVimPluginFrom2Nix { 6620 6644 pname = "thesaurus_query.vim"; 6621 6645 version = "2022-01-30"; ··· 7267 7291 7268 7292 vim-android = buildVimPluginFrom2Nix { 7269 7293 pname = "vim-android"; 7270 - version = "2022-02-05"; 7294 + version = "2022-02-08"; 7271 7295 src = fetchFromGitHub { 7272 7296 owner = "hsanson"; 7273 7297 repo = "vim-android"; 7274 - rev = "12468bc4271a6e3373662e9b9f9d59b30e4ccdea"; 7275 - sha256 = "04ilkr2gl96471hp6cxcqhqn3mm25hkaw0vgbzi1izpi6fqkps00"; 7298 + rev = "e9d03b12378b173b39d416df6469ca417b9cac9d"; 7299 + sha256 = "1r7jcd8q41v1v0syy097qd34ydx0bczgad9ihsmsz83bdbx51dbl"; 7276 7300 }; 7277 7301 meta.homepage = "https://github.com/hsanson/vim-android/"; 7278 7302 }; ··· 7315 7339 7316 7340 vim-argwrap = buildVimPluginFrom2Nix { 7317 7341 pname = "vim-argwrap"; 7318 - version = "2022-02-06"; 7342 + version = "2022-02-08"; 7319 7343 src = fetchFromGitHub { 7320 7344 owner = "FooSoft"; 7321 7345 repo = "vim-argwrap"; 7322 - rev = "0c03483702ca3ded88653c1762ba3b25ab8a6393"; 7323 - sha256 = "0bl5aiycch25jq9vkv6j3xrz56adlb7jhvzz82hc9h0fiwzshjzn"; 7346 + rev = "0faba07179f96cae2ab49cf2cc22ebeb922c1532"; 7347 + sha256 = "1lb1rjp1q25gqpzbjix9anjxvx7cqw1qlacvc693f59gl8s8nbf4"; 7324 7348 }; 7325 7349 meta.homepage = "https://github.com/FooSoft/vim-argwrap/"; 7326 7350 }; ··· 7457 7481 meta.homepage = "https://github.com/MattesGroeger/vim-bookmarks/"; 7458 7482 }; 7459 7483 7484 + vim-boxdraw = buildVimPluginFrom2Nix { 7485 + pname = "vim-boxdraw"; 7486 + version = "2021-01-28"; 7487 + src = fetchFromGitHub { 7488 + owner = "gyim"; 7489 + repo = "vim-boxdraw"; 7490 + rev = "b7f789f305b1c5b0b4623585e0f10adb417f2966"; 7491 + sha256 = "0zr3r4dgpdadaz3g9hzn7vyv0rids0k1wdywk9yywfp6q9m0ygj8"; 7492 + }; 7493 + meta.homepage = "https://github.com/gyim/vim-boxdraw/"; 7494 + }; 7495 + 7460 7496 vim-bracketed-paste = buildVimPluginFrom2Nix { 7461 7497 pname = "vim-bracketed-paste"; 7462 7498 version = "2018-05-22"; ··· 7541 7577 meta.homepage = "https://github.com/kristijanhusak/vim-carbon-now-sh/"; 7542 7578 }; 7543 7579 7580 + vim-ccls = buildVimPluginFrom2Nix { 7581 + pname = "vim-ccls"; 7582 + version = "2022-01-29"; 7583 + src = fetchFromGitHub { 7584 + owner = "m-pilia"; 7585 + repo = "vim-ccls"; 7586 + rev = "93ac5dbdeaaaed8fdfd6d850f1e57fb28d204886"; 7587 + sha256 = "15dr487baghlhl559a4zqpm8vnpm77aci4gw9x95v4kds9g4g51k"; 7588 + }; 7589 + meta.homepage = "https://github.com/m-pilia/vim-ccls/"; 7590 + }; 7591 + 7544 7592 vim-choosewin = buildVimPluginFrom2Nix { 7545 7593 pname = "vim-choosewin"; 7546 7594 version = "2021-04-22"; ··· 7603 7651 7604 7652 vim-closer = buildVimPluginFrom2Nix { 7605 7653 pname = "vim-closer"; 7606 - version = "2021-03-28"; 7654 + version = "2022-02-07"; 7607 7655 src = fetchFromGitHub { 7608 7656 owner = "rstacruz"; 7609 7657 repo = "vim-closer"; 7610 - rev = "26bba80f4d987f12141da522d69aa1fa4aff4436"; 7611 - sha256 = "1pyi5akzvvkdngm577m1c1210r0yypdwsvp1y7ag6gdfnls75xws"; 7658 + rev = "43acc7c59fca861cb92cc47f01f184d9d342a73b"; 7659 + sha256 = "1q03kz5ffyz8ifxdn7bgf3r7jlqa8vya13pnjyqda15wly1fl0k8"; 7612 7660 }; 7613 7661 meta.homepage = "https://github.com/rstacruz/vim-closer/"; 7614 7662 }; ··· 8299 8347 8300 8348 vim-floaterm = buildVimPluginFrom2Nix { 8301 8349 pname = "vim-floaterm"; 8302 - version = "2022-02-07"; 8350 + version = "2022-02-08"; 8303 8351 src = fetchFromGitHub { 8304 8352 owner = "voldikss"; 8305 8353 repo = "vim-floaterm"; 8306 - rev = "d38f75fdc237ed8ff2864b9e481ce2ec5b5504a0"; 8307 - sha256 = "1h3am33r40ssih8j1n3l939qmqgh7f7awwrqdpkvgj1wisiq2v21"; 8354 + rev = "237787fe2206f8ebec1293aa5730eef71b04c69b"; 8355 + sha256 = "1qr9cf8yk6kjm3q7pgcp2pkbli31x94vgxxzd4xx7f4ssfv8l0bl"; 8308 8356 }; 8309 8357 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 8310 8358 }; ··· 8539 8587 8540 8588 vim-graphql = buildVimPluginFrom2Nix { 8541 8589 pname = "vim-graphql"; 8542 - version = "2022-01-31"; 8590 + version = "2022-02-07"; 8543 8591 src = fetchFromGitHub { 8544 8592 owner = "jparise"; 8545 8593 repo = "vim-graphql"; 8546 - rev = "5ce866172da4b90f77b8371423dc031fe2f4ece7"; 8547 - sha256 = "07rl7il0aqirmrg720c3k96v0rfwj4njmx2pnql3wd8nbl2w5czb"; 8594 + rev = "15c5937688490af8dde09e90c9a5585c840ba81c"; 8595 + sha256 = "07j704ysc2klqfjk3918b1kjq16pw1yb1fykdsi2a0lamndn9l04"; 8548 8596 }; 8549 8597 meta.homepage = "https://github.com/jparise/vim-graphql/"; 8550 8598 }; ··· 11347 11395 sha256 = "1yizvf9s9djxar64kp63r45q5vv2k616xskd4adkcfqn8crzyw52"; 11348 11396 }; 11349 11397 meta.homepage = "https://github.com/jreybert/vimagit/"; 11398 + }; 11399 + 11400 + VimCompletesMe = buildVimPluginFrom2Nix { 11401 + pname = "VimCompletesMe"; 11402 + version = "2020-12-30"; 11403 + src = fetchFromGitHub { 11404 + owner = "ackyshake"; 11405 + repo = "VimCompletesMe"; 11406 + rev = "2c69e30675d2a30208099742d14bd661d99fc5f2"; 11407 + sha256 = "0gjzl0027xjkq0mbqs9grab38ghwnixr57b4wicl113yd76hyb5i"; 11408 + }; 11409 + meta.homepage = "https://github.com/ackyshake/VimCompletesMe/"; 11350 11410 }; 11351 11411 11352 11412 vimelette = buildVimPluginFrom2Nix {
+5
pkgs/misc/vim-plugins/vim-plugin-names
··· 3 3 AckslD/nvim-neoclip.lua 4 4 AckslD/nvim-whichkey-setup.lua 5 5 ackyshake/Spacegray.vim 6 + ackyshake/VimCompletesMe 6 7 ahmedkhalf/lsp-rooter.nvim 7 8 ahmedkhalf/project.nvim 8 9 airblade/vim-gitgutter ··· 222 223 guns/vim-clojure-static 223 224 guns/vim-sexp 224 225 guns/xterm-color-table.vim 226 + gyim/vim-boxdraw 225 227 haringsrob/nvim_context_vt 226 228 hashivim/vim-packer 227 229 hashivim/vim-terraform ··· 362 364 kdheepak/lazygit.nvim 363 365 kdheepak/tabline.nvim 364 366 KeitaNakamura/neodark.vim 367 + KeitaNakamura/tex-conceal.vim 365 368 keith/investigate.vim 366 369 keith/rspec.vim 367 370 keith/swift.vim ··· 432 435 luochen1990/rainbow 433 436 luukvbaal/stabilize.nvim 434 437 lyokha/vim-xkbswitch 438 + m-pilia/vim-ccls 435 439 machakann/vim-highlightedyank 436 440 machakann/vim-sandwich 437 441 machakann/vim-swap ··· 629 633 powerman/vim-plugin-AnsiEsc 630 634 PProvost/vim-ps1 631 635 prabirshrestha/async.vim 636 + prabirshrestha/asyncomplete-lsp.vim 632 637 prabirshrestha/asyncomplete.vim 633 638 prabirshrestha/vim-lsp 634 639 preservim/nerdcommenter
+6 -2
pkgs/misc/vscode-extensions/_maintainers/update-bin-srcs-lib.sh
··· 105 105 jsonStorePath="$(echo "$jsonShaWStorePath" | tail -n1)" 106 106 1>&2 echo "jsonStorePath='$jsonStorePath'" 107 107 108 + # Assume packages without an architectures are for x86_64 and remap arm64 to aarch64. 108 109 declare jqQuery 109 110 jqQuery=$(cat <<'EOF' 110 111 .runtimeDependencies 111 - | map(select(.platforms[] | in({"linux": null}))) 112 - | map(select(.architectures[] | in({"x86_64": null}))) 112 + | map(select(.platforms[] | in({"linux": null, "darwin": null}))) 113 + | map(select(.architectures == null).architectures |= ["x86_64"]) 114 + | map(del(.architectures[] | select(. | in({"x86_64": null, "arm64": null}) | not))) 115 + | map((.architectures[] | select(. == "arm64")) |= "aarch64") 116 + | map(select(.architectures != [])) 113 117 | .[] | { 114 118 (.id + "__" + (.architectures[0]) + "-" + (.platforms[0])): 115 119 {installPath, binaries, urls: [.url, .fallbackUrl] | map(select(. != null))}
+20 -6
pkgs/misc/vscode-extensions/ms-dotnettools-csharp/default.nix
··· 38 38 rtDepsBinSrcs."${bSrcName}__${stdenv.targetPlatform.system}"; 39 39 40 40 omnisharp = rtDepBinSrcByName "OmniSharp"; 41 - vsdbg = rtDepBinSrcByName "Debugger"; 41 + vsdbgs = [ 42 + (rtDepBinSrcByName "Debugger") 43 + ] ++ lib.optionals (stdenv.isDarwin) [ 44 + # Include the aarch64-darwin debugger binaries on x86_64-darwin. Even though OmniSharp will be 45 + # running under Rosetta 2, debugging will fail to start if both sets of binaries are not present. 46 + (rtDepsBinSrcs."Debugger__aarch64-darwin") 47 + ]; 42 48 razor = rtDepBinSrcByName "Razor"; 43 49 in 44 50 ··· 46 52 mktplcRef = { 47 53 name = "csharp"; 48 54 publisher = "ms-dotnettools"; 49 - version = "1.23.15"; 50 - sha256 = "0b74jr45zl7lzirjgj8s2lbf3viy9pbwlgjh055rcwmy77wcml1x"; 55 + version = "1.23.16"; 56 + sha256 = "sha256-fM4vcSMi2tEjIox9Twh2sRiFhXgAeRwAM9to3vtcSqI="; 51 57 }; 52 58 53 59 nativeBuildInputs = [ ··· 112 118 chmod a+x "$omnisharp_dir/run" 113 119 touch "$omnisharp_dir/install.Lock" 114 120 121 + '' + builtins.concatStringsSep "\n" (map (vsdbg: '' 115 122 declare vsdbg_dir="$PWD/${vsdbg.installPath}" 116 123 unzip_to "${vsdbg.bin-src}" "$vsdbg_dir" 117 124 chmod a+x "$vsdbg_dir/vsdbg-ui" 118 125 chmod a+x "$vsdbg_dir/vsdbg" 119 126 touch "$vsdbg_dir/install.complete" 120 127 touch "$vsdbg_dir/install.Lock" 121 - patchelf_common "$vsdbg_dir/vsdbg" 122 - patchelf_common "$vsdbg_dir/vsdbg-ui" 123 128 129 + '') vsdbgs) + '' 124 130 declare razor_dir="$PWD/${razor.installPath}" 125 131 unzip_to "${razor.bin-src}" "$razor_dir" 126 132 chmod a+x "$razor_dir/rzls" 127 133 touch "$razor_dir/install.Lock" 134 + 135 + '' + lib.optionalString stdenv.isLinux '' 136 + patchelf_common "$vsdbg_dir/vsdbg" 137 + patchelf_common "$vsdbg_dir/vsdbg-ui" 128 138 patchelf_common "$razor_dir/rzls" 139 + 140 + '' + lib.optionalString stdenv.isDarwin '' 141 + substituteInPlace $omnisharp_dir/etc/config \ 142 + --replace "libmono-native-compat.dylib" "libmono-native.dylib" 129 143 ''; 130 144 131 145 meta = with lib; { ··· 133 147 homepage = "https://github.com/OmniSharp/omnisharp-vscode"; 134 148 license = licenses.mit; 135 149 maintainers = [ maintainers.jraygauthier ]; 136 - platforms = [ "x86_64-linux" ]; 150 + platforms = [ "x86_64-linux" "x86_64-darwin" ]; 137 151 }; 138 152 }
+62 -4
pkgs/misc/vscode-extensions/ms-dotnettools-csharp/rt-deps-bin-srcs.json
··· 1 1 { 2 + "OmniSharp__x86_64-darwin": { 3 + "installPath": ".omnisharp/1.37.16", 4 + "binaries": [ 5 + "./mono.osx", 6 + "./run" 7 + ], 8 + "urls": [ 9 + "https://download.visualstudio.microsoft.com/download/pr/03c32aa6-7c7a-4936-82a0-fd8f816d112f/0ea1ea1eae48552a1992ed6df782353a/omnisharp-osx-1.37.16.zip", 10 + "https://roslynomnisharp.blob.core.windows.net/releases/1.37.16/omnisharp-osx-1.37.16.zip" 11 + ], 12 + "sha256": "0hhgfx7zs1rljhn3n9c7lci7j15yp2448z3f1d3c47a95l1hmlip" 13 + }, 2 14 "OmniSharp__x86_64-linux": { 3 - "installPath": ".omnisharp/1.37.15", 15 + "installPath": ".omnisharp/1.37.16", 4 16 "binaries": [ 5 17 "./mono.linux-x86_64", 6 18 "./run" 7 19 ], 8 20 "urls": [ 9 - "https://download.visualstudio.microsoft.com/download/pr/4fbf71ce-5375-4ca9-b70d-8024ba1b9e0a/b96375395e639233d546a4937be3bd32/omnisharp-linux-x64-1.37.15.zip", 10 - "https://roslynomnisharp.blob.core.windows.net/releases/1.37.15/omnisharp-linux-x64-1.37.15.zip" 21 + "https://download.visualstudio.microsoft.com/download/pr/03c32aa6-7c7a-4936-82a0-fd8f816d112f/9ae3ed99fc0c41c7139751dde6f2bc78/omnisharp-linux-x64-1.37.16.zip", 22 + "https://roslynomnisharp.blob.core.windows.net/releases/1.37.16/omnisharp-linux-x64-1.37.16.zip" 23 + ], 24 + "sha256": "0a2basc6dw42fnjv9zz93ff0bsw2i3446gvcjx5mn5d8dasi483i" 25 + }, 26 + "Debugger__x86_64-darwin": { 27 + "installPath": ".debugger/x86_64", 28 + "binaries": [ 29 + "./vsdbg-ui", 30 + "./vsdbg" 11 31 ], 12 - "sha256": "0pchywkxy8niq0i6gq2r43cmf58blfhhj8w8zyibf0m9h09h165s" 32 + "urls": [ 33 + "https://download.visualstudio.microsoft.com/download/pr/49f44239-bd47-4fb5-91be-4c91d7638fff/c1122f7141735472d9583c1124024c55/coreclr-debug-osx-x64.zip", 34 + "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-14/coreclr-debug-osx-x64.zip" 35 + ], 36 + "sha256": "08z3k0h25gdsbmlxwayd94672hp2z7zmwdmd0nyr9j82izj3ci2m" 37 + }, 38 + "Debugger__aarch64-darwin": { 39 + "installPath": ".debugger/arm64", 40 + "binaries": [ 41 + "./vsdbg-ui", 42 + "./vsdbg" 43 + ], 44 + "urls": [ 45 + "https://download.visualstudio.microsoft.com/download/pr/49f44239-bd47-4fb5-91be-4c91d7638fff/96a88189c7904a517f3bb59b2dba8bd1/coreclr-debug-osx-arm64.zip", 46 + "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-14/coreclr-debug-osx-arm64.zip" 47 + ], 48 + "sha256": "113kz02ihvb4y5fj01wamqz2jsql2q7n7f55s9kzs9dsrmq5ffa0" 49 + }, 50 + "Debugger__aarch64-linux": { 51 + "installPath": ".debugger", 52 + "binaries": [ 53 + "./vsdbg-ui", 54 + "./vsdbg" 55 + ], 56 + "urls": [ 57 + "https://download.visualstudio.microsoft.com/download/pr/49f44239-bd47-4fb5-91be-4c91d7638fff/7a723bfbda6d196c52084226b6835b36/coreclr-debug-linux-arm64.zip", 58 + "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-14/coreclr-debug-linux-arm64.zip" 59 + ], 60 + "sha256": "1d4a5q3f7qfk3jq2i4f6g50i9i4z8z7g8ss083y9n5c1yj3629kw" 13 61 }, 14 62 "Debugger__x86_64-linux": { 15 63 "installPath": ".debugger", ··· 32 80 "https://download.visualstudio.microsoft.com/download/pr/b8678010-2cd7-4201-a5e7-ba57920607d5/b846e9c7d7afdba54a72fae1dcb6c42c/razorlanguageserver-linux-x64-6.0.0-preview.5.21358.6.zip" 33 81 ], 34 82 "sha256": "0gb36nlb7fgcv03a0awna1qyrsky6ys5gkpsmvxc5j35f1yq337b" 83 + }, 84 + "Razor__x86_64-darwin": { 85 + "installPath": ".razor", 86 + "binaries": [ 87 + "./rzls" 88 + ], 89 + "urls": [ 90 + "https://download.visualstudio.microsoft.com/download/pr/b8678010-2cd7-4201-a5e7-ba57920607d5/ad846449769eb2ae810d0236823a6aaa/razorlanguageserver-osx-x64-6.0.0-preview.5.21358.6.zip" 91 + ], 92 + "sha256": "0iqinpwwlqwajdq4i1qbb9hfpfmgy17av95bpw02ad2f9fnyh572" 35 93 } 36 94 }
+1 -1
pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs
··· 10 10 11 11 declare extPublisher="ms-dotnettools" 12 12 declare extName="csharp" 13 - declare defaultExtVersion="1.23.15" 13 + declare defaultExtVersion="1.23.16" 14 14 declare extVersion="${1:-$defaultExtVersion}" 15 15 16 16 formatExtRuntimeDeps \
+4 -4
pkgs/misc/vscode-extensions/vscode-lldb/default.nix
··· 5 5 let 6 6 publisher = "vadimcn"; 7 7 pname = "vscode-lldb"; 8 - version = "1.6.8"; 8 + version = "1.6.10"; 9 9 10 10 vscodeExtUniqueId = "${publisher}.${pname}"; 11 11 ··· 13 13 owner = "vadimcn"; 14 14 repo = "vscode-lldb"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-/2iyWJfNjvk5n7KwWIu2gc24/21KWibU6IAPN/tJ8Q4="; 16 + sha256 = "sha256-4PM/818UFHRZekfbdhS/Rz0Pu6HOjJEldi4YuBWECnI="; 17 17 }; 18 18 19 19 lldb = callPackage ./lldb.nix {}; ··· 25 25 # It will pollute the build environment of `buildRustPackage`. 26 26 cargoPatches = [ ./reset-cargo-config.patch ]; 27 27 28 - cargoSha256 = "sha256-rG+Qw8ac9cCgCjfLFXLlohLk+zV5s1OaqzU0/nXiqgU="; 28 + cargoSha256 = "sha256-Ch1X2vN+p7oCqSs/GIu5IzG+pcSKmQ+VwP2T8ycRhos="; 29 29 30 30 nativeBuildInputs = [ makeWrapper ]; 31 31 ··· 98 98 description = "A native debugger extension for VSCode based on LLDB"; 99 99 homepage = "https://github.com/vadimcn/vscode-lldb"; 100 100 license = with licenses; [ mit ]; 101 - maintainers = with maintainers; [ oxalica ]; 101 + maintainers = with maintainers; [ nigelgbanks ]; 102 102 platforms = platforms.all; 103 103 }; 104 104 }
+4 -1
pkgs/os-specific/linux/displaylink/default.nix
··· 51 51 installPhase = '' 52 52 install -Dt $out/lib/displaylink *.spkg 53 53 install -Dm755 ${bins}/DisplayLinkManager $out/bin/DisplayLinkManager 54 - mkdir -p $out/lib/udev/rules.d 54 + mkdir -p $out/lib/udev/rules.d $out/share 55 55 cp ${./99-displaylink.rules} $out/lib/udev/rules.d/99-displaylink.rules 56 56 patchelf \ 57 57 --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ ··· 59 59 $out/bin/DisplayLinkManager 60 60 wrapProgram $out/bin/DisplayLinkManager \ 61 61 --run "cd $out/lib/displaylink" 62 + 63 + # We introduce a dependency on the source file so that it need not be redownloaded everytime 64 + echo $src >> "$out/share/workspace_dependencies.pin" 62 65 ''; 63 66 64 67 dontStrip = true;
+1 -1
pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh
··· 71 71 j="$1"; shift 1 72 72 extraBuildFlags+=("$i" "$j") 73 73 ;; 74 - --show-trace|--keep-failed|-K|--keep-going|-k|--verbose|-v|-vv|-vvv|-vvvv|-vvvvv|--fallback|--repair|--no-build-output|-Q|-j*|-L|--refresh|--no-net|--offline|--impure) 74 + --show-trace|--keep-failed|-K|--keep-going|-k|--verbose|-v|-vv|-vvv|-vvvv|-vvvvv|--fallback|--repair|--no-build-output|-Q|-j*|-L|--print-build-logs|--refresh|--no-net|--offline|--impure) 75 75 extraBuildFlags+=("$i") 76 76 ;; 77 77 --option)
+2 -1
pkgs/os-specific/linux/nvidia-x11/builder.sh
··· 89 89 sed -E "s#(libGLX_nvidia)#$i/lib/\\1#" nvidia_icd.json > nvidia_icd.json.fixed 90 90 fi 91 91 92 + # nvidia currently only supports x86_64 and i686 92 93 if [ "$system" = "i686-linux" ]; then 93 94 install -Dm644 nvidia_icd.json.fixed $i/share/vulkan/icd.d/nvidia_icd.i686.json 94 95 else 95 - install -Dm644 nvidia_icd.json.fixed $i/share/vulkan/icd.d/nvidia_icd.json 96 + install -Dm644 nvidia_icd.json.fixed $i/share/vulkan/icd.d/nvidia_icd.x86_64.json 96 97 fi 97 98 fi 98 99
+1 -1
pkgs/os-specific/linux/nvidia-x11/generic.nix
··· 115 115 description = "X.org driver and kernel module for NVIDIA graphics cards"; 116 116 license = licenses.unfreeRedistributable; 117 117 platforms = [ "x86_64-linux" ] ++ optionals (!i686bundled) [ "i686-linux" ]; 118 - maintainers = with maintainers; [ ]; 118 + maintainers = with maintainers; [ jonringer ]; 119 119 priority = 4; # resolves collision with xorg-server's "lib/xorg/modules/extensions/libglx.so" 120 120 inherit broken; 121 121 };
+2 -2
pkgs/servers/dns/knot-dns/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "knot-dns"; 8 - version = "3.1.5"; 8 + version = "3.1.6"; 9 9 10 10 src = fetchurl { 11 11 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 12 - sha256 = "2da6e50b0662297d55f80e349568224e07fe88cad20bee1d2e22f54bb32da064"; 12 + sha256 = "e9ba1305d750dc08fb08687aec7ac55737ca073deaa0b867c884e0c0f2fdb753"; 13 13 }; 14 14 15 15 outputs = [ "bin" "out" "dev" ];
+1 -1
pkgs/servers/foundationdb/cmake.nix
··· 123 123 homepage = "https://www.foundationdb.org"; 124 124 license = licenses.asl20; 125 125 platforms = [ "x86_64-linux" ]; 126 - maintainers = with maintainers; [ thoughtpolice ]; 126 + maintainers = with maintainers; [ thoughtpolice lostnet ]; 127 127 }; 128 128 }; 129 129 in makeFdb
+2 -1
pkgs/servers/foundationdb/default.nix
··· 2 2 , lib, fetchurl, fetchpatch, fetchFromGitHub 3 3 4 4 , cmake, ninja, which, findutils, m4, gawk 5 - , python2, python3, openjdk, mono, libressl, boost 5 + , python2, python3, openjdk, mono, libressl, boost168 6 6 }@args: 7 7 8 8 let ··· 10 10 cmakeBuild = import ./cmake.nix (args // { 11 11 gccStdenv = gccStdenv; 12 12 llvmPackages = llvmPackages; 13 + boost = boost168; 13 14 }); 14 15 15 16 python3-six-patch = fetchpatch {
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2022.2.2"; 5 + version = "2022.2.3"; 6 6 components = { 7 7 "abode" = ps: with ps; [ abodepy ]; 8 8 "accuweather" = ps: with ps; [ accuweather ];
+2 -2
pkgs/servers/home-assistant/default.nix
··· 121 121 extraBuildInputs = extraPackages python.pkgs; 122 122 123 123 # Don't forget to run parse-requirements.py after updating 124 - hassVersion = "2022.2.2"; 124 + hassVersion = "2022.2.3"; 125 125 126 126 in python.pkgs.buildPythonApplication rec { 127 127 pname = "homeassistant"; ··· 139 139 owner = "home-assistant"; 140 140 repo = "core"; 141 141 rev = version; 142 - hash = "sha256:09hji1n6blnr10k5y1rhp4v66iz2gwfd7afcd0sz156kw4g5mq89"; 142 + hash = "sha256:OqyWm7O8ajxBlWGzvNhZvFmy5p2dINfMQ3cQ304Er18="; 143 143 }; 144 144 145 145 # leave this in, so users don't have to constantly update their downstream patch handling
+11 -3
pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix
··· 1 - { buildPythonPackage, fetchFromGitHub, twisted }: 1 + { lib, buildPythonPackage, fetchFromGitHub, matrix-synapse, twisted }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "matrix-synapse-shared-secret-auth"; 5 - version = "1.0.2"; 5 + version = "2.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "devture"; 9 9 repo = "matrix-synapse-shared-secret-auth"; 10 10 rev = version; 11 - sha256 = "0cnxp3bp8mmk01a0g3lzgvaawyywjg754j4nb9iwkmm3c2nqvnpz"; 11 + sha256 = "sha256-kaok5IwKx97FYDrVIGAtUJfExqDln5vxEKrZda2RdzE="; 12 12 }; 13 13 14 14 doCheck = false; 15 15 pythonImportsCheck = [ "shared_secret_authenticator" ]; 16 16 17 + buildInputs = [ matrix-synapse ]; 17 18 propagatedBuildInputs = [ twisted ]; 19 + 20 + meta = with lib; { 21 + description = "Shared Secret Authenticator password provider module for Matrix Synapse"; 22 + homepage = "https://github.com/devture/matrix-synapse-shared-secret-auth"; 23 + license = licenses.agpl3Plus; 24 + maintainers = with maintainers; [ sumnerevans ]; 25 + }; 18 26 }
-50
pkgs/servers/shellinabox/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pam, openssl, openssh, shadow, makeWrapper }: 2 - 3 - stdenv.mkDerivation rec { 4 - version = "2.20"; 5 - pname = "shellinabox"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "shellinabox"; 9 - repo = "shellinabox"; 10 - rev = "v${version}"; 11 - sha256 = "1hmfayh21cks2lyj572944ll0mmgsxbnj981b3hq3nhdg8ywzjfr"; 12 - }; 13 - 14 - patches = [ 15 - ./shellinabox-minus.patch 16 - (fetchpatch { 17 - name = "CVE-2018-16789.patch"; 18 - url = "https://github.com/shellinabox/shellinabox/commit/4f0ecc31ac6f985e0dd3f5a52cbfc0e9251f6361.patch"; 19 - sha256 = "1mpm6acxdb0fms9pa2b88fx6hp07ph87ahxi82yyqj2m7p79jx7a"; 20 - }) 21 - ]; 22 - 23 - nativeBuildInputs = [ autoreconfHook makeWrapper ]; 24 - buildInputs = [ pam openssl openssh ]; 25 - 26 - # Disable GSSAPIAuthentication errors. Also, paths in certain source files are 27 - # hardcoded. Replace the hardcoded paths with correct paths. 28 - preConfigure = '' 29 - substituteInPlace ./shellinabox/service.c --replace "-oGSSAPIAuthentication=no" "" 30 - substituteInPlace ./shellinabox/launcher.c --replace "/usr/games" "${openssh}/bin" 31 - substituteInPlace ./shellinabox/service.c --replace "/bin/login" "${shadow}/bin/login" 32 - substituteInPlace ./shellinabox/launcher.c --replace "/bin/login" "${shadow}/bin/login" 33 - substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl.bin}/bin" 34 - ''; 35 - 36 - postInstall = '' 37 - wrapProgram $out/bin/shellinaboxd \ 38 - --prefix LD_LIBRARY_PATH : ${openssl.out}/lib 39 - mkdir -p $out/lib 40 - cp shellinabox/* $out/lib 41 - ''; 42 - 43 - meta = with lib; { 44 - homepage = "https://github.com/shellinabox/shellinabox"; 45 - description = "Web based AJAX terminal emulator"; 46 - license = licenses.gpl2; 47 - maintainers = with maintainers; [ tomberek lihop ]; 48 - platforms = platforms.linux; 49 - }; 50 - }
-28
pkgs/servers/shellinabox/shellinabox-minus.patch
··· 1 - diff -ru shellinabox-2.14/shellinabox/vt100.jspp shellinabox-2.14.new/shellinabox/vt100.jspp 2 - --- shellinabox-2.14/shellinabox/vt100.jspp 2012-04-21 21:30:44.000000000 +0400 3 - +++ shellinabox-2.14.new/shellinabox/vt100.jspp 2014-03-27 16:33:31.012344164 +0400 4 - @@ -2676,6 +2676,7 @@ 5 - switch (key) { 6 - case 33: /* Page Up */ this.scrollBack(); return; 7 - case 34: /* Page Down */ this.scrollFore(); return; 8 - + case 173: /* _ */ ch = this.applyModifiers(95, event); break; 9 - default: break; 10 - } 11 - } 12 - @@ -2738,6 +2739,7 @@ 13 - case 123: /* F12 */ ch = '\u001B[24~'; break; 14 - case 144: /* Num Lock */ return; 15 - case 145: /* Scroll Lock */ return; 16 - + case 173: /* - */ ch = this.applyModifiers(45, event); break; 17 - case 186: /* ; */ ch = this.applyModifiers(59, event); break; 18 - case 187: /* = */ ch = this.applyModifiers(61, event); break; 19 - case 188: /* , */ ch = this.applyModifiers(44, event); break; 20 - @@ -2882,6 +2884,7 @@ 21 - case 109: /* - -> _ */ u = 45; s = 95; break; 22 - case 111: /* / -> ? */ u = 47; s = 63; break; 23 - 24 - + case 173: /* - -> _ */ u = 45; s = 95; break; 25 - case 186: /* ; -> : */ u = 59; s = 58; break; 26 - case 187: /* = -> + */ u = 61; s = 43; break; 27 - case 188: /* , -> < */ u = 44; s = 60; break; 28 -
+5 -4
pkgs/tools/admin/syft/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "syft"; 5 - version = "0.36.0"; 5 + version = "0.37.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "anchore"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-JNW4sozNtLey7uAj1xECR/ui+/1L02moZKuGzWXIh5k="; 11 + sha256 = "sha256-j3/WE13djrgI7S6YISg9kPIkV0IR0C65QU8zj0z0MVg="; 12 12 # populate values that require us to use git. By doing this in postFetch we 13 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 14 leaveDotGit = true; 15 15 postFetch = '' 16 16 cd "$out" 17 17 commit="$(git rev-parse HEAD)" 18 - source_date_epoch=$(git log --date=format:'%Y-%m-%dT%H:%M:%SZ' -1 --pretty=%ad) 18 + source_date_epoch="$(git log --date=format:'%Y-%m-%dT%H:%M:%SZ' -1 --pretty=%ad)" 19 19 substituteInPlace "$out/internal/version/build.go" \ 20 20 --replace 'gitCommit = valueNotProvided' "gitCommit = \"$commit\"" \ 21 21 --replace 'buildDate = valueNotProvided' "buildDate = \"$source_date_epoch\"" 22 22 find "$out" -name .git -print0 | xargs -0 rm -rf 23 23 ''; 24 24 }; 25 - vendorSha256 = "sha256-urDDb+53KSvUOjVRY/geENIQM1vvBUDddlNpQw3LcLg="; 25 + vendorSha256 = "sha256-gIcPxSzWzldR9UX4iB2fkwc0BfATT1B+Nge+sGefmj8="; 26 26 27 27 nativeBuildInputs = [ installShellFiles ]; 28 28 ··· 33 33 "-w" 34 34 "-X github.com/anchore/syft/internal/version.version=${version}" 35 35 "-X github.com/anchore/syft/internal/version.gitTreeState=clean" 36 + "-X github.com/anchore/syft/internal/version.gitDescription=v${version}" 36 37 ]; 37 38 38 39 # tests require a running docker instance
+2 -2
pkgs/tools/admin/trinsic-cli/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "trinsic-cli"; 5 - version = "1.1.2"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/trinsic-id/sdk/releases/download/v${version}/trinsic-cli-vendor-${version}.tar.gz"; 9 - sha256 = "7e5377e8460ebb1253b9974e02d0077ffc58f2b4712cf7896f1bef7e9f580cd4"; 9 + sha256 = "4ec8a02cf7cd31822668e97befe96f0a7a32b1103abfe27c1bff643d3bf16588"; 10 10 }; 11 11 12 12 cargoVendorDir = "vendor";
+3 -3
pkgs/tools/graphics/pikchr/default.nix
··· 6 6 stdenv.mkDerivation { 7 7 pname = "pikchr"; 8 8 # To update, use the last check-in in https://pikchr.org/home/timeline?r=trunk 9 - version = "unstable-2021-07-22"; 9 + version = "unstable-2022-01-30"; 10 10 11 11 src = fetchurl { 12 - url = "https://pikchr.org/home/tarball/d9e1502ed74c6aab/pikchr.tar.gz"; 13 - sha256 = "sha256-YSy95GiSodOS1YJgl9arBniqEJzYPrZ9CHNSCee9Yfg="; 12 + url = "https://pikchr.org/home/tarball/5db3aa1d294dcd16/pikchr.tar.gz"; 13 + sha256 = "sha256-xnT2oOx4LK9CElXeAuQIKlu6WvMB8Nv5+2kBzWQ5Gpc="; 14 14 }; 15 15 16 16 # can't open generated html files
+3 -3
pkgs/tools/misc/duf/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "duf"; 5 - version = "0.8.0"; 5 + version = "0.8.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "muesli"; 9 9 repo = "duf"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-FZ4NplvCc1c+wPy1NSs2qwfWVtCPNHs6JquubGnwiEY="; 11 + sha256 = "sha256-bVuqX88KY+ky+fd1FU9GWP78jQc4fRDk9yRSeIesHyI="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-VLGsfazTD7hSNXPxuGJJwyqvUlqk5wuz8NqFHs/jyZc="; 14 + vendorSha256 = "sha256-oihi7E67VQmym9U1gdD802AYxWRrSowhzBiKg0CBDPc="; 15 15 16 16 ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; 17 17
+3 -3
pkgs/tools/misc/etcher/default.nix
··· 14 14 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; 15 15 16 16 sha256 = { 17 - "x86_64-linux" = "sha256-n8i4ZqjugeUfXpTzVgIwVomfPk6HvPEbTZLe/jFgwFg="; 18 - "i686-linux" = "sha256-lLGfhW6el2ZOcaykH1kTjGldXo7/0q5O8QnslnDlWAQ="; 17 + "x86_64-linux" = "1yj6ybc99nqpzv2wjmvi7khfb5viwlb2rbjdpvgr4pmlzmiv7n2k"; 18 + "i686-linux" = "09ddcqxw1jhl8v461ngdgj2l4infn2xiwvaqxi6qp3swci627vmz"; 19 19 }."${system}" or throwSystem; 20 20 21 21 arch = { ··· 27 27 28 28 stdenv.mkDerivation rec { 29 29 pname = "etcher"; 30 - version = "1.6.0"; 30 + version = "1.7.3"; 31 31 32 32 src = fetchurl { 33 33 url = "https://github.com/balena-io/etcher/releases/download/v${version}/balena-etcher-electron_${version}_${arch}.deb";
+7
pkgs/tools/misc/grub/2.0x.nix
··· 64 64 url = "https://marc.info/?l=grub-devel&m=146193404929072&q=mbox"; 65 65 sha256 = "00wa1q5adiass6i0x7p98vynj9vsz1w0gn1g4dgz89v35mpyw2bi"; 66 66 }) 67 + 68 + # Pull upstream patch to fix linkage against binutils-2.36. 69 + (fetchpatch { 70 + name = "binutils-2.36"; 71 + url = "https://git.savannah.gnu.org/cgit/grub.git/patch/?id=b98275138bf4fc250a1c362dfd2c8b1cf2421701"; 72 + sha256 = "001m058bsl2pcb0ii84jfm5ias8zgzabrfy6k2cc9w6w1y51ii82"; 73 + }) 67 74 ]; 68 75 69 76 postPatch = if kbdcompSupport then ''
+3 -3
pkgs/tools/misc/pmbootstrap/default.nix
··· 3 3 4 4 buildPythonApplication rec { 5 5 pname = "pmbootstrap"; 6 - version = "1.40.0"; 6 + version = "1.41.0"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "sha256-b/9NEURp42d/j/Fk8NUS0ZAG99q56eg0pEU/xkFnvrM="; 10 + sha256 = "sha256-go3EXmC9Vp0xXi1mH65p85FKsTe0CbyNXw3VVRrnpeQ="; 11 11 }; 12 12 13 13 repo = fetchFromGitLab { ··· 15 15 owner = "postmarketOS"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-2yyHAHoIlwHX2+LbwwK7AGrBDZlfkhtCcKAKHdJMBdQ="; 18 + sha256 = "sha256-7Y4rxSdJQaIlq4yiadvrEro0JM5xoHeISDKHz69T4z8="; 19 19 }; 20 20 21 21 pmb_test = "${repo}/test";
+2 -2
pkgs/tools/misc/rpm-ostree/default.nix
··· 40 40 41 41 stdenv.mkDerivation rec { 42 42 pname = "rpm-ostree"; 43 - version = "2022.1"; 43 + version = "2022.2"; 44 44 45 45 outputs = [ "out" "dev" "man" "devdoc" ]; 46 46 47 47 src = fetchurl { 48 48 url = "https://github.com/coreos/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz"; 49 - sha256 = "sha256-v7vAj045gLHdH1kQ9oMnLLBYXu/oWOW+MS+m7w2VoW0="; 49 + sha256 = "sha256-wy6zmVy7+31+wadLldWdf/IyT0dyLArYLmGw/Kgd+sU="; 50 50 }; 51 51 52 52 nativeBuildInputs = [
+66 -8
pkgs/tools/misc/shunit2/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 1 + { lib 2 + , resholvePackage 3 + , fetchFromGitHub 4 + , bash 5 + , coreutils 6 + , gnused 7 + , gnugrep 8 + , findutils 9 + , ncurses 10 + }: 2 11 3 - stdenv.mkDerivation { 12 + resholvePackage rec { 4 13 pname = "shunit2"; 5 - version = "2019-08-10"; 14 + version = "2.1.8"; 6 15 7 16 src = fetchFromGitHub { 8 17 owner = "kward"; 9 - repo = "shunit2"; 10 - rev = "ba130d69bbff304c0c6a9c5e8ab549ae140d6225"; 11 - sha256 = "1bsn8dhxbjfmh01lq80yhnld3w3fw1flh7nwx12csrp58zsvlmgk"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + hash = "sha256-IZHkgkVqzeh+eEKCDJ87sqNhSA+DU6kBCNDdQaUEeiM="; 12 21 }; 13 22 14 23 installPhase = '' ··· 22 31 $out/bin/shunit2 23 32 ''; 24 33 34 + solutions = { 35 + shunit = { 36 + # Caution: see __SHUNIT_CMD_ECHO_ESC before changing 37 + interpreter = "${bash}/bin/sh"; 38 + scripts = [ "bin/shunit2" ]; 39 + inputs = [ coreutils gnused gnugrep findutils ncurses ]; 40 + # resholve's Nix API is analogous to the CLI flags 41 + # documented in 'man resholve' 42 + fake = { 43 + # "missing" functions shunit2 expects the user to declare 44 + function = [ 45 + "oneTimeSetUp" 46 + "oneTimeTearDown" 47 + "setUp" 48 + "tearDown" 49 + "suite" 50 + "noexec" 51 + ]; 52 + # shunit2 is both bash and zsh compatible, and in 53 + # some zsh-specific code it uses this non-bash builtin 54 + builtin = [ "setopt" ]; 55 + }; 56 + fix = { 57 + # stray absolute path; make it resolve from coreutils 58 + "/usr/bin/od" = true; 59 + /* 60 + Caution: this one is contextually debatable. shunit2 61 + sets this variable after testing whether `echo -e test` 62 + yields `test` or `-e test`. Since we're setting the 63 + interpreter, we can pre-test this. But if we go fiddle 64 + the interpreter later, I guess we _could_ break it. 65 + */ 66 + "$__SHUNIT_CMD_ECHO_ESC" = [ "'echo -e'" ]; 67 + "$SHUNIT_CMD_TPUT" = [ "tput" ]; # from ncurses 68 + }; 69 + keep = { 70 + # dynamically defined in shunit2:_shunit_mktempFunc 71 + eval = [ "shunit_condition_" "_shunit_test_" "_shunit_prepForSourcing" ]; 72 + 73 + # dynamic based on CLI flag 74 + "$_SHUNIT_LINENO_" = true; 75 + }; 76 + execer = [ 77 + # drop after https://github.com/abathur/binlore/issues/2 78 + "cannot:${ncurses}/bin/tput" 79 + ]; 80 + }; 81 + }; 82 + 25 83 meta = with lib; { 26 84 homepage = "https://github.com/kward/shunit2"; 27 - description = "A xUnit based unit test framework for Bourne based shell scripts"; 28 - maintainers = with maintainers; [ cdepillabout utdemir ]; 85 + description = "An xUnit based unit test framework for Bourne based shell scripts"; 86 + maintainers = with maintainers; [ abathur utdemir ]; 29 87 license = licenses.asl20; 30 88 platforms = platforms.unix; 31 89 };
+45 -8
pkgs/tools/networking/mailutils/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, autoreconfHook, dejagnu, gettext, pkg-config 2 - , gdbm, pam, readline, ncurses, gnutls, guile, texinfo, gnum4, sasl, fribidi, nettools 3 - , python3, gss, libmysqlclient, system-sendmail }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , fetchpatch 5 + , autoreconfHook 6 + , dejagnu 7 + , gettext 8 + , gnum4 9 + , pkg-config 10 + , texinfo 11 + , fribidi 12 + , gdbm 13 + , gnutls 14 + , gss 15 + , guile 16 + , libmysqlclient 17 + , mailcap 18 + , nettools 19 + , pam 20 + , readline 21 + , ncurses 22 + , python3 23 + , sasl 24 + , system-sendmail 25 + }: 4 26 5 27 stdenv.mkDerivation rec { 6 28 pname = "mailutils"; 7 - version = "3.13"; 29 + version = "3.14"; 8 30 9 31 src = fetchurl { 10 32 url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz"; 11 - hash = "sha256-2SCXHctJh4oAmRF3T9ZATxPSe9EB4tWbZkooZZpAlMc="; 33 + hash = "sha256-wMWzj+qLRaSvzUNkh/Knb9VSUJLQN4gTputVQsIScTk="; 12 34 }; 13 35 14 36 postPatch = '' ··· 19 41 ''; 20 42 21 43 nativeBuildInputs = [ 22 - autoreconfHook gettext pkg-config 44 + autoreconfHook 45 + gettext 46 + gnum4 47 + pkg-config 48 + texinfo 23 49 ]; 24 50 25 51 buildInputs = [ 26 - gdbm pam readline ncurses gnutls guile texinfo gnum4 sasl fribidi 27 - gss libmysqlclient python3 52 + fribidi 53 + gdbm 54 + gnutls 55 + gss 56 + guile 57 + libmysqlclient 58 + mailcap 59 + ncurses 60 + pam 61 + python3 62 + readline 63 + sasl 28 64 ] ++ lib.optionals stdenv.isLinux [ nettools ]; 29 65 30 66 patches = [ ··· 47 83 "--with-mysql" 48 84 "--with-path-sendmail=${system-sendmail}/bin/sendmail" 49 85 "--with-mail-rc=/etc/mail.rc" 86 + "DEFAULT_CUPS_CONFDIR=${mailcap}/etc" # provides mime.types to mimeview 50 87 ]; 51 88 52 89 readmsg-tests = let
+2 -2
pkgs/tools/package-management/apt/default.nix
··· 28 28 29 29 stdenv.mkDerivation rec { 30 30 pname = "apt"; 31 - version = "2.3.14"; 31 + version = "2.3.15"; 32 32 33 33 src = fetchurl { 34 34 url = "mirror://debian/pool/main/a/apt/apt_${version}.tar.xz"; 35 - hash = "sha256-uQo87RUuzTiaVdoRFeBFZb/L9fWKgIzbcfa1LU0vC98="; 35 + hash = "sha256-JWIAfREJk91+eobdgeplDmEhAXm1nqxytu3/Y2TAu6Y="; 36 36 }; 37 37 38 38 nativeBuildInputs = [
+77 -42
pkgs/tools/package-management/packagekit/default.nix
··· 1 - { stdenv, fetchFromGitHub, lib 2 - , intltool, glib, pkg-config, polkit, python3, sqlite 3 - , gobject-introspection, vala, gtk-doc, autoreconfHook, autoconf-archive 4 - , nix, enableNixBackend ? false, boost 1 + { stdenv 2 + , fetchFromGitHub 3 + , lib 4 + , gettext 5 + , glib 6 + , pkg-config 7 + , polkit 8 + , python3 9 + , sqlite 10 + , gobject-introspection 11 + , vala 12 + , gtk-doc 13 + , nix 14 + , boost 15 + , meson 16 + , ninja 17 + , libxslt 18 + , docbook-xsl-nons 19 + , docbook_xml_dtd_42 20 + , libxml2 21 + , gst_all_1 22 + , gtk3 5 23 , enableCommandNotFound ? false 6 - , enableBashCompletion ? false, bash-completion ? null 7 - , enableSystemd ? stdenv.isLinux, systemd }: 24 + , enableBashCompletion ? false 25 + , bash-completion ? null 26 + , enableSystemd ? stdenv.isLinux 27 + , systemd 28 + }: 8 29 9 30 stdenv.mkDerivation rec { 10 31 pname = "packagekit"; 11 - version = "1.1.13"; 32 + version = "1.2.5pre"; 12 33 13 - outputs = [ "out" "dev" ]; 34 + outputs = [ "out" "dev" "devdoc" ]; 14 35 15 36 src = fetchFromGitHub { 16 - owner = "hughsie"; 37 + owner = "PackageKit"; 17 38 repo = "PackageKit"; 18 - rev = "PACKAGEKIT_${lib.replaceStrings ["."] ["_"] version}"; 19 - sha256 = "0xmgac27p5z8wr56yw3cqhywnlvaf8kvyv1g0nzxnq167xj5vxam"; 39 + rev = "9c2ef9cddf39ebde587907561f8e7ac99ed6be1a"; 40 + sha256 = "05z1ds240kcmigygkbgjasr4spn7vd7cbpsbfrghhgnmszx9bjgl"; 20 41 }; 21 42 22 - buildInputs = [ glib polkit python3 gobject-introspection ] 23 - ++ lib.optional enableSystemd systemd 24 - ++ lib.optional enableBashCompletion bash-completion; 25 - propagatedBuildInputs = 26 - [ sqlite boost ] 27 - ++ lib.optional enableNixBackend nix; 28 - nativeBuildInputs = [ vala intltool pkg-config autoreconfHook autoconf-archive gtk-doc ]; 29 - 30 - preAutoreconf = '' 31 - gtkdocize 32 - intltoolize 33 - ''; 43 + buildInputs = [ 44 + glib 45 + polkit 46 + python3 47 + gobject-introspection 48 + gst_all_1.gstreamer 49 + gst_all_1.gst-plugins-base 50 + gtk3 51 + sqlite 52 + nix 53 + boost 54 + ] ++ lib.optional enableSystemd systemd 55 + ++ lib.optional enableBashCompletion bash-completion; 56 + nativeBuildInputs = [ 57 + vala 58 + gettext 59 + pkg-config 60 + gtk-doc 61 + meson 62 + libxslt 63 + docbook-xsl-nons 64 + docbook_xml_dtd_42 65 + libxml2 66 + ninja 67 + ]; 34 68 35 - configureFlags = [ 36 - (if enableSystemd then "--enable-systemd" else "--disable-systemd") 37 - "--disable-dummy" 38 - "--disable-cron" 39 - "--enable-introspection" 40 - "--disable-offline-update" 69 + mesonFlags = [ 70 + (if enableSystemd then "-Dsystemd=true" else "-Dsystem=false") 71 + "-Dpackaging_backend=nix" 72 + "-Ddbus_sys=${placeholder "out"}/share/dbus-1/system.d" 73 + "-Ddbus_services=${placeholder "out"}/share/dbus-1/system-services" 74 + "-Dsystemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 75 + "-Dcron=false" 76 + "-Dgtk_doc=true" 77 + "--sysconfdir=/etc" 41 78 "--localstatedir=/var" 42 - "--sysconfdir=/etc" 43 - "--with-dbus-sys=${placeholder "out"}/share/dbus-1/system.d" 44 - "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 45 - "--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user" 46 79 ] 47 - ++ lib.optional enableNixBackend "--enable-nix" 48 - ++ lib.optional (!enableBashCompletion) "--disable-bash-completion" 49 - ++ lib.optional (!enableCommandNotFound) "--disable-command-not-found"; 80 + ++ lib.optional (!enableBashCompletion) "-Dbash_completion=false" 81 + ++ lib.optional (!enableCommandNotFound) "-Dbash_command_not_found=false"; 50 82 51 - enableParallelBuilding = true; 52 - 53 - installFlags = [ 54 - "sysconfdir=${placeholder "out"}/etc" 55 - "localstatedir=\${TMPDIR}" 56 - ]; 83 + postPatch = '' 84 + # HACK: we want packagekit to look in /etc for configs but install 85 + # those files in $out/etc ; we just override the runtime paths here 86 + # same for /var & $out/var 87 + substituteInPlace etc/meson.build \ 88 + --replace "install_dir: join_paths(get_option('sysconfdir'), 'PackageKit')" "install_dir: join_paths('$out', 'etc', 'PackageKit')" 89 + substituteInPlace data/meson.build \ 90 + --replace "install_dir: join_paths(get_option('localstatedir'), 'lib', 'PackageKit')," "install_dir: join_paths('$out', 'var', 'lib', 'PackageKit')," 91 + ''; 57 92 58 93 meta = with lib; { 59 94 description = "System to facilitate installing and updating packages";
+3 -5
pkgs/tools/security/secp256k1/default.nix
··· 7 7 stdenv.mkDerivation { 8 8 pname = "secp256k1"; 9 9 10 - # I can't find any version numbers, so we're just using the date of the 11 - # last commit. 12 - version = "unstable-2021-06-06"; 10 + version = "unstable-2022-02-06"; 13 11 14 12 src = fetchFromGitHub { 15 13 owner = "bitcoin-core"; 16 14 repo = "secp256k1"; 17 - rev = "7973576f6e3ab27d036a09397152b124d747f4ae"; 18 - sha256 = "0vjk55dv0mkph4k6bqgkykmxn05ngzvhc4rzjnvn33xzi8dzlvah"; 15 + rev = "5dcc6f8dbdb1850570919fc9942d22f728dbc0af"; 16 + sha256 = "x9qG2S6tBSRseWaFIN9N2fRpY1vkv8idT3d3rfJnmaU="; 19 17 }; 20 18 21 19 nativeBuildInputs = [ autoreconfHook ];
+1
pkgs/top-level/aliases.nix
··· 1059 1059 seg3d = throw "seg3d has been removed from nixpkgs (2019-11-10)"; 1060 1060 sepolgen = throw "sepolgen was merged into selinux-python"; # Added 2021-11-11 1061 1061 shared_mime_info = shared-mime-info; # Added 2018-02-25 1062 + shellinabox = throw "shellinabox has been removed from nixpkgs, as it was unmaintained upstream"; # Added 2021-12-15 1062 1063 sickbeard = throw "sickbeard has been removed from nixpkgs, as it was unmaintained."; # Added 2022-01-01 1063 1064 sickrage = throw "sickbeard has been removed from nixpkgs, as it was unmaintained."; # Added 2022-01-01 1064 1065 sigurlx = throw "sigurlx has been removed (upstream is gone)"; # Added 2022-01-24
+20 -15
pkgs/top-level/all-packages.nix
··· 1213 1213 1214 1214 lilo = callPackage ../tools/misc/lilo { }; 1215 1215 1216 - logseq = callPackage ../applications/misc/logseq { }; 1216 + logseq = callPackage ../applications/misc/logseq { 1217 + electron = electron_16; 1218 + }; 1217 1219 1218 1220 natls = callPackage ../tools/misc/natls { }; 1219 1221 ··· 5141 5143 escrotum = callPackage ../tools/graphics/escrotum { }; 5142 5144 5143 5145 etcher = callPackage ../tools/misc/etcher { 5144 - electron = electron_14; 5146 + electron = electron_12; 5145 5147 }; 5146 5148 5147 5149 ethercalc = callPackage ../servers/web-apps/ethercalc { }; ··· 6725 6727 jade = callPackage ../tools/text/sgml/jade { }; 6726 6728 6727 6729 jadx = callPackage ../tools/security/jadx { }; 6730 + 6731 + jamesdsp = libsForQt5.callPackage ../applications/audio/jamesdsp { }; 6728 6732 6729 6733 jazzy = callPackage ../development/tools/jazzy { }; 6730 6734 ··· 9637 9641 9638 9642 shout = nodePackages.shout; 9639 9643 9640 - shellinabox = callPackage ../servers/shellinabox { 9641 - openssl = openssl_1_0_2; 9642 - }; 9643 - 9644 9644 shrikhand = callPackage ../data/fonts/shrikhand { }; 9645 9645 9646 9646 shunit2 = callPackage ../tools/misc/shunit2 { }; ··· 14165 14165 electron_13 14166 14166 electron_14 14167 14167 electron_15 14168 - electron_16; 14168 + electron_16 14169 + electron_17; 14169 14170 14170 14171 autobuild = callPackage ../development/tools/misc/autobuild { }; 14171 14172 ··· 17872 17873 17873 17874 libinklevel = callPackage ../development/libraries/libinklevel { }; 17874 17875 17875 - libnats-c = callPackage ../development/libraries/libnats-c { 17876 - openssl = openssl_1_0_2; 17877 - }; 17876 + libnats-c = callPackage ../development/libraries/libnats-c { }; 17878 17877 17879 17878 liburing = callPackage ../development/libraries/liburing { }; 17880 17879 ··· 19795 19794 19796 19795 SDL2_ttf = callPackage ../development/libraries/SDL2_ttf { }; 19797 19796 19797 + SDL2_ttf_2_0_15 = callPackage ../development/libraries/SDL2_ttf/2.0.15.nix { }; 19798 + 19798 19799 sdnotify-wrapper = skawarePackages.sdnotify-wrapper; 19799 19800 19800 19801 sdrplay = callPackage ../applications/radio/sdrplay {}; ··· 21443 21444 21444 21445 libpulseaudio = libpulseaudio-vanilla; 21445 21446 21446 - easyeffects = callPackage ../applications/audio/easyeffects { 21447 - glibmm = glibmm_2_68; 21448 - }; 21447 + easyeffects = callPackage ../applications/audio/easyeffects { }; 21449 21448 21450 21449 pulseeffects-legacy = callPackage ../applications/audio/pulseeffects-legacy { 21451 21450 boost = boost172; ··· 22419 22418 lieer = callPackage ../applications/networking/lieer {}; 22420 22419 22421 22420 linuxConsoleTools = callPackage ../os-specific/linux/consoletools { }; 22421 + 22422 + linthesia = callPackage ../games/linthesia/default.nix { }; 22422 22423 22423 22424 libreelec-dvb-firmware = callPackage ../os-specific/linux/firmware/libreelec-dvb-firmware { }; 22424 22425 ··· 28323 28324 28324 28325 quiterss = libsForQt514.callPackage ../applications/networking/newsreaders/quiterss {}; 28325 28326 28326 - falkon = libsForQt514.callPackage ../applications/networking/browsers/falkon { }; 28327 + falkon = libsForQt5.callPackage ../applications/networking/browsers/falkon { }; 28327 28328 28328 28329 quodlibet = callPackage ../applications/audio/quodlibet { 28329 28330 keybinder3 = null; ··· 30115 30116 chia-plotter = callPackage ../applications/blockchains/chia-plotter { }; 30116 30117 30117 30118 clightning = callPackage ../applications/blockchains/clightning { }; 30119 + 30120 + besu = callPackage ../applications/blockchains/besu { }; 30118 30121 30119 30122 bitcoin-abc = libsForQt5.callPackage ../applications/blockchains/bitcoin-abc { 30120 30123 boost = boost165; ··· 31527 31530 31528 31531 _0verkill = callPackage ../games/0verkill { }; 31529 31532 31533 + _7kaa = callPackage ../games/7kaa { }; 31534 + 31530 31535 hhexen = callPackage ../games/hhexen { }; 31531 31536 31532 31537 wyvern = callPackage ../games/wyvern { }; ··· 34410 34415 jami-daemon jami-libclient jami-client-gnome jami-client-qt; 34411 34416 34412 34417 jitsi-meet-electron = callPackage ../applications/networking/instant-messengers/jitsi-meet-electron { 34413 - electron = electron_13; 34418 + electron = electron_16; 34414 34419 }; 34415 34420 34416 34421 zenstates = callPackage ../os-specific/linux/zenstates {};
+1 -1
pkgs/top-level/make-tarball.nix
··· 64 64 header "generating packages.json" 65 65 mkdir -p $out/nix-support 66 66 echo -n '{"version":2,"packages":' > tmp 67 - nix-env -f . -I nixpkgs=$src -qa --json --arg config 'import ${./packages-config.nix}' "''${opts[@]}" >> tmp 67 + nix-env -f . -I nixpkgs=$src -qa --meta --json --arg config 'import ${./packages-config.nix}' "''${opts[@]}" >> tmp 68 68 echo -n '}' >> tmp 69 69 packages=$out/packages.json.br 70 70 < tmp sed "s|$(pwd)/||g" | jq -c | brotli -9 > $packages
+9 -1
pkgs/top-level/packages-config.nix
··· 13 13 fdbPackages 14 14 fusePackages 15 15 gns3Packages 16 - haskellPackages 17 16 idrisPackages 18 17 nodePackages 19 18 nodePackages_latest ··· 30 29 zabbix50 31 30 zeroadPackages 32 31 ; 32 + 33 + haskellPackages = super.haskellPackages // { 34 + # mesos, which this depends on, has been removed from nixpkgs. We are keeping 35 + # the error message for now, so users will get an error message they can make 36 + # sense of, but need to work around it here. 37 + # TODO(@sternenseemann): remove this after branch-off of 22.05, along with the 38 + # override in configuration-nix.nix 39 + hs-mesos = null; 40 + }; 33 41 34 42 # Make sure haskell.compiler is included, so alternative GHC versions show up, 35 43 # but don't add haskell.packages.* since they contain the same packages (at
+1
pkgs/top-level/python-aliases.nix
··· 34 34 35 35 mapAliases ({ 36 36 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 37 + asyncio-nats-client = nats-py; # added 2022-02-08 37 38 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 38 39 bt_proximity = bt-proximity; # added 2021-07-02 39 40 bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # added 2019-11-27
+12 -3
pkgs/top-level/python-packages.nix
··· 392 392 393 393 aiorun = callPackage ../development/python-modules/aiorun { }; 394 394 395 + aiosenseme = callPackage ../development/python-modules/aiosenseme { }; 396 + 395 397 aiosenz = callPackage ../development/python-modules/aiosenz { }; 396 398 397 399 aioserial = callPackage ../development/python-modules/aioserial { }; ··· 691 693 asyncio-dgram = callPackage ../development/python-modules/asyncio-dgram { }; 692 694 693 695 asyncio-mqtt = callPackage ../development/python-modules/asyncio_mqtt { }; 694 - 695 - asyncio-nats-client = callPackage ../development/python-modules/asyncio-nats-client { }; 696 696 697 697 asyncio-rlock = callPackage ../development/python-modules/asyncio-rlock { }; 698 698 ··· 2190 2190 2191 2191 # Current LTS 2192 2192 django_2 = callPackage ../development/python-modules/django/2.nix { }; 2193 + django_3 = callPackage ../development/python-modules/django/3.nix { }; 2193 2194 2194 2195 # Current latest 2195 - django_3 = callPackage ../development/python-modules/django/3.nix { }; 2196 + django_4 = callPackage ../development/python-modules/django/4.nix { }; 2196 2197 2197 2198 django-allauth = callPackage ../development/python-modules/django-allauth { }; 2198 2199 ··· 5315 5316 5316 5317 nassl = callPackage ../development/python-modules/nassl { }; 5317 5318 5319 + nats-py = callPackage ../development/python-modules/nats-py { }; 5320 + 5318 5321 nats-python = callPackage ../development/python-modules/nats-python { }; 5319 5322 5320 5323 natsort = callPackage ../development/python-modules/natsort { }; ··· 6101 6104 pyheos = callPackage ../development/python-modules/pyheos { }; 6102 6105 6103 6106 pyhiveapi = callPackage ../development/python-modules/pyhiveapi { }; 6107 + 6108 + pyhumps = callPackage ../development/python-modules/pyhumps { }; 6104 6109 6105 6110 pyisy = callPackage ../development/python-modules/pyisy { }; 6106 6111 ··· 7964 7969 7965 7970 python-http-client = callPackage ../development/python-modules/python-http-client { }; 7966 7971 7972 + python-i18n = callPackage ../development/python-modules/python-i18n { }; 7973 + 7967 7974 pythonix = callPackage ../development/python-modules/pythonix { 7968 7975 nix = pkgs.nixVersions.nix_2_3; 7969 7976 meson = pkgs.meson.override { python3 = self.python; }; ··· 10378 10385 warlock = callPackage ../development/python-modules/warlock { }; 10379 10386 10380 10387 warrant = callPackage ../development/python-modules/warrant { }; 10388 + 10389 + warrant-lite = callPackage ../development/python-modules/warrant-lite { }; 10381 10390 10382 10391 waqiasync = callPackage ../development/python-modules/waqiasync { }; 10383 10392