Merge pull request #147535 from AndersonTorres/new-misc

zydis: 3.2.0 -> 3.2.1
This commit is contained in:
Anderson Torres 2021-11-27 10:28:37 -03:00 committed by GitHub
commit 0aeb25404a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,23 +1,30 @@
{ lib, stdenv, fetchFromGitHub, cmake }: { lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "zydis"; pname = "zydis";
version = "3.2.0"; version = "3.2.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "zyantific"; owner = "zyantific";
repo = "zydis"; repo = "zydis";
rev = "v${version}"; rev = "v${version}";
fetchSubmodules = true; fetchSubmodules = true;
sha256 = "sha256-1XGELwMuFlIt6Z3+kfD6VAgDZOwhhCSG42dkYh7WLf8="; sha256 = "sha256-FB7hGQ9vI3ZE376iROEpdtZm91IiccBhtAFa94JgnUY=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [
cmake
];
meta = with lib; { meta = with lib; {
homepage = "https://zydis.re/";
description = "Fast and lightweight x86/x86-64 disassembler library"; description = "Fast and lightweight x86/x86-64 disassembler library";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.jbcrail ]; maintainers = with maintainers; [ jbcrail AndersonTorres ];
platforms = platforms.all; platforms = platforms.all;
}; };
} }