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

Merge master into staging-next

parents a9f580d6 0f8bab23
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -287,7 +287,6 @@ in
              ]
            )) "s"
          }://${cfg.domain}/";
          ui.static_use_hash = true;
          valkey.url = lib.mkIf cfg.redisCreateLocally "unix://${config.services.redis.servers.searx.unixSocket}";
        };
      };
+2 −2
Original line number Diff line number Diff line
@@ -16,14 +16,14 @@

buildGoModule rec {
  inherit pname;
  version = "2.11.0";
  version = "2.11.1";
  tags = lib.optionals enableGateway [ "gateway" ];

  src = fetchFromGitHub {
    owner = "kumahq";
    repo = "kuma";
    tag = version;
    hash = "sha256-NXhBwbazoi3DONWf5tuKKnXrIBHZ/lyL5BQE6yCGQ+Y=";
    hash = "sha256-OOuGPVDuCwUhKr2K1sXs4hMWlOqGkXuBXj20ffwhCco=";
  };

  vendorHash = "sha256-hq+n9nTSf7LDMvlttTmk59pZQaJJIRlqwOSBtMJKPfc=";
+397 −397

File changed.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -20,17 +20,17 @@

rustPlatform.buildRustPackage rec {
  pname = "i3status-rust";
  version = "0.33.2";
  version = "0.34.0";

  src = fetchFromGitHub {
    owner = "greshake";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-xJm4MsEU0OVX401WvKllg3zUwgCvjLxlAQzXE/oD1J0=";
    hash = "sha256-E0HGF7oyffBWUT61fQZ+tjwDi7q9IhtV6DiF8TGeVsU=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-EFFmH9aG7DvSA5rsAuszc1B8kcLdruSk3Hhp4V9t9Gk=";
  cargoHash = "sha256-S6GdPntLC0351GaPmirxVsngOtbcWaPNkzax0yZNNb4=";

  nativeBuildInputs = [
    pkg-config
+2 −2
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@

python3Packages.buildPythonApplication rec {
  pname = "ansible-lint";
  version = "25.5.0";
  version = "25.6.1";
  pyproject = true;

  src = fetchPypi {
    inherit version;
    pname = "ansible_lint";
    hash = "sha256-QYJSDyM+70JIvEz0tgdOJc2vW+Ic+b6USqvIXfVAfpw=";
    hash = "sha256-ah3St6nz8gLJ6SpsgClv8zyoYzSMOs+Xj4D7DUU23OQ=";
  };

  postPatch = ''
Loading