Unverified Commit 7d8f4ede authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-nixos

parents f07e7af9 6aff6c5c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -55,6 +55,10 @@
  adding `pkg-config`, `xfce4-dev-tools`, and `wrapGAppsHook3` to your `nativeBuildInputs` and
  `--enable-maintainer-mode` to your `configureFlags`.

- `albert` has been updated to the version 34.0.5. This release redesigns the query system to support stateful asynchronous handlers and infinite scrolling, and adds internationalized tokenization.
  This update introduces several breaking changes: the Python plugin interface is now v5.0, the `PATH` plugin has been renamed to `Commandline`, and the QStylesheets-based widgets box model frontend has been removed.
  For more information read the [changelog for 34.0.0](https://albertlauncher.github.io/2026/01/19/albert-v34.0.0-released/).

- `cargo-codspeed` has been updated from `3.0.5` to `4.2.0`. Version `4.0.0` includes breaking changes. For more information read the [changelog for 4.0.0](https://github.com/CodSpeedHQ/codspeed-rust/releases/tag/v4.0.0).

- `corepack_latest` has been removed, as Corepack is no longer distributed with Node.js.
+5 −0
Original line number Diff line number Diff line
@@ -28037,6 +28037,11 @@
    githubId = 13259982;
    name = "Vanessa McHale";
  };
  vmfunc = {
    github = "vmfunc";
    githubId = 59031302;
    name = "vmfunc";
  };
  vncsb = {
    email = "viniciusbernardino1@hotmail.com";
    github = "vncsb";
+6 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ let
      // lib.optionalAttrs (i.matchSetting != null) {
        match_setting = i.matchSetting;
      }
      // lib.optionalAttrs (i.trim != null) { trim = i.trim; }
    ) cfg.ensureProfiles.secrets.entries;
  };
  nmFileSecretAgentConfigFile = toml.generate "config.toml" nmFileSecretAgentConfig;
@@ -108,6 +109,11 @@ in
                description = "file from which the secret value is read";
                type = lib.types.str;
              };
              trim = lib.mkOption {
                description = "whether leading and trailing whitespace should be stripped from the files content before being passed to NetworkManager";
                type = lib.types.nullOr lib.types.bool;
                default = null;
              };
            };
          }
        );
+6 −6
Original line number Diff line number Diff line
@@ -959,13 +959,13 @@
    "vendorHash": "sha256-OAd8SeTqTrH0kMoM2LsK3vM2PI23b3gl57FaJYM9hM0="
  },
  "newrelic_newrelic": {
    "hash": "sha256-SfUTt9Ag6pBC9a8rJERBCbccKgJYdNiI1UXoptZoYdw=",
    "hash": "sha256-R9xV26gr+jJnNm8hLl6xMdjSEm/U45Ph+IBAB8S4t5A=",
    "homepage": "https://registry.terraform.io/providers/newrelic/newrelic",
    "owner": "newrelic",
    "repo": "terraform-provider-newrelic",
    "rev": "v3.78.0",
    "rev": "v3.79.0",
    "spdx": "MPL-2.0",
    "vendorHash": "sha256-RyGnUzRkIR0XoEPc/cc+40QACAJhvOMENzJc1T0Yz40="
    "vendorHash": "sha256-fh0QEWSwdoWKED/39OBT5kMADbsUDvhJUYMfWR9P5os="
  },
  "ns1-terraform_ns1": {
    "hash": "sha256-pKdybFzTuuD6D76Uhuz+fLN+EmpDxUwjIWXYK6DRKOY=",
@@ -1031,13 +1031,13 @@
    "vendorHash": "sha256-ofzbDmivXgH1i1Gjhpyp0bk3FDs5SnxwoRuNAWyMqyI="
  },
  "opentelekomcloud_opentelekomcloud": {
    "hash": "sha256-Pco5/kiFOyqwjktDFgHgCtq/kVKshzZyp9cjT+mJYJs=",
    "hash": "sha256-14JxQBGvqU6K8PxkZFK7rEetCjN5lKLGXwAOnHSaZ2E=",
    "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud",
    "owner": "opentelekomcloud",
    "repo": "terraform-provider-opentelekomcloud",
    "rev": "v1.36.57",
    "rev": "v1.36.58",
    "spdx": "MPL-2.0",
    "vendorHash": "sha256-v7t3W7v38xw7M8r9rdx+9cTUT6FFY4x5ujkVYD7qThw="
    "vendorHash": "sha256-gUilhKLjGR1P4JkQ6zkBJQUvrUcVSJlO1yzJdu3hBFA="
  },
  "opsgenie_opsgenie": {
    "hash": "sha256-Y67kcg/ovvZc22l1CBz0Mqu7DAIit5F0jQNfQrl2EGI=",
+30 −26
Original line number Diff line number Diff line
# shellcheck shell=bash

addLinkDLLPaths() {
  addToSearchPath "LINK_DLL_FOLDERS" "$1/lib"
  addToSearchPath "LINK_DLL_FOLDERS" "$1/bin"
}

# shellcheck disable=SC2154
addEnvHooks "$targetOffset" addLinkDLLPaths

addOutputDLLPaths() {
@@ -24,16 +27,16 @@ _linkDeps() {
  local target="$1" dir="$2" check="$3"
  echo 'target:' "$target"
  local dll
    _dllDeps "$target" | while read dll; do
  _dllDeps "$target" | while read -r dll; do
    echo '  dll:' "$dll"
    if [[ -e "$dir/$dll" ]]; then continue; fi
    # Locate the DLL - it should be an *executable* file on $LINK_DLL_FOLDERS.
        local dllPath="$(PATH="$(dirname "$target"):$LINK_DLL_FOLDERS" type -P "$dll")"
        if [[ -z "$dllPath" ]]; then
    local dllPath
    if ! dllPath="$(PATH="$(dirname "$target"):$LINK_DLL_FOLDERS" type -P "$dll")"; then
      if [[ -z "$check" || -n "${allowedImpureDLLsMap[$dll]}" ]]; then
        continue
      fi
          echo unable to find $dll in $LINK_DLL_FOLDERS >&2
      echo unable to find "$dll" in "$LINK_DLL_FOLDERS" >&2
      exit 1
    fi
    echo '    linking to:' "$dllPath"
@@ -45,6 +48,7 @@ _linkDeps() {
}

linkDLLs() {
  # shellcheck disable=SC2154
  if [ ! -d "$prefix" ]; then return; fi
  (
    set -e
Loading