nixpkgs/pkgs/by-name/bl/bloodhound/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

132 lines
2.7 KiB
Nix

{
lib,
stdenv,
fetchzip,
makeWrapper,
alsa-lib,
at-spi2-atk,
at-spi2-core,
atk,
cairo,
cups,
dbus,
expat,
fontconfig,
freetype,
gdk-pixbuf,
glib,
gtk3,
libGL,
libappindicator-gtk3,
libdrm,
libnotify,
libpulseaudio,
libuuid,
libxcb,
libxkbcommon,
libxshmfence,
mesa,
nspr,
nss,
pango,
systemd,
udev,
unzip,
xdg-utils,
xorg,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "bloodhound";
version = "4.3.1";
src = fetchzip {
url = "https://github.com/BloodHoundAD/BloodHound/releases/download/v${finalAttrs.version}/BloodHound-linux-x64.zip";
hash = "sha256-gGfZ5Mj8rmz3dwKyOitRExkgOmSVDOqKpPxvGlE4izw=";
};
rpath = lib.makeLibraryPath [
alsa-lib
at-spi2-atk
at-spi2-core
atk
cairo
cups
dbus
expat
fontconfig
freetype
gdk-pixbuf
glib
gtk3
libGL
libappindicator-gtk3
libdrm
libnotify
libpulseaudio
libuuid
libxcb
libxkbcommon
mesa
nspr
nss
pango
systemd
(lib.getLib stdenv.cc.cc)
udev
xorg.libX11
xorg.libXScrnSaver
xorg.libXcomposite
xorg.libXcursor
xorg.libXdamage
xorg.libXext
xorg.libXfixes
xorg.libXi
xorg.libXrandr
xorg.libXrender
xorg.libXtst
xorg.libxkbfile
xorg.libxshmfence
];
buildInputs = [
gtk3 # needed for GSETTINGS_SCHEMAS_PATH
];
nativeBuildInputs = [
makeWrapper
unzip
];
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,/lib/BloodHound}
mv * $out/lib/BloodHound
chmod +x $out/lib/BloodHound/BloodHound
patchelf --set-interpreter ${stdenv.cc.bintools.dynamicLinker} \
$out/lib/BloodHound/BloodHound --set-rpath ${finalAttrs.rpath}:$out/lib/BloodHound \
--add-needed libudev.so # Needed to fix trace trap (core dump)
makeWrapper $out/lib/BloodHound/BloodHound $out/bin/BloodHound \
--prefix XDG_DATA_DIRS : $GSETTINGS_SCHEMAS_PATH \
--suffix PATH : ${lib.makeBinPath [ xdg-utils ]} \
--append-flags "--in-process-gpu" # fix for sandbox issues
runHook postInstall
'';
meta = with lib; {
description = "Active Directory reconnaissance and attack path management tool";
homepage = "https://github.com/BloodHoundAD/BloodHound";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
changelog = "https://github.com/BloodHoundAD/BloodHound/releases/tag/v${finalAttrs.version}";
downloadPage = "https://github.com/BloodHoundAD/BloodHound/releases";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ akechishiro ];
platforms = [ "x86_64-linux" ];
mainProgram = "BloodHound";
};
})