Merge master into staging-next

authored by

nixpkgs-ci[bot] and committed by
GitHub
a0966d7a c77ca57a

+146 -130
-7
maintainers/maintainer-list.nix
··· 8257 8257 github = "feathecutie"; 8258 8258 githubId = 53912746; 8259 8259 }; 8260 - federicoschonborn = { 8261 - name = "Federico Damián Schonborn"; 8262 - email = "federicoschonborn@disroot.org"; 8263 - github = "FedericoSchonborn"; 8264 - githubId = 62166915; 8265 - matrix = "@FedericoDSchonborn:matrix.org"; 8266 - }; 8267 8260 fedx-sudo = { 8268 8261 email = "fedx-sudo@pm.me"; 8269 8262 github = "FedX-sudo";
+2 -1
nixos/modules/services/misc/gitea.nix
··· 890 890 ''; 891 891 892 892 serviceConfig = { 893 - Type = "simple"; 893 + Type = "notify"; 894 894 User = cfg.user; 895 895 Group = cfg.group; 896 896 WorkingDirectory = cfg.stateDir; 897 897 ExecStart = "${exe} web --pid /run/gitea/gitea.pid"; 898 898 Restart = "always"; 899 + WatchdogSec = 30; 899 900 # Runtime directory and mode 900 901 RuntimeDirectory = "gitea"; 901 902 RuntimeDirectoryMode = "0755";
+8 -1
nixos/modules/virtualisation/podman/default.nix
··· 232 232 # containers cannot reach aardvark-dns otherwise 233 233 networking.firewall.interfaces.${network_interface}.allowedUDPPorts = lib.mkIf dns_enabled [ 53 ]; 234 234 235 + virtualisation.podman.extraPackages = [ 236 + pkgs.iptables 237 + ] 238 + ++ lib.optional config.networking.nftables.enable pkgs.nftables; 235 239 virtualisation.containers = { 236 240 enable = true; # Enable common /etc/containers configuration 237 241 containersConf.settings = { 238 - network.network_backend = "netavark"; 242 + network = { 243 + network_backend = "netavark"; 244 + firewall_driver = lib.mkIf config.networking.nftables.enable "nftables"; 245 + }; 239 246 }; 240 247 }; 241 248
+2 -2
pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/package.nix
··· 8 8 nodejs, 9 9 s, 10 10 melpaBuild, 11 - copilot-language-server-fhs, 11 + copilot-language-server, 12 12 }: 13 13 melpaBuild (finalAttrs: { 14 14 pname = "copilot"; ··· 26 26 postPatch = '' 27 27 substituteInPlace copilot.el \ 28 28 --replace-fail "defcustom copilot-server-executable \"copilot-language-server\"" \ 29 - "defcustom copilot-server-executable \"${lib.getExe copilot-language-server-fhs}\"" 29 + "defcustom copilot-server-executable \"${lib.getExe copilot-language-server}\"" 30 30 ''; 31 31 32 32 packageRequires = [
+26
pkgs/applications/editors/vim/plugins/generated.nix
··· 6181 6181 meta.hydraPlatforms = [ ]; 6182 6182 }; 6183 6183 6184 + hlargs-nvim = buildVimPlugin { 6185 + pname = "hlargs.nvim"; 6186 + version = "2025-06-16"; 6187 + src = fetchFromGitHub { 6188 + owner = "m-demare"; 6189 + repo = "hlargs.nvim"; 6190 + rev = "ce8d705866dae44513ff48613d5e37e4da524d70"; 6191 + sha256 = "03h0hx2jgr9ac4sa8gwz8q7kxsr2h67c7jin04maih0sszi2hiiw"; 6192 + }; 6193 + meta.homepage = "https://github.com/m-demare/hlargs.nvim/"; 6194 + meta.hydraPlatforms = [ ]; 6195 + }; 6196 + 6184 6197 hlchunk-nvim = buildVimPlugin { 6185 6198 pname = "hlchunk.nvim"; 6186 6199 version = "2025-05-06"; ··· 21021 21034 sha256 = "096pjjl3ngw0hsh59j2x6pdrpqvp657rcxfyl9kw13ndqyd867xs"; 21022 21035 }; 21023 21036 meta.homepage = "https://github.com/gibiansky/vim-textobj-haskell/"; 21037 + meta.hydraPlatforms = [ ]; 21038 + }; 21039 + 21040 + vim-textobj-line = buildVimPlugin { 21041 + pname = "vim-textobj-line"; 21042 + version = "2021-09-27"; 21043 + src = fetchFromGitHub { 21044 + owner = "kana"; 21045 + repo = "vim-textobj-line"; 21046 + rev = "1a6780d29adcf7e464e8ddbcd0be0a9df1a37339"; 21047 + sha256 = "0di9y3nbb9raj0lj7d76cjic4vs1msrqk3gzsl3r7b1qr0y3mdw7"; 21048 + }; 21049 + meta.homepage = "https://github.com/kana/vim-textobj-line/"; 21024 21050 meta.hydraPlatforms = [ ]; 21025 21051 }; 21026 21052
+7
pkgs/applications/editors/vim/plugins/overrides.nix
··· 3947 3947 }; 3948 3948 }); 3949 3949 3950 + vim-textobj-line = super.vim-textobj-line.overrideAttrs (old: { 3951 + dependencies = [ self.vim-textobj-user ]; 3952 + meta = old.meta // { 3953 + maintainers = with lib.maintainers; [ llakala ]; 3954 + }; 3955 + }); 3956 + 3950 3957 vim-tpipeline = super.vim-tpipeline.overrideAttrs { 3951 3958 # Requires global variable 3952 3959 nvimSkipModules = "tpipeline.main";
+2
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 473 473 https://github.com/Yggdroot/hiPairs/,, 474 474 https://github.com/tzachar/highlight-undo.nvim/,HEAD, 475 475 https://github.com/pimalaya/himalaya-vim/,, 476 + https://github.com/m-demare/hlargs.nvim/,HEAD, 476 477 https://github.com/shellRaining/hlchunk.nvim/,HEAD, 477 478 https://github.com/mpickering/hlint-refactor-vim/,, 478 479 https://github.com/calops/hmts.nvim/,, ··· 1614 1615 https://github.com/kana/vim-textobj-entire/,, 1615 1616 https://github.com/kana/vim-textobj-function/,, 1616 1617 https://github.com/gibiansky/vim-textobj-haskell/,, 1618 + https://github.com/kana/vim-textobj-line/,HEAD, 1617 1619 https://github.com/osyo-manga/vim-textobj-multiblock/,, 1618 1620 https://github.com/kana/vim-textobj-user/,, 1619 1621 https://github.com/Julian/vim-textobj-variable-segment/,,
+3 -3
pkgs/applications/video/mpv/scripts/skipsilence.nix
··· 7 7 8 8 buildLua { 9 9 pname = "mpv-skipsilence"; 10 - version = "0-unstable-2025-08-03"; 10 + version = "0-unstable-2025-09-06"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "ferreum"; 14 14 repo = "mpv-skipsilence"; 15 - rev = "42e511c52c68c1aa9678e18caea41e43eee9149b"; 16 - hash = "sha256-+sOMWFFumJUk5gFE1iCTvWub3PWzYOkulXJLCGS4fYA="; 15 + rev = "75e1334e513682f0ece6790c614c1fcbd82257cc"; 16 + hash = "sha256-XmrVZRJAQctIiuznw/fQzs+9+QKOyTnJI2JOEWBWnVA="; 17 17 }; 18 18 19 19 passthru.updateScript = unstableGitUpdater { };
+2 -2
pkgs/by-name/aq/aquamarine/package.nix
··· 23 23 }: 24 24 stdenv.mkDerivation (finalAttrs: { 25 25 pname = "aquamarine"; 26 - version = "0.9.3"; 26 + version = "0.9.4"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "hyprwm"; 30 30 repo = "aquamarine"; 31 31 tag = "v${finalAttrs.version}"; 32 - hash = "sha256-ZIa0peLluZ0AVT0f6bMW+bRCIxMRUVlN798PE4iHRAw="; 32 + hash = "sha256-POePremlUY5GyA1zfbtic6XLxDaQcqHN6l+bIxdT5gc="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+1 -1
pkgs/by-name/bi/biplanes-revival/package.nix
··· 69 69 changelog = "https://github.com/regular-dev/biplanes-revival/releases/tag/v${finalAttrs.version}"; 70 70 license = lib.licenses.gpl3Only; 71 71 platforms = lib.platforms.unix; 72 - maintainers = with lib.maintainers; [ federicoschonborn ]; 72 + maintainers = with lib.maintainers; [ ]; 73 73 }; 74 74 })
+1 -1
pkgs/by-name/bl/bluejay/package.nix
··· 48 48 changelog = "https://github.com/EbonJaeger/bluejay/releases/tag/v${finalAttrs.version}"; 49 49 license = lib.licenses.mpl20; 50 50 platforms = lib.platforms.linux; 51 - maintainers = with lib.maintainers; [ federicoschonborn ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 }; 53 53 })
+22 -47
pkgs/by-name/co/copilot-language-server/package.nix
··· 1 1 { 2 2 lib, 3 3 stdenvNoCC, 4 - buildFHSEnv, 4 + makeWrapper, 5 5 fetchzip, 6 6 nix-update-script, 7 - }: 7 + nodejs, 8 8 9 - let 10 - arch = 11 - { 12 - aarch64-darwin = "arm64"; 13 - aarch64-linux = "arm64"; 14 - x86_64-darwin = "x64"; 15 - x86_64-linux = "x64"; 16 - } 17 - ."${stdenvNoCC.hostPlatform.system}" 18 - or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); 19 - os = 20 - { 21 - aarch64-darwin = "darwin"; 22 - aarch64-linux = "linux"; 23 - x86_64-darwin = "darwin"; 24 - x86_64-linux = "linux"; 25 - } 26 - ."${stdenvNoCC.hostPlatform.system}" 27 - or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}"); 28 - 29 - executableName = "copilot-language-server"; 30 - fhs = 31 - { package }: 32 - buildFHSEnv { 33 - name = package.meta.mainProgram; 34 - version = package.version; 35 - targetPkgs = pkgs: [ pkgs.stdenv.cc.cc.lib ]; 36 - runScript = lib.getExe package; 37 - 38 - meta = package.meta // { 39 - description = 40 - package.meta.description 41 - + " (FHS-wrapped, expand package details for further information when to use it)"; 42 - longDescription = "Use this version if you encounter an error like `Could not start dynamically linked executable` or `SyntaxError: Invalid or unexpected token` (see nixpkgs issue [391730](https://github.com/NixOS/nixpkgs/issues/391730))."; 43 - }; 44 - }; 45 - in 9 + testers, 10 + }: 46 11 stdenvNoCC.mkDerivation (finalAttrs: { 47 12 pname = "copilot-language-server"; 48 - version = "1.357.0"; 13 + version = "1.367.0"; 49 14 50 15 src = fetchzip { 51 - url = "https://github.com/github/copilot-language-server-release/releases/download/${finalAttrs.version}/copilot-language-server-native-${finalAttrs.version}.zip"; 52 - hash = "sha256-uVfQk26a/huFxsAtYKPfaJyYSWH17+8PqDh/HFecsdA="; 16 + url = "https://github.com/github/copilot-language-server-release/releases/download/${finalAttrs.version}/copilot-language-server-js-${finalAttrs.version}.zip"; 17 + hash = "sha256-JQf6pQChQQOjJmdoL6DvLxajLfbEZi50p5FeJny0/Ss="; 53 18 stripRoot = false; 54 19 }; 55 20 21 + nativeBuildInputs = [ 22 + makeWrapper 23 + ]; 24 + 25 + buildInputs = [ 26 + nodejs 27 + ]; 28 + 56 29 installPhase = '' 57 30 runHook preInstall 58 31 59 - install "${os}-${arch}/${executableName}" -Dm755 -t "$out"/bin 32 + mkdir -p $out/share/copilot-language-server 33 + cp -r ./* $out/share/copilot-language-server/ 34 + 35 + makeWrapper ${lib.getExe nodejs} $out/bin/copilot-language-server \ 36 + --add-flags $out/share/copilot-language-server/main.js 60 37 61 38 runHook postInstall 62 39 ''; 63 40 64 - dontStrip = true; 65 - 66 41 passthru = { 67 42 updateScript = nix-update-script { }; 68 - fhs = fhs { package = finalAttrs.finalPackage; }; 43 + tests.version = testers.testVersion { package = finalAttrs.finalPackage; }; 69 44 }; 70 45 71 46 meta = { ··· 79 54 shortName = "GitHub Copilot License"; 80 55 url = "https://github.com/customer-terms/github-copilot-product-specific-terms"; 81 56 }; 82 - mainProgram = executableName; 57 + mainProgram = "copilot-language-server"; 83 58 platforms = [ 84 59 "x86_64-linux" 85 60 "aarch64-linux"
+1 -1
pkgs/by-name/he/hedgemodmanager/package.nix
··· 48 48 changelog = "https://github.com/hedge-dev/HedgeModManager/releases/tag/${finalAttrs.version}"; 49 49 license = lib.licenses.mit; 50 50 platforms = lib.platforms.linux; 51 - maintainers = with lib.maintainers; [ federicoschonborn ]; 51 + maintainers = with lib.maintainers; [ ]; 52 52 }; 53 53 })
-1
pkgs/by-name/hu/hugo/package.nix
··· 84 84 schneefux 85 85 Br1ght0ne 86 86 Frostman 87 - federicoschonborn 88 87 ]; 89 88 }; 90 89 })
+1 -1
pkgs/by-name/mi/minesector/package.nix
··· 53 53 homepage = "https://github.com/grassdne/minesector"; 54 54 license = lib.licenses.mit; 55 55 platforms = lib.platforms.unix; 56 - maintainers = with lib.maintainers; [ federicoschonborn ]; 56 + maintainers = with lib.maintainers; [ ]; 57 57 }; 58 58 })
+1 -1
pkgs/by-name/op/opensurge/package.nix
··· 59 59 changelog = "https://github.com/alemart/opensurge/blob/v${finalAttrs.version}/CHANGES.md"; 60 60 license = lib.licenses.gpl3Only; 61 61 platforms = lib.platforms.all; 62 - maintainers = with lib.maintainers; [ federicoschonborn ]; 62 + maintainers = with lib.maintainers; [ ]; 63 63 }; 64 64 })
+3 -3
pkgs/by-name/pg/pgadmin4/package.nix
··· 20 20 21 21 let 22 22 pname = "pgadmin"; 23 - version = "9.7"; 24 - yarnHash = "sha256-c+qPT9E4a/xqgSmfE0OnzLP31k0dXC6b2fwXnBKZjuE="; 23 + version = "9.8"; 24 + yarnHash = "sha256-NvQlrDXn9sa4MpytFYPsC4bKO8Thx/MuqG8M6VIa2ig="; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "pgadmin-org"; 28 28 repo = "pgadmin4"; 29 29 rev = "REL-${lib.versions.major version}_${lib.versions.minor version}"; 30 - hash = "sha256-UpeqEjaXm4mHVLpgJM1/pa2mhM6WbqW4A4U9u3RK+qw="; 30 + hash = "sha256-gnVrMuxWV7lAol1gyONbhtuUL4EEOfOPkRUM2esMgi0="; 31 31 }; 32 32 33 33 # keep the scope, as it is used throughout the derivation and tests
+1 -1
pkgs/by-name/pg/pgadmin4/update.sh
··· 63 63 printf "Done\n" 64 64 popd 65 65 66 - sed -i -E -e "s#yarnHash = \".*\"#yarnHash = \"$YARN_HASH\"#" ${scriptDir}/default.nix 66 + sed -i -E -e "s#yarnHash = \".*\"#yarnHash = \"$YARN_HASH\"#" ${scriptDir}/package.nix 67 67 68 68 update-source-version pgadmin4 "$newest_version" --print-changes 69 69 touch $TMPDIR/.done
+3 -3
pkgs/by-name/po/pocketbase/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "pocketbase"; 10 - version = "0.29.3"; 10 + version = "0.30.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "pocketbase"; 14 14 repo = "pocketbase"; 15 15 rev = "v${version}"; 16 - hash = "sha256-BthnDSSWlUSPTou0Vta0OYrjpbbWh/zIb2pnuWaxX5U="; 16 + hash = "sha256-5Qlq7ImVe+YJ4EYNpaWW8CNU9XvwupngdwqiSjNXNT0="; 17 17 }; 18 18 19 - vendorHash = "sha256-J86NsLM7y87HBfjwuYb/djkSBtySKYatkTDMPI9KLU4="; 19 + vendorHash = "sha256-tS48r/4dn5tJEOtEdVDdIJHIFQHKCbLx31F542rutbM="; 20 20 21 21 # This is the released subpackage from upstream repo 22 22 subPackages = [ "examples/base" ];
-2
pkgs/by-name/po/podman/package.nix
··· 25 25 extraRuntimes ? lib.optionals stdenv.hostPlatform.isLinux [ runc ], # e.g.: runc, gvisor, youki 26 26 fuse-overlayfs, 27 27 util-linuxMinimal, 28 - iptables, 29 28 iproute2, 30 29 catatonit, 31 30 gvproxy, ··· 43 42 lib.optionals stdenv.hostPlatform.isLinux [ 44 43 fuse-overlayfs 45 44 util-linuxMinimal 46 - iptables 47 45 iproute2 48 46 ] 49 47 ++ lib.optionals stdenv.hostPlatform.isDarwin [
+1 -1
pkgs/by-name/su/surgescript/package.nix
··· 37 37 changelog = "https://github.com/alemart/surgescript/blob/v${finalAttrs.version}/CHANGES.md"; 38 38 license = lib.licenses.asl20; 39 39 platforms = lib.platforms.all; 40 - maintainers = with lib.maintainers; [ federicoschonborn ]; 40 + maintainers = with lib.maintainers; [ ]; 41 41 }; 42 42 })
+1 -1
pkgs/by-name/xd/xdvdfs-cli/package.nix
··· 35 35 homepage = "https://github.com/antangelo/xdvdfs"; 36 36 changelog = "https://github.com/antangelo/xdvdfs/releases/tag/v${finalAttrs.version}"; 37 37 license = lib.licenses.mit; 38 - maintainers = with lib.maintainers; [ federicoschonborn ]; 38 + maintainers = with lib.maintainers; [ ]; 39 39 }; 40 40 })
+2 -2
pkgs/development/compilers/go/1.25.nix
··· 28 28 in 29 29 stdenv.mkDerivation (finalAttrs: { 30 30 pname = "go"; 31 - version = "1.25.0"; 31 + version = "1.25.1"; 32 32 33 33 src = fetchurl { 34 34 url = "https://go.dev/dl/go${finalAttrs.version}.src.tar.gz"; 35 - hash = "sha256-S9AekSlyB7+kUOpA1NWpOxtTGl5DhHOyoG4Y4HciciU="; 35 + hash = "sha256-0BDBCc7pTYDv5oHqtGvepJGskGv0ZYPDLp8NuwvRpZQ="; 36 36 }; 37 37 38 38 strictDeps = true;
+10
pkgs/development/haskell-modules/configuration-common.nix
··· 563 563 # TODO(@sternenseemann): submit upstreamable patch resolving this 564 564 # (this should be possible by also taking PREFIX into account). 565 565 ./patches/git-annex-no-usr-prefix.patch 566 + # https://git-annex.branchable.com/bugs/flaky_test_failure_add_dup/ 567 + (pkgs.fetchpatch { 568 + name = "git-annex-workaround-for-git-2.50_bis.patch"; 569 + url = "https://git.joeyh.name/index.cgi/git-annex.git/patch/?id=cf449837ea9ab7687d8a157f21cad31ddf5bbfb6"; 570 + sha256 = "sha256-HmNJ85dLht5Hy85AUkjACnET9YLPP2MshYHsApUax+I="; 571 + excludes = [ 572 + "doc/**" 573 + "CHANGELOG" 574 + ]; 575 + }) 566 576 ]; 567 577 568 578 postPatch = ''
+2 -2
pkgs/development/python-modules/aiosmtplib/default.nix
··· 5 5 fetchFromGitHub, 6 6 hypothesis, 7 7 hatchling, 8 - pytest-asyncio, 8 + pytest-asyncio_0, 9 9 pytestCheckHook, 10 10 pythonOlder, 11 11 trustme, ··· 30 30 nativeCheckInputs = [ 31 31 aiosmtpd 32 32 hypothesis 33 - pytest-asyncio 33 + pytest-asyncio_0 34 34 pytestCheckHook 35 35 trustme 36 36 ];
+5 -10
pkgs/development/python-modules/ansible/core.nix
··· 52 52 patchShebangs --build packaging/cli-doc/build.py 53 53 54 54 SETUPTOOLS_PATTERN='"setuptools[0-9 <>=.,]+"' 55 - PYPROJECT=$(cat pyproject.toml) 56 - if [[ "$PYPROJECT" =~ $SETUPTOOLS_PATTERN ]]; then 57 - echo "setuptools replace: ''${BASH_REMATCH[0]}" 58 - echo "''${PYPROJECT//''${BASH_REMATCH[0]}/'"setuptools"'}" > pyproject.toml 59 - else 60 - exit 2 61 - fi 62 - 63 - substituteInPlace pyproject.toml \ 64 - --replace-fail "wheel == 0.45.1" wheel 55 + WHEEL_PATTERN='"wheel[0-9 <>=.,]+"' 56 + echo "Patching pyproject.toml" 57 + # print replaced patterns to stdout 58 + sed -r -i -e 's/'"$SETUPTOOLS_PATTERN"'/"setuptools"/w /dev/stdout' \ 59 + -e 's/'"$WHEEL_PATTERN"'/"wheel"/w /dev/stdout' pyproject.toml 65 60 ''; 66 61 67 62 nativeBuildInputs = [
+2
pkgs/development/python-modules/checkdmarc/default.nix
··· 6 6 expiringdict, 7 7 fetchFromGitHub, 8 8 hatchling, 9 + importlib-resources, 9 10 pem, 10 11 publicsuffixlist, 11 12 pyleri, ··· 39 40 cryptography 40 41 dnspython 41 42 expiringdict 43 + importlib-resources 42 44 pem 43 45 publicsuffixlist 44 46 pyleri
+2 -2
pkgs/development/python-modules/discordpy/default.nix
··· 14 14 15 15 let 16 16 pname = "discord.py"; 17 - version = "2.5.2"; 17 + version = "2.6.3"; 18 18 in 19 19 buildPythonPackage { 20 20 inherit pname version; ··· 24 24 owner = "Rapptz"; 25 25 repo = "discord.py"; 26 26 tag = "v${version}"; 27 - hash = "sha256-xaZeOkfOhm1CL5ceu9g/Vlas4jpYoQDlGMEtACFY7PE="; 27 + hash = "sha256-OEU09pdV2H/RxhvxWNIrg8mPh7yiv6ItKNwvhMKKhco="; 28 28 }; 29 29 30 30 build-system = [ setuptools ];
+17 -15
pkgs/development/python-modules/napari-npe2/default.nix
··· 1 1 { 2 2 lib, 3 - appdirs, 4 - build, 5 3 buildPythonPackage, 6 4 fetchFromGitHub, 7 5 hatchling, 8 6 hatch-vcs, 9 - magicgui, 10 - napari, # reverse dependency, for tests 11 - pydantic, 12 7 pythonOlder, 13 - pytomlpp, 14 8 pyyaml, 9 + platformdirs, 10 + build, 11 + psygnal, 12 + pydantic, 13 + tomli-w, 14 + tomli, 15 15 rich, 16 16 typer, 17 - tomli-w, 17 + napari, # reverse dependency, for tests 18 18 }: 19 19 20 20 buildPythonPackage rec { ··· 37 37 ]; 38 38 39 39 dependencies = [ 40 - appdirs 40 + pyyaml 41 + platformdirs 41 42 build 42 - magicgui 43 + psygnal 43 44 pydantic 44 - pytomlpp 45 - pyyaml 45 + tomli-w 46 46 rich 47 47 typer 48 - tomli-w 48 + ] 49 + ++ lib.optionals (pythonOlder "3.11") [ 50 + tomli 49 51 ]; 50 52 51 53 pythonImportsCheck = [ "npe2" ]; ··· 54 56 inherit napari; 55 57 }; 56 58 57 - meta = with lib; { 59 + meta = { 58 60 description = "Plugin system for napari (the image visualizer)"; 59 61 homepage = "https://github.com/napari/npe2"; 60 - license = licenses.bsd3; 61 - maintainers = with maintainers; [ SomeoneSerge ]; 62 + license = lib.licenses.bsd3; 63 + maintainers = with lib.maintainers; [ SomeoneSerge ]; 62 64 mainProgram = "npe2"; 63 65 }; 64 66 }
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "publicsuffixlist"; 14 - version = "1.0.2.20250827"; 14 + version = "1.0.2.20250906"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-zXNmWSi7UWtSn2XKRodCOgoYhk/jk7eOgpe/oQzkLi0="; 21 + hash = "sha256-q2NaPMku1mwTHdhvi8xnWNcrBBXL7KOxMYd5g8cnWGU="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pynvim/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pynvim"; 15 - version = "0.5.2"; 15 + version = "0.6.0"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "neovim"; 20 20 repo = "pynvim"; 21 21 tag = version; 22 - hash = "sha256-/frugwYPS4rS4L6BRsmNb5pJI8xfLJvbr+PyOLx25a4="; 22 + hash = "sha256-Wxn4g/lFelAJx0Zz2yaeXqX56xeOWUJNb2p8EiJgKE0="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pytenable/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "pytenable"; 31 - version = "1.8.3"; 31 + version = "1.8.4"; 32 32 pyproject = true; 33 33 34 34 disabled = pythonOlder "3.10"; ··· 37 37 owner = "tenable"; 38 38 repo = "pyTenable"; 39 39 tag = version; 40 - hash = "sha256-91V2R29M/+kiosfkl5t6Y8qT/E041Wl1jhXCw3eQ7us="; 40 + hash = "sha256-Dt6jN+0Ktv3CO88RmbgKCU8v3Oa10MnKjyJaePxXsaI="; 41 41 }; 42 42 43 43 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/python-watcherclient/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "python-watcherclient"; 22 - version = "4.8.0"; 22 + version = "4.9.0"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "openstack"; 29 29 repo = "python-watcherclient"; 30 30 tag = version; 31 - hash = "sha256-ZwMsLXqfRw/qJ71B/WcLkK9TGX77GLiy/nLE7kRD1Xg="; 31 + hash = "sha256-ik//J9R9F4SCljexijcfXuSbDgDUNnMTqfpxIPd2Jm8="; 32 32 }; 33 33 34 34 env.PBR_VERSION = version;
+2 -2
pkgs/development/python-modules/python-zaqarclient/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "python-zaqarclient"; 25 - version = "4.0.0"; 25 + version = "4.1.0"; 26 26 pyproject = true; 27 27 28 28 disabled = pythonOlder "3.10"; ··· 31 31 owner = "openstack"; 32 32 repo = "python-zaqarclient"; 33 33 tag = version; 34 - hash = "sha256-oqfD9+9xNYAEjCy3DvpHOF9PeRGnwo7flpFQCSnpt7g="; 34 + hash = "sha256-JzZc2g1L7Z26EcAIj5TIkle4WPut9YH6+wDUo4nYjyw="; 35 35 }; 36 36 37 37 env.PBR_VERSION = version;
+2 -2
pkgs/development/python-modules/rigour/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "rigour"; 24 - version = "1.2.9"; 24 + version = "1.3.2"; 25 25 pyproject = true; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "opensanctions"; 29 29 repo = "rigour"; 30 30 tag = "v${version}"; 31 - hash = "sha256-9eK5ZCkgku/ZDEGAdpXFvZZiFY5sorJ0r0Ko/HuYi1o="; 31 + hash = "sha256-SvRcqkaTioYBclKZHimo6wbDg9y0vCgmLqCStdjCvKg="; 32 32 }; 33 33 34 34 build-system = [
+2 -2
pkgs/development/python-modules/uxsim/default.nix
··· 18 18 }: 19 19 buildPythonPackage rec { 20 20 pname = "uxsim"; 21 - version = "1.8.2"; 21 + version = "1.9.0"; 22 22 pyproject = true; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "toruseo"; 26 26 repo = "UXsim"; 27 27 tag = "v${version}"; 28 - hash = "sha256-aHJ2AAoSm+5viEieAHzhU0EDyS+VQrMWlhm0CkV7/s4="; 28 + hash = "sha256-E4VhLkBl4kFg/OpOc050jIPQHEznxjMp22PIxDhVMIU="; 29 29 }; 30 30 31 31 patches = [ ./add-qt-plugin-path-to-env.patch ];
+2 -2
pkgs/development/tools/build-managers/sbt/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "sbt"; 13 - version = "1.11.5"; 13 + version = "1.11.6"; 14 14 15 15 src = fetchurl { 16 16 url = "https://github.com/sbt/sbt/releases/download/v${finalAttrs.version}/sbt-${finalAttrs.version}.tgz"; 17 - hash = "sha256-lJM3qaCC0BSPirUFiTJGf2nK48TBYZ9KGVZuwPG7ZJI="; 17 + hash = "sha256-zkmV6GrPf91X23hZXNaRjAF4Gmp0EXDmQJrbpZfg2D0="; 18 18 }; 19 19 20 20 postPatch = ''
+1 -1
pkgs/kde/third-party/dynamic-workspaces/default.nix
··· 41 41 description = "KWin script that automatically adds/removes virtual desktops"; 42 42 homepage = "https://github.com/maurges/dynamic_workspaces"; 43 43 license = lib.licenses.bsd3; 44 - maintainers = with lib.maintainers; [ federicoschonborn ]; 44 + maintainers = with lib.maintainers; [ ]; 45 45 platforms = lib.platforms.all; 46 46 }; 47 47 }
+1
pkgs/top-level/aliases.nix
··· 640 640 colorpicker = throw "'colorpicker' has been removed due to lack of maintenance upstream. Consider using 'xcolor', 'gcolor3', 'eyedropper' or 'gpick' instead"; # Added 2024-10-19 641 641 colorstorm = throw "'colorstorm' has been removed because it was unmaintained in nixpkgs and upstream was rewritten."; # Added 2025-06-15 642 642 connman-ncurses = throw "'connman-ncurses' has been removed due to lack of maintenance upstream."; # Added 2025-05-27 643 + copilot-language-server-fhs = lib.warnOnInstantiate "The package set `copilot-language-server-fhs` has been renamed to `copilot-language-server`." copilot-language-server; # Added 2025-09-07 643 644 copper = throw "'copper' has been removed, as it was broken since 22.11"; # Added 2025-08-22 644 645 cordless = throw "'cordless' has been removed due to being archived upstream. Consider using 'discordo' instead."; # Added 2025-06-07 645 646 coriander = throw "'coriander' has been removed because it depends on GNOME 2 libraries"; # Added 2024-06-27
-2
pkgs/top-level/all-packages.nix
··· 343 343 344 344 coolercontrol = recurseIntoAttrs (callPackage ../applications/system/coolercontrol { }); 345 345 346 - copilot-language-server-fhs = copilot-language-server.fhs; 347 - 348 346 cup-docker-noserver = cup-docker.override { withServer = false; }; 349 347 350 348 dhallDirectoryToNix = callPackage ../build-support/dhall/directory-to-nix.nix { };