Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2a5b2df11d24
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 881346e6bf4b
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 1, 2021

  1. elfx86exts: init at 0.4.3

    rmcgibbo committed Jan 1, 2021
    Copy the full SHA
    a22b554 View commit details
  2. Merge pull request #108165 from rmcgibbo/elfx86exts

    elfx86exts: init at 0.4.3
    SuperSandro2000 authored Jan 1, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    881346e View commit details
Showing with 1,123 additions and 0 deletions.
  1. +1,091 −0 pkgs/applications/misc/elfx86exts/cargo-lock.patch
  2. +30 −0 pkgs/applications/misc/elfx86exts/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
1,091 changes: 1,091 additions & 0 deletions pkgs/applications/misc/elfx86exts/cargo-lock.patch

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions pkgs/applications/misc/elfx86exts/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -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 { };