2020-12-31 16:06:54 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchzip
|
|
|
|
, lib
|
|
|
|
, makeWrapper
|
|
|
|
, autoPatchelfHook
|
|
|
|
, openjdk11
|
|
|
|
, pam
|
|
|
|
, makeDesktopItem
|
|
|
|
, icoutils
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2019-03-06 13:00:07 +01:00
|
|
|
|
|
|
|
pkg_path = "$out/lib/ghidra";
|
|
|
|
|
2019-12-07 19:46:14 +01:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "ghidra";
|
|
|
|
exec = "ghidra";
|
|
|
|
icon = "ghidra";
|
|
|
|
desktopName = "Ghidra";
|
|
|
|
genericName = "Ghidra Software Reverse Engineering Suite";
|
|
|
|
categories = "Development;";
|
|
|
|
};
|
|
|
|
|
2020-11-14 00:26:24 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-03-06 13:00:07 +01:00
|
|
|
|
2020-11-14 00:26:24 +01:00
|
|
|
pname = "ghidra";
|
2021-04-03 22:33:40 +02:00
|
|
|
version = "9.2.2";
|
|
|
|
versiondate = "20201229";
|
2019-03-06 13:00:07 +01:00
|
|
|
|
2020-04-10 20:14:45 +02:00
|
|
|
src = fetchzip {
|
2020-11-14 00:26:24 +01:00
|
|
|
url = "https://www.ghidra-sre.org/ghidra_${version}_PUBLIC_${versiondate}.zip";
|
2021-04-03 22:33:40 +02:00
|
|
|
sha256 = "1xahkwiqdcwxssah16hhgrmyam49cb341xp5ysycj1h0kkm8p53s";
|
2019-03-06 13:00:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
2020-04-10 20:14:45 +02:00
|
|
|
icoutils
|
2020-12-31 16:06:54 +01:00
|
|
|
]
|
|
|
|
++ lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
2019-03-06 13:00:07 +01:00
|
|
|
|
2019-03-13 22:03:40 +01:00
|
|
|
buildInputs = [
|
|
|
|
stdenv.cc.cc.lib
|
|
|
|
pam
|
|
|
|
];
|
2019-03-06 13:00:07 +01:00
|
|
|
|
2019-03-13 22:03:40 +01:00
|
|
|
dontStrip = true;
|
2019-03-06 13:00:07 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "${pkg_path}"
|
2019-12-07 19:46:14 +01:00
|
|
|
mkdir -p "${pkg_path}" "$out/share/applications"
|
2019-03-06 13:00:07 +01:00
|
|
|
cp -a * "${pkg_path}"
|
2019-12-07 19:46:14 +01:00
|
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications
|
2020-04-10 20:14:45 +02:00
|
|
|
|
2019-12-07 19:46:14 +01:00
|
|
|
icotool -x "${pkg_path}/support/ghidra.ico"
|
|
|
|
rm ghidra_4_40x40x32.png
|
|
|
|
for f in ghidra_*.png; do
|
|
|
|
res=$(basename "$f" ".png" | cut -d"_" -f3 | cut -d"x" -f1-2)
|
|
|
|
mkdir -pv "$out/share/icons/hicolor/$res/apps"
|
|
|
|
mv "$f" "$out/share/icons/hicolor/$res/apps/ghidra.png"
|
|
|
|
done;
|
2019-03-06 13:00:07 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
makeWrapper "${pkg_path}/ghidraRun" "$out/bin/ghidra" \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ openjdk11 ]}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission";
|
|
|
|
homepage = "https://ghidra-sre.org/";
|
2020-12-31 16:06:54 +01:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2019-03-06 13:00:07 +01:00
|
|
|
license = licenses.asl20;
|
2020-11-14 00:26:24 +01:00
|
|
|
maintainers = with maintainers; [ ck3d govanify ];
|
2019-03-06 13:00:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|