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

Merge staging-next into staging

parents 6ddff449 8740c889
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

php.buildComposerProject2 (finalAttrs: {
  pname = "composer-require-checker";
  version = "4.16.1";
  version = "4.18.0";

  # Upstream no longer provides the composer.lock in their release artifact
  src = fetchgit {
    url = "https://github.com/maglnet/ComposerRequireChecker";
    tag = finalAttrs.version;
    hash = "sha256-UAofdc8mqSnJXhCTABSf9JZERqur86lzNDI66EHgEQE=";
    hash = "sha256-8y8ziaWCno389ti263N+xinADoPZZGXqhTHoc9ZkF4Y=";
  };

  vendorHash = "sha256-TlBrL4KyMVHaxqlfvnTkj3TkmU8h5/0BRC5e8yWrhCI=";
  vendorHash = "sha256-BDGxHoDLSEdukN+zv8QNZPtVXfRpp/o95ysGFs0wl9Q=";

  doInstallCheck = true;
  nativeInstallCheckInputs = [ versionCheckHook ];
+3 −3
Original line number Diff line number Diff line
@@ -16,13 +16,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
  pname = "dokieli";
  version = "0-unstable-2025-09-10";
  version = "0-unstable-2025-10-31";

  src = fetchFromGitHub {
    owner = "dokieli";
    repo = "dokieli";
    rev = "7c9f3d9f02d8725822594009ffa1742db44fc857";
    hash = "sha256-ah7Qct0MHRsH5bktyat/Q5mxJKACJl/ci2IVOl5mzvE=";
    rev = "491ba0313e7890443ea9efefe83529821ca5689f";
    hash = "sha256-7ZY2s/dC6+ITxnoaOWP8VnB1hYwaVfxMTWh6OlqOuc4=";
  };

  missingHashes = ./missing-hashes.json;
+4 −4
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
  libgbm,
  libdrm,
  flutter332,
  flutter335,
  pulseaudio,
  copyDesktopItems,
  makeDesktopItem,
@@ -28,23 +29,22 @@ let
    sha256 = "sha256-lRfymTSfoNUtR5tSUiAptAvrrTwbB8p+SaYQeOevMzA=";
  };
in
flutter332.buildFlutterApplication (
flutter335.buildFlutterApplication (
  rec {
    pname = "fluffychat-${targetFlutterPlatform}";
    version = "2.1.1";
    version = "2.2.0";

    src = fetchFromGitHub {
      owner = "krille-chan";
      repo = "fluffychat";
      tag = "v${version}";
      hash = "sha256-Gk3PtIb90rmrEIq52aL+vBHhRG6LoyfG2jrAGH5Iyqo=";
      hash = "sha256-+puhKlg+ZJVjmL0hoWUXm7JU5hpoKqPZ3T5rWy+rPsQ=";
    };

    inherit pubspecLock;

    gitHashes = {
      flutter_web_auth_2 = "sha256-3aci73SP8eXg6++IQTQoyS+erUUuSiuXymvR32sxHFw=";
      flutter_typeahead = "sha256-ZGXbbEeSddrdZOHcXE47h3Yu3w6oV7q+ZnO6GyW7Zg8=";
      flutter_secure_storage_linux = "sha256-cFNHW7dAaX8BV7arwbn68GgkkBeiAgPfhMOAFSJWlyY=";
    };

+207 −238

File changed.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ in

stdenv.mkDerivation (finalAttrs: {
  pname = "ipxe";
  version = "1.21.1-unstable-2025-10-28";
  version = "1.21.1-unstable-2025-10-29";

  nativeBuildInputs = [
    mtools
@@ -66,8 +66,8 @@ stdenv.mkDerivation (finalAttrs: {
  src = fetchFromGitHub {
    owner = "ipxe";
    repo = "ipxe";
    rev = "0336e2987c3e671298af8c2817ec17aa67e98065";
    hash = "sha256-janNModKaSeKuGd+zeJrJlowNAR97/hrUbj5TGlpV7I=";
    rev = "fde35ff003a610eca04db0e11fb81e8dfee8a681";
    hash = "sha256-wDdqP+EgZqAx+44oy/2x36ZuDJPbTSiiztAISbaVi3o=";
  };

  # Calling syslinux on a FAT image isn't going to work on Aarch64.
Loading