Unverified Commit 45151bb8 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

lixPackageSets.git: 2.95.0-pre-20251121_b707403a3080 -> 2.95.0-pre-20251219_c1debca36b9e (#466226)

parents a34c2572 a4620e92
Loading
Loading
Loading
Loading
+15 −3
Original line number Diff line number Diff line
@@ -196,7 +196,6 @@ stdenv.mkDerivation (finalAttrs: {
    curl
    capnproto
    editline
    libsodium
    openssl
    sqlite
    xz
@@ -295,9 +294,21 @@ stdenv.mkDerivation (finalAttrs: {
  ]
  ++
    lib.optionals
      (stdenv.hostPlatform.isLinux && finalAttrs.doInstallCheck && lib.versionAtLeast version "2.94")
      (
        stdenv.hostPlatform.isLinux
        && finalAttrs.doInstallCheck
        && lib.versionAtLeast version "2.94"
        && lib.versionOlder version "2.95"
      )
      [
        (lib.mesonOption "build-test-shell" "${pkgsStatic.busybox}/bin")
      ]
  ++
    lib.optionals
      (stdenv.hostPlatform.isLinux && finalAttrs.doInstallCheck && lib.versionAtLeast version "2.95")
      [
        (lib.mesonOption "build-test-env" "${pkgsStatic.busybox}/bin")
        (lib.mesonOption "build-test-shell" "${pkgsStatic.bash}/bin")
      ];

  ninjaFlags = [ "-v" ];
@@ -347,7 +358,8 @@ stdenv.mkDerivation (finalAttrs: {
    rapidcheck
  ];

  doInstallCheck = true;
  # Python splices are broken (https://github.com/NixOS/nixpkgs/issues/476822), causing build failure in `buildPackages.python3Packages.bcrypt`.
  doInstallCheck = stdenv.buildPlatform == stdenv.hostPlatform;
  mesonInstallCheckFlags = [
    "--suite=installcheck"
    "--print-errorlogs"
+3 −5
Original line number Diff line number Diff line
@@ -265,14 +265,14 @@ lib.makeExtensible (
      attrName = "git";

      lix-args = rec {
        version = "2.95.0-pre-20251121_${builtins.substring 0 12 src.rev}";
        version = "2.95.0-pre-20260103_${builtins.substring 0 12 src.rev}";

        src = fetchFromGitea {
          domain = "git.lix.systems";
          owner = "lix-project";
          repo = "lix";
          rev = "b707403a308030739dfeacc5b0aaaeef8ba3f633";
          hash = "sha256-kas7FT2J86DVJlPH5dNNHM56OgdQQyfCE/dX/EOKDp8=";
          rev = "d387c9113c73f04bed46dbdd59b6c36de2253d73";
          hash = "sha256-jYUcmXA4FNwoJtxRgH+Be96wQv8h9Y9dByYf+KmcgK4=";
        };

        cargoDeps = rustPlatform.fetchCargoVendor {
@@ -280,8 +280,6 @@ lib.makeExtensible (
          inherit src;
          hash = "sha256-APm8m6SVEAO17BBCka13u85/87Bj+LePP7Y3zHA3Mpg=";
        };

        patches = [ lixMdbookPatch ];
      };
    };