nixpkgs/pkgs/by-name/ip/ipmiview/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

112 lines
2.8 KiB
Nix

{
lib,
stdenv,
fetchurl,
makeDesktopItem,
makeWrapper,
patchelf,
fontconfig,
freetype,
gcc,
gcc-unwrapped,
iputils,
psmisc,
xorg,
}:
stdenv.mkDerivation rec {
pname = "IPMIView";
version = "2.21.0";
buildVersion = "221118";
src = fetchurl {
url = "https://www.supermicro.com/wftp/utility/IPMIView/Linux/IPMIView_${version}_build.${buildVersion}_bundleJRE_Linux_x64.tar.gz";
hash = "sha256-ZN0vadGbjGj9U2wPqvHLjS9fsk3DNCbXoNvzUfnn8IM=";
};
nativeBuildInputs = [
patchelf
makeWrapper
];
buildPhase =
with xorg;
let
stunnelBinary =
if stdenv.hostPlatform.system == "x86_64-linux" then
"linux/stunnel64"
else if stdenv.hostPlatform.system == "i686-linux" then
"linux/stunnel32"
else
throw "IPMIView is not supported on this platform";
in
''
runHook preBuild
patchelf --set-rpath "${
lib.makeLibraryPath [
libX11
libXext
libXrender
libXtst
libXi
]
}" ./jre/lib/libawt_xawt.so
patchelf --set-rpath "${lib.makeLibraryPath [ freetype ]}" ./jre/lib/libfontmanager.so
patchelf --set-rpath "${gcc.cc}/lib:$out/jre/lib/jli" --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./jre/bin/java
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./BMCSecurity/${stunnelBinary}
runHook postBuild
'';
desktopItem = makeDesktopItem rec {
name = "IPMIView";
exec = "IPMIView";
desktopName = name;
genericName = "Supermicro BMC manager";
categories = [ "Network" ];
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp -R . $out/
ln -s ${desktopItem}/share $out/share
# LD_LIBRARY_PATH: fontconfig is used from java code
# PATH: iputils is used for ping, and psmisc is for killall
# WORK_DIR: unfortunately the ikvm related binaries are loaded from
# and user configuration is written to files in the CWD
makeWrapper $out/jre/bin/java $out/bin/IPMIView \
--set LD_LIBRARY_PATH "${
lib.makeLibraryPath [
fontconfig
gcc-unwrapped.lib
]
}" \
--prefix PATH : "$out/jre/bin:${iputils}/bin:${psmisc}/bin" \
--add-flags "-jar $out/IPMIView20.jar" \
--run 'WORK_DIR=''${XDG_DATA_HOME:-~/.local/share}/ipmiview
mkdir -p $WORK_DIR
ln -snf '$out'/iKVM.jar '$out'/iKVM_ssl.jar '$out'/libiKVM* '$out'/libSharedLibrary* $WORK_DIR
cd $WORK_DIR'
runHook postInstall
'';
meta = with lib; {
sourceProvenance = with sourceTypes; [
binaryBytecode
binaryNativeCode
];
license = licenses.unfree;
maintainers = with maintainers; [ vlaci ];
platforms = [
"x86_64-linux"
"i686-linux"
];
mainProgram = "IPMIView";
};
}