2021-06-22 13:42:26 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "elfcat";
|
2022-07-18 14:51:34 +00:00
|
|
|
version = "0.1.8";
|
2021-06-22 13:42:26 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ruslashev";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-07-18 14:51:34 +00:00
|
|
|
sha256 = "sha256-NzFKNCCPWBj/fhaEJF34nyeyvLMeQwIcQgTlYc6mgYo=";
|
2021-06-22 13:42:26 +00:00
|
|
|
};
|
|
|
|
|
2022-08-21 09:08:57 +00:00
|
|
|
cargoHash = "sha256-Dc+SuLwbLFcNSr9RiNSc7dgisBOvOUEIDR8dFAkC/O0=";
|
2021-06-22 13:42:26 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-01-08 05:29:45 +00:00
|
|
|
description = "ELF visualizer, generates HTML files from ELF binaries";
|
2021-06-22 13:42:26 +00:00
|
|
|
homepage = "https://github.com/ruslashev/elfcat";
|
|
|
|
license = licenses.zlib;
|
2023-11-17 10:03:27 +00:00
|
|
|
maintainers = with maintainers; [ moni ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "elfcat";
|
2021-06-22 13:42:26 +00:00
|
|
|
};
|
|
|
|
}
|