2021-06-28 23:13:55 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "elfcat";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "0.1.8";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ruslashev";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-NzFKNCCPWBj/fhaEJF34nyeyvLMeQwIcQgTlYc6mgYo=";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
|
2022-09-22 12:36:57 +00:00
|
|
|
cargoHash = "sha256-Dc+SuLwbLFcNSr9RiNSc7dgisBOvOUEIDR8dFAkC/O0=";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-01-13 08:15:51 +00:00
|
|
|
description = "ELF visualizer, generates HTML files from ELF binaries";
|
2021-06-28 23:13:55 +00:00
|
|
|
homepage = "https://github.com/ruslashev/elfcat";
|
|
|
|
license = licenses.zlib;
|
2024-01-02 11:29:13 +00:00
|
|
|
maintainers = with maintainers; [ moni ];
|
|
|
|
mainProgram = "elfcat";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
}
|