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

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

23 lines
596 B
Nix
Raw Normal View History

2021-06-22 15:42:26 +02:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "elfcat";
2022-07-18 16:51:34 +02:00
version = "0.1.8";
2021-06-22 15:42:26 +02:00
src = fetchFromGitHub {
owner = "ruslashev";
repo = pname;
rev = version;
2022-07-18 16:51:34 +02:00
sha256 = "sha256-NzFKNCCPWBj/fhaEJF34nyeyvLMeQwIcQgTlYc6mgYo=";
2021-06-22 15:42:26 +02:00
};
2022-08-21 11:08:57 +02:00
cargoHash = "sha256-Dc+SuLwbLFcNSr9RiNSc7dgisBOvOUEIDR8dFAkC/O0=";
2021-06-22 15:42:26 +02:00
meta = with lib; {
description = "ELF visualizer, generates HTML files from ELF binaries.";
homepage = "https://github.com/ruslashev/elfcat";
license = licenses.zlib;
maintainers = with maintainers; [ fortuneteller2k ];
};
}