nixos-config/pkgs/binary-ninja-personal/default.nix
2021-06-10 15:51:04 -04:00

95 lines
1.8 KiB
Nix

{ stdenv
, alsaLib
, autoPatchelfHook
, dbus
, fontconfig
, freetype
, glib
, krb5
, libglvnd
, libICE
, libSM
, libX11
, libXcomposite
, libXcursor
, libXdamage
, libXext
, libXi
, libxkbcommon
, libXrandr
, libXrender
, libXtst
, makeWrapper
, nss
, python38
, requireFile
, systemd
, unzip
, xcbutilimage
, xcbutilkeysyms
, xcbutilrenderutil
, xcbutilwm
, xkeyboardconfig
, zlib
}:
stdenv.mkDerivation rec {
pname = "binaryninja";
version = "2.3.2660";
src = requireFile {
name = "BinaryNinja-personal.zip";
url = "https://binary.ninja";
sha256 = "f3e2519c1254a6e7b7d112790b41c687b9060bba3033b7c89871185b87be7dce";
};
buildInputs = [
alsaLib
autoPatchelfHook
dbus
fontconfig
freetype
glib
krb5
libglvnd
libICE
libSM
libX11
libXcomposite
libXcursor
libXdamage
libXext
libXi
libxkbcommon
libXrandr
libXrender
libXtst
makeWrapper
nss
python38
stdenv.cc.cc.lib
unzip
xcbutilimage
xcbutilkeysyms
xcbutilrenderutil
xcbutilwm
zlib
];
dontStrip = true;
dontPatchELF = true;
installPhase = ''
mkdir -p $out/lib $out/bin $out/share
mv $NIX_BUILD_TOP/$sourceRoot $out/lib/binary-ninja
makeWrapper $out/lib/binary-ninja/binaryninja $out/bin/binaryninja \
--suffix LD_LIBRARY_PATH : "${systemd}/lib" \
--suffix LD_LIBRARY_PATH : "${python38}/lib" \
--set QT_XKB_CONFIG_ROOT "${xkeyboardconfig}/share/X11/xkb" \
--set QTCOMPOSE "${libX11.out}/share/X11/locale"
# Keeping the zip file in the nix store is desirable,
# because when the zip is missing requireFile involves manual steps.
# Below is just a hack to keep the zip from being garbage-collected.
ln -s "${src}" "$out/share/BinaryNinja-personal.zip"
'';
}