elfinfo: init at 0.7.4

This commit is contained in:
Will Dietz
2018-11-14 12:22:09 -06:00
committed by Will Dietz
parent 61d41d7225
commit b1e5910a7d
2 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "elfinfo-${version}";
version = "0.7.4";
goPackagePath = "github.com/xyproto/elfinfo";
src = fetchFromGitHub {
rev = version;
owner = "xyproto";
repo = "elfinfo";
sha256 = "12n86psri9077v7s6b4j7djg5kijf9gybd80f9sfs0xmgkbly3gv";
};
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 ];
};
}