nixpkgs/pkgs/by-name/el/elfinfo/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
611 B
Nix
Raw Normal View History

2022-06-11 23:55:48 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2018-11-14 18:22:09 +00:00
2022-06-11 23:55:48 +00:00
buildGoModule rec {
pname = "elfinfo";
2023-04-20 20:49:47 +00:00
version = "1.2.2";
2018-11-14 18:22:09 +00:00
src = fetchFromGitHub {
owner = "xyproto";
repo = "elfinfo";
2022-06-11 23:55:48 +00:00
rev = version;
2023-04-20 20:49:47 +00:00
sha256 = "sha256-HnjHOjanStqmDXnc6Z9w0beCMJFf/ndWbYxoDEaOws4=";
2018-11-14 18:22:09 +00:00
};
2023-04-20 20:49:47 +00:00
vendorHash = null;
2022-06-11 23:55:48 +00:00
meta = with lib; {
2018-11-14 18:22:09 +00:00
description = "Small utility for showing information about ELF files";
mainProgram = "elfinfo";
homepage = "https://elfinfo.roboticoverlords.org/";
2022-06-11 23:55:48 +00:00
changelog = "https://github.com/xyproto/elfinfo/releases/tag/${version}";
license = licenses.bsd3;
maintainers = [ ];
2018-11-14 18:22:09 +00:00
};
}