2018-11-14 18:22:09 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "elfinfo";
|
2018-12-06 19:44:39 +00:00
|
|
|
version = "0.7.5";
|
2018-11-14 18:22:09 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/xyproto/elfinfo";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = version;
|
|
|
|
owner = "xyproto";
|
|
|
|
repo = "elfinfo";
|
2018-12-06 19:44:39 +00:00
|
|
|
sha256 = "0b6zyfq0yhpbf03h52q2lgf6ff086gcsbnhm6chx18h0q1g17m96";
|
2018-11-14 18:22:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|