zydis: init at 3.1.0
This commit is contained in:
parent
aa2c0b2105
commit
ed4a34a945
2 changed files with 25 additions and 0 deletions
23
pkgs/development/libraries/zydis/default.nix
Normal file
23
pkgs/development/libraries/zydis/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -12876,6 +12876,8 @@ in
|
|||
|
||||
ytt = callPackage ../development/tools/ytt {};
|
||||
|
||||
zydis = callPackage ../development/libraries/zydis { };
|
||||
|
||||
winpdb = callPackage ../development/tools/winpdb { };
|
||||
|
||||
grabserial = callPackage ../development/tools/grabserial { };
|
||||
|
|
Loading…
Reference in a new issue