udis86: init at 1.7.2
This commit is contained in:
parent
236b442811
commit
09781e81c3
32
pkgs/development/tools/udis86/default.nix
Normal file
32
pkgs/development/tools/udis86/default.nix
Normal 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 ;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user