Commit a2c82e12 authored by Yueh-Shun Li's avatar Yueh-Shun Li
Browse files

isa-l: 2.31.0 -> 2.31.0-unstable-2024-04-25 and fix on aarch64-darwin

Bump to an unstable version to include several
Aarch64- and Aarch64-Darwin-related fixes.
parent 0a66dddf
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -2,13 +2,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "isa-l";
  version = "2.31.0";
  version = "2.31.0-unstable-2024-04-25";

  src = fetchFromGitHub {
    owner = "intel";
    repo = "isa-l";
    rev = "v${finalAttrs.version}";
    sha256 = "sha256-xBBtpjtWyba0DogdLobtuWmiiAHTXMK4oRnjYuTUCNk=";
    rev = "dbaf284e112bea1b90983772a3164e794b923aaf";
    sha256 = "sha256-eM1K3uObb4eZq0nSfafltp5DuZIDwknUYj9CdLn14lY=";
  };

  nativeBuildInputs = [ nasm autoreconfHook ];
@@ -24,6 +24,5 @@ stdenv.mkDerivation (finalAttrs: {
    homepage = "https://github.com/intel/isa-l";
    maintainers = with lib.maintainers; [ jbedo ];
    platforms = lib.platforms.all;
    broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64; # does not build on M1 mac (asm/hwcap.h file not found) maybe needs gcc not clang?
  };
})