mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
elf-dissector: init at unstable-2020-11-14
This commit is contained in:
parent
4c84556d6b
commit
f979b589c7
26
pkgs/applications/misc/elf-dissector/default.nix
Normal file
26
pkgs/applications/misc/elf-dissector/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ mkDerivation, fetchgit, lib, cmake, extra-cmake-modules, kitemmodels
|
||||||
|
, libiberty, libelf, libdwarf, libopcodes }:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "elf-dissector";
|
||||||
|
version = "unstable-2020-11-14";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://invent.kde.org/sdk/elf-dissector.git";
|
||||||
|
rev = "d1700e76e3f60aff0a2a9fb63bc001251d2be522";
|
||||||
|
sha256 = "1h1xr3ag1sbf005drcx8g8dc5mk7fb2ybs73swrld7clcawhxnk8";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
||||||
|
|
||||||
|
buildInputs = [ kitemmodels libiberty libelf libdwarf libopcodes ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://invent.kde.org/sdk/elf-dissector";
|
||||||
|
description = "Tools for inspecting, analyzing and optimizing ELF files";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ ehmry ];
|
||||||
|
};
|
||||||
|
}
|
@ -20598,6 +20598,8 @@ in
|
|||||||
|
|
||||||
elementary-planner = callPackage ../applications/office/elementary-planner { };
|
elementary-planner = callPackage ../applications/office/elementary-planner { };
|
||||||
|
|
||||||
|
elf-dissector = libsForQt5.callPackage ../applications/misc/elf-dissector { };
|
||||||
|
|
||||||
elinks = callPackage ../applications/networking/browsers/elinks { };
|
elinks = callPackage ../applications/networking/browsers/elinks { };
|
||||||
|
|
||||||
elvis = callPackage ../applications/editors/elvis { };
|
elvis = callPackage ../applications/editors/elvis { };
|
||||||
|
Loading…
Reference in New Issue
Block a user