2024-04-21 15:54:59 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python3Packages, llvmPackages }:
|
2020-12-27 14:24:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
# mbuild is a custom build system used only to build xed
|
|
|
|
mbuild = python3Packages.buildPythonPackage rec {
|
|
|
|
pname = "mbuild";
|
2022-09-14 18:05:37 +00:00
|
|
|
version = "2022.07.28";
|
2020-12-27 14:24:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "intelxed";
|
|
|
|
repo = "mbuild";
|
2022-09-14 18:05:37 +00:00
|
|
|
rev = "v${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-nVHHiaPbf+b+RntjUGjLLGS53e6c+seXIBx7AcTtiWU=";
|
2020-12-27 14:24:52 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
pname = "xed";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "2024.02.22";
|
2020-12-27 14:24:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "intelxed";
|
|
|
|
repo = "xed";
|
2022-09-14 18:05:37 +00:00
|
|
|
rev = "v${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
sha256 = "sha256-LF4iJ1/Z3OifCiir/kU3ufZqtiRLeaJeAwuBqP2BCF4=";
|
2020-12-27 14:24:52 +00:00
|
|
|
};
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
nativeBuildInputs = [ mbuild ] ++ lib.optionals stdenv.isDarwin [ llvmPackages.bintools ];
|
2020-12-27 14:24:52 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
patchShebangs mfile.py
|
|
|
|
|
|
|
|
# this will build, test and install
|
|
|
|
./mfile.py test --prefix $out
|
2024-04-21 15:54:59 +00:00
|
|
|
./mfile.py examples
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ./obj/wkit/examples/obj/xed $out/bin/
|
2020-12-27 14:24:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
dontInstall = true; # already installed during buildPhase
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2024-04-21 15:54:59 +00:00
|
|
|
broken = stdenv.isAarch64;
|
2020-12-27 14:24:52 +00:00
|
|
|
description = "Intel X86 Encoder Decoder (Intel XED)";
|
|
|
|
homepage = "https://intelxed.github.io/";
|
2022-01-07 04:07:37 +00:00
|
|
|
license = licenses.asl20;
|
2020-12-27 14:24:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ arturcygan ];
|
|
|
|
};
|
|
|
|
}
|