3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/elfinfo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
610 B
Nix
Raw Normal View History

2022-06-12 00:55:48 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2018-11-14 18:22:09 +00:00
2022-06-12 00:55:48 +01:00
buildGoModule rec {
pname = "elfinfo";
2020-07-28 09:18:54 +01:00
version = "1.1.0";
2018-11-14 18:22:09 +00:00
src = fetchFromGitHub {
owner = "xyproto";
repo = "elfinfo";
2022-06-12 00:55:48 +01:00
rev = version;
2020-07-28 09:18:54 +01:00
sha256 = "1n8bg0rcq9fqa6rdnk6x9ngvm59hcayblkpjv9j5myn2vmm6fv8m";
2018-11-14 18:22:09 +00:00
};
2022-06-12 00:55:48 +01:00
vendorSha256 = null;
meta = with lib; {
2018-11-14 18:22:09 +00:00
description = "Small utility for showing information about ELF files";
homepage = "https://elfinfo.roboticoverlords.org/";
2022-06-12 00:55:48 +01:00
changelog = "https://github.com/xyproto/elfinfo/releases/tag/${version}";
2018-11-14 18:22:09 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}