elfx86exts: init at 0.4.3
This commit is contained in:
parent
89259458bf
commit
a22b554daf
1091
pkgs/applications/misc/elfx86exts/cargo-lock.patch
Normal file
1091
pkgs/applications/misc/elfx86exts/cargo-lock.patch
Normal file
File diff suppressed because it is too large
Load Diff
30
pkgs/applications/misc/elfx86exts/default.nix
Normal file
30
pkgs/applications/misc/elfx86exts/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "elfx86exts";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pkgw";
|
||||
repo = pname;
|
||||
rev = "${pname}@${version}";
|
||||
sha256 = "1j9ca2lyxjsrf0rsfv83xi53vj6jz5nb76xibh367brcsc26mvd6";
|
||||
};
|
||||
|
||||
cargoSha256 = "1dfhx40jr5llqa554wifd920mqdbm8s5fns98m6vcqdjxzan4nr2";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Decode x86 binaries and print out which instruction set extensions they use.";
|
||||
longDescription = ''
|
||||
Disassemble a binary containing x86 instructions and print out which extensions it uses.
|
||||
Despite the utterly misleading name, this tool supports ELF and MachO binaries, and
|
||||
perhaps PE-format ones as well. (It used to be more limited.)
|
||||
'';
|
||||
homepage = "https://github.com/pkgw/elfx86exts";
|
||||
maintainers = with maintainers; [ rmcgibbo ];
|
||||
license = with licenses; [ mit ];
|
||||
};
|
||||
}
|
@ -21144,6 +21144,8 @@ in
|
||||
|
||||
elf-dissector = libsForQt5.callPackage ../applications/misc/elf-dissector { };
|
||||
|
||||
elfx86exts = callPackage ../applications/misc/elfx86exts { };
|
||||
|
||||
elinks = callPackage ../applications/networking/browsers/elinks { };
|
||||
|
||||
elvis = callPackage ../applications/editors/elvis { };
|
||||
|
Loading…
Reference in New Issue
Block a user