Merge pull request #110642 from jbcrail/zydis
This commit is contained in:
commit
4a3d942b06
|
@ -10514,4 +10514,10 @@
|
||||||
github = "zupo";
|
github = "zupo";
|
||||||
githubId = 311580;
|
githubId = 311580;
|
||||||
};
|
};
|
||||||
|
jbcrail = {
|
||||||
|
name = "Joseph Crail";
|
||||||
|
email = "jbcrail@gmail.com";
|
||||||
|
github = "jbcrail";
|
||||||
|
githubId = 6038;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "zydis";
|
||||||
|
version = "3.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zyantific";
|
||||||
|
repo = "zydis";
|
||||||
|
rev = "bfee99f49274a0eec3ffea16ede3a5bda9cda88f";
|
||||||
|
sha256 = "0x2lpc33ynd0zzirdxp2lycvg3545wh1ssgy4qlv81471iwwzv6b";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Fast and lightweight x86/x86-64 disassembler library";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.jbcrail ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -12908,6 +12908,8 @@ in
|
||||||
|
|
||||||
ytt = callPackage ../development/tools/ytt {};
|
ytt = callPackage ../development/tools/ytt {};
|
||||||
|
|
||||||
|
zydis = callPackage ../development/libraries/zydis { };
|
||||||
|
|
||||||
winpdb = callPackage ../development/tools/winpdb { };
|
winpdb = callPackage ../development/tools/winpdb { };
|
||||||
|
|
||||||
grabserial = callPackage ../development/tools/grabserial { };
|
grabserial = callPackage ../development/tools/grabserial { };
|
||||||
|
|
Loading…
Reference in New Issue