1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "elfinfo";
8 version = "1.2.2";
9
10 src = fetchFromGitHub {
11 owner = "xyproto";
12 repo = "elfinfo";
13 rev = version;
14 sha256 = "sha256-HnjHOjanStqmDXnc6Z9w0beCMJFf/ndWbYxoDEaOws4=";
15 };
16
17 vendorHash = null;
18
19 meta = with lib; {
20 description = "Small utility for showing information about ELF files";
21 homepage = "https://elfinfo.roboticoverlords.org/";
22 changelog = "https://github.com/xyproto/elfinfo/releases/tag/${version}";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ dtzWill ];
25 };
26}