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