nixpkgs/pkgs/tools/misc/elfcat/default.nix

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

24 lines
612 B
Nix
Raw Normal View History

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; {
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
};
}