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

23 lines
549 B
Nix
Raw Normal View History

2021-06-22 15:42:26 +02:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "elfcat";
2021-10-02 18:17:17 +02:00
version = "0.1.7";
2021-06-22 15:42:26 +02:00
src = fetchFromGitHub {
owner = "ruslashev";
repo = pname;
rev = version;
2021-10-02 18:17:17 +02:00
sha256 = "sha256-qmyD9BkD00yAQxmkgP2g5uvv/U7D/hUkCMJq44MI4YI=";
2021-06-22 15:42:26 +02:00
};
2021-07-30 14:30:25 +02:00
cargoSha256 = null;
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 ];
};
}