2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2018-11-14 18:22:09 +00:00
|
|
|
|
2019-09-21 10:33:00 +01:00
|
|
|
buildGoPackage 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
|
|
|
|
|
|
|
goPackagePath = "github.com/xyproto/elfinfo";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = version;
|
|
|
|
owner = "xyproto";
|
|
|
|
repo = "elfinfo";
|
2020-07-28 09:18:54 +01:00
|
|
|
sha256 = "1n8bg0rcq9fqa6rdnk6x9ngvm59hcayblkpjv9j5myn2vmm6fv8m";
|
2018-11-14 18:22:09 +00:00
|
|
|
};
|
|
|
|
|
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/";
|
2018-11-14 18:22:09 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
|
|
|
}
|