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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
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;
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2018-11-14 18:22:09 +00:00
|
|
|
description = "Small utility for showing information about ELF files";
|
2020-04-01 02:11:51 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|