6 rustPlatform.buildRustPackage rec {
8 version = "unstable-2023-04-20";
10 src = fetchFromGitHub {
13 rev = "26bf98cf1fc773196e594c48bfe808d7151076f6";
14 hash = "sha256-xNmaKGbMN92CPIQQRbdmeePk5Wt9XcIsB/2vbk5NJzg=";
17 cargoHash = "sha256-NH7QK8a+ndhZGlLa3gWlnQdBQil1pi2AAi5TtFgkVf0=";
20 description = "Decode x86 binaries and print out which instruction set extensions they use.";
22 Disassemble a binary containing x86 instructions and print out which extensions it uses.
23 Despite the utterly misleading name, this tool supports ELF and MachO binaries, and
24 perhaps PE-format ones as well. (It used to be more limited.)
26 homepage = "https://github.com/pkgw/elfx86exts";
27 maintainers = with maintainers; [ rmcgibbo ];
28 license = with licenses; [ mit ];