Unverified Commit 0f91c38e authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

lixPackageSets.lix_2_94: init at 2.94.0, lixPackageSets.git:...

lixPackageSets.lix_2_94: init at 2.94.0, lixPackageSets.git: 2.94.0-pre-20251018_6e2edbff930d -> 2.95.0-pre-20251121_b707403a3080 (#455756)
parents 6aeb3ae9 0518f011
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -67,6 +67,7 @@ assert lib.assertMsg (
  removeReferencesTo,
  xz,
  yq,
  zstd,
  nixosTests,
  rustPlatform,
  # Only used for versions before 2.92.
@@ -185,7 +186,8 @@ stdenv.mkDerivation (finalAttrs: {
  ++ lib.optionals pastaFod [ passt ]
  ++ lib.optionals parseToYAML [ yq ]
  ++ lib.optionals usesCapnp [ capnproto ]
  ++ lib.optionals stdenv.hostPlatform.isLinux [ util-linuxMinimal ];
  ++ lib.optionals stdenv.hostPlatform.isLinux [ util-linuxMinimal ]
  ++ lib.optionals (lib.versionAtLeast version "2.94") [ zstd ];

  buildInputs = [
    boost
+26 −4
Original line number Diff line number Diff line
@@ -213,18 +213,40 @@ lib.makeExtensible (
      };
    };

    lix_2_94 = self.makeLixScope {
      attrName = "lix_2_94";

      lix-args = rec {
        version = "2.94.0";

        src = fetchFromGitea {
          domain = "git.lix.systems";
          owner = "lix-project";
          repo = "lix";
          rev = version;
          hash = "sha256-X6X3NhgLnpkgWUbLs0nLjusNx/el3L1EkVm6OHqY2z8=";
        };

        cargoDeps = rustPlatform.fetchCargoVendor {
          name = "lix-${version}";
          inherit src;
          hash = "sha256-APm8m6SVEAO17BBCka13u85/87Bj+LePP7Y3zHA3Mpg=";
        };
      };
    };

    git = self.makeLixScope {
      attrName = "git";

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

        src = fetchFromGitea {
          domain = "git.lix.systems";
          owner = "lix-project";
          repo = "lix";
          rev = "6e2edbff930dbf5b17a23e23f0b563e1db201f5b";
          hash = "sha256-t2f3YDiRTi6GTHc940lwozaxY7RFE1CW7EeNtVYG+FE=";
          rev = "b707403a308030739dfeacc5b0aaaeef8ba3f633";
          hash = "sha256-kas7FT2J86DVJlPH5dNNHM56OgdQQyfCE/dX/EOKDp8=";
        };

        cargoDeps = rustPlatform.fetchCargoVendor {
@@ -235,7 +257,7 @@ lib.makeExtensible (
      };
    };

    latest = self.lix_2_93;
    latest = self.lix_2_94;

    stable = self.lix_2_93;