mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
31 lines
931 B
Nix
31 lines
931 B
Nix
{ lib, 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 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 ];
|
|
};
|
|
}
|