2025-07-26 11:39:35 +02:00

31 lines
740 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "elf-info";
version = "0.3.0";
src = fetchFromGitHub {
owner = "kevin-lesenechal";
repo = "elf-info";
rev = "v${finalAttrs.version}";
hash = "sha256-wbFVuoarOoxV9FqmuHJ9eZlG4rRqy1rsnuqbGorC2Rk=";
};
cargoHash = "sha256-JSCdMGScpeA5q6++veuQ8li3qVTuB0XdJ1yacsqgBDg=";
passthru.updateScript = nix-update-script { };
meta = {
description = "Inspect and dissect an ELF file with pretty formatting";
homepage = "https://github.com/kevin-lesenechal/elf-info";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ viperML ];
mainProgram = "elf";
};
})