2021-01-23 04:26:19 -08:00
|
|
|
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
2018-11-14 10:22:09 -08:00
|
|
|
|
2019-09-21 02:33:00 -07:00
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "elfinfo";
|
2020-07-28 01:18:54 -07:00
|
|
|
version = "1.1.0";
|
2018-11-14 10:22:09 -08:00
|
|
|
|
|
|
|
goPackagePath = "github.com/xyproto/elfinfo";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = version;
|
|
|
|
owner = "xyproto";
|
|
|
|
repo = "elfinfo";
|
2020-07-28 01:18:54 -07:00
|
|
|
sha256 = "1n8bg0rcq9fqa6rdnk6x9ngvm59hcayblkpjv9j5myn2vmm6fv8m";
|
2018-11-14 10:22:09 -08:00
|
|
|
};
|
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2018-11-14 10:22:09 -08:00
|
|
|
description = "Small utility for showing information about ELF files";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://elfinfo.roboticoverlords.org/";
|
2018-11-14 10:22:09 -08:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
};
|
|
|
|
}
|