2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, fetchurl
|
|
|
|
, makeDesktopItem
|
|
|
|
, makeWrapper
|
|
|
|
, patchelf
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
|
|
|
, gcc
|
|
|
|
, gcc-unwrapped
|
|
|
|
, iputils
|
|
|
|
, psmisc
|
|
|
|
, xorg }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "IPMIView";
|
2021-07-14 22:03:04 +00:00
|
|
|
version = "2.19.0";
|
|
|
|
buildVersion = "210401";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.supermicro.com/wftp/utility/IPMIView/Linux/IPMIView_${version}_build.${buildVersion}_bundleJRE_Linux_x64.tar.gz";
|
2021-07-14 22:03:04 +00:00
|
|
|
sha256 = "sha256-6hxOu/Wkcrp9MaMYlxOR2DZW21Wi3BIFZp3Vm8NRBWs=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
''
|
2021-07-14 22:03:04 +00:00
|
|
|
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
|
2020-04-24 23:36:52 +00:00
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./BMCSecurity/${stunnelBinary}
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
runHook postBuild
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
desktopItem = makeDesktopItem rec {
|
|
|
|
name = "IPMIView";
|
|
|
|
exec = "IPMIView";
|
|
|
|
desktopName = name;
|
|
|
|
genericName = "Supermicro BMC manager";
|
2022-03-05 16:20:37 +00:00
|
|
|
categories = [ "Network" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2021-07-14 22:03:04 +00:00
|
|
|
runHook preInstall
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
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 \
|
2021-01-15 22:18:51 +00:00
|
|
|
--set LD_LIBRARY_PATH "${lib.makeLibraryPath [ fontconfig gcc-unwrapped.lib ]}" \
|
2020-04-24 23:36:52 +00:00
|
|
|
--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
|
2020-10-16 20:44:37 +00:00
|
|
|
ln -snf '$out'/iKVM.jar '$out'/iKVM_ssl.jar '$out'/libiKVM* '$out'/libSharedLibrary* $WORK_DIR
|
2020-04-24 23:36:52 +00:00
|
|
|
cd $WORK_DIR'
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.unfree;
|
|
|
|
maintainers = with maintainers; [ vlaci ];
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
|
|
};
|
|
|
|
}
|