udis86: init at 1.7.2

This commit is contained in:
timor 2019-08-05 20:12:36 +02:00
parent 236b442811
commit 09781e81c3
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, autoreconfHook, python }:
stdenv.mkDerivation rec {
pname = "udis86";
version = "1.7.2";
src = fetchFromGitHub {
owner = "vmt";
repo = "udis86";
rev = "v${version}";
url = "https://github.com/vmt/udis86/archive/v${version}.tar.gz";
sha256 = "0c60zwimim6jrm4saw36s38w5sg5v8n9mr58pkqmjrlf7q9g6am1";
};
nativeBuildInputs = [ autoreconfHook python ];
configureFlags = [
"--enable-shared"
];
outputs = [ "bin" "out" "dev" "lib" ];
meta = with stdenv.lib; {
homepage = "http://udis86.sourceforge.net";
license = licenses.bsd2;
maintainers = with maintainers; [ timor ];
description = ''
Easy-to-use, minimalistic x86 disassembler library (libudis86)
'';
platforms = platforms.all ;
};
}

View File

@ -9916,6 +9916,8 @@ in
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
};
udis86 = callPackage ../development/tools/udis86 { };
uefi-firmware-parser = callPackage ../development/tools/analysis/uefi-firmware-parser { };
uhd = callPackage ../applications/radio/uhd { };