forked from mirrors/nixpkgs
Merge pull request #161118 from arkivm/init-dwarf2json
dwarf2json: init at unstable-2021-04-15
This commit is contained in:
commit
4c1f1c5853
|
@ -893,6 +893,11 @@ in mkLicense lset) ({
|
|||
free = false;
|
||||
};
|
||||
|
||||
vol-sl = {
|
||||
fullName = "Volatility Software License, Version 1.0";
|
||||
url = "https://www.volatilityfoundation.org/license/vsl-v1.0";
|
||||
};
|
||||
|
||||
vsl10 = {
|
||||
spdxId = "VSL-1.0";
|
||||
fullName = "Vovida Software License v1.0";
|
||||
|
|
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 ];
|
||||
};
|
||||
}
|
|
@ -644,6 +644,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