From d70bb458f2033332dc380e0d6f9d1cdb9568d6e2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 23 Feb 2026 13:09:13 +0000 Subject: [PATCH 01/66] profanity: 0.15.1 -> 0.16.0 --- .../networking/instant-messengers/profanity/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix index 09aaac6e9ad1..678300d97168 100644 --- a/pkgs/applications/networking/instant-messengers/profanity/default.nix +++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix @@ -39,13 +39,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "profanity"; - version = "0.15.1"; + version = "0.16.0"; src = fetchFromGitHub { owner = "profanity-im"; repo = "profanity"; rev = finalAttrs.version; - hash = "sha256-h+R+hasc45NZOneuqZ+z+yjfpsPm317OXq0LYe3t+cQ="; + hash = "sha256-/1ae2+iY01C0TyrvviZIcwUQDJvr2qq2DM0GVbjoynI="; }; patches = [ From 0922118ca96d0d2749fd383f9d1168f7001d487b Mon Sep 17 00:00:00 2001 From: Luna Nova Date: Sat, 7 Mar 2026 22:12:30 -0800 Subject: [PATCH 02/66] rocmPackages.composable_kernel: fix gfx906 only failure when all ISAs are excluded for target --- .../rocm-modules/composable_kernel/base.nix | 8 +++++-- .../fix-empty-offload-targets.diff | 23 +++++++++++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/rocm-modules/composable_kernel/fix-empty-offload-targets.diff diff --git a/pkgs/development/rocm-modules/composable_kernel/base.nix b/pkgs/development/rocm-modules/composable_kernel/base.nix index 8875a7d4b1b0..739a65528ecf 100644 --- a/pkgs/development/rocm-modules/composable_kernel/base.nix +++ b/pkgs/development/rocm-modules/composable_kernel/base.nix @@ -5,7 +5,6 @@ rocmUpdateScript, cmake, rocm-cmake, - llvm, clr, rocminfo, python3, @@ -124,7 +123,12 @@ stdenv.mkDerivation (finalAttrs: { "-DGOOGLETEST_DIR=${gtest.src}" # Custom linker names ]; - # No flags to build selectively it seems... + patches = [ + # Hacky fix for failure for some targets when all targets are selected out + # for a non-optional at link time kernel + ./fix-empty-offload-targets.diff + ]; + postPatch = # Reduce configure time by preventing thousands of clang-tidy targets being added # We will never call them diff --git a/pkgs/development/rocm-modules/composable_kernel/fix-empty-offload-targets.diff b/pkgs/development/rocm-modules/composable_kernel/fix-empty-offload-targets.diff new file mode 100644 index 000000000000..d314873ff61b --- /dev/null +++ b/pkgs/development/rocm-modules/composable_kernel/fix-empty-offload-targets.diff @@ -0,0 +1,23 @@ +diff --git a/library/src/tensor_operation_instance/gpu/CMakeLists.txt b/library/src/tensor_operation_instance/gpu/CMakeLists.txt +index 172f6681b8..d3ddbb2f15 100644 +--- a/library/src/tensor_operation_instance/gpu/CMakeLists.txt ++++ b/library/src/tensor_operation_instance/gpu/CMakeLists.txt +@@ -154,9 +154,15 @@ function(add_instance_library INSTANCE_NAME) + list(FILTER INST_TARGETS INCLUDE REGEX "gfx12") + endif() + set(offload_targets) +- foreach(target IN LISTS INST_TARGETS) +- string(APPEND offload_targets "--offload-arch=${target} ") +- endforeach() ++ if(NOT INST_TARGETS) ++ # No valid GPU targets for this source, compile for 90a as fallback ++ # so the add_device…instances and hip_fatbin… symbols still exist ++ set(offload_targets "--offload-arch=gfx90a") ++ else() ++ foreach(target IN LISTS INST_TARGETS) ++ string(APPEND offload_targets "--offload-arch=${target} ") ++ endforeach() ++ endif() + set_source_files_properties(${source} PROPERTIES COMPILE_FLAGS ${offload_targets}) + list(APPEND INST_OBJ ${source}) + endforeach() From 708fa986287e9585a58f0b5fbd6047eb2934f0de Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 11 Mar 2026 07:05:38 +0000 Subject: [PATCH 03/66] kubernetes-helmPlugins.helm-diff: 3.13.1 -> 3.15.2 --- .../networking/cluster/helm/plugins/helm-diff.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix b/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix index e4cd4eea1d1b..eb10f1dc59c2 100644 --- a/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix +++ b/pkgs/applications/networking/cluster/helm/plugins/helm-diff.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "helm-diff"; - version = "3.13.1"; + version = "3.15.2"; src = fetchFromGitHub { owner = "databus23"; repo = "helm-diff"; rev = "v${version}"; - hash = "sha256-7LkXoPhLqZtc1jy8JOkZrHWSIqB2oZLHsEyeNk3vl60="; + hash = "sha256-gcIwg/EZ8A3RKSPuk3Ot6hPDS0m65V/IVqUs3VPbrSQ="; }; - vendorHash = "sha256-QSbml6M+ftQy4n+ybYWf2gCsbVmrnhX09w3ffW/JgUM="; + vendorHash = "sha256-7Qw5ggvyhffmVZH7jKF21y+m1KTroucQ/ZGP67D+EjY="; ldflags = [ "-s" From a7c8060a62654e56dc3ee777a57bf0ac1db53fbc Mon Sep 17 00:00:00 2001 From: Svenum Date: Wed, 11 Mar 2026 23:10:16 +0100 Subject: [PATCH 04/66] rakudo: 2025.12 -> 2026.02 --- pkgs/development/interpreters/rakudo/default.nix | 4 ++-- pkgs/development/interpreters/rakudo/moarvm.nix | 4 ++-- pkgs/development/interpreters/rakudo/nqp.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/interpreters/rakudo/default.nix b/pkgs/development/interpreters/rakudo/default.nix index ca6a5fd2d849..8debce1f98c2 100644 --- a/pkgs/development/interpreters/rakudo/default.nix +++ b/pkgs/development/interpreters/rakudo/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "rakudo"; - version = "2025.12"; + version = "2026.02"; # nixpkgs-update: no auto update src = fetchFromGitHub { @@ -17,7 +17,7 @@ stdenv.mkDerivation (finalAttrs: { repo = "rakudo"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-rCLlLxFexk2fzuuSMrJjbwhgU+HgJNX6Ect6uCsuJmo="; + hash = "sha256-CqDZ+izOHNxi7sTt6jYqeF/ql5+2WdWBHvkS3N4JjNc="; }; postPatch = '' diff --git a/pkgs/development/interpreters/rakudo/moarvm.nix b/pkgs/development/interpreters/rakudo/moarvm.nix index 3507e52a10ac..81b9c8be8c33 100644 --- a/pkgs/development/interpreters/rakudo/moarvm.nix +++ b/pkgs/development/interpreters/rakudo/moarvm.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "moarvm"; - version = "2025.12"; + version = "2026.02"; # nixpkgs-update: no auto update src = fetchFromGitHub { @@ -18,7 +18,7 @@ stdenv.mkDerivation (finalAttrs: { repo = "MoarVM"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-hftskJ+5p/XHahAJTG28ifWkExb8Z8u7J5CeoQooUYE="; + hash = "sha256-vxEtNiQH7XQ3gDlETJsjsSZ2cVJrjFb5TtoNKVB8F0U="; }; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/development/interpreters/rakudo/nqp.nix b/pkgs/development/interpreters/rakudo/nqp.nix index d688bb5f93c9..0cb4d508e641 100644 --- a/pkgs/development/interpreters/rakudo/nqp.nix +++ b/pkgs/development/interpreters/rakudo/nqp.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "nqp"; - version = "2025.12"; + version = "2026.02"; # nixpkgs-update: no auto update src = fetchFromGitHub { @@ -17,7 +17,7 @@ stdenv.mkDerivation (finalAttrs: { repo = "nqp"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-Ofu6mf2Vx7a1OrqWLnVvgnChWHFK+cSr803VZY2TYC8="; + hash = "sha256-zEnUbVLrWCkRq28L6LFc7ryEZS6tFMy8sGnVlDTwkj8="; }; configureScript = "${lib.getExe perl} ./Configure.pl"; From 2b887938c2de5cfc4368e0e104da7aba7fb515c2 Mon Sep 17 00:00:00 2001 From: Daniel Woffinden Date: Mon, 9 Mar 2026 22:12:41 +0000 Subject: [PATCH 05/66] knot-resolver-manager_6: include `watchdog` Upstream it is listed as an optional python dependency, alongside prometheus-client: https://github.com/CZ-NIC/knot-resolver/blob/e16aea363f6d2ca39c8a3713f42f21297b72a078/pyproject.toml#L41 It is required when using `network.tls.watchdog=true` in the settings: https://www.knot-resolver.cz/documentation/latest/config-network-server-tls.html#cmdoption-arg-files-watchdog ``` [ERROR] stderr) Configuration validation error detected: [ERROR] stderr) [/network/tls] 'files-watchdog' is enabled, but the required 'watchdog' dependency (optional) is not installed ``` --- pkgs/by-name/kn/knot-resolver-manager_6/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix index 890e71fdb362..e2c518e8c89e 100644 --- a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix @@ -44,6 +44,7 @@ python3Packages.buildPythonPackage { prometheus-client supervisor typing-extensions + watchdog ]; # set up (additional) Lua dependencies From 41877bf65db22cb80d2493b3b1fe9fb902660f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 12 Mar 2026 08:27:37 +0100 Subject: [PATCH 06/66] knot-resolver-manager_6: explain optional dependencies --- pkgs/by-name/kn/knot-resolver-manager_6/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix index e2c518e8c89e..1f4e03cc7e6d 100644 --- a/pkgs/by-name/kn/knot-resolver-manager_6/package.nix +++ b/pkgs/by-name/kn/knot-resolver-manager_6/package.nix @@ -41,10 +41,10 @@ python3Packages.buildPythonPackage { aiohttp jinja2 pyyaml - prometheus-client + prometheus-client # optional, for prometheus metrics supervisor typing-extensions - watchdog + watchdog # optional, watching changes in files (TLS certs, RPZs) ]; # set up (additional) Lua dependencies From b99fd20246130462caed945730aa3bcfb0ce9fc8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 12 Mar 2026 11:39:07 +0000 Subject: [PATCH 07/66] codespell: 2.4.1 -> 2.4.2 --- pkgs/by-name/co/codespell/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/co/codespell/package.nix b/pkgs/by-name/co/codespell/package.nix index 99f0d1300498..d033c7beb9f7 100644 --- a/pkgs/by-name/co/codespell/package.nix +++ b/pkgs/by-name/co/codespell/package.nix @@ -7,14 +7,14 @@ python3.pkgs.buildPythonApplication (finalAttrs: { pname = "codespell"; - version = "2.4.1"; + version = "2.4.2"; pyproject = true; src = fetchFromGitHub { owner = "codespell-project"; repo = "codespell"; tag = "v${finalAttrs.version}"; - sha256 = "sha256-9hr/QZcBESLukujzNKNjWGG3nXx+wkvQvoUYmYgtXv0="; + sha256 = "sha256-OMnkTXt6ok3ll9ocZMY4jdpYl3PlI2ZZtLuiMYrCRNI="; }; nativeBuildInputs = with python3.pkgs; [ From 1ff35a8b36d890ad9137adeee48b12bb20b5153f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 12 Mar 2026 15:31:37 +0100 Subject: [PATCH 08/66] troubadix: unpin codespell --- pkgs/by-name/tr/troubadix/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/tr/troubadix/package.nix b/pkgs/by-name/tr/troubadix/package.nix index 9fc1e7d8ee20..1e4743fb91a4 100644 --- a/pkgs/by-name/tr/troubadix/package.nix +++ b/pkgs/by-name/tr/troubadix/package.nix @@ -18,6 +18,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: { }; pythonRelaxDeps = [ + "codespell" "pontos" "validators" ]; From f6e710b5c9787221d216e371ccbd5be137249be1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 13 Mar 2026 12:29:02 +0000 Subject: [PATCH 09/66] marvin: 25.3.5 -> 25.5.0 --- pkgs/by-name/ma/marvin/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ma/marvin/package.nix b/pkgs/by-name/ma/marvin/package.nix index ebb7083d79b4..a79d348ff80d 100644 --- a/pkgs/by-name/ma/marvin/package.nix +++ b/pkgs/by-name/ma/marvin/package.nix @@ -20,12 +20,12 @@ stdenv.mkDerivation (finalAttrs: { pname = "marvin"; - version = "25.3.5"; + version = "25.5.0"; src = fetchurl { name = "marvin-${finalAttrs.version}.deb"; url = "http://dl.chemaxon.com/marvin/${finalAttrs.version}/marvin_linux_${finalAttrs.version}.deb"; - hash = "sha256-OiTHMGKAuHadoKQMTTPRcYl/zKL+bc0ts/UNsJlHn0Q="; + hash = "sha256-+fTO6cEJL4QRFpLQ9CXZFt7Jg3otR3ZMWN5vH+3QXmA="; }; nativeBuildInputs = [ From a76256dfefe0095d5e772504bde461604039dd7a Mon Sep 17 00:00:00 2001 From: Vladyslav Pekker Date: Fri, 13 Mar 2026 12:18:24 -0300 Subject: [PATCH 10/66] graalvmPackages: fix update.sh to use renamed attribute graalvmCEPackages was renamed to graalvmPackages. --- pkgs/development/compilers/graalvm/community-edition/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/graalvm/community-edition/update.sh b/pkgs/development/compilers/graalvm/community-edition/update.sh index 65d36514bcd0..b499659965c8 100755 --- a/pkgs/development/compilers/graalvm/community-edition/update.sh +++ b/pkgs/development/compilers/graalvm/community-edition/update.sh @@ -43,7 +43,7 @@ declare -r -A update_urls=( [truffleruby]="https://api.github.com/repos/oracle/truffleruby/releases/latest" ) -current_version="$(nix-instantiate "$nixpkgs" --eval --strict -A "graalvmCEPackages.${product}.version" --json | jq -r)" +current_version="$(nix-instantiate "$nixpkgs" --eval --strict -A "graalvmPackages.${product}.version" --json | jq -r)" readonly current_version if [[ -z "${VERSION:-}" ]]; then From 7d976c3646309e160ee78758cedeb4db97d86882 Mon Sep 17 00:00:00 2001 From: Vladyslav Pekker Date: Fri, 13 Mar 2026 12:18:33 -0300 Subject: [PATCH 11/66] graalvmPackages.graalvm-ce: 25.0.1 -> 25.0.2 --- .../community-edition/graalvm-ce/hashes.nix | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/pkgs/development/compilers/graalvm/community-edition/graalvm-ce/hashes.nix b/pkgs/development/compilers/graalvm/community-edition/graalvm-ce/hashes.nix index 1e449683ac9a..a7a9c2308f9f 100644 --- a/pkgs/development/compilers/graalvm/community-edition/graalvm-ce/hashes.nix +++ b/pkgs/development/compilers/graalvm/community-edition/graalvm-ce/hashes.nix @@ -1,22 +1,18 @@ # Generated by update.sh script { - "version" = "25.0.1"; + "version" = "25.0.2"; "hashes" = { + "aarch64-darwin" = { + sha256 = "0pv3c49va6vyvx2lzj305ss39mkaddx8fmfrafifflz6x2w1y82h"; + url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-25.0.2/graalvm-community-jdk-25.0.2_macos-aarch64_bin.tar.gz"; + }; "aarch64-linux" = { - sha256 = "1qlazj9k18f1rgg12s12yav3n4mx7lwphmh2qqvpzrl0ba9vk83s"; - url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-25.0.1/graalvm-community-jdk-25.0.1_linux-aarch64_bin.tar.gz"; + sha256 = "0waa7395f53lrg2my43ywr8bj7aczwc8prap2wx4n2ix4aghsn5l"; + url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-25.0.2/graalvm-community-jdk-25.0.2_linux-aarch64_bin.tar.gz"; }; "x86_64-linux" = { - sha256 = "1yy7pb40cqaaj8xyk9lglnixqi5mx5xvgqz4ld1bha3zm3hrzqq1"; - url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-25.0.1/graalvm-community-jdk-25.0.1_linux-x64_bin.tar.gz"; - }; - "x86_64-darwin" = { - sha256 = "0c7c3asbmc5fvdh2l3fa5w8d8sw0142cfzi7pnnkny0wrns9bn53"; - url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-25.0.1/graalvm-community-jdk-25.0.1_macos-x64_bin.tar.gz"; - }; - "aarch64-darwin" = { - sha256 = "0xmwsl8yzivnksbzhihy39vffi3k1x0ak4c4aihw3dca9br3jqq6"; - url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-25.0.1/graalvm-community-jdk-25.0.1_macos-aarch64_bin.tar.gz"; + sha256 = "1w3ac0cl9d2ja98klyq5f1hp6j9ixx7q5jx0n2v06kfsiwf7kgp0"; + url = "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-25.0.2/graalvm-community-jdk-25.0.2_linux-x64_bin.tar.gz"; }; }; } From 9ccf5396d639d2b5e751bc0f78476bb319141026 Mon Sep 17 00:00:00 2001 From: Vladyslav Pekker Date: Fri, 13 Mar 2026 12:18:40 -0300 Subject: [PATCH 12/66] graalvmPackages.graaljs: 25.0.1 -> 25.0.2 --- .../community-edition/graaljs/hashes.nix | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix b/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix index f75d7baa5b55..6c1700919d66 100644 --- a/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix +++ b/pkgs/development/compilers/graalvm/community-edition/graaljs/hashes.nix @@ -1,22 +1,18 @@ # Generated by update.sh script { - "version" = "25.0.1"; + "version" = "25.0.2"; "hashes" = { + "aarch64-darwin" = { + sha256 = "0dqlg95762j8b375lnvsy0hrrxwzap61mxn8cy9z7r2kgwn84sdq"; + url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.2/graaljs-community-25.0.2-macos-aarch64.tar.gz"; + }; "aarch64-linux" = { - sha256 = "0222y7brl8yfx6lwl64a0l0apn0ixg9svfvvkv51hy52k2syj71z"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graaljs-community-25.0.1-linux-aarch64.tar.gz"; + sha256 = "1wl9i9m18p0nc5lpg2idfplyqrfy10m41x6nn8gawhmzp2l7f35p"; + url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.2/graaljs-community-25.0.2-linux-aarch64.tar.gz"; }; "x86_64-linux" = { - sha256 = "0g165jicbk6hi47kpl0xd0x8y2j00kicf4p67xjcq2f8hqfvxc8l"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graaljs-community-25.0.1-linux-amd64.tar.gz"; - }; - "x86_64-darwin" = { - sha256 = "1z612lkxh90f8al4j6lbg1n3lycyfnkfrqi5qhzky195xg5hfknh"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graaljs-community-25.0.1-macos-amd64.tar.gz"; - }; - "aarch64-darwin" = { - sha256 = "0909x327m65qv5fmrk5i8adhahr92cbjypfman47b0sz4kyc00sq"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graaljs-community-25.0.1-macos-aarch64.tar.gz"; + sha256 = "092jgg2qadv4v06f6wqg9smxrid0wrhyr45b8km420ay345wjd1s"; + url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.2/graaljs-community-25.0.2-linux-amd64.tar.gz"; }; }; } From 07f37f71673bbc63c34ac55f651eb1edec4019f9 Mon Sep 17 00:00:00 2001 From: Vladyslav Pekker Date: Fri, 13 Mar 2026 12:18:46 -0300 Subject: [PATCH 13/66] graalvmPackages.graalnodejs: 25.0.1 -> 25.0.2 --- .../community-edition/graalnodejs/hashes.nix | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/pkgs/development/compilers/graalvm/community-edition/graalnodejs/hashes.nix b/pkgs/development/compilers/graalvm/community-edition/graalnodejs/hashes.nix index c97fd610485f..3dbc6b24a954 100644 --- a/pkgs/development/compilers/graalvm/community-edition/graalnodejs/hashes.nix +++ b/pkgs/development/compilers/graalvm/community-edition/graalnodejs/hashes.nix @@ -1,22 +1,18 @@ # Generated by update.sh script { - "version" = "25.0.1"; + "version" = "25.0.2"; "hashes" = { + "aarch64-darwin" = { + sha256 = "0vndj84rsscw78wl0a140gxx686c78zqcjnl3wq3xdqfz7w3jf9d"; + url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.2/graalnodejs-community-25.0.2-macos-aarch64.tar.gz"; + }; "aarch64-linux" = { - sha256 = "14gz8b6z00b85r5ff0c761mgsg2bg42b10dfyi275bcaxl7bf0yx"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graalnodejs-community-25.0.1-linux-aarch64.tar.gz"; + sha256 = "0wq0iy5c1dnywlnq4lzbr1qas2ns5l8ag3bqirvdik4x66an8819"; + url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.2/graalnodejs-community-25.0.2-linux-aarch64.tar.gz"; }; "x86_64-linux" = { - sha256 = "003y0adq96m7j4pzkiaxxvlpchdfp4aprdwmsy2qzcm19a75ddpf"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graalnodejs-community-25.0.1-linux-amd64.tar.gz"; - }; - "x86_64-darwin" = { - sha256 = "1z96245r8fgrgqvwkqmb14zxagjiwbc4ax2kky2dqic25apr1hx5"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graalnodejs-community-25.0.1-macos-amd64.tar.gz"; - }; - "aarch64-darwin" = { - sha256 = "0203invnb6m0rh0dr886i5hsyljzbmfywgbssz844nllfiv272jw"; - url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.1/graalnodejs-community-25.0.1-macos-aarch64.tar.gz"; + sha256 = "1d5y05isnbwh88gsqary8bvkyi0ca7mv6qm2cqh020jlpxwzczzp"; + url = "https://github.com/oracle/graaljs/releases/download/graal-25.0.2/graalnodejs-community-25.0.2-linux-amd64.tar.gz"; }; }; } From f884503842ea56a3b269eac42cfb55c36de7ae29 Mon Sep 17 00:00:00 2001 From: Vladyslav Pekker Date: Fri, 13 Mar 2026 12:18:55 -0300 Subject: [PATCH 14/66] graalvmPackages.graalpy: 25.0.1 -> 25.0.2 --- .../community-edition/graalpy/hashes.nix | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/pkgs/development/compilers/graalvm/community-edition/graalpy/hashes.nix b/pkgs/development/compilers/graalvm/community-edition/graalpy/hashes.nix index cfb80134356d..2eecf5d5f04e 100644 --- a/pkgs/development/compilers/graalvm/community-edition/graalpy/hashes.nix +++ b/pkgs/development/compilers/graalvm/community-edition/graalpy/hashes.nix @@ -1,22 +1,18 @@ # Generated by update.sh script { - "version" = "25.0.1"; + "version" = "25.0.2"; "hashes" = { + "aarch64-darwin" = { + sha256 = "05ymx4fbaj8ipzv6d0ycacv1qyfzxl2hrr1zbiyk4hjdycbyyjy6"; + url = "https://github.com/oracle/graalpython/releases/download/graal-25.0.2/graalpy-community-25.0.2-macos-aarch64.tar.gz"; + }; "aarch64-linux" = { - sha256 = "1r9x67qjhw19zz6lyhbilpfc34ffjjr169qavlgb49bf5s9mz89f"; - url = "https://github.com/oracle/graalpython/releases/download/graal-25.0.1/graalpy-community-25.0.1-linux-aarch64.tar.gz"; + sha256 = "02fisn48xlykr7r8cdd95wmj8ryj9dabg1i8bkg5ri37m3gbkxwq"; + url = "https://github.com/oracle/graalpython/releases/download/graal-25.0.2/graalpy-community-25.0.2-linux-aarch64.tar.gz"; }; "x86_64-linux" = { - sha256 = "0cldr1q1m31p57s3z4y1zs7jg567vxcix1c1mpp096rsw7ilkh2s"; - url = "https://github.com/oracle/graalpython/releases/download/graal-25.0.1/graalpy-community-25.0.1-linux-amd64.tar.gz"; - }; - "x86_64-darwin" = { - sha256 = "0jr9wl81lj8p933cvp2dqdbc9kx8xm1h22xf8vkps265lzq4v0zp"; - url = "https://github.com/oracle/graalpython/releases/download/graal-25.0.1/graalpy-community-25.0.1-macos-amd64.tar.gz"; - }; - "aarch64-darwin" = { - sha256 = "1jghcm5d6k2avh28l2c5xrqp6dd7i890c3nmkl440qj5byvib6zq"; - url = "https://github.com/oracle/graalpython/releases/download/graal-25.0.1/graalpy-community-25.0.1-macos-aarch64.tar.gz"; + sha256 = "0yfcsha5sq06v8hrrp1zp043qc20582j320fg2qbl0dpq09nzf4d"; + url = "https://github.com/oracle/graalpython/releases/download/graal-25.0.2/graalpy-community-25.0.2-linux-amd64.tar.gz"; }; }; } From 4f0a817703f47bccbd8e2e0cd0254c35bac8ba0a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 14 Mar 2026 00:04:20 +0000 Subject: [PATCH 15/66] trace-cmd: 3.3.3 -> 3.4 --- pkgs/os-specific/linux/trace-cmd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/trace-cmd/default.nix b/pkgs/os-specific/linux/trace-cmd/default.nix index 8095c5cbece6..b197b90e5aa4 100644 --- a/pkgs/os-specific/linux/trace-cmd/default.nix +++ b/pkgs/os-specific/linux/trace-cmd/default.nix @@ -16,11 +16,11 @@ }: stdenv.mkDerivation rec { pname = "trace-cmd"; - version = "3.3.3"; + version = "3.4"; src = fetchzip { url = "https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/trace-cmd-v${version}.tar.gz"; - hash = "sha256-B3bwHV+f6IuoNESz5B4ij5KsIcCcpUPmoSnJeJj0J0Y="; + hash = "sha256-7IMInvVLIjGcHZvnSzhcne+4ieFa85ep7KMn2Oy9pF8="; }; # Don't build and install html documentation From cbff2225904e0f09d5725563a0daa69056e80241 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 14 Mar 2026 00:37:01 +0000 Subject: [PATCH 16/66] sftpgo: 2.7.0 -> 2.7.1 --- pkgs/by-name/sf/sftpgo/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sf/sftpgo/package.nix b/pkgs/by-name/sf/sftpgo/package.nix index 7e1547ba437a..a6d7ac6fb8e6 100644 --- a/pkgs/by-name/sf/sftpgo/package.nix +++ b/pkgs/by-name/sf/sftpgo/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "sftpgo"; - version = "2.7.0"; + version = "2.7.1"; src = fetchFromGitHub { owner = "drakkan"; repo = "sftpgo"; tag = "v${version}"; - hash = "sha256-9WdgBipMb+7/XtNxLzaU36RNiMprlk44Ix/RcC/+VsA="; + hash = "sha256-y5Khka7r1Mostg8qPdTlSOieO+x7AdvJFIefILT97OI="; }; - vendorHash = "sha256-pbYmkIu5b3odCR+rnGQy3+xsMy1Lru37sbxRoIlv77E="; + vendorHash = "sha256-yIrI0yN+htfC+yORILt8oB+iu2UYWxxL6tzb4dzxtD0="; ldflags = [ "-s" From b913dee4f0de62ea818a5b5610d06d7b268e1312 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 14 Mar 2026 12:46:48 +0000 Subject: [PATCH 17/66] plzip: 1.12 -> 1.13 --- pkgs/by-name/pl/plzip/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pl/plzip/package.nix b/pkgs/by-name/pl/plzip/package.nix index 2c78db0facfc..891952e63d87 100644 --- a/pkgs/by-name/pl/plzip/package.nix +++ b/pkgs/by-name/pl/plzip/package.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "plzip"; - version = "1.12"; + version = "1.13"; outputs = [ "out" "man" @@ -18,7 +18,7 @@ stdenv.mkDerivation (finalAttrs: { src = fetchurl { url = "mirror://savannah/lzip/plzip/plzip-${finalAttrs.version}.tar.lz"; - hash = "sha256-RLvt4rLiOPBbmSEon5194ia3lYKmN2pdEOv8u4dxOoQ="; + hash = "sha256-f+AUG3Lq8ITYKq07FLOk2W3/C97698OJ91XYlIs2N8g="; # hash from release email }; From 180a6e656a7adf2a5623f444f015718408fbeb87 Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sat, 14 Mar 2026 19:54:49 +0000 Subject: [PATCH 18/66] texlive.withPackages: use revision number for detailed version --- .../typesetting/tex/texlive/build-tex-env.nix | 22 +++++++++++++------ .../tools/typesetting/tex/texlive/default.nix | 2 +- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix b/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix index 1de1afb649e0..021bcd119e91 100644 --- a/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix +++ b/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix @@ -3,7 +3,7 @@ tl, bin, - version, + tlpdbVersion, lib, buildEnv, @@ -49,10 +49,9 @@ lib.fix ( args: (buildEnv ( { - pname = name; - version = "${toString version.texliveYear}-unstable-${version.year}-${version.month}-${version.day}"; + inherit pname version; - inherit (args) name paths; + inherit (args) paths; } // lib.optionalAttrs (args ? extraOutputsToInstall) { inherit (args) extraOutputsToInstall; } // lib.optionalAttrs (args ? pathsToLink) { inherit (args) pathsToLink; } @@ -216,11 +215,20 @@ lib.fix ( ] ) pkgList.bin; - name = + pname = if __combine then - "texlive-${__extraName}-${bin.texliveYear}${__extraVersion}" # texlive.combine: old name name + "texlive-${__extraName}" # texlive.combine: old name else - "texlive-${bin.texliveYear}-" + (if __formatsOf != null then "${__formatsOf.pname}-fmt" else "env"); + "texlive"; + version = + if __combine then + "${toString tlpdbVersion.year}${__extraVersion}" # texlive.combine: old version + else + "${toString tlpdbVersion.year}-r${toString tlpdbVersion.revision}-" + + (lib.optionalString tlpdbVersion.frozen "final-") + + (if __formatsOf != null then "${__formatsOf.pname}-fmt" else "env"); + + name = "${pname}-${version}"; texmfdist = buildEnv' { name = "${name}-texmfdist"; diff --git a/pkgs/tools/typesetting/tex/texlive/default.nix b/pkgs/tools/typesetting/tex/texlive/default.nix index 155c2c801983..353df3c2bbe4 100644 --- a/pkgs/tools/typesetting/tex/texlive/default.nix +++ b/pkgs/tools/typesetting/tex/texlive/default.nix @@ -198,7 +198,7 @@ let # function for creating a working environment buildTeXEnv = import ./build-tex-env.nix { inherit bin tl; - inherit version; + inherit tlpdbVersion; ghostscript = ghostscript_headless; inherit lib From 8c05abeddbec298f61092910e9801ee0f155b863 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 01:35:25 +0000 Subject: [PATCH 19/66] goeland: 0.21.0 -> 0.22.1 --- pkgs/by-name/go/goeland/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/go/goeland/package.nix b/pkgs/by-name/go/goeland/package.nix index 3b8a5b19bdeb..32cdce4c077b 100644 --- a/pkgs/by-name/go/goeland/package.nix +++ b/pkgs/by-name/go/goeland/package.nix @@ -6,16 +6,16 @@ buildGoModule (finalAttrs: { pname = "goeland"; - version = "0.21.0"; + version = "0.22.1"; src = fetchFromGitHub { owner = "slurdge"; repo = "goeland"; rev = "v${finalAttrs.version}"; - sha256 = "sha256-Yw9FRI4TdfqCLdZCTA+y1y8TaD0flp1sP1aKYvd8PGM="; + sha256 = "sha256-7npQ04o2GvbOJt1zS7W+VFs38OnNG8VS7Qs7jM79yBg="; }; - vendorHash = "sha256-FfdHOYrpVilter80arOtwn+qJV56gIh6Ml64ekPs+DE="; + vendorHash = "sha256-OLgE9PU1/swoHZZG82zAEB1XygZjpK0wrqoGG/4Akvw="; ldflags = [ "-s" From d558a5fcd0b3817c83f7cc8b323419b627e432e0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 04:15:59 +0000 Subject: [PATCH 20/66] revanced-cli: 5.0.1 -> 6.0.0 --- pkgs/by-name/re/revanced-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/re/revanced-cli/package.nix b/pkgs/by-name/re/revanced-cli/package.nix index f260c2e80c13..791be6d2e9e7 100644 --- a/pkgs/by-name/re/revanced-cli/package.nix +++ b/pkgs/by-name/re/revanced-cli/package.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "revanced-cli"; - version = "5.0.1"; + version = "6.0.0"; src = fetchurl { url = "https://github.com/revanced/revanced-cli/releases/download/v${finalAttrs.version}/revanced-cli-${finalAttrs.version}-all.jar"; - hash = "sha256-tq+DSWAPVupR2W1Jqk0vKI4ox5zWSTSbpwyLcs4EXa8="; + hash = "sha256-wlVJvBfVnS65T6X4bmDpt3oCdyyoj3BQ+PEnb5I6mVg="; }; nativeBuildInputs = [ makeWrapper ]; From a1dd7601bdb173ac3db90e109930cc8c8c8bc035 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Sun, 15 Mar 2026 15:09:47 +0800 Subject: [PATCH 21/66] fcitx5-pinyin-moegirl: 20260209 -> 20260315 Diff: https://github.com/outloudvi/mw2fcitx/compare/20260209...20260315 --- pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix b/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix index a4f8452b6ab2..ed391521ac57 100644 --- a/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix +++ b/pkgs/by-name/fc/fcitx5-pinyin-moegirl/package.nix @@ -6,11 +6,11 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "fcitx5-pinyin-moegirl"; - version = "20260209"; + version = "20260315"; src = fetchurl { url = "https://github.com/outloudvi/mw2fcitx/releases/download/${finalAttrs.version}/moegirl.dict"; - hash = "sha256-ZpuAcS6KgVRL8ru+U///Zi7jiXLGIbSx6dPF0KWLvwQ="; + hash = "sha256-YnN1ArHyikV0kADquH2kwpk7cpiXKcL6YwUxVJXlQKM="; }; dontUnpack = true; From de4c6ac1da3b318b1db1cbecec5ffd632a097d76 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Sun, 15 Mar 2026 15:10:18 +0800 Subject: [PATCH 22/66] rime-moegirl: 20260209 -> 20260315 Diff: https://github.com/outloudvi/mw2fcitx/compare/20260209...20260315 Changelog: https://github.com/outloudvi/mw2fcitx/releases/tag/20260315 --- pkgs/by-name/ri/rime-moegirl/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ri/rime-moegirl/package.nix b/pkgs/by-name/ri/rime-moegirl/package.nix index 9dcb3d6679ed..d2e1852f6fd6 100644 --- a/pkgs/by-name/ri/rime-moegirl/package.nix +++ b/pkgs/by-name/ri/rime-moegirl/package.nix @@ -5,10 +5,10 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "rime-moegirl"; - version = "20260209"; + version = "20260315"; src = fetchurl { url = "https://github.com/outloudvi/mw2fcitx/releases/download/${finalAttrs.version}/moegirl.dict.yaml"; - hash = "sha256-mzvxFW/lwrAnoBTQsfB1cnfUvn0D9666iWgUDpaYrcI="; + hash = "sha256-iNRDQsDg8G58mSkDnzoGUVfWX3YezIWVwl5CJMKB+wE="; }; dontUnpack = true; From a3223d46339cdde2536a9f871650746ae025911b Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 9 Mar 2026 06:54:51 +0100 Subject: [PATCH 23/66] =?UTF-8?q?tamarin-prover:=201.10.0=20=E2=86=92=201.?= =?UTF-8?q?12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../science/logic/tamarin-prover/default.nix | 37 ++++++++++++------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/science/logic/tamarin-prover/default.nix b/pkgs/applications/science/logic/tamarin-prover/default.nix index 889613593601..d26ca2578397 100644 --- a/pkgs/applications/science/logic/tamarin-prover/default.nix +++ b/pkgs/applications/science/logic/tamarin-prover/default.nix @@ -6,21 +6,21 @@ # the following are non-haskell dependencies makeWrapper, which, + buildNpmPackage, maude, graphviz, glibcLocales, - fetchpatch, }: let inherit (haskellPackages) mkDerivation; - version = "1.10.0"; + version = "1.12.0"; src = fetchFromGitHub { owner = "tamarin-prover"; repo = "tamarin-prover"; - rev = version; - hash = "sha256-v1BruU2p/Sg/g7b9a+QRza46bD7PkMtsGq82qFaNhpI="; + tag = version; + hash = "sha256-yXJIJENygr/lmkrVap4ohb8Pua4kri+yaD/Dy0Hpwn4="; }; # tamarin has its own dependencies, but they're kept inside the repo, @@ -141,6 +141,20 @@ let } ); + tamarin-frontend = buildNpmPackage { + pname = "tamarin-frontend"; + inherit version src; + + sourceRoot = "source/frontend"; + + npmDepsHash = "sha256-GJiOCyTUfseZXd5WU018MKjxvrc+UOr7l7ZZSpzCS54="; + + installPhase = '' + mkdir -p $out + cp dist/* $out/ + ''; + }; + in mkDerivation ( common "tamarin-prover" src @@ -148,21 +162,16 @@ mkDerivation ( isLibrary = false; isExecutable = true; - patches = [ - # Allows tamarin-prover to run with Maude 3.5.1 - # This should be removed on the next release - (fetchpatch { - url = "https://github.com/tamarin-prover/tamarin-prover/commit/1a41b507e7f60d081d8c91cd465386d57f814f11.patch"; - includes = [ "src/Main/Console.hs" ]; - hash = "sha256-X8qhscwy+efATrl3rLtn0Xi9M5a2CsFrjBbiqvVRtSE="; - }) - ]; - # strip out unneeded deps manually doHaddock = false; enableSharedExecutables = false; postFixup = "rm -rf $out/lib $out/nix-support $out/share/doc"; + preBuild = '' + cp ${tamarin-frontend}/*.js data/js/ + cp ${tamarin-frontend}/*.css data/css/ + ''; + # wrap the prover to be sure it can find maude, sapic, etc executableToolDepends = [ makeWrapper From 085e882d0d71d6e549c59a67ce3b0763e1242167 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 16:37:16 +0000 Subject: [PATCH 24/66] perfect_dark: 0-unstable-2026-01-07 -> 0-unstable-2026-03-14 --- pkgs/by-name/pe/perfect_dark/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/pe/perfect_dark/package.nix b/pkgs/by-name/pe/perfect_dark/package.nix index 5fb2a595f136..ccd5837c2d00 100644 --- a/pkgs/by-name/pe/perfect_dark/package.nix +++ b/pkgs/by-name/pe/perfect_dark/package.nix @@ -22,13 +22,13 @@ assert lib.assertOneOf "romID" romID roms; stdenv.mkDerivation (finalAttrs: { pname = "perfect_dark"; - version = "0-unstable-2026-01-07"; + version = "0-unstable-2026-03-14"; src = fetchFromGitHub { owner = "fgsfdsfgs"; repo = "perfect_dark"; - rev = "246d737663c3eae4c1cfdc0cb32f92b3fd353d8a"; - hash = "sha256-tSB4OAZv31zbyPy5MbQmnar1ev2FkJyA6FecnFds79I="; + rev = "11df50b3ad0f500eab21bd05eab48880b908946f"; + hash = "sha256-lQO9CVeKBhstz2xz3F32+MOW+7WXQ2AbfDEAmdxRjCI="; postFetch = '' pushd $out From 455eee68f2126528626a794e76ef507eadf2a19f Mon Sep 17 00:00:00 2001 From: Zebreus Date: Sun, 15 Mar 2026 20:46:47 +0100 Subject: [PATCH 25/66] bcachefs-tools: 1.36.1 -> 1.37.0 --- pkgs/by-name/bc/bcachefs-tools/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/bc/bcachefs-tools/package.nix b/pkgs/by-name/bc/bcachefs-tools/package.nix index d39098774fb0..a04b6f71f9c2 100644 --- a/pkgs/by-name/bc/bcachefs-tools/package.nix +++ b/pkgs/by-name/bc/bcachefs-tools/package.nix @@ -29,18 +29,18 @@ stdenv.mkDerivation (finalAttrs: { pname = "bcachefs-tools"; - version = "1.36.1"; + version = "1.37.0"; src = fetchFromGitHub { owner = "koverstreet"; repo = "bcachefs-tools"; tag = "v${finalAttrs.version}"; - hash = "sha256-15Z1lHNeXTToDpdVc/YB5ojhoiB5qdgWs47O1aKoyFM="; + hash = "sha256-whLigwGbMhxavTJGRyeV9GCw8OX0+9FvQk567QxywNQ="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) src; - hash = "sha256-YWsJUSgKNkK9W4Yuolix21bRRFSF01+sivoj7SJo7DY="; + hash = "sha256-wm/Zfuc+tpER7PTRjKftmtCkoKZ51ZUJKGsHQ79cJbE="; }; postPatch = '' From c34183670590362ad16d1edfcbd56642546bd942 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 20:28:49 +0000 Subject: [PATCH 26/66] dcp: 0.22.8 -> 0.22.9 --- pkgs/by-name/dc/dcp/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/dc/dcp/package.nix b/pkgs/by-name/dc/dcp/package.nix index 726770fe7844..3f1ead4a195c 100644 --- a/pkgs/by-name/dc/dcp/package.nix +++ b/pkgs/by-name/dc/dcp/package.nix @@ -15,13 +15,13 @@ buildGoModule (finalAttrs: { pname = "dcp"; - version = "0.22.8"; + version = "0.22.9"; src = fetchFromGitHub { owner = "microsoft"; repo = "dcp"; tag = "v${finalAttrs.version}"; - hash = "sha256-fhRTJYtkvPaPw73VZYvm8/GMhUqvnlBoazQziWXrH2U="; + hash = "sha256-DCrGMWoHmjV774dBAaqDR/B1SDZ8LVMm1GkZOOyWtP0="; }; vendorHash = "sha256-MRsd0+ySmZ8FlX6RBfW1LSYc1RcTMYu0Ji+0uFEWH3M="; From d471cf5bd7c0e7ebc25873e5bb9c86091a4badc6 Mon Sep 17 00:00:00 2001 From: David McFarland Date: Sun, 15 Mar 2026 18:47:06 -0300 Subject: [PATCH 27/66] azure-functions-core-tools: use runtime packages from sdk This fixes a build failure when updating the SDK (e.g. #499865). --- .../az/azure-functions-core-tools/deps.json | 596 ------------------ .../az/azure-functions-core-tools/package.nix | 11 +- 2 files changed, 10 insertions(+), 597 deletions(-) diff --git a/pkgs/by-name/az/azure-functions-core-tools/deps.json b/pkgs/by-name/az/azure-functions-core-tools/deps.json index 4037b5b48b65..aceacf1528e3 100644 --- a/pkgs/by-name/az/azure-functions-core-tools/deps.json +++ b/pkgs/by-name/az/azure-functions-core-tools/deps.json @@ -79,21 +79,6 @@ "version": "12.20.1", "hash": "sha256-XBDyzAEt5iwdyB3jgoG5TLyx5NZ/MoiEerBR/7U7F4w=" }, - { - "pname": "Azure.Storage.Queues", - "version": "12.19.1", - "hash": "sha256-EskLp1RYDvnRpOMsTRylalh5VP5fUddTdG4eR9i1tO4=" - }, - { - "pname": "Castle.Core", - "version": "4.2.0", - "hash": "sha256-B25CLu7UhAuu7ITddB9wgqfrFtJD8BEsZO/tCBKxGyU=" - }, - { - "pname": "Castle.Core", - "version": "4.2.1", - "hash": "sha256-FPDdJfRQkjBQC8JwbXALf71HJfFMciJyenIIqJSWC6M=" - }, { "pname": "Colors.Net", "version": "1.1.0", @@ -104,16 +89,6 @@ "version": "2.0.9.136", "hash": "sha256-wRvKTW4WisziZmglLOqbUXVv9pPh9MmF7HS/hcoj7fM=" }, - { - "pname": "FluentAssertions", - "version": "5.2.0", - "hash": "sha256-S1k2Z3EBlGYSc9ofDm0hSVUUt9xog5rejfoXWLNXcpE=" - }, - { - "pname": "FSharp.Core", - "version": "3.1.2.5", - "hash": "sha256-MMIyGbKBNZFOgr4z8dC8jhICWtRPBCNzWc7ll2uU210=" - }, { "pname": "Google.Protobuf", "version": "3.23.1", @@ -244,56 +219,6 @@ "version": "2.2.0", "hash": "sha256-NBUF/oT5TYVvuUW4/lws//1OfX8ldrAxY4+CLnmT3Ag=" }, - { - "pname": "Microsoft.AspNetCore.App.Ref", - "version": "8.0.24", - "hash": "sha256-S8WKO+yB9fF56M2DOaqEOUzKL0/iXtCZQWcXeAV7zWE=" - }, - { - "pname": "Microsoft.AspNetCore.App.Ref", - "version": "9.0.13", - "hash": "sha256-uhcJ9ll5PEg4bX2PhIrxPZ270j2W2bYREarQCihyW7w=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.linux-arm64", - "version": "8.0.24", - "hash": "sha256-K+AQgKYpIKFYxPSOKNm2hYyDlEhQCj8KN5FV9xdV8nY=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.linux-arm64", - "version": "9.0.13", - "hash": "sha256-zPiQ1KhNkdc9w9B5bq9EWBrjBXJMBmdn5qUqubp+Xyo=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.linux-x64", - "version": "8.0.24", - "hash": "sha256-qNw/gjM/JGjL3K6bxr0xhF4tLcGVScMOnk4M6O8eezU=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.linux-x64", - "version": "9.0.13", - "hash": "sha256-RMGZEBbjAgzoZIf878drIgb33Q0+NYX6euOIV34BjQk=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.osx-arm64", - "version": "8.0.24", - "hash": "sha256-bS8XRDQ7cGOzqb5i43S4LjanOAfZXbsWOI4n/tnrBi0=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.osx-arm64", - "version": "9.0.13", - "hash": "sha256-NkAx5OX1eGgd+jr5a0z4Uys/l9AkI4CyqXQfGi7GNKs=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.osx-x64", - "version": "8.0.24", - "hash": "sha256-Ek789mAUCy/sYZY9ZhBYrVitFk/QCLHPp9+2WHZ9Wvc=" - }, - { - "pname": "Microsoft.AspNetCore.App.Runtime.osx-x64", - "version": "9.0.13", - "hash": "sha256-blbl3C1tBmx+u9paJVHhgX3y8IaHZI2RwZEidgIZVtU=" - }, { "pname": "Microsoft.AspNetCore.Authentication.Abstractions", "version": "2.2.0", @@ -796,11 +721,6 @@ "hash": "sha256-w59GMXgyodWUFJauwFOzWUydz+76iiXXzVMqjvFS7XQ=", "url": "https://azfunc.pkgs.visualstudio.com/e6a70c92-4128-439f-8012-382fe78d6396/_packaging/1e0b47db-42dd-4931-a098-8cb031234dcc/nuget/v3/flat2/microsoft.azure.websites.dataprotection/2.1.91-alpha/microsoft.azure.websites.dataprotection.2.1.91-alpha.nupkg" }, - { - "pname": "Microsoft.Bcl.AsyncInterfaces", - "version": "1.1.1", - "hash": "sha256-fAcX4sxE0veWM1CZBtXR/Unky+6sE33yrV7ohrWGKig=" - }, { "pname": "Microsoft.Bcl.AsyncInterfaces", "version": "6.0.0", @@ -866,11 +786,6 @@ "version": "3.3.1", "hash": "sha256-rgPXlePpLyrkdyVxwmVZef3go/BTxCRGfu+639g6BFA=" }, - { - "pname": "Microsoft.CodeCoverage", - "version": "1.0.3", - "hash": "sha256-vO0DJv2QNYfus4VzqVkNcnWQqmuUrM5le7supZRl/Uk=" - }, { "pname": "Microsoft.CSharp", "version": "4.3.0", @@ -891,16 +806,6 @@ "version": "4.7.0", "hash": "sha256-Enknv2RsFF68lEPdrf5M+BpV1kHoLTVRApKUwuk/pj0=" }, - { - "pname": "Microsoft.DotNet.ILCompiler", - "version": "9.0.13", - "hash": "sha256-yB24drjo/WDEU/nIgePA1UPgtFSb0oNBQrU6iXs1NRM=" - }, - { - "pname": "Microsoft.DotNet.PlatformAbstractions", - "version": "1.0.3", - "hash": "sha256-tE+2/zJAOpwaINSnmsq070K5xHQAzzqcrVkCxBFiXtk=" - }, { "pname": "Microsoft.DotNet.PlatformAbstractions", "version": "2.1.0", @@ -1111,11 +1016,6 @@ "version": "9.0.6", "hash": "sha256-40rY38OwSqueIWr/KMvJX9u+vipN+AaRQ6eNCZLqrog=" }, - { - "pname": "Microsoft.Extensions.DependencyModel", - "version": "1.0.3", - "hash": "sha256-NEcjABwtUqoDs6mrYKHJZ8Rn0EN5krHitnxghez6lO0=" - }, { "pname": "Microsoft.Extensions.DependencyModel", "version": "2.1.0", @@ -1581,116 +1481,11 @@ "version": "2.2.0", "hash": "sha256-pb8AoacSvy8hGNGodU6Lhv1ooWtUSCZwjmwd89PM1HA=" }, - { - "pname": "Microsoft.NET.ILLink.Tasks", - "version": "9.0.13", - "hash": "sha256-1fx7XZRRB//5B4GZlJuNsVKBin1UuTlijn49truBxn0=" - }, { "pname": "Microsoft.NET.StringTools", "version": "1.0.0", "hash": "sha256-smmwm1XbKsk0SPW74rd2uDubWzfd7RhfSkPr932cyhs=" }, - { - "pname": "Microsoft.NET.Test.Sdk", - "version": "15.6.2", - "hash": "sha256-YlhxcIvjI3MZ8EidG8chXhlTsHE59U0nkbMUVDsQMYI=" - }, - { - "pname": "Microsoft.NETCore.App.Host.linux-arm64", - "version": "8.0.24", - "hash": "sha256-/dAJ/5dleJlkxMWd3kJSiME7Yq/QdlE73DZwM1C9KGQ=" - }, - { - "pname": "Microsoft.NETCore.App.Host.linux-arm64", - "version": "9.0.13", - "hash": "sha256-hyLmW3K44AcouG0o5iH7dF06+pgqcs29DoplRYFxeqI=" - }, - { - "pname": "Microsoft.NETCore.App.Host.linux-x64", - "version": "8.0.24", - "hash": "sha256-REGiuRAPAOZl0arcP/QCYH9gdiCBDGu0Vnp5LD5qPmE=" - }, - { - "pname": "Microsoft.NETCore.App.Host.linux-x64", - "version": "9.0.13", - "hash": "sha256-OQenvUHKKS0h1c2EirYATJIEgGpVCJvxHIykIV6NCaE=" - }, - { - "pname": "Microsoft.NETCore.App.Host.osx-arm64", - "version": "8.0.24", - "hash": "sha256-C3F39k9qyKPAASiaacsvER4GN2Ryw2dxKKpRECaylto=" - }, - { - "pname": "Microsoft.NETCore.App.Host.osx-arm64", - "version": "9.0.13", - "hash": "sha256-JAFf+vSH7jUnjhKPGPBzgsauq29Ux+aIYi/k8W2kzBs=" - }, - { - "pname": "Microsoft.NETCore.App.Host.osx-x64", - "version": "8.0.24", - "hash": "sha256-FHorC+fd57T98l+8CrcBCeuGye11IJdGBKeY2rM1fNM=" - }, - { - "pname": "Microsoft.NETCore.App.Host.osx-x64", - "version": "9.0.13", - "hash": "sha256-yFizMrUqfMUGV1uxUoAOJP4f5m2jAVAS+mt9SFSRhf4=" - }, - { - "pname": "Microsoft.NETCore.App.Ref", - "version": "8.0.24", - "hash": "sha256-1dP3uWhHcbXPI3kA4b14ZulF9m1lU9OPZ+hQ8TnZveY=" - }, - { - "pname": "Microsoft.NETCore.App.Ref", - "version": "9.0.13", - "hash": "sha256-igu/tb7UIgqgP8+hGThU0N+nowgeKBOGdRxam+zrJvM=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.linux-arm64", - "version": "8.0.24", - "hash": "sha256-oe/yKNEiAJwio7fZs0Hf+AfIkIuKsB+rpbyr1DGEx9I=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.linux-arm64", - "version": "9.0.13", - "hash": "sha256-8yfXrHaOJZdC6oOrHvLEwhx2YWhQZRlfMAzI2KG0R9E=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.linux-x64", - "version": "8.0.24", - "hash": "sha256-tliAyrTeTUdQIe5CkwQLvQMNKIesn303oS3EYzV9IjE=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.linux-x64", - "version": "9.0.13", - "hash": "sha256-yoB2mCxdhsE/grReVIyeH4Q2WpUA9hHxUyZemCC2Cuc=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.osx-arm64", - "version": "8.0.24", - "hash": "sha256-v20On/+Xs3U0EHlxmx0BqJXEhBLErOCb2ynmi7VGIa0=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.osx-arm64", - "version": "9.0.13", - "hash": "sha256-yWhIeOq7w5UTbxM27N6/pg/zqyj31ZcpaHUi4Ca2QD4=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.osx-x64", - "version": "8.0.24", - "hash": "sha256-JG1fpGbqOXqs6fYkeABAsZpdLUuOaeJVvk648DeGyew=" - }, - { - "pname": "Microsoft.NETCore.App.Runtime.osx-x64", - "version": "9.0.13", - "hash": "sha256-+LIth4iOI4rQwZTRvR+Y0bA3qxM4TUuZg72cqY5I0LA=" - }, - { - "pname": "Microsoft.NETCore.DotNetAppHost", - "version": "8.0.8", - "hash": "sha256-2KBKkVUlpiO1bOY+Ia2PKjurY2taV7CHnzU7Jr5HYUs=" - }, { "pname": "Microsoft.NETCore.Platforms", "version": "1.0.1", @@ -1741,16 +1536,6 @@ "version": "1.3.0", "hash": "sha256-9nJA7a43OhJKCzFJPYfTJHL0JmVxVkNsYPexln8pFKE=" }, - { - "pname": "Microsoft.TestPlatform.ObjectModel", - "version": "15.6.2", - "hash": "sha256-O4FJRxBPtUHE1IEd6/IepmkRHlwtTAJ2UbECqGzOpvo=" - }, - { - "pname": "Microsoft.TestPlatform.TestHost", - "version": "15.6.2", - "hash": "sha256-aTsuaMw1YvLqQhsb3JttF7w6PK31M/jDZMHOqkGz+uA=" - }, { "pname": "Microsoft.Win32.Primitives", "version": "4.0.1", @@ -1761,11 +1546,6 @@ "version": "4.3.0", "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" }, - { - "pname": "Microsoft.Win32.Registry", - "version": "4.0.0", - "hash": "sha256-M/06F/Z2wTHCh4pZOgtCjUGLD1FJXEJKCmzOeFMl7uo=" - }, { "pname": "Microsoft.Win32.Registry", "version": "4.3.0", @@ -1786,11 +1566,6 @@ "version": "1.0.0", "hash": "sha256-/F61k7MY/fu2FcfW7CkyjuUroKwlYAXPQFVeDs1QknY=" }, - { - "pname": "Moq", - "version": "4.8.2", - "hash": "sha256-eNFJeuk4nmYOoBiu4zOtcIyk96NYXr38vvthNLO4OCA=" - }, { "pname": "NCrontab.Signed", "version": "3.3.3", @@ -1826,11 +1601,6 @@ "version": "1.0.2", "hash": "sha256-ZUj6YFSMZp5CZtXiamw49eZmbp1iYBuNsIKNnjxcRzA=" }, - { - "pname": "NSubstitute", - "version": "3.1.0", - "hash": "sha256-aO5dsxr6fOTeWWseQkxx4+qkoErPP3UbBKDrH/uEmIk=" - }, { "pname": "NuGet.Common", "version": "5.11.6", @@ -1956,21 +1726,11 @@ "version": "2.3.3", "hash": "sha256-Jeq5LBMWIormTaamIRR5aLl/mRuYmX9XiSBLnXmhDkA=" }, - { - "pname": "RichardSzalay.MockHttp", - "version": "5.0.0", - "hash": "sha256-jwFUQe9HdC+gu9W/r4eipYgqbGr0eVA7F3sj2k25+40=" - }, { "pname": "runtime.any.System.Collections", "version": "4.3.0", "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" }, - { - "pname": "runtime.any.System.Diagnostics.Tools", - "version": "4.3.0", - "hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=" - }, { "pname": "runtime.any.System.Diagnostics.Tracing", "version": "4.3.0", @@ -2041,61 +1801,21 @@ "version": "4.3.0", "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" }, - { - "pname": "runtime.any.System.Threading.Timer", - "version": "4.3.0", - "hash": "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs=" - }, - { - "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" - }, { "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-EbnOqPOrAgI9eNheXLR++VnY4pHzMsEKw1dFPJ/Fl2c=" }, - { - "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" - }, { "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-mVg02TNvJc1BuHU03q3fH3M6cMgkKaQPBxraSHl/Btg=" }, - { - "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" - }, { "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-g9Uiikrl+M40hYe0JMlGHe/lrR0+nN05YF64wzLmBBA=" }, - { - "pname": "runtime.linux-arm64.Microsoft.DotNet.ILCompiler", - "version": "9.0.13", - "hash": "sha256-vwIqC7MmdxuwprvPg5kxpl12HASsUSQdOsbC+UrrSxA=" - }, - { - "pname": "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost", - "version": "8.0.8", - "hash": "sha256-GRldzHE2XXJdR6qAdcxgLcXZM1gNoiGsfJg0M5qnlR4=" - }, - { - "pname": "runtime.linux-x64.Microsoft.DotNet.ILCompiler", - "version": "9.0.13", - "hash": "sha256-0jqd1+Q/0/JgekLDBdsGchsg/5BN5x88JzJS1iqVodE=" - }, - { - "pname": "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost", - "version": "8.0.8", - "hash": "sha256-Ls2+jcDC4FW9zO81O2JP6BtKeazhydWEiXBPg/GJsfw=" - }, { "pname": "runtime.native.System", "version": "4.0.0", @@ -2106,31 +1826,11 @@ "version": "4.3.0", "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" }, - { - "pname": "runtime.native.System.IO.Compression", - "version": "4.1.0", - "hash": "sha256-085JrZxNEwIHdBWKKKFsh1JzpF0AblvrUsz5T8kH4jQ=" - }, - { - "pname": "runtime.native.System.IO.Compression", - "version": "4.3.0", - "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" - }, - { - "pname": "runtime.native.System.Net.Http", - "version": "4.0.1", - "hash": "sha256-5nWnTQrA1T6t9r8MqIiV4yTNu+IH0of2OX1qteoS+8E=" - }, { "pname": "runtime.native.System.Net.Http", "version": "4.3.0", "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" }, - { - "pname": "runtime.native.System.Security.Cryptography", - "version": "4.0.0", - "hash": "sha256-6Q8eYzC32BbGIiTHoQaE6B3cD81vYQcH5SCswYRSp0w=" - }, { "pname": "runtime.native.System.Security.Cryptography.Apple", "version": "4.3.0", @@ -2146,96 +1846,41 @@ "version": "4.3.2", "hash": "sha256-xqF6LbbtpzNC9n1Ua16PnYgXHU0LvblEROTfK4vIxX8=" }, - { - "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" - }, { "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-aJBu6Frcg6webvzVcKNoUP1b462OAqReF2giTSyBzCQ=" }, - { - "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" - }, { "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-Mpt7KN2Kq51QYOEVesEjhWcCGTqWckuPf8HlQ110qLY=" }, - { - "pname": "runtime.osx-arm64.Microsoft.DotNet.ILCompiler", - "version": "9.0.13", - "hash": "sha256-imtP20skhTnzSGXqCzVt57SqkM0btTet9g1OHm7QGV8=" - }, - { - "pname": "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost", - "version": "8.0.8", - "hash": "sha256-O59V6pzicz7KWwUy+5qB3nAwSxhRsM9HoCq2uInaaHY=" - }, - { - "pname": "runtime.osx-x64.Microsoft.DotNet.ILCompiler", - "version": "9.0.13", - "hash": "sha256-Mds6EWafCVVuMp1mKQcreRGajlIMVJSU5qO5zZ4hrTw=" - }, - { - "pname": "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost", - "version": "8.0.8", - "hash": "sha256-bG/yxRP8uNHjCcZkSOlqSqgWIesuww8irvtSsC8jIfE=" - }, { "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", "version": "4.3.0", "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" }, - { - "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" - }, { "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-JvMltmfVC53mCZtKDHE69G3RT6Id28hnskntP9MMP9U=" }, - { - "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" - }, { "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-QfFxWTVRNBhN4Dm1XRbCf+soNQpy81PsZed3x6op/bI=" }, - { - "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" - }, { "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-EaJHVc9aDZ6F7ltM2JwlIuiJvqM67CKRq682iVSo+pU=" }, - { - "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" - }, { "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", "hash": "sha256-PHR0+6rIjJswn89eoiWYY1DuU8u6xRJLrtjykAMuFmA=" }, - { - "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", - "version": "4.3.0", - "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" - }, { "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.2", @@ -2246,11 +1891,6 @@ "version": "4.3.0", "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" }, - { - "pname": "runtime.unix.System.Console", - "version": "4.3.1", - "hash": "sha256-dxyn/1Px4FKLZ2QMUrkFpW619Y1lhPeTiGLWYM6IbpY=" - }, { "pname": "runtime.unix.System.Diagnostics.Debug", "version": "4.3.0", @@ -2266,11 +1906,6 @@ "version": "4.3.0", "hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=" }, - { - "pname": "runtime.unix.System.Net.Sockets", - "version": "4.3.0", - "hash": "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4=" - }, { "pname": "runtime.unix.System.Private.Uri", "version": "4.3.0", @@ -2291,16 +1926,6 @@ "version": "1.2.0.556", "hash": "sha256-aVop7a9r+X2RsZETgngBm3qQPEIiPBWgHzicGSTEymc=" }, - { - "pname": "Suave", - "version": "1.1.3", - "hash": "sha256-z730a3DmRHKn9kYkd49Zk4/9Qk+/1GpZNuiCk+18hqg=" - }, - { - "pname": "SuaveServerWrapper", - "version": "0.0.3", - "hash": "sha256-3+lml7VSoYlbUMSxCoAetoGOPIKZVy+T0Xu8HFNI924=" - }, { "pname": "System.AppContext", "version": "4.1.0", @@ -2311,11 +1936,6 @@ "version": "4.3.0", "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" }, - { - "pname": "System.Buffers", - "version": "4.0.0", - "hash": "sha256-+YUymoyS0O+xVyF2+LiAdZlMww8nofPN4ja9ylYqRo8=" - }, { "pname": "System.Buffers", "version": "4.3.0", @@ -2326,11 +1946,6 @@ "version": "4.5.0", "hash": "sha256-THw2znu+KibfJRfD7cE3nRYHsm7Fyn5pjOOZVonFjvs=" }, - { - "pname": "System.ClientModel", - "version": "1.0.0", - "hash": "sha256-yHb72M/Z8LeSZea9TKw2eD0SdYEoCNwVw6Z3695SC2Y=" - }, { "pname": "System.ClientModel", "version": "1.1.0", @@ -2376,22 +1991,6 @@ "version": "5.0.0", "hash": "sha256-GdwSIjLMM0uVfE56VUSLVNgpW0B//oCeSFj8/hSlbM8=" }, - { - "pname": "System.Collections.NonGeneric", - "version": "4.3.0", - "hash": "sha256-8/yZmD4jjvq7m68SPkJZLBQ79jOTOyT5lyzX4SCYAx8=" - }, - { - "pname": "System.Collections.Specialized", - "version": "4.3.0", - "hash": "sha256-QNg0JJNx+zXMQ26MJRPzH7THdtqjrNtGLUgaR1SdvOk=" - }, - { - "pname": "System.CommandLine", - "version": "2.0.0-beta5.25306.101", - "hash": "sha256-Gn1MRpeHkduwDPtoZmQoIItMWwRKFDkFtFGyH2+AtpE=", - "url": "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/516521bf-6417-457e-9a9c-0a4bdfde03e7/nuget/v3/flat2/system.commandline/2.0.0-beta5.25306.101/system.commandline.2.0.0-beta5.25306.101.nupkg" - }, { "pname": "System.ComponentModel", "version": "4.0.1", @@ -2412,31 +2011,6 @@ "version": "4.5.0", "hash": "sha256-15yE2NoT9vmL9oGCaxHClQR1jLW1j1ef5hHMg55xRso=" }, - { - "pname": "System.ComponentModel.EventBasedAsync", - "version": "4.0.11", - "hash": "sha256-kAOQ9dEg+yDh5h56qSf36OTLJYRIcKftIcOqxfuJJR8=" - }, - { - "pname": "System.ComponentModel.Primitives", - "version": "4.3.0", - "hash": "sha256-IOMJleuIBppmP4ECB3uftbdcgL7CCd56+oAD/Sqrbus=" - }, - { - "pname": "System.ComponentModel.TypeConverter", - "version": "4.1.0", - "hash": "sha256-HmzGTU2NVj8qUn1xCGxifOQ/e/HZCVvgIECzcJPaDJ0=" - }, - { - "pname": "System.ComponentModel.TypeConverter", - "version": "4.3.0", - "hash": "sha256-PSDiPYt8PgTdTUBz+GH6lHCaM1YgfObneHnZsc8Fz54=" - }, - { - "pname": "System.Configuration.ConfigurationManager", - "version": "4.4.0", - "hash": "sha256-+8wGYllXnIxRzy9dLhZFB88GoPj8ivYXS0KUfcivT8I=" - }, { "pname": "System.Configuration.ConfigurationManager", "version": "4.5.0", @@ -2472,11 +2046,6 @@ "version": "4.3.0", "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" }, - { - "pname": "System.Diagnostics.DiagnosticSource", - "version": "4.0.0", - "hash": "sha256-dYh9UoFesuGcHY+ewsI+z2WnNy+bwHPsHQ3t85cbzNg=" - }, { "pname": "System.Diagnostics.DiagnosticSource", "version": "4.3.0", @@ -2527,16 +2096,6 @@ "version": "6.0.0", "hash": "sha256-tmAXwujLlc+F/SIVJvJYnSuUjCQ4ylytHTHV4Ly5EN8=" }, - { - "pname": "System.Diagnostics.Process", - "version": "4.1.0", - "hash": "sha256-OgW6ogQ+oYADYS0PHmwXdhrOKQJpqXlwzSvmfjTLNBg=" - }, - { - "pname": "System.Diagnostics.TextWriterTraceListener", - "version": "4.0.0", - "hash": "sha256-GmInHGlq5ZTnT7qsxpKnXid11hcRXVBhA1N1zyePL/Y=" - }, { "pname": "System.Diagnostics.Tools", "version": "4.0.1", @@ -2547,11 +2106,6 @@ "version": "4.3.0", "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" }, - { - "pname": "System.Diagnostics.TraceSource", - "version": "4.0.0", - "hash": "sha256-cCjdPU7ow91HGf1hBIOLJMQGO6pNmF+N+5/Z38XJh9U=" - }, { "pname": "System.Diagnostics.TraceSource", "version": "4.3.0", @@ -2617,11 +2171,6 @@ "version": "4.3.0", "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" }, - { - "pname": "System.Globalization.Extensions", - "version": "4.0.1", - "hash": "sha256-zLtkPryJwqTGcJqMC6zoMMvMrT+aAL5GoumjmMtqUEI=" - }, { "pname": "System.Globalization.Extensions", "version": "4.3.0", @@ -2742,11 +2291,6 @@ "version": "4.3.0", "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" }, - { - "pname": "System.Linq.Queryable", - "version": "4.3.0", - "hash": "sha256-EioRexhnpSoIa96Un0syFO9CP6l1jNaXYhp5LlnaLW4=" - }, { "pname": "System.Memory", "version": "4.5.1", @@ -2842,11 +2386,6 @@ "version": "4.3.0", "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" }, - { - "pname": "System.Private.DataContractSerialization", - "version": "4.1.1", - "hash": "sha256-OaE+ZcEfkpIkbdMOMAMiJa9vgiVP25FGuFrf+N/mafY=" - }, { "pname": "System.Private.Uri", "version": "4.3.0", @@ -2927,11 +2466,6 @@ "version": "4.3.0", "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" }, - { - "pname": "System.Reflection.Metadata", - "version": "1.3.0", - "hash": "sha256-a/RQr++mSsziWaOTknicfIQX/zJrwPFExfhK6PM0tfg=" - }, { "pname": "System.Reflection.Metadata", "version": "1.6.0", @@ -3042,11 +2576,6 @@ "version": "4.3.0", "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" }, - { - "pname": "System.Runtime.Loader", - "version": "4.0.0", - "hash": "sha256-gE5/ehU3Qq5phhSxGuPmSv1DFVQeiyl1/+YyrO+I7lI=" - }, { "pname": "System.Runtime.Loader", "version": "4.3.0", @@ -3062,16 +2591,6 @@ "version": "4.3.0", "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" }, - { - "pname": "System.Runtime.Serialization.Json", - "version": "4.0.2", - "hash": "sha256-thmzgYbyxoPYtkDdDwoG7wnVuVhFNwLUE2AsDfRf1yM=" - }, - { - "pname": "System.Runtime.Serialization.Primitives", - "version": "4.1.1", - "hash": "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA=" - }, { "pname": "System.Runtime.Serialization.Primitives", "version": "4.3.0", @@ -3107,11 +2626,6 @@ "version": "4.3.0", "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" }, - { - "pname": "System.Security.Cryptography.Cng", - "version": "4.2.0", - "hash": "sha256-7F+m3HnmBsgE4xWF8FeCGlaEgQM3drqA6HEaQr6MEoU=" - }, { "pname": "System.Security.Cryptography.Cng", "version": "4.3.0", @@ -3127,11 +2641,6 @@ "version": "5.0.0", "hash": "sha256-nOJP3vdmQaYA07TI373OvZX6uWshETipvi5KpL7oExo=" }, - { - "pname": "System.Security.Cryptography.Csp", - "version": "4.0.0", - "hash": "sha256-WHyR6vVK3zaT4De7jgQFUar1P5fiX9ECwiVkJDFFm7M=" - }, { "pname": "System.Security.Cryptography.Csp", "version": "4.3.0", @@ -3147,11 +2656,6 @@ "version": "4.3.0", "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" }, - { - "pname": "System.Security.Cryptography.OpenSsl", - "version": "4.0.0", - "hash": "sha256-mLijAozynzjiOMyh2P5BHcfVq3Ovd0T/phG08SIbXZs=" - }, { "pname": "System.Security.Cryptography.OpenSsl", "version": "4.3.0", @@ -3387,26 +2891,11 @@ "version": "4.5.4", "hash": "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng=" }, - { - "pname": "System.Threading.Thread", - "version": "4.0.0", - "hash": "sha256-7EtSJuKqcW107FYA5Ko9NFXEWUPIzNDtlfKaQV2pvb8=" - }, { "pname": "System.Threading.Thread", "version": "4.3.0", "hash": "sha256-pMs6RNFC3nQOGz9EqIcyWmO8YLaqay+q/Qde5hqPXXg=" }, - { - "pname": "System.Threading.ThreadPool", - "version": "4.0.10", - "hash": "sha256-/fowWjM/0ZZFC1Rwu0i5N71iRxV2JOd3jQV2Jn0wuTk=" - }, - { - "pname": "System.Threading.ThreadPool", - "version": "4.3.0", - "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" - }, { "pname": "System.Threading.Timer", "version": "4.0.1", @@ -3417,11 +2906,6 @@ "version": "4.3.0", "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" }, - { - "pname": "System.ValueTuple", - "version": "4.4.0", - "hash": "sha256-LqpI3bSaXqVPqfEdfsWE2qX9tzFV6VPU6x4A/fVzzfM=" - }, { "pname": "System.Windows.Extensions", "version": "4.7.0", @@ -3452,101 +2936,21 @@ "version": "4.3.0", "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" }, - { - "pname": "System.Xml.XmlDocument", - "version": "4.0.1", - "hash": "sha256-gdoFrPo54v1LjkBF79f8EvtltVVjHz9ZI9kc5ve0GkY=" - }, { "pname": "System.Xml.XmlDocument", "version": "4.3.0", "hash": "sha256-kbuV4Y7rVJkfMp2Kgoi8Zvdatm9CZNmlKB3GZgANvy4=" }, - { - "pname": "System.Xml.XmlSerializer", - "version": "4.0.11", - "hash": "sha256-v6x4d6W18dijG5cDqQmVHdtWRf6Y4OkdBolT3d5g3wY=" - }, { "pname": "System.Xml.XmlSerializer", "version": "4.3.0", "hash": "sha256-IqTGPENWYoI06x2NHFPVtHlLEq9tazbom32bFLom6h4=" }, - { - "pname": "System.Xml.XPath", - "version": "4.0.1", - "hash": "sha256-lQCoK2M51SGRuGjfiuIW26Y2goABY2RLE6cZ4816WDo=" - }, - { - "pname": "System.Xml.XPath.XmlDocument", - "version": "4.0.1", - "hash": "sha256-bK9AfAYrdSipdRbmo8Rk7394ku92UFNe2TEQF5+k/lA=" - }, - { - "pname": "Validation", - "version": "2.4.15", - "hash": "sha256-UpT+aE6yD48RMwXZZpAaUn71CBaBBZ1tLvzgk/YHxvM=" - }, { "pname": "WindowsAzure.Storage", "version": "9.3.1", "hash": "sha256-tNXGq1PYJcGXzlGC+W32dzWxIAt0ZsOWIRbnewX8k/8=" }, - { - "pname": "xunit", - "version": "2.4.0", - "hash": "sha256-xRxQfuu87qJYTIeRZf4OdAUTwf8dL8Am6cQgk6tRHrs=" - }, - { - "pname": "xunit.abstractions", - "version": "2.0.2", - "hash": "sha256-w5APCW7suBdoDOmQqm/8Gq6+Sk88JcTR09zjmj9s17E=" - }, - { - "pname": "xunit.analyzers", - "version": "0.10.0", - "hash": "sha256-8lRZhogXHYksa9ChnkFXpBnTMlLlYIvu3Av7qQYWwJY=" - }, - { - "pname": "xunit.assert", - "version": "2.4.0", - "hash": "sha256-WqB8mVJUAsvLdZTOoSLmNhk0DKM2DSZqHFDDzwD9Jt0=" - }, - { - "pname": "xunit.core", - "version": "2.4.0", - "hash": "sha256-dt59aoFjpqlbcPFGwPrzOSEBSPIn33tLcLraK8xEntE=" - }, - { - "pname": "xunit.extensibility.core", - "version": "2.2.0", - "hash": "sha256-et3Se7paKJlg8Ha4Xr9+He40M6vblxyOwS2BQxOgLlE=" - }, - { - "pname": "xunit.extensibility.core", - "version": "2.4.0", - "hash": "sha256-LbuXEcEJjGn3L6FCbC119+MY/QLvfLlGkCeAsCsZqGE=" - }, - { - "pname": "xunit.extensibility.execution", - "version": "2.2.0", - "hash": "sha256-BCt7rslK7jGH6xFSVTDrE3R3qyHgumC65hpilDwqKpI=" - }, - { - "pname": "xunit.extensibility.execution", - "version": "2.4.0", - "hash": "sha256-chRJEazwq93yhVONlbtTI1znqYy0gdAoQajPRnhM/i4=" - }, - { - "pname": "xunit.runner.visualstudio", - "version": "2.4.0", - "hash": "sha256-qjRuSbBkV1qMOM7n8eNDhoP7gdt4zuKyuiyUxldG8uE=" - }, - { - "pname": "Xunit.SkippableFact", - "version": "1.3.6", - "hash": "sha256-GKcQkNM2bUEO0fWB8wciipNjBQ5AukUub5SkstvnlLw=" - }, { "pname": "YamlDotNet", "version": "6.0.0", diff --git a/pkgs/by-name/az/azure-functions-core-tools/package.nix b/pkgs/by-name/az/azure-functions-core-tools/package.nix index fad1ce9d4e26..c053b385b704 100644 --- a/pkgs/by-name/az/azure-functions-core-tools/package.nix +++ b/pkgs/by-name/az/azure-functions-core-tools/package.nix @@ -30,7 +30,16 @@ buildDotnetModule { executables = [ "func" ]; nugetDeps = ./deps.json; - dotnet-sdk = dotnetCorePackages.sdk_10_0; + dotnet-sdk = dotnetCorePackages.sdk_10_0 // { + inherit + (dotnetCorePackages.combinePackages [ + dotnetCorePackages.sdk_9_0 + dotnetCorePackages.sdk_8_0 + ]) + packages + targetPackages + ; + }; nativeBuildInputs = [ go ]; linkNuGetPackagesAndSources = true; From 0487ddcda97be681620df772faf53cadf89e9ff5 Mon Sep 17 00:00:00 2001 From: David McFarland Date: Sun, 15 Mar 2026 18:49:24 -0300 Subject: [PATCH 28/66] galaxy-buds-client: pin dotnet sdk to 10_0_1xx This fixes a build error when 10_0_2xx is introduced. --- pkgs/by-name/ga/galaxy-buds-client/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ga/galaxy-buds-client/package.nix b/pkgs/by-name/ga/galaxy-buds-client/package.nix index ab447dabb11e..b95111ba1fa9 100644 --- a/pkgs/by-name/ga/galaxy-buds-client/package.nix +++ b/pkgs/by-name/ga/galaxy-buds-client/package.nix @@ -30,7 +30,7 @@ buildDotnetModule rec { projectFile = [ "GalaxyBudsClient/GalaxyBudsClient.csproj" ]; nugetDeps = ./deps.json; - dotnet-sdk = dotnetCorePackages.sdk_10_0; + dotnet-sdk = dotnetCorePackages.sdk_10_0_1xx; dotnet-runtime = dotnetCorePackages.runtime_10_0; dotnetFlags = lib.optionals stdenv.hostPlatform.isx86_64 [ "-p:Runtimeidentifier=linux-x64" ] From d785761293a77bbfe990a9e03ae25e82b4a8175b Mon Sep 17 00:00:00 2001 From: David McFarland Date: Sun, 15 Mar 2026 18:50:10 -0300 Subject: [PATCH 29/66] libation: pin dotnet sdk to 10_0_1xx This fixes a build error when 10_0_2xx is introduced. --- pkgs/by-name/li/libation/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/li/libation/package.nix b/pkgs/by-name/li/libation/package.nix index c426bea3ddda..2fccc759b139 100644 --- a/pkgs/by-name/li/libation/package.nix +++ b/pkgs/by-name/li/libation/package.nix @@ -29,7 +29,7 @@ buildDotnetModule rec { env.AVALONIA_TELEMETRY_OPTOUT = "1"; - dotnet-sdk = dotnetCorePackages.sdk_10_0; + dotnet-sdk = dotnetCorePackages.sdk_10_0_1xx; dotnet-runtime = dotnetCorePackages.runtime_10_0; From 2120c1aae058a59de3925de926f55cd236a477dc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 22:02:53 +0000 Subject: [PATCH 30/66] gws: 0.6.3 -> 0.16.0 --- pkgs/by-name/gw/gws/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gw/gws/package.nix b/pkgs/by-name/gw/gws/package.nix index 1e6d45cc66b8..589987a93dff 100644 --- a/pkgs/by-name/gw/gws/package.nix +++ b/pkgs/by-name/gw/gws/package.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "gws"; - version = "0.6.3"; + version = "0.16.0"; src = fetchFromGitHub { owner = "googleworkspace"; repo = "cli"; tag = "v${finalAttrs.version}"; - hash = "sha256-8vRBW7RUwHHAvAiF8WahkRh0pH205UiuJloY0DgFwLM="; + hash = "sha256-yirGdRHIexO9I0KLyU5jnNqWUG7Xw/iQ0F93SkkzNi0="; }; - cargoHash = "sha256-tIJikoRFbUYYlkOjfWoPogoB+yhY80TTtSzEXgSEP8A="; + cargoHash = "sha256-M9uflVP8J7vRPYoBZ9GE/aq7nj6dFJa636HQrvR3nXs="; nativeBuildInputs = [ pkg-config ]; From c9eb7d88584560f2e31aa2ec822715182bf5776e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 22:41:42 +0000 Subject: [PATCH 31/66] home-assistant-custom-components.elegoo_printer: 2.7.3 -> 2.7.5 --- .../custom-components/elegoo_printer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix b/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix index 0c1aaa745880..75fdcff27b0f 100644 --- a/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix +++ b/pkgs/servers/home-assistant/custom-components/elegoo_printer/package.nix @@ -19,13 +19,13 @@ buildHomeAssistantComponent rec { owner = "danielcherubini"; domain = "elegoo_printer"; - version = "2.7.3"; + version = "2.7.5"; src = fetchFromGitHub { owner = "danielcherubini"; repo = "elegoo-homeassistant"; tag = "v${version}"; - hash = "sha256-ka1KHO46JsO0MBrSzrwZcQglxvRJjzJNfkfXUaAeB04="; + hash = "sha256-kZ5RzK/NbW8yysBKmmAWju41lao1leiHJsFQuheX93c="; }; dependencies = [ From f35144db32b09482017baedac0421327523260fc Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 23:03:29 +0000 Subject: [PATCH 32/66] victorialogs: 1.47.0 -> 1.48.0 --- pkgs/by-name/vi/victorialogs/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/vi/victorialogs/package.nix b/pkgs/by-name/vi/victorialogs/package.nix index e29c0c3ae79b..0e800a5daa09 100644 --- a/pkgs/by-name/vi/victorialogs/package.nix +++ b/pkgs/by-name/vi/victorialogs/package.nix @@ -10,13 +10,13 @@ buildGo126Module (finalAttrs: { pname = "VictoriaLogs"; - version = "1.47.0"; + version = "1.48.0"; src = fetchFromGitHub { owner = "VictoriaMetrics"; repo = "VictoriaLogs"; tag = "v${finalAttrs.version}"; - hash = "sha256-SrM6lDhbsGOJohmAFIALyzSAh/9C3A8/EQ2pFDlOEAw="; + hash = "sha256-10tLXgcKdjaHkoA4E7bNS2pBpebv+Exh2yMKlTOFlCw="; }; vendorHash = null; From 992fbf274354e29e3a8faf61366b3d6fd9b6c16d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 15 Mar 2026 23:35:12 +0000 Subject: [PATCH 33/66] bumpp: 10.4.1 -> 11.0.0 --- pkgs/by-name/bu/bumpp/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/bu/bumpp/package.nix b/pkgs/by-name/bu/bumpp/package.nix index b516143dd652..ac34f9190626 100644 --- a/pkgs/by-name/bu/bumpp/package.nix +++ b/pkgs/by-name/bu/bumpp/package.nix @@ -12,19 +12,19 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "bumpp"; - version = "10.4.1"; + version = "11.0.0"; src = fetchFromGitHub { owner = "antfu-collective"; repo = "bumpp"; tag = "v${finalAttrs.version}"; - hash = "sha256-cYtk7gE2TYgrFUoa2HV56/qTSX/Dojlo+eDwWRGQr1c="; + hash = "sha256-opZYlEQSZo6V+McFy6gFMfchLYuu5oEP4XuqEkd18F0="; }; pnpmDeps = fetchPnpmDeps { inherit (finalAttrs) pname version src; fetcherVersion = 2; - hash = "sha256-/Yz5Gas3OsqdLAiuZRwGTTcIS/UR1WWms01vU1WxlCo="; + hash = "sha256-rI0DhnncVWd4Wp5pvTnL8IerXbFDwJzkhC4uIe6WJto="; }; nativeBuildInputs = [ From 58ab15170498fc8141e11558d6866ba39cd7c5e4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 00:29:13 +0000 Subject: [PATCH 34/66] prmers: 4.16.11-alpha -> 4.18.00-alpha --- pkgs/by-name/pr/prmers/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/pr/prmers/package.nix b/pkgs/by-name/pr/prmers/package.nix index 1ef0945508ae..2a6d309ed209 100644 --- a/pkgs/by-name/pr/prmers/package.nix +++ b/pkgs/by-name/pr/prmers/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "prmers"; - version = "4.16.11-alpha"; + version = "4.18.00-alpha"; src = fetchFromGitHub { owner = "cherubrock-seb"; repo = "PrMers"; tag = "v${finalAttrs.version}"; - hash = "sha256-yyfPnDacU8VBqVq8gwPflxCPmbSRqMr5N6zFu5pm6x4="; + hash = "sha256-FoZd/eBXnHGUZxJ206ExaBuHwzAYyylf+3sE6xPot5I="; }; enableParallelBuilding = true; From 616d7d3580542b3ef73eb9c57b8a97b6d2ba8347 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 00:53:15 +0000 Subject: [PATCH 35/66] home-assistant-custom-components.powercalc: 1.20.8 -> 1.20.9 --- .../home-assistant/custom-components/powercalc/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-components/powercalc/package.nix b/pkgs/servers/home-assistant/custom-components/powercalc/package.nix index ef61e89e392e..b1e39e584448 100644 --- a/pkgs/servers/home-assistant/custom-components/powercalc/package.nix +++ b/pkgs/servers/home-assistant/custom-components/powercalc/package.nix @@ -17,13 +17,13 @@ buildHomeAssistantComponent rec { owner = "bramstroker"; domain = "powercalc"; - version = "1.20.8"; + version = "1.20.9"; src = fetchFromGitHub { inherit owner; repo = "homeassistant-powercalc"; tag = "v${version}"; - hash = "sha256-E23GJOnc54iefgf5Y+purEPH4OrtlNiIs1EkcR2TjHM="; + hash = "sha256-0B7C4WBYgfS1M838kcc57gIIkH6ufozAelKF0IKzFi8="; }; dependencies = [ numpy ]; From 8e399cb05c7c7a9f84c456bf63f3f54d487980c7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 02:50:43 +0000 Subject: [PATCH 36/66] splash: 3.11.7 -> 3.12.0 --- pkgs/by-name/sp/splash/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sp/splash/package.nix b/pkgs/by-name/sp/splash/package.nix index 355ffee3cdb1..2d53b53cb9d1 100644 --- a/pkgs/by-name/sp/splash/package.nix +++ b/pkgs/by-name/sp/splash/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "splash"; - version = "3.11.7"; + version = "3.12.0"; src = fetchFromGitHub { owner = "danieljprice"; repo = "splash"; rev = "v${finalAttrs.version}"; - hash = "sha256-V5p2MZIpM3uVww8sWzwRX4Df2z0tk15C4R3Jlzy7qEk="; + hash = "sha256-7wzFYaceryxbNRLRv7EikWr4yYjrK89S7Kct8kpKvz8="; }; nativeBuildInputs = [ From dd9c42b77c1984c2f13adc5d39eaea94a9e69f2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 15 Mar 2026 20:38:30 -0700 Subject: [PATCH 37/66] python3Packages.python-swiftclient: don't test coverage --- pkgs/development/python-modules/python-swiftclient/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/python-modules/python-swiftclient/default.nix b/pkgs/development/python-modules/python-swiftclient/default.nix index 72bea8934f72..de6d3f3cde01 100644 --- a/pkgs/development/python-modules/python-swiftclient/default.nix +++ b/pkgs/development/python-modules/python-swiftclient/default.nix @@ -13,7 +13,6 @@ stestrCheckHook, versionCheckHook, hacking, - coverage, keystoneauth1, stestr, openstacksdk, @@ -60,7 +59,6 @@ buildPythonPackage (finalAttrs: { stestrCheckHook openstacksdk hacking - coverage keystoneauth1 stestr openstacksdk From f999c01310c09c094974e2596612bf5fb5f470c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 15 Mar 2026 20:47:41 -0700 Subject: [PATCH 38/66] kolla: don't test coverage --- pkgs/by-name/ko/kolla/package.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/by-name/ko/kolla/package.nix b/pkgs/by-name/ko/kolla/package.nix index 066fc52f6cab..5322f07a6ebe 100644 --- a/pkgs/by-name/ko/kolla/package.nix +++ b/pkgs/by-name/ko/kolla/package.nix @@ -54,7 +54,6 @@ python3Packages.buildPythonApplication (finalAttrs: { stestr oslotest hacking - coverage bashate ]; From 4bd7a7855fa37305ab478fe873bf8854ae857ac2 Mon Sep 17 00:00:00 2001 From: Tristan Ross Date: Sun, 15 Mar 2026 21:54:10 -0700 Subject: [PATCH 39/66] llvmPackages_git: 23.0.0-unstable-2026-03-02 -> 23.0.0-unstable-2026-03-15 --- pkgs/development/compilers/llvm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/llvm/default.nix b/pkgs/development/compilers/llvm/default.nix index 32daa28bbe57..4dd2e20ca4c8 100644 --- a/pkgs/development/compilers/llvm/default.nix +++ b/pkgs/development/compilers/llvm/default.nix @@ -28,9 +28,9 @@ let "21.1.8".officialRelease.sha256 = "sha256-pgd8g9Yfvp7abjCCKSmIn1smAROjqtfZaJkaUkBSKW0="; "22.1.0-rc3".officialRelease.sha256 = "sha256-vGG7lDdDFW427lS384Bl7Pt9QFgK1XVxLmtm878xmxU="; "23.0.0-git".gitRelease = { - rev = "0704b68a027a84863bbdc654df1e2989b4de3ab7"; - rev-version = "23.0.0-unstable-2026-03-02"; - sha256 = "sha256-kOA9DNn3v/LOwrY/cMag3FLeRGdVBnZQoYtw4EwocoU="; + rev = "696e82db339ce6dc907378bd977ec7857cc892e9"; + rev-version = "23.0.0-unstable-2026-03-15"; + sha256 = "sha256-rX5GMsPJcKLkePHryT+Ru3X0S6BzM71uRoKT1ftmnO4="; }; } // llvmVersions; From a3c2a3476a4054327f18ad41565e8172ef953a13 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 05:20:11 +0000 Subject: [PATCH 40/66] helmfile: 1.4.1 -> 1.4.2 --- pkgs/by-name/he/helmfile/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/he/helmfile/package.nix b/pkgs/by-name/he/helmfile/package.nix index 7bbdb2dd0af2..b4cbc96ce4fb 100644 --- a/pkgs/by-name/he/helmfile/package.nix +++ b/pkgs/by-name/he/helmfile/package.nix @@ -10,16 +10,16 @@ buildGoModule (finalAttrs: { pname = "helmfile"; - version = "1.4.1"; + version = "1.4.2"; src = fetchFromGitHub { owner = "helmfile"; repo = "helmfile"; rev = "v${finalAttrs.version}"; - hash = "sha256-GnqpeeBGAQ/ZuL/BuVEo+FJfiTck9V4WO/SS8NcR+vU="; + hash = "sha256-rv7C/2CExlMO6fXaMMMAgSxqKP5iwLyMFI2huHeFVe0="; }; - vendorHash = "sha256-lHDp7feUr6rN4LLGw1cKZfcChsTsnJQ3DtClpAxwrTU="; + vendorHash = "sha256-uHzDxhJynjijm6dXW9fgiLilxUkch/IBmtQpOXTvA9M="; proxyVendor = true; # darwin/linux hash mismatch From c15bd10f63655d6ee2c629579bd613f802113721 Mon Sep 17 00:00:00 2001 From: eljamm Date: Mon, 16 Mar 2026 06:22:37 +0000 Subject: [PATCH 41/66] linux_xanmod: 6.18.17 -> 6.18.18 - Changelog: https://dl.xanmod.org/changelog/6.18/ChangeLog-6.18.18-xanmod1.gz - Diff: https://gitlab.com/xanmod/linux/-/compare/6.18.17-xanmod1..6.18.18-xanmod1?from_project_id=51590166 --- pkgs/os-specific/linux/kernel/xanmod-kernels.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix index 67f5d56715db..e5d7ff834cd5 100644 --- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix +++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix @@ -15,8 +15,8 @@ let variants = { # ./update-xanmod.sh lts lts = { - version = "6.18.17"; - hash = "sha256-REUiyKNRDhpE0vRJb+PyBpOQem0oZrV+rbeLtkkJSTo="; + version = "6.18.18"; + hash = "sha256-ynfFioeCP2kvuCE6swH6OmqbfVDGBGEDfCJjaUfZ9g4="; isLTS = true; }; # ./update-xanmod.sh main From c1ac274682cfd9a6becc368decbc470a3eb136bf Mon Sep 17 00:00:00 2001 From: eljamm Date: Mon, 16 Mar 2026 06:25:43 +0000 Subject: [PATCH 42/66] linux_xanmod_latest: 6.19.7 -> 6.19.8 - Changelog: https://dl.xanmod.org/changelog/6.19/ChangeLog-6.19.8-xanmod1.gz - Diff: https://gitlab.com/xanmod/linux/-/compare/6.19.7-xanmod1..6.19.8-xanmod1?from_project_id=51590166 --- pkgs/os-specific/linux/kernel/xanmod-kernels.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix index e5d7ff834cd5..2d6a85df58c3 100644 --- a/pkgs/os-specific/linux/kernel/xanmod-kernels.nix +++ b/pkgs/os-specific/linux/kernel/xanmod-kernels.nix @@ -21,8 +21,8 @@ let }; # ./update-xanmod.sh main main = { - version = "6.19.7"; - hash = "sha256-I0bv4r08pUuhjJR1ksti2vDqzq2tZdNcaD24kDBLssk="; + version = "6.19.8"; + hash = "sha256-Ay3tWPDz//Pnaam0EjqvVOM3zxSFTby0YxdWBW1a4es="; }; }; From 866cc7bcfe3931de4d4d375eb0e8be3488a9898d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 07:17:58 +0000 Subject: [PATCH 43/66] msbuild-structured-log-viewer: 2.3.143 -> 2.3.150 --- pkgs/by-name/ms/msbuild-structured-log-viewer/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ms/msbuild-structured-log-viewer/package.nix b/pkgs/by-name/ms/msbuild-structured-log-viewer/package.nix index 95af07f541d6..02c37cc10e8f 100644 --- a/pkgs/by-name/ms/msbuild-structured-log-viewer/package.nix +++ b/pkgs/by-name/ms/msbuild-structured-log-viewer/package.nix @@ -14,13 +14,13 @@ }: buildDotnetModule (finalAttrs: { pname = "msbuild-structured-log-viewer"; - version = "2.3.143"; + version = "2.3.150"; src = fetchFromGitHub { owner = "KirillOsenkov"; repo = "MSBuildStructuredLog"; rev = "v${finalAttrs.version}"; - hash = "sha256-Gjk6hxgFSiSLDP9B4UUsNEaadLjTn8WrPmFRbIUerAA="; + hash = "sha256-HTWPsVl/pMi+lMSax5JNtbPXHeqD8QxfvLp2bhVxfPs="; }; env.AVALONIA_TELEMETRY_OPTOUT = "1"; From e17dcb297e4ea984150b6205e8aec580476db3b9 Mon Sep 17 00:00:00 2001 From: Zebreus Date: Mon, 16 Mar 2026 09:05:39 +0100 Subject: [PATCH 44/66] bcachefs-tools: 1.37.0 -> 1.37.1 --- pkgs/by-name/bc/bcachefs-tools/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/bc/bcachefs-tools/package.nix b/pkgs/by-name/bc/bcachefs-tools/package.nix index a04b6f71f9c2..cd0e5ccdf6c0 100644 --- a/pkgs/by-name/bc/bcachefs-tools/package.nix +++ b/pkgs/by-name/bc/bcachefs-tools/package.nix @@ -29,18 +29,18 @@ stdenv.mkDerivation (finalAttrs: { pname = "bcachefs-tools"; - version = "1.37.0"; + version = "1.37.1"; src = fetchFromGitHub { owner = "koverstreet"; repo = "bcachefs-tools"; tag = "v${finalAttrs.version}"; - hash = "sha256-whLigwGbMhxavTJGRyeV9GCw8OX0+9FvQk567QxywNQ="; + hash = "sha256-6w7Ig6wJKmWxkS730CZKFkEqefIQDJI+OJHPPJ3aPEk="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) src; - hash = "sha256-wm/Zfuc+tpER7PTRjKftmtCkoKZ51ZUJKGsHQ79cJbE="; + hash = "sha256-mNexPIDeUwJYKsM8Hzeh5opfLk9Wf4bHRlwUZLnLAKo="; }; postPatch = '' From a2931470e81ee727dc1619f9e90b2aa2c8c42780 Mon Sep 17 00:00:00 2001 From: Shogo Takata Date: Mon, 16 Feb 2026 15:44:15 +0900 Subject: [PATCH 45/66] uutils-coreutils: fix static build Fixes build for pkgsStatic.uutils-coreutils --- pkgs/by-name/uu/uutils-coreutils/package.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/uu/uutils-coreutils/package.nix b/pkgs/by-name/uu/uutils-coreutils/package.nix index 5fc279880460..4cb084c17172 100644 --- a/pkgs/by-name/uu/uutils-coreutils/package.nix +++ b/pkgs/by-name/uu/uutils-coreutils/package.nix @@ -49,13 +49,13 @@ stdenv.mkDerivation (finalAttrs: { ]; nativeBuildInputs = [ + cargo rustPlatform.bindgenHook rustPlatform.cargoSetupHook python3Packages.sphinx ]; makeFlags = [ - "CARGO=${lib.getExe cargo}" "PREFIX=${placeholder "out"}" "PROFILE=release" "SELINUX_ENABLED=${if selinuxSupport then "1" else "0"}" @@ -75,11 +75,15 @@ stdenv.mkDerivation (finalAttrs: { ]) ) }" + "SKIP_UTILS=${lib.optionalString stdenv.hostPlatform.isStatic "stdbuf"}" ] ++ lib.optionals (prefix != null) [ "PROG_PREFIX=${prefix}" ] ++ lib.optionals buildMulticallBinary [ "MULTICALL=y" ]; - env = lib.optionalAttrs selinuxSupport { + env = { + CARGO_BUILD_TARGET = stdenv.hostPlatform.rust.rustcTargetSpec; + } + // lib.optionalAttrs selinuxSupport { SELINUX_INCLUDE_DIR = "${libselinux.dev}/include"; SELINUX_LIB_DIR = lib.makeLibraryPath [ libselinux From 77ed9996056e5e9713708bc3dc9ca2c043b00004 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 09:14:40 +0000 Subject: [PATCH 46/66] python3Packages.weaviate-client: 4.20.3 -> 4.20.4 --- pkgs/development/python-modules/weaviate-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/weaviate-client/default.nix b/pkgs/development/python-modules/weaviate-client/default.nix index f4656326f50b..73d651221567 100644 --- a/pkgs/development/python-modules/weaviate-client/default.nix +++ b/pkgs/development/python-modules/weaviate-client/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { pname = "weaviate-client"; - version = "4.20.3"; + version = "4.20.4"; pyproject = true; disabled = pythonOlder "3.12"; @@ -36,7 +36,7 @@ buildPythonPackage rec { owner = "weaviate"; repo = "weaviate-python-client"; tag = "v${version}"; - hash = "sha256-O78gUY5+OojZMwOKGcDAQ8J4tVVmmvAyS5xWQyl3Ppk="; + hash = "sha256-GzkMBNvXz8wqpYdsifeHqZFnYjRf4hNRmQQhHUB12VI="; }; pythonRelaxDeps = [ From b73bd89c0aa5384a208b29db08cf8b9e56dedb01 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 09:29:35 +0000 Subject: [PATCH 47/66] imapfilter: 2.8.4 -> 2.8.5 --- pkgs/applications/networking/mailreaders/imapfilter.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/imapfilter.nix b/pkgs/applications/networking/mailreaders/imapfilter.nix index cacb0e5f4253..cbe340c0d1de 100644 --- a/pkgs/applications/networking/mailreaders/imapfilter.nix +++ b/pkgs/applications/networking/mailreaders/imapfilter.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "imapfilter"; - version = "2.8.4"; + version = "2.8.5"; src = fetchFromGitHub { owner = "lefcha"; repo = "imapfilter"; rev = "v${finalAttrs.version}"; - sha256 = "sha256-ZuyRnN4khdE+z54Ag0b/coiGdUzn/9yT49GpDI4kr8Q="; + sha256 = "sha256-EiYVkEyOrgX2WwWzFyQcuVheYZs1s3CGl01fMwtXBog="; }; makeFlags = [ "SSLCAFILE=/etc/ssl/certs/ca-bundle.crt" From fa7af7fa557a1f95875d25d2bf1f3edc84b448f8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 11:18:30 +0000 Subject: [PATCH 48/66] sql-studio: 0.1.50 -> 0.1.51 --- pkgs/by-name/sq/sql-studio/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/sq/sql-studio/package.nix b/pkgs/by-name/sq/sql-studio/package.nix index 6b6a2dc5a31a..24d603e9232d 100644 --- a/pkgs/by-name/sq/sql-studio/package.nix +++ b/pkgs/by-name/sq/sql-studio/package.nix @@ -9,13 +9,13 @@ }: let pname = "sql-studio"; - version = "0.1.50"; + version = "0.1.51"; src = fetchFromGitHub { owner = "frectonz"; repo = "sql-studio"; tag = version; - hash = "sha256-sXlOnqzi3N+56sdJdkpcVq1mKgdhhu0KdU1Xdoyr10w="; + hash = "sha256-LooRM7KlNmRHG5M18MLnV+hraQ1kRVEZp2GVYnwNScI="; }; ui = buildNpmPackage { @@ -35,7 +35,7 @@ in rustPlatform.buildRustPackage { inherit pname version src; - cargoHash = "sha256-+hf0GtD5lfa//JYFQZFvO+2m9FgOn9jV6NQ0rQejRXg="; + cargoHash = "sha256-SJiPVvRYRkMHprGXtObNVSsO//2VNTpouCB+qcXlbjc="; nativeBuildInputs = [ pkg-config ]; From 55dec2a4a7f40680a60031468942c7b57ea112fd Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Tue, 11 Feb 2025 16:43:27 +0100 Subject: [PATCH 49/66] zoxide: add nushell-integration test --- pkgs/by-name/zo/zoxide/package.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pkgs/by-name/zo/zoxide/package.nix b/pkgs/by-name/zo/zoxide/package.nix index ac09a23bd3b1..877ea5379d04 100644 --- a/pkgs/by-name/zo/zoxide/package.nix +++ b/pkgs/by-name/zo/zoxide/package.nix @@ -3,10 +3,14 @@ stdenv, fetchFromGitHub, rustPlatform, + runCommandLocal, withFzf ? true, fzf, installShellFiles, libiconv, + testers, + nushell, + zoxide, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -31,6 +35,28 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-4BXZ5NnwY2izzJFkPkECKvpuyFWfZ2CguybDDk0GDU0="; + passthru = { + tests = { + version = testers.testVersion { + package = zoxide; + }; + nushell-integration = + runCommandLocal "test-${zoxide.name}-nushell-integration" + { + nativeBuildInputs = [ + nushell + zoxide + ]; + meta.platforms = nushell.meta.platforms; + } + '' + mkdir $out + nu -c "zoxide init nushell | save zoxide.nu" + nu -c "source zoxide.nu" + ''; + }; + }; + postInstall = '' installManPage man/man*/* installShellCompletion --cmd zoxide \ From 814997b6f77d2290c70258042bce74b1a6fa2593 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 12:43:42 +0000 Subject: [PATCH 50/66] forgejo-cli: 0.4.0 -> 0.4.1 --- pkgs/by-name/fo/forgejo-cli/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fo/forgejo-cli/package.nix b/pkgs/by-name/fo/forgejo-cli/package.nix index c3fb383b9465..1a80b2158a99 100644 --- a/pkgs/by-name/fo/forgejo-cli/package.nix +++ b/pkgs/by-name/fo/forgejo-cli/package.nix @@ -13,16 +13,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "forgejo-cli"; - version = "0.4.0"; + version = "0.4.1"; src = fetchFromCodeberg { owner = "forgejo-contrib"; repo = "forgejo-cli"; tag = "v${finalAttrs.version}"; - hash = "sha256-EJr/7me2wiOBSFw0VFSxyqnQKy3kpOMGJmxD7wxmWPc="; + hash = "sha256-tWb5h0i3Z8qSHqFL7FofwljMdXgV1Z6x8ojut9pm6Yg="; }; - cargoHash = "sha256-DpQt76o3ZnIJwHR1DQ/mn9f8XiWHKVB4h3NNbvCIMZ8="; + cargoHash = "sha256-7gCzU7U8kIxWnwLksXIUkgfFWWjZ/0QiaHnCD+H8sGQ="; nativeBuildInputs = [ pkg-config From 9293ccd2fffa88c73dc0efc3dcfa9f82a1967ec9 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Sat, 14 Mar 2026 00:24:24 +0100 Subject: [PATCH 51/66] duckstation: drop --- doc/release-notes/rl-2605.section.md | 2 + .../du/duckstation/cubeb-remove-vendor.patch | 33 -- .../du/duckstation/git-version-info.patch | 20 -- pkgs/by-name/du/duckstation/package.nix | 340 ------------------ pkgs/by-name/du/duckstation/sources.json | 19 - pkgs/by-name/du/duckstation/update.sh | 75 ---- pkgs/top-level/aliases.nix | 1 + 7 files changed, 3 insertions(+), 487 deletions(-) delete mode 100644 pkgs/by-name/du/duckstation/cubeb-remove-vendor.patch delete mode 100644 pkgs/by-name/du/duckstation/git-version-info.patch delete mode 100644 pkgs/by-name/du/duckstation/package.nix delete mode 100644 pkgs/by-name/du/duckstation/sources.json delete mode 100755 pkgs/by-name/du/duckstation/update.sh diff --git a/doc/release-notes/rl-2605.section.md b/doc/release-notes/rl-2605.section.md index 91cf656d2938..90c097d532fa 100644 --- a/doc/release-notes/rl-2605.section.md +++ b/doc/release-notes/rl-2605.section.md @@ -95,6 +95,8 @@ - `spoof` has been removed, as there are many issues upstream with it working on modern OS versions, and it appears to be unmaintained. +- `duckstation` package has been removed, as it was requested by upstream and build source were changed to be incompatible with NixOS. + - `nodePackages.coc-go` and `nodePackages.coc-tsserver`, along with their vim plugins, have been removed from nixpkgs due to being unmaintained. - `nodePackages.wavedrom-cli` has been removed, as it was unmaintained within nixpkgs. diff --git a/pkgs/by-name/du/duckstation/cubeb-remove-vendor.patch b/pkgs/by-name/du/duckstation/cubeb-remove-vendor.patch deleted file mode 100644 index 7199e4be85b4..000000000000 --- a/pkgs/by-name/du/duckstation/cubeb-remove-vendor.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt -index 633267c66..b5ab0904c 100644 ---- a/dep/CMakeLists.txt -+++ b/dep/CMakeLists.txt -@@ -25,9 +25,8 @@ add_subdirectory(rcheevos EXCLUDE_FROM_ALL) - disable_compiler_warnings_for_target(rcheevos) - add_subdirectory(rapidyaml EXCLUDE_FROM_ALL) - disable_compiler_warnings_for_target(rapidyaml) --add_subdirectory(cubeb EXCLUDE_FROM_ALL) --disable_compiler_warnings_for_target(cubeb) --disable_compiler_warnings_for_target(speex) -+find_package(cubeb REQUIRED GLOBAL) -+add_library(cubeb ALIAS cubeb::cubeb) - - if(ENABLE_OPENGL) - add_subdirectory(glad EXCLUDE_FROM_ALL) -diff --git a/src/util/cubeb_audio_stream.cpp b/src/util/cubeb_audio_stream.cpp -index 52c7299c9..e20b52426 100644 ---- a/src/util/cubeb_audio_stream.cpp -+++ b/src/util/cubeb_audio_stream.cpp -@@ -262,9 +262,9 @@ std::vector> AudioStream::GetCubebDriverName - std::vector> names; - names.emplace_back(std::string(), TRANSLATE_STR("AudioStream", "Default")); - -- const char** cubeb_names = cubeb_get_backend_names(); -- for (u32 i = 0; cubeb_names[i] != nullptr; i++) -- names.emplace_back(cubeb_names[i], cubeb_names[i]); -+ cubeb_backend_names backends = cubeb_get_backend_names(); -+ for (u32 i = 0; i < backends.count; i++) -+ names.emplace_back(backends.names[i], backends.names[i]); - return names; - } - diff --git a/pkgs/by-name/du/duckstation/git-version-info.patch b/pkgs/by-name/du/duckstation/git-version-info.patch deleted file mode 100644 index 6708d98afcf2..000000000000 --- a/pkgs/by-name/du/duckstation/git-version-info.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/src/scmversion/gen_scmversion.sh b/src/scmversion/gen_scmversion.sh -index 0f8fa4239..2cc91a4a8 100755 ---- a/src/scmversion/gen_scmversion.sh -+++ b/src/scmversion/gen_scmversion.sh -@@ -10,11 +10,11 @@ else - fi - - --HASH=$(git rev-parse HEAD) --BRANCH=$(git rev-parse --abbrev-ref HEAD | tr -d '\r\n') --TAG=$(git describe --dirty | tr -d '\r\n') -+HASH="@gitHash@" -+BRANCH="@gitBranch@" -+TAG="@gitTag@" - VERSION=$(echo "${TAG}" | sed -E 's/-g[0-9a-f]+//') --DATE=$(git log -1 --date=iso8601-strict --format=%cd) -+DATE="@gitDate@" - - cd $CURDIR - diff --git a/pkgs/by-name/du/duckstation/package.nix b/pkgs/by-name/du/duckstation/package.nix deleted file mode 100644 index c6c7bef1f66d..000000000000 --- a/pkgs/by-name/du/duckstation/package.nix +++ /dev/null @@ -1,340 +0,0 @@ -{ - lib, - llvmPackages, - stdenvNoCC, - fetchFromGitHub, - cmake, - pkg-config, - ninja, - extra-cmake-modules, - wayland-scanner, - qt6, - sdl3, - zstd, - libwebp, - zlib, - libpng, - libjpeg, - freetype, - plutosvg, - cpuinfo, - soundtouch, - rapidjson, - libzip, - curl, - libx11, - wayland, - shaderc, - spirv-cross, - udev, - libbacktrace, - ffmpeg-headless, - cubeb, - fetchurl, - zip, - unzip, -}: - -let - passthru = { - updateScript = ./update.sh; - }; - - meta = { - description = "Fast PlayStation 1 emulator for x86-64/AArch32/AArch64/RV64"; - longDescription = '' - DISCLAIMER: This is an **unofficial** package, do not report any - issues to duckstation developers. Instead, please report them to - or use the officially - supported platform build at or other - upstream-approved distribution mechanism not listed here. - ''; - homepage = "https://duckstation.org"; - license = lib.licenses.cc-by-nc-nd-40; - maintainers = [ ]; - }; - - pkgSources = lib.importJSON ./sources.json; - - linuxDrv = llvmPackages.stdenv.mkDerivation (finalAttrs: { - pname = "duckstation"; - version = "0.1-10413"; - - src = fetchFromGitHub { - owner = "stenzek"; - repo = "duckstation"; - tag = "v${finalAttrs.version}"; - deepClone = true; - hash = "sha256-ytJ0vaXXbbgSmZ42gQPlQY7p30hz7hx/+09TSvCKyEg="; - - postFetch = '' - cd $out - mkdir -p .nixpkgs-auxfiles/ - git rev-parse HEAD > .nixpkgs-auxfiles/git_hash - git rev-parse --abbrev-ref HEAD | tr -d '\r\n' > .nixpkgs-auxfiles/git_branch - git describe | tr -d '\r\n' > .nixpkgs-auxfiles/git_tag - git log -1 --date=iso8601-strict --format=%cd > .nixpkgs-auxfiles/git_date - rm -rf .git - ''; - }; - - patches = [ - ./cubeb-remove-vendor.patch - ./git-version-info.patch - ]; - - postPatch = - # Fixes compilation error with nixpkgs libapng - '' - substituteInPlace src/util/animated_image.cpp \ - --replace-fail "png_write_frame_head(png_ptr, info_ptr," \ - "png_write_frame_head(png_ptr, info_ptr, 0," - '' - # Fills in git-info obtained in the `postFetch` step for version - # information in the UI - + '' - gitHash=$(cat .nixpkgs-auxfiles/git_hash) \ - gitBranch=$(cat .nixpkgs-auxfiles/git_branch) \ - gitTag=$(cat .nixpkgs-auxfiles/git_tag) \ - gitDate=$(cat .nixpkgs-auxfiles/git_date) \ - substituteAllInPlace src/scmversion/gen_scmversion.sh - ''; - - vendorDiscordRPC = llvmPackages.stdenv.mkDerivation { - pname = "discord-rpc-duckstation"; - inherit (finalAttrs) version; - src = fetchFromGitHub { - owner = "stenzek"; - repo = "discord-rpc"; - inherit (pkgSources.discord_rpc) rev hash; - }; - nativeBuildInputs = [ cmake ]; - buildInputs = [ rapidjson ]; - meta = { - license = lib.licenses.mit; - platforms = lib.platforms.linux; - }; - }; - - vendorShaderc = shaderc.overrideAttrs (oldAttrs: { - pname = "shaderc-duckstation"; - inherit (finalAttrs) version; - src = fetchFromGitHub { - owner = "stenzek"; - repo = "shaderc"; - inherit (pkgSources.shaderc) rev hash; - }; - - patches = (oldAttrs.patches or [ ]); - cmakeFlags = (oldAttrs.cmakeFlags or [ ]) ++ [ - (lib.cmakeBool "SHADERC_SKIP_EXAMPLES" true) - (lib.cmakeBool "SHADERC_SKIP_TESTS" true) - ]; - outputs = [ - "out" - "lib" - "dev" - ]; - postFixup = null; - }); - - soundtouch = llvmPackages.stdenv.mkDerivation { - inherit (soundtouch) - pname - version - src - meta - ; - nativeBuildInputs = [ cmake ]; - postPatch = '' - substituteInPlace CMakeLists.txt \ - --replace-fail "\''${prefix}/''${CMAKE_INSTALL_LIBDIR}" \ - "''${CMAKE_INSTALL_FULL_LIBDIR}" - ''; - - cmakeFlags = [ - (lib.cmakeBool "SOUNDTOUCH_DLL" true) - ]; - }; - - chtdb = stdenvNoCC.mkDerivation { - pname = "chtdb-duckstation"; - version = "0-unstable-${pkgSources.chtdb.date}"; - - src = fetchFromGitHub { - owner = "duckstation"; - repo = "chtdb"; - inherit (pkgSources.chtdb) rev hash; - }; - - nativeBuildInputs = [ - zip - ]; - - buildPhase = '' - runHook preBuild - - pushd cheats - zip -r cheats.zip *.cht - popd - pushd patches - zip -r patches.zip *.cht - popd - - runHook postBuild - ''; - - installPhase = '' - runHook preInstall - - install -Dm644 cheats/cheats.zip -t $out/lib/duckstation - install -Dm644 patches/patches.zip -t $out/lib/duckstation - - install -Dm644 LICENSE -t $out/share/doc/duckstation - install -Dm644 README.md -t $out/share/doc/duckstation - - runHook postInstall - ''; - - meta = { - description = "Collection of cheats and patches for PSX games"; - longDescription = '' - Collection of cheats and patches for PSX games, primarily intended for - use with the DuckStation emulator, but can also be used by other - emulators that support GameShark codes. - - Patches show in the UI in a separate section to cheats, and are - intended for modifications to the game that do not provide any - "advantage" to the player, including: - - - Improving performance. - - Fixing game-breaking bugs. - - Unlocking the frame rate (e.g. "60 FPS patches"). - - Widescreen rendering where the built-in widescreen - rendering rendering is insufficient. - ''; - license = lib.licenses.mit; - inherit (meta) maintainers; - platforms = lib.platforms.all; - }; - }; - - preConfigure = '' - cp ${finalAttrs.chtdb}/lib/duckstation/cheats.zip data/resources - cp ${finalAttrs.chtdb}/lib/duckstation/patches.zip data/resources - ''; - - nativeBuildInputs = [ - cmake - pkg-config - ninja - extra-cmake-modules - wayland-scanner - qt6.wrapQtAppsHook - qt6.qttools - ]; - - buildInputs = [ - sdl3 - zstd - libwebp - zlib - libpng - libjpeg - freetype - plutosvg - cpuinfo - libzip - curl - libx11 - wayland - spirv-cross - qt6.qtbase - udev - libbacktrace - ffmpeg-headless - cubeb - ] - ++ [ - finalAttrs.vendorDiscordRPC - finalAttrs.vendorShaderc - finalAttrs.soundtouch - ]; - - installPhase = '' - runHook preInstall - - mkdir -p $out/{lib,bin,share/{applications,icons/hicolor/512x512/apps}} - cp -r bin $out/lib/duckstation - ln -s $out/lib/duckstation/duckstation-qt $out/bin/duckstation-qt - - pushd .. - install -Dm644 scripts/packaging/org.duckstation.DuckStation.desktop \ - -t $out/share/applications - install -Dm644 scripts/packaging/org.duckstation.DuckStation.png \ - -t $out/share/icons/hicolor/512x512/apps - install -Dm644 LICENSE -t $out/share/doc/duckstation - install -Dm644 README.* -t $out/share/doc/duckstation - install -Dm644 CONTRIBUTORS.md -t $out/share/doc/duckstation - popd - - runHook postInstall - ''; - - qtWrapperArgs = [ - "--prefix LD_LIBRARY_PATH : ${ - (lib.makeLibraryPath [ - ffmpeg-headless - finalAttrs.vendorShaderc - ]) - }" - ]; - - inherit passthru; - - meta = meta // { - mainProgram = "duckstation-qt"; - platforms = lib.platforms.linux; - }; - }); - - darwinDrv = stdenvNoCC.mkDerivation (finalAttrs: { - pname = "duckstation"; - version = pkgSources.duckstation.version; - - src = fetchurl { - url = "https://github.com/stenzek/duckstation/releases/download/v${finalAttrs.version}/duckstation-mac-release.zip"; - hash = pkgSources.duckstation.hash_darwin; - }; - - nativeBuildInputs = [ unzip ]; - - dontPatch = true; - dontConfigure = true; - dontBuild = true; - - sourceRoot = "."; - - installPhase = '' - runHook preInstall - - mkdir -p $out/Applications - cp -r DuckStation.app $out/Applications/DuckStation.app - - runHook postInstall - ''; - - inherit passthru; - - meta = meta // { - sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - platforms = lib.platforms.darwin; - }; - }); -in -if stdenvNoCC.hostPlatform.isLinux then - linuxDrv -else if stdenvNoCC.hostPlatform.isDarwin then - darwinDrv -else - throw "duckstation is not supported on ${stdenvNoCC.hostPlatform.system}." diff --git a/pkgs/by-name/du/duckstation/sources.json b/pkgs/by-name/du/duckstation/sources.json deleted file mode 100644 index ced0c94438c6..000000000000 --- a/pkgs/by-name/du/duckstation/sources.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "duckstation": { - "version": "0.1-10413", - "hash_darwin": "sha256-TGXLpbTFkrFQ42LpRx0TKBsbdIRuYtseR+v3W/t9M10=" - }, - "discord_rpc": { - "rev": "cc59d26d1d628fbd6527aac0ac1d6301f4978b92", - "hash": "sha256-8xXcx5w36eiJqtWm6qQfhEHgchVJbhP/jR94eMNNjHU=" - }, - "shaderc": { - "rev": "85cd26cc38e3e8b5e3c649f4551900ee330d6552", - "hash": "sha256-7PVrpS69pI5mi4aM1eNTAzZCMq6vuVl3mhTrc4U942w=" - }, - "chtdb": { - "date": "2025-12-31", - "rev": "696e985e027d8d43a84c65bd349802dfe0944674", - "hash": "sha256-4t0x0YYp7rURBqVWyMZpnOATpIYoILQagyMASaSWKWM=" - } -} diff --git a/pkgs/by-name/du/duckstation/update.sh b/pkgs/by-name/du/duckstation/update.sh deleted file mode 100755 index 770a3d7f697d..000000000000 --- a/pkgs/by-name/du/duckstation/update.sh +++ /dev/null @@ -1,75 +0,0 @@ -#!/usr/bin/env nix-shell -#!nix-shell -i bash -p coreutils nix nix-update curl jq -# shellcheck shell=bash - -set -euo pipefail -location="$(dirname "${BASH_SOURCE[0]}")" - -echo "checking for new tagged release (github:stenzek/duckstation)..." -old_version=$(nix --extra-experimental-features nix-command eval --raw -f . duckstation.src.tag) -new_version=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} "https://api.github.com/repos/stenzek/duckstation/tags?per_page=1" | jq -r '.[0].name') - -if [[ $old_version == "$new_version" ]]; then - echo "'duckstation' is up-to-date ($old_version == $new_version)" - exit 0 -fi - -echo "Updating duckstation from $old_version -> $new_version" -nix-update --src-only --version "$new_version" duckstation -duckstation_darwin_hash=$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url --type sha256 "https://github.com/stenzek/duckstation/releases/download/${new_version}/duckstation-mac-release.zip")") - -echo "Vendor library update..." -duckstation_storepath=$(nix --extra-experimental-features "nix-command flakes" flake prefetch github:stenzek/duckstation/"$new_version" --json | jq -r '.storePath') -pinned_versions=$duckstation_storepath/scripts/deps/versions - -echo "Using pinned discord_rpc..." -discord_rpc_rev=$(grep "DISCORD_RPC_COMMIT=" "$pinned_versions" | sed 's|.*=||g') -discord_rpc_hash=$(nix --extra-experimental-features "nix-command flakes" \ - flake prefetch github:stenzek/discord-rpc/"$discord_rpc_rev" --json | - jq -r '.hash') - -echo "Using pinned shaderc..." -shaderc_rev=$(grep "SHADERC_COMMIT=" "$pinned_versions" | sed 's|.*=||g') -shaderc_hash=$(nix --extra-experimental-features "nix-command flakes" flake prefetch github:stenzek/shaderc/"$shaderc_rev" --json | jq -r '.hash') - -echo "Fetching latest chtdb commit..." -chtdb_json=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} "https://api.github.com/repos/duckstation/chtdb/commits?per_page=1") -chtdb_rev=$(echo "$chtdb_json" | jq -r '.[0].sha') -chtdb_date=$(echo "$chtdb_json" | jq -r '.[0].commit.author.date') -chtdb_hash=$(nix --extra-experimental-features "nix-command flakes" \ - flake prefetch github:duckstation/chtdb/"$chtdb_rev" --json | - jq -r '.hash') - -echo "Regenerating '""$location""/sources.json'" -JSON=$( - jq --null-input \ - --arg new_version "${new_version:1}" \ - --arg duckstation_darwin_hash "$duckstation_darwin_hash" \ - --arg discord_rpc_rev "$discord_rpc_rev" \ - --arg discord_rpc_hash "$discord_rpc_hash" \ - --arg shaderc_rev "$shaderc_rev" \ - --arg shaderc_hash "$shaderc_hash" \ - --arg chtdb_rev "$chtdb_rev" \ - --arg chtdb_date "${chtdb_date::10}" \ - --arg chtdb_hash "$chtdb_hash" \ - '{ "duckstation": { - "version": $new_version, - "hash_darwin": $duckstation_darwin_hash - }, - "discord_rpc": { - "rev": $discord_rpc_rev, - "hash": $discord_rpc_hash - }, - "shaderc": { - "rev": $shaderc_rev, - "hash": $shaderc_hash - }, - "chtdb": { - "date": $chtdb_date, - "rev": $chtdb_rev, - "hash": $chtdb_hash - } - }' -) - -echo "$JSON" | jq >"$location"/sources.json diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index e6a6c584af00..b889e228de73 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -612,6 +612,7 @@ mapAliases { dtv-scan-tables_linuxtv = throw "'dtv-scan-tables_linuxtv' has been renamed to/replaced by 'dtv-scan-tables'"; # Converted to throw 2025-10-27 dtv-scan-tables_tvheadend = throw "'dtv-scan-tables_tvheadend' has been renamed to/replaced by 'dtv-scan-tables'"; # Converted to throw 2025-10-27 du-dust = throw "'du-dust' has been renamed to/replaced by 'dust'"; # Converted to throw 2025-10-27 + duckstation = throw "'duckstation' has been removed following upstream request. Please use the appimage instead"; # Added 2026-03-14 duckstation-bin = duckstation; # Added 2025-09-20 dumb = throw "'dumb' has been archived by upstream. Upstream recommends libopenmpt as a replacement."; # Added 2025-09-14 dump1090 = throw "'dump1090' has been renamed to/replaced by 'dump1090-fa'"; # Converted to throw 2025-10-27 From bd34c3ee3d697bdb93331a2f7568e4f750a4dbbd Mon Sep 17 00:00:00 2001 From: Harinn Date: Mon, 16 Mar 2026 21:30:42 +0700 Subject: [PATCH 52/66] nanomq: 0.24.10 -> 0.24.11 --- pkgs/by-name/na/nanomq/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/na/nanomq/package.nix b/pkgs/by-name/na/nanomq/package.nix index 18ab5746dbd1..79ffc1fee52e 100644 --- a/pkgs/by-name/na/nanomq/package.nix +++ b/pkgs/by-name/na/nanomq/package.nix @@ -49,13 +49,13 @@ let in stdenv.mkDerivation (finalAttrs: { pname = "nanomq"; - version = "0.24.10"; + version = "0.24.11"; src = fetchFromGitHub { owner = "emqx"; repo = "nanomq"; tag = finalAttrs.version; - hash = "sha256-2laH4qJo4sQtjsUDEljUoipAXs+LRH+xmOP4a0zz1Y8="; + hash = "sha256-I2SLc/KbkBvqbbWuLr8ARmmg4DeE7ZbTqcM1tw8WhwQ="; fetchSubmodules = true; }; From 8e39e5cfbf66e7827cc93b8dacc3a490353a2c2a Mon Sep 17 00:00:00 2001 From: Harinn Date: Mon, 16 Mar 2026 21:32:44 +0700 Subject: [PATCH 53/66] nanomq: use nix-update-script --- pkgs/by-name/na/nanomq/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/na/nanomq/package.nix b/pkgs/by-name/na/nanomq/package.nix index 79ffc1fee52e..fe21998606af 100644 --- a/pkgs/by-name/na/nanomq/package.nix +++ b/pkgs/by-name/na/nanomq/package.nix @@ -13,6 +13,7 @@ zeromq, flex, bison, + nix-update-script, # for tests python3, @@ -120,6 +121,8 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstallCheck ''; + passthru.updateScript = nix-update-script { }; + passthru.tests = { withInstallChecks = finalAttrs.finalPackage.overrideAttrs (_: { doInstallCheck = true; From a72d0baad6ee19a34ffc9cf9b1cdda925c3df7c0 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 16 Mar 2026 16:37:04 +0200 Subject: [PATCH 54/66] imapfilter: move to pkgs/by-name --- .../imapfilter.nix => by-name/im/imapfilter/package.nix} | 0 pkgs/top-level/all-packages.nix | 4 ---- 2 files changed, 4 deletions(-) rename pkgs/{applications/networking/mailreaders/imapfilter.nix => by-name/im/imapfilter/package.nix} (100%) diff --git a/pkgs/applications/networking/mailreaders/imapfilter.nix b/pkgs/by-name/im/imapfilter/package.nix similarity index 100% rename from pkgs/applications/networking/mailreaders/imapfilter.nix rename to pkgs/by-name/im/imapfilter/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 223949269fe7..7a78ee9f111e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10194,10 +10194,6 @@ with pkgs; taxi-cli = with python3Packages; toPythonApplication taxi; - imapfilter = callPackage ../applications/networking/mailreaders/imapfilter.nix { - lua = lua5; - }; - mupdf-headless = mupdf.override { enableX11 = false; enableGL = false; From 2a7e18fbdd5bfe9088437b260b84340c34ed8e41 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 14:48:58 +0000 Subject: [PATCH 55/66] python3Packages.pyfirefly: 0.1.14 -> 0.1.15 --- pkgs/development/python-modules/pyfirefly/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyfirefly/default.nix b/pkgs/development/python-modules/pyfirefly/default.nix index 6aef14d4832d..45ecc9622d72 100644 --- a/pkgs/development/python-modules/pyfirefly/default.nix +++ b/pkgs/development/python-modules/pyfirefly/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "pyfirefly"; - version = "0.1.14"; + version = "0.1.15"; pyproject = true; src = fetchFromGitHub { owner = "erwindouna"; repo = "pyfirefly"; tag = "v${version}"; - hash = "sha256-MS3iDyH7rR/fsIVVEvhJjaNvjT81r6ReSzS6cqjChR8="; + hash = "sha256-vB/2CJMr5UEkANmJYCSA8igDCTYX0DFitDK3RFr68aE="; }; build-system = [ hatchling ]; From cd1fe6dd1a1deff37127290ff3f3e58094a88d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 16 Mar 2026 08:01:09 -0700 Subject: [PATCH 56/66] python3Packages.onedrive-personal-sdk: 0.1.6 -> 0.1.7 Diff: https://github.com/zweckj/onedrive-personal-sdk/compare/v0.1.6...v0.1.7 Changelog: https://github.com/zweckj/onedrive-personal-sdk/releases/tag/v0.1.7 --- .../python-modules/onedrive-personal-sdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/onedrive-personal-sdk/default.nix b/pkgs/development/python-modules/onedrive-personal-sdk/default.nix index ee2fbd18f4a8..a8c0e4075e5b 100644 --- a/pkgs/development/python-modules/onedrive-personal-sdk/default.nix +++ b/pkgs/development/python-modules/onedrive-personal-sdk/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "onedrive-personal-sdk"; - version = "0.1.6"; + version = "0.1.7"; pyproject = true; src = fetchFromGitHub { owner = "zweckj"; repo = "onedrive-personal-sdk"; tag = "v${version}"; - hash = "sha256-vNC7fXsTVCYizQnucyWOanYRoDCTfCfGD0zxGyigizk="; + hash = "sha256-V95lfq8GnuitdFbY8MPpX0kyvj8Gx24W2NFeKp0FsSo="; }; build-system = [ setuptools ]; From 38e414aa240fea9922fa42281e8e61893007be5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 16 Mar 2026 08:05:34 -0700 Subject: [PATCH 57/66] python3Packages.ical: 13.2.1 -> 13.2.2 Diff: https://github.com/allenporter/ical/compare/13.2.1...13.2.2 Changelog: https://github.com/allenporter/ical/releases/tag/13.2.2 --- pkgs/development/python-modules/ical/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ical/default.nix b/pkgs/development/python-modules/ical/default.nix index 719cdc343263..8e1aed5d963c 100644 --- a/pkgs/development/python-modules/ical/default.nix +++ b/pkgs/development/python-modules/ical/default.nix @@ -15,14 +15,14 @@ buildPythonPackage (finalAttrs: { pname = "ical"; - version = "13.2.1"; + version = "13.2.2"; pyproject = true; src = fetchFromGitHub { owner = "allenporter"; repo = "ical"; tag = finalAttrs.version; - hash = "sha256-SSOonK+iFD3JT9aTceyM/nHiGrp3/7ud8NLMXsgqlI8="; + hash = "sha256-7EKnwfXRU7hzFVre5EVil8/HN+XnCh2qz0BF69sLDHc="; }; build-system = [ setuptools ]; From 57b0f1c5dccd4e38182a8ab804872041351a7dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 16 Mar 2026 08:08:26 -0700 Subject: [PATCH 58/66] python3Packages.pychromecast: 14.0.9 -> 14.0.10 Diff: https://github.com/home-assistant-libs/pychromecast/compare/14.0.9...14.0.10 Changelog: https://github.com/home-assistant-libs/pychromecast/releases/tag/14.0.10 --- pkgs/development/python-modules/pychromecast/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pychromecast/default.nix b/pkgs/development/python-modules/pychromecast/default.nix index f9f8bb47b0bd..13876af9da69 100644 --- a/pkgs/development/python-modules/pychromecast/default.nix +++ b/pkgs/development/python-modules/pychromecast/default.nix @@ -10,20 +10,20 @@ buildPythonPackage rec { pname = "pychromecast"; - version = "14.0.9"; + version = "14.0.10"; pyproject = true; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = "pychromecast"; tag = version; - hash = "sha256-SpoVgXJV/9SVAcZXfeqpB3jkt9UUWcY9NBDGeIFhh4w="; + hash = "sha256-m9rucHSiApT0Xqkf4sjVRehcGGgvbaoGgbT/s3SLxKI="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "setuptools>=65.6,<81.0" setuptools \ - --replace-fail "wheel>=0.37.1,<0.46.0" wheel + --replace-fail "setuptools>=65.6,<83.0" setuptools \ + --replace-fail "wheel>=0.37.1,<0.47.0" wheel ''; build-system = [ setuptools ]; From 333043cccaa73abecbf99edeeb7e1667fa84c6de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 16 Mar 2026 08:12:35 -0700 Subject: [PATCH 59/66] python3Packages.pyjvcprojector: 2.0.1 -> 2.0.3 Diff: https://github.com/SteveEasley/pyjvcprojector/compare/v2.0.1...v2.0.3 Changelog: https://github.com/SteveEasley/pyjvcprojector/releases/tag/v2.0.3 --- pkgs/development/python-modules/pyjvcprojector/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyjvcprojector/default.nix b/pkgs/development/python-modules/pyjvcprojector/default.nix index b7bd3c02c849..3af5ddde1e5e 100644 --- a/pkgs/development/python-modules/pyjvcprojector/default.nix +++ b/pkgs/development/python-modules/pyjvcprojector/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "pyjvcprojector"; - version = "2.0.1"; + version = "2.0.3"; pyproject = true; src = fetchFromGitHub { owner = "SteveEasley"; repo = "pyjvcprojector"; tag = "v${version}"; - hash = "sha256-GKtBAW7opa6EQ+O3XfAi7D0V2KLWf+c+ECpBLbgVA9w="; + hash = "sha256-AXBayuGR8FxamyNMXzMO0sLaQNEmxkSbn/dcZxmLNG4="; }; build-system = [ setuptools ]; From f85416ee5f2ea1b308214285d44fdf78cb0b7713 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 16 Mar 2026 08:16:48 -0700 Subject: [PATCH 60/66] python3Packages.pysmartthings: 3.6.1 -> 3.7.0 Diff: https://github.com/andrewsayre/pysmartthings/compare/v3.6.1...v3.7.0 Changelog: https://github.com/andrewsayre/pysmartthings/releases/tag/v3.7.0 --- pkgs/development/python-modules/pysmartthings/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysmartthings/default.nix b/pkgs/development/python-modules/pysmartthings/default.nix index e7c074eca5d7..4d6b7d427064 100644 --- a/pkgs/development/python-modules/pysmartthings/default.nix +++ b/pkgs/development/python-modules/pysmartthings/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "pysmartthings"; - version = "3.6.1"; + version = "3.7.0"; pyproject = true; disabled = pythonOlder "3.12"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "andrewsayre"; repo = "pysmartthings"; tag = "v${version}"; - hash = "sha256-tWWrx5gOpvTXBdlDfE13NwDTNemBW6kwhdSjHLJSXnw="; + hash = "sha256-PjvAdF1kvs0f7cViPjOYVziDRiI2DngwQk0E3zddgJE="; }; build-system = [ poetry-core ]; From 2df6431247ecc7b1fdca4a2de73bed375cbec817 Mon Sep 17 00:00:00 2001 From: Harinn Date: Mon, 16 Mar 2026 22:16:50 +0700 Subject: [PATCH 61/66] nextcloud-client: 4.0.6 -> 4.0.7 --- pkgs/by-name/ne/nextcloud-client/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ne/nextcloud-client/package.nix b/pkgs/by-name/ne/nextcloud-client/package.nix index 5190d8eef435..439941237a0d 100644 --- a/pkgs/by-name/ne/nextcloud-client/package.nix +++ b/pkgs/by-name/ne/nextcloud-client/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "nextcloud-client"; - version = "4.0.6"; + version = "4.0.7"; outputs = [ "out" @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { owner = "nextcloud-releases"; repo = "desktop"; tag = "v${finalAttrs.version}"; - hash = "sha256-GPNJ2zrHzHQgJvj1ANi6LYsTlkuc5splFAwC5XaR3+0="; + hash = "sha256-cur50O//LSZwXvbE7qeaNa0BgpdR25NIpCUF5NDDObY="; }; patches = [ From 94c37ca85964fd885a87331df38848c66f5716eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 16 Mar 2026 08:21:49 -0700 Subject: [PATCH 62/66] python3Packages.yalexs-ble: 3.2.7 -> 3.2.8 Diff: https://github.com/Yale-Libs/yalexs-ble/compare/v3.2.7...v3.2.8 Changelog: https://github.com/Yale-Libs/yalexs-ble/releases/tag/v3.2.8 --- pkgs/development/python-modules/yalexs-ble/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/yalexs-ble/default.nix b/pkgs/development/python-modules/yalexs-ble/default.nix index 5440e47e84a9..b3d15c3f04b1 100644 --- a/pkgs/development/python-modules/yalexs-ble/default.nix +++ b/pkgs/development/python-modules/yalexs-ble/default.nix @@ -15,14 +15,14 @@ buildPythonPackage (finalAttrs: { pname = "yalexs-ble"; - version = "3.2.7"; + version = "3.2.8"; pyproject = true; src = fetchFromGitHub { owner = "Yale-Libs"; repo = "yalexs-ble"; tag = "v${finalAttrs.version}"; - hash = "sha256-8Y2ix5ikrWC9taCHJhg8Irt3PGOiH+OzqLRSVW/q8Gs="; + hash = "sha256-Aq0tZp5h3vDxxoPYefSCoTqJV8dZYvMbITd3icdIMf8="; }; build-system = [ poetry-core ]; From e81731a8b52da0a686fd7a31f2903794c8f8ee0d Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 3 Mar 2026 12:33:57 +0100 Subject: [PATCH 63/66] ddev: make docker-buildx available --- .../ddev/cli-system-plugin-dir-from-env.patch | 31 +++++++++++++++++++ pkgs/by-name/dd/ddev/package.nix | 23 +++++++++++++- 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 pkgs/by-name/dd/ddev/cli-system-plugin-dir-from-env.patch diff --git a/pkgs/by-name/dd/ddev/cli-system-plugin-dir-from-env.patch b/pkgs/by-name/dd/ddev/cli-system-plugin-dir-from-env.patch new file mode 100644 index 000000000000..4e0705df3b2d --- /dev/null +++ b/pkgs/by-name/dd/ddev/cli-system-plugin-dir-from-env.patch @@ -0,0 +1,31 @@ +diff --git a/cli-plugins/manager/manager_unix.go b/cli-plugins/manager/manager_unix.go +index f546dc3849..5e3ae08dbc 100644 +--- a/cli-plugins/manager/manager_unix.go ++++ b/cli-plugins/manager/manager_unix.go +@@ -2,6 +2,11 @@ + + package manager + ++import ( ++ "os" ++ "path/filepath" ++) ++ + // defaultSystemPluginDirs are the platform-specific locations to search + // for plugins in order of preference. + // +@@ -12,9 +17,8 @@ + // 3. Platform-specific defaultSystemPluginDirs (as defined below). + // + // [ConfigFile.CLIPluginsExtraDirs]: https://pkg.go.dev/github.com/docker/cli@v26.1.4+incompatible/cli/config/configfile#ConfigFile.CLIPluginsExtraDirs +-var defaultSystemPluginDirs = []string{ +- "/usr/local/lib/docker/cli-plugins", +- "/usr/local/libexec/docker/cli-plugins", +- "/usr/lib/docker/cli-plugins", +- "/usr/libexec/docker/cli-plugins", ++var defaultSystemPluginDirs []string ++ ++func init() { ++ defaultSystemPluginDirs = filepath.SplitList(os.Getenv("DOCKER_CLI_PLUGIN_DIRS")) + } + diff --git a/pkgs/by-name/dd/ddev/package.nix b/pkgs/by-name/dd/ddev/package.nix index 513540ba3d6b..dba442165f7d 100644 --- a/pkgs/by-name/dd/ddev/package.nix +++ b/pkgs/by-name/dd/ddev/package.nix @@ -2,12 +2,22 @@ lib, stdenv, buildGoModule, + docker-buildx, fetchFromGitHub, installShellFiles, + makeBinaryWrapper, versionCheckHook, writableTmpDirAsHomeHook, }: +let + dockerCliPlugins = [ + docker-buildx + ]; + dockerCliPluginsDirs = lib.strings.concatStringsSep ":" ( + map (p: "${p}/libexec/docker/cli-plugins") dockerCliPlugins + ); +in buildGoModule (finalAttrs: { pname = "ddev"; version = "1.25.0"; @@ -19,7 +29,12 @@ buildGoModule (finalAttrs: { hash = "sha256-vRhFj2/lV34sDIDUxi2/zF9VJimhi6By6TQndl0O/Xg="; }; + postPatch = '' + (cd vendor/github.com/docker/cli && patch ${./cli-system-plugin-dir-from-env.patch}) + ''; + nativeBuildInputs = [ + makeBinaryWrapper installShellFiles ]; @@ -34,7 +49,13 @@ buildGoModule (finalAttrs: { # Tests need docker. doCheck = false; - postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' + postInstall = '' + # make buildx available, it is a docker plugin which docker-compose uses and thus DDEV requires + # https://github.com/NixOS/nixpkgs/blob/43fc054052db6ca5df042dcbe823740aa6c9a7c2/pkgs/applications/virtualization/docker/default.nix#L339 + wrapProgram $out/bin/ddev \ + --prefix DOCKER_CLI_PLUGIN_DIRS : "${dockerCliPluginsDirs}" + '' + + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' # DDEV will try to create $HOME/.ddev, so we set $HOME to a temporary # directory. export HOME=$(mktemp -d) From fa27904040dc2bdde823c65c123d78d4a47e3ae5 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 16:33:01 +0000 Subject: [PATCH 64/66] hyprviz: 0.8.3 -> 0.8.4 --- pkgs/by-name/hy/hyprviz/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/hy/hyprviz/package.nix b/pkgs/by-name/hy/hyprviz/package.nix index a796cbfabea1..59414bac320b 100644 --- a/pkgs/by-name/hy/hyprviz/package.nix +++ b/pkgs/by-name/hy/hyprviz/package.nix @@ -12,16 +12,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "hyprviz"; - version = "0.8.3"; + version = "0.8.4"; src = fetchFromGitHub { owner = "timasoft"; repo = "hyprviz"; tag = "v${finalAttrs.version}"; - hash = "sha256-73KcrKlnmdFNllRe7V3MO2FEn95G/pKtFNwRuIjCkew="; + hash = "sha256-UvFtZzQuUgqxY/pMfFaMEM/5VRJuMjSBOXiViwLB0TE="; }; - cargoHash = "sha256-gkLWqvd/4xVFkluv0Q16PjHUckHmMH9eoNxPU8qN+WE="; + cargoHash = "sha256-QuwxJw77ccUnvHcPNrPD5EwgZ3MJV4VvGb7MtUnYu88="; nativeBuildInputs = [ pkg-config From 2022d08a240169d9aedde75bb16ae90cd7a5bee8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 16:56:40 +0000 Subject: [PATCH 65/66] python3Packages.pyportainer: 1.0.33 -> 1.0.34 --- pkgs/development/python-modules/pyportainer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyportainer/default.nix b/pkgs/development/python-modules/pyportainer/default.nix index 30bba93702b0..9f5a55c41d8d 100644 --- a/pkgs/development/python-modules/pyportainer/default.nix +++ b/pkgs/development/python-modules/pyportainer/default.nix @@ -16,14 +16,14 @@ buildPythonPackage (finalAttrs: { pname = "pyportainer"; - version = "1.0.33"; + version = "1.0.34"; pyproject = true; src = fetchFromGitHub { owner = "erwindouna"; repo = "pyportainer"; tag = "v${finalAttrs.version}"; - hash = "sha256-DWfe/N/YMiD5/4CnkVnWhgWoLE5tx1iaU93hQdmwXSQ="; + hash = "sha256-qa+NbX8y/2bK3B7gHWuTeAKT0bTaZS2HbWS/75a8tcA="; }; build-system = [ hatchling ]; From e7584500e17c65dfd4b4ba78fa79313da2f05731 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 16 Mar 2026 17:06:33 +0000 Subject: [PATCH 66/66] framework-tool-tui: 0.8.0 -> 0.8.2 --- pkgs/by-name/fr/framework-tool-tui/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fr/framework-tool-tui/package.nix b/pkgs/by-name/fr/framework-tool-tui/package.nix index 023ee486b57b..47b40684aaea 100644 --- a/pkgs/by-name/fr/framework-tool-tui/package.nix +++ b/pkgs/by-name/fr/framework-tool-tui/package.nix @@ -7,16 +7,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "framework-tool-tui"; - version = "0.8.0"; + version = "0.8.2"; src = fetchFromGitHub { owner = "grouzen"; repo = "framework-tool-tui"; tag = "v${finalAttrs.version}"; - hash = "sha256-hTNSpjY0WkyXZpDGEM1eKQLFt/bhB5l/PSGd6bbDPAo="; + hash = "sha256-aB1VO6BCIGd3tWNWBytpvH6yr9+T6tw8I3P+ZYrNDQo="; }; - cargoHash = "sha256-SkZpYFu9yJX2qTeTNoCEFJP1jQNqfK7DQj3JlBCqDmo="; + cargoHash = "sha256-rl0TQERv7ykog8Eu9wj30oLEg9lqtVCVEFSAbeL1Zek="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ udev ];