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: 61d41d7225e0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b1e5910a7d81
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Nov 15, 2018

  1. elfinfo: init at 0.7.4

    dtzWill committed Nov 15, 2018
    Copy the full SHA
    b1e5910 View commit details
Showing with 24 additions and 1 deletion.
  1. +21 −0 pkgs/development/tools/misc/elfinfo/default.nix
  2. +3 −1 pkgs/top-level/all-packages.nix
21 changes: 21 additions & 0 deletions pkgs/development/tools/misc/elfinfo/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "elfinfo-${version}";
version = "0.7.4";

goPackagePath = "github.com/xyproto/elfinfo";
src = fetchFromGitHub {
rev = version;
owner = "xyproto";
repo = "elfinfo";
sha256 = "12n86psri9077v7s6b4j7djg5kijf9gybd80f9sfs0xmgkbly3gv";
};

meta = with stdenv.lib; {
description = "Small utility for showing information about ELF files";
homepage = https://elfinfo.roboticoverlords.org/;
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -8459,10 +8459,12 @@ with pkgs;

egypt = callPackage ../development/tools/analysis/egypt { };

elfutils = callPackage ../development/tools/misc/elfutils { };
elfinfo = callPackage ../development/tools/misc/elfinfo { };

elfkickers = callPackage ../development/tools/misc/elfkickers { };

elfutils = callPackage ../development/tools/misc/elfutils { };

emma = callPackage ../development/tools/analysis/emma { };

epm = callPackage ../development/tools/misc/epm { };