mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
31 lines
923 B
Nix
31 lines
923 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "elfx86exts";
|
|
version = "0.4.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pkgw";
|
|
repo = pname;
|
|
rev = "${pname}@${version}";
|
|
sha256 = "1j9ca2lyxjsrf0rsfv83xi53vj6jz5nb76xibh367brcsc26mvd6";
|
|
};
|
|
|
|
cargoSha256 = "0n3b9vdk5n32jmd7ks50d55z4dfahjincd2s1d8m9z17ip2qw2c4";
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|