Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / elfx86exts / default.nix
blobcf0711ca64e88dafd64ea6bba250d702a721c015
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "elfx86exts";
8   version = "unstable-2023-04-20";
10   src = fetchFromGitHub {
11     owner = "pkgw";
12     repo = pname;
13     rev = "26bf98cf1fc773196e594c48bfe808d7151076f6";
14     hash = "sha256-xNmaKGbMN92CPIQQRbdmeePk5Wt9XcIsB/2vbk5NJzg=";
15   };
17   cargoHash = "sha256-NH7QK8a+ndhZGlLa3gWlnQdBQil1pi2AAi5TtFgkVf0=";
19   meta = with lib; {
20     description = "Decode x86 binaries and print out which instruction set extensions they use.";
21     longDescription = ''
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.)
25     '';
26     homepage = "https://github.com/pkgw/elfx86exts";
27     maintainers = with maintainers; [ rmcgibbo ];
28     license = with licenses; [ mit ];
29   };