forked from mirrors/nixpkgs
dwarf2json: init at unstable-2021-04-15
This commit is contained in:
parent
229c47beee
commit
1865007144
23
pkgs/tools/misc/dwarf2json/default.nix
Normal file
23
pkgs/tools/misc/dwarf2json/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "dwarf2json";
|
||||
version = "unstable-2021-04-15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "volatilityfoundation";
|
||||
repo = "dwarf2json";
|
||||
rev = "e8a1ce85dc33bf2039adc7f8a5f47f3016153720";
|
||||
sha256 = "sha256-hnS00glAcj78mZp5as63CsEn+dcr+GNEkz8iC3KM0h0=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-tgs0l+sYdAxMHwVTew++keNpDyrHmevpmOBVIiuL+34=";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/volatilityfoundation/dwarf2json";
|
||||
description = "Convert ELF/DWARF symbol and type information into vol3's intermediate JSON";
|
||||
license = licenses.vol-sl;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ arkivm ];
|
||||
};
|
||||
}
|
|
@ -479,6 +479,8 @@ with pkgs;
|
|||
|
||||
dump1090 = callPackage ../applications/radio/dump1090 { };
|
||||
|
||||
dwarf2json = callPackage ../tools/misc/dwarf2json { };
|
||||
|
||||
ebook2cw = callPackage ../applications/radio/ebook2cw { };
|
||||
|
||||
edwin = callPackage ../data/fonts/edwin { };
|
||||
|
|
Loading…
Reference in a new issue