11 zycore = callPackage ./zycore.nix {
12 inherit stdenv fetchFromGitHub cmake;
15 stdenv.mkDerivation rec {
19 src = fetchFromGitHub {
23 hash = "sha256-akusu0T7q5RX4KGtjRqqOFpW5i9Bd1L4RVZt8Rg3PJY=";
26 nativeBuildInputs = [ cmake ];
27 propagatedBuildInputs = [ zycore ];
29 "-DCMAKE_INSTALL_LIBDIR=lib"
30 "-DCMAKE_INSTALL_INCLUDEDIR=include"
34 nativeCheckInputs = [ python3 ];
35 passthru = { inherit zycore; };
38 homepage = "https://zydis.re/";
39 changelog = "https://github.com/zyantific/zydis/releases/tag/v${version}";
40 description = "Fast and lightweight x86/x86-64 disassembler library";
41 license = licenses.mit;
42 maintainers = with maintainers; [
47 platforms = platforms.all;