Merge master into staging-next

authored by github-actions[bot] and committed by GitHub 86197a80 ef4ddefb

+101 -24
+26
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 555 555 6.0.0 to 9.0.0 556 556 </para> 557 557 </listitem> 558 + <listitem> 559 + <para> 560 + The following Visual Studio Code extensions were renamed to 561 + keep the naming convention uniform. 562 + </para> 563 + <itemizedlist spacing="compact"> 564 + <listitem> 565 + <para> 566 + <literal>bbenoist.Nix</literal> -&gt; 567 + <literal>bbenoist.nix</literal> 568 + </para> 569 + </listitem> 570 + <listitem> 571 + <para> 572 + <literal>CoenraadS.bracket-pair-colorizer</literal> -&gt; 573 + <literal>coenraads.bracket-pair-colorizer</literal> 574 + </para> 575 + </listitem> 576 + <listitem> 577 + <para> 578 + <literal>golang.Go</literal> -&gt; 579 + <literal>golang.go</literal> 580 + </para> 581 + </listitem> 582 + </itemizedlist> 583 + </listitem> 558 584 </itemizedlist> 559 585 </section> 560 586 <section xml:id="sec-release-21.11-notable-changes">
+5
nixos/doc/manual/release-notes/rl-2111.section.md
··· 142 142 143 143 - the `mingw-64` package has been upgraded from 6.0.0 to 9.0.0 144 144 145 + - The following Visual Studio Code extensions were renamed to keep the naming convention uniform. 146 + - `bbenoist.Nix` -> `bbenoist.nix` 147 + - `CoenraadS.bracket-pair-colorizer` -> `coenraads.bracket-pair-colorizer` 148 + - `golang.Go` -> `golang.go` 149 + 145 150 ## Other Notable Changes {#sec-release-21.11-notable-changes} 146 151 147 152 - The setting [`services.openssh.logLevel`](options.html#opt-services.openssh.logLevel) `"VERBOSE"` `"INFO"`. This brings NixOS in line with upstream and other Linux distributions, and reduces log spam on servers due to bruteforcing botnets.
+6 -1
pkgs/applications/audio/gpodder/default.nix
··· 29 29 glibcLocales 30 30 ]; 31 31 32 + # as of 2021-07, the gobject-introspection setup hook does not 33 + # work with `strictDeps` enabled, thus for proper `wrapGAppsHook` 34 + # it needs to be disabled explicitly. https://github.com/NixOS/nixpkgs/issues/56943 35 + strictDeps = false; 36 + 32 37 buildInputs = [ 33 38 python3 39 + gtk3 34 40 gobject-introspection 35 41 gnome.adwaita-icon-theme 36 42 ]; ··· 49 55 eyeD3 50 56 podcastparser 51 57 html5lib 52 - gtk3 53 58 ]; 54 59 55 60 makeFlags = [
+2 -2
pkgs/data/fonts/jetbrains-mono/default.nix
··· 1 1 { lib, fetchzip }: 2 2 3 3 let 4 - version = "2.225"; 4 + version = "2.241"; 5 5 in 6 6 fetchzip { 7 7 name = "JetBrainsMono-${version}"; 8 8 9 9 url = "https://github.com/JetBrains/JetBrainsMono/releases/download/v${version}/JetBrainsMono-${version}.zip"; 10 10 11 - sha256 = "1k8xmjaingz50626hd73hqbp196kg3zndiy0aqb88z5cw9nd0fva"; 11 + sha256 = "1gwhbmq8zw026i66g96i75zn2zff7cr83ns8aaslrzsrkk247lah"; 12 12 13 13 postFetch = '' 14 14 mkdir -p $out/share/fonts
+3 -4
pkgs/development/python-modules/dbus-next/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , python 5 - , dbus, dbus-python, pytest, pytest-cov, pytest-asyncio, pytest-timeout 5 + , dbus, pytest, pytest-cov, pytest-asyncio, pytest-timeout 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 9 pname = "dbus-next"; 10 - version = "0.2.2"; 10 + version = "0.2.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "altdesktop"; 14 14 repo = "python-dbus-next"; 15 15 rev = "v${version}"; 16 - sha256 = "0x78ghkci4las13gwbrm8fzg671lx1q2cn8h0f64ki8yag1myia1"; 16 + sha256 = "sha256-EKEQZFRUe+E65Z6DNCJFL5uCI5kbXrN7Tzd4O0X5Cqo="; 17 17 }; 18 18 19 19 checkInputs = [ 20 20 dbus 21 - dbus-python 22 21 pytest 23 22 pytest-cov 24 23 pytest-asyncio
+37
pkgs/development/python-modules/luddite/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , setuptools 5 + , pytestCheckHook 6 + , pytest-socket 7 + , pytest-mock 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "luddite"; 12 + version = "1.0.2"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "jumptrading"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "8/7uwO5HLhyXYt+T6VUO/O7TN9+FfRlT8y0r5+CJ/l4="; 19 + }; 20 + 21 + postPatch = '' 22 + substituteInPlace pytest.ini \ 23 + --replace "--cov=luddite --cov-report=html --cov-report=term --no-cov-on-fail" "" 24 + ''; 25 + 26 + propagatedBuildInputs = [ setuptools ]; 27 + 28 + checkInputs = [ pytestCheckHook pytest-socket pytest-mock ]; 29 + pythonImportsCheck = [ "luddite" ]; 30 + 31 + meta = with lib; { 32 + description = "Checks for out-of-date package versions"; 33 + homepage = "https://github.com/jumptrading/luddite"; 34 + license = licenses.asl20; 35 + maintainers = with maintainers; [ angustrau ]; 36 + }; 37 + }
+3 -2
pkgs/development/python-modules/millheater/default.nix
··· 1 + 1 2 { lib 2 3 , aiohttp 3 4 , async-timeout ··· 9 10 10 11 buildPythonPackage rec { 11 12 pname = "millheater"; 12 - version = "0.5.0"; 13 + version = "0.5.2"; 13 14 disabled = pythonOlder "3.6"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "Danielhiversen"; 17 18 repo = "pymill"; 18 19 rev = version; 19 - sha256 = "sha256-uMvCpXz+amb5mR9ebkAit21UFYpsTkjkZRXtmcvWt8k="; 20 + sha256 = "0ndfxdg10m9mahnwbs66dnyc1lr8q7vs71y6zwxlc0h27hr3gr0d"; 20 21 }; 21 22 22 23 propagatedBuildInputs = [
+4 -4
pkgs/misc/vscode-extensions/default.nix
··· 207 207 }; 208 208 }; 209 209 210 - bbenoist.Nix = buildVscodeMarketplaceExtension { 210 + bbenoist.nix = buildVscodeMarketplaceExtension { 211 211 mktplcRef = { 212 212 name = "Nix"; 213 213 publisher = "bbenoist"; ··· 296 296 }; 297 297 }; 298 298 299 - CoenraadS.bracket-pair-colorizer = buildVscodeMarketplaceExtension { 299 + coenraads.bracket-pair-colorizer = buildVscodeMarketplaceExtension { 300 300 meta = with lib; { 301 301 changelog = "https://marketplace.visualstudio.com/items/CoenraadS.bracket-pair-colorizer/changelog"; 302 302 description = "A customizable extension for colorizing matching brackets"; ··· 708 708 }; 709 709 }; 710 710 711 - golang.Go = buildVscodeMarketplaceExtension { 711 + golang.go = buildVscodeMarketplaceExtension { 712 712 mktplcRef = { 713 713 name = "Go"; 714 714 publisher = "golang"; ··· 1518 1518 1519 1519 aliases = self: super: { 1520 1520 # aliases 1521 - ms-vscode = lib.recursiveUpdate super.ms-vscode { inherit (super.golang) Go; }; 1521 + ms-vscode = lib.recursiveUpdate super.ms-vscode { inherit (super.golang) go; }; 1522 1522 }; 1523 1523 1524 1524 # TODO: add overrides overlay, so that we can have a generated.nix
+3 -3
pkgs/os-specific/linux/kernel/linux-zen.nix
··· 1 1 { lib, fetchFromGitHub, buildLinux, ... } @ args: 2 2 3 3 let 4 - version = "5.12.19"; 5 - suffix = "zen2"; 4 + version = "5.13.5"; 5 + suffix = "zen1"; 6 6 in 7 7 8 8 buildLinux (args // { ··· 14 14 owner = "zen-kernel"; 15 15 repo = "zen-kernel"; 16 16 rev = "v${version}-${suffix}"; 17 - sha256 = "sha256-l+KIlaXoq/Nzf7mUom9DUjaAsn7UxeKGL6MbYN7mBZk="; 17 + sha256 = "sha256-3guG482lsdcWqAJ1kY757D4EeOEpTDvy95de0bHif98="; 18 18 }; 19 19 20 20 extraMeta = {
+3 -3
pkgs/servers/tailscale/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tailscale"; 5 - version = "1.10.2"; 5 + version = "1.12.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tailscale"; 9 9 repo = "tailscale"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-bAWQTdpqDF7ERQzNY1k0NtxdA9M9bIyfHtvX0nKfIQY="; 11 + sha256 = "sha256-PdCEmB0qchXtxIDfQVjA7f6YgHUe3ojmsMazpq4k6Bo="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ]; 15 15 16 16 CGO_ENABLED = 0; 17 17 18 - vendorSha256 = "1mq5bbz9vsxhcrwxpsdnhp8q8zrnp6jpqggn9n5kqr82f3bizwxv"; 18 + vendorSha256 = "sha256-NIf5nyUXZY5UGFcdjeeFZdGKVcD2pve+PytziCD2NFk="; 19 19 20 20 doCheck = false; 21 21
+2 -2
pkgs/tools/graphics/agi/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "agi"; 17 - version = "1.1.0-dev-20210521"; 17 + version = "2.1.0-dev-20210726"; 18 18 19 19 src = fetchzip { 20 20 url = "https://github.com/google/agi-dev-releases/releases/download/v${version}/agi-${version}-linux.zip"; 21 - sha256 = "sha256-otdthD5p+12JmBltFtXgVaa1fgsItluHv0S4k/GbB9Q="; 21 + sha256 = "sha256-1joE2+lNFs0VmglqLsbyqhj16tfCZ+saQmy1XP3ATBo="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+3 -3
pkgs/tools/text/choose/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "choose"; 8 - version = "1.3.2"; 8 + version = "1.3.3"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "theryangeary"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-QX0tAo1cGPpRhggiAPxsVhKXg6TgaVl1lcp3na7jUNw="; 14 + sha256 = "sha256-HYwlAgFKbi6or2eblERdMMjJOJdtt2FCQECUg3MzO8E="; 15 15 }; 16 16 17 - cargoSha256 = "sha256-3pK7y/zC5iZkto5p5Xerlpu3yfN6sB2kjLF2fURlUj0="; 17 + cargoSha256 = "sha256-55/B+LxdbekfaKKyng0lUCU3QnqL34M+QnLUxaPqkqI="; 18 18 19 19 meta = with lib; { 20 20 description = "A human-friendly and fast alternative to cut and (sometimes) awk";
+2
pkgs/top-level/all-packages.nix
··· 25520 25520 25521 25521 lscolors = callPackage ../applications/misc/lscolors { }; 25522 25522 25523 + luddite = with python3Packages; toPythonApplication luddite; 25524 + 25523 25525 lumail = callPackage ../applications/networking/mailreaders/lumail { 25524 25526 lua = lua5_1; 25525 25527 };
+2
pkgs/top-level/python-packages.nix
··· 4248 4248 4249 4249 lsassy = callPackage ../development/python-modules/lsassy { }; 4250 4250 4251 + luddite = callPackage ../development/python-modules/luddite { }; 4252 + 4251 4253 ludios_wpull = callPackage ../development/python-modules/ludios_wpull { }; 4252 4254 4253 4255 luftdaten = callPackage ../development/python-modules/luftdaten { };