2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchzip }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ipmicfg";
|
2022-10-21 18:38:19 +00:00
|
|
|
version = "1.34.0";
|
|
|
|
buildVersion = "220906";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchzip {
|
2024-02-29 20:09:43 +00:00
|
|
|
url = "https://www.supermicro.com/Bios/sw_download/481/IPMICFG_${version}_build.${buildVersion}.zip";
|
|
|
|
hash = "sha256-ZumCXuR7M2Ep7maBOBFk0UsxyRo4fBkf+9AVmkz4AF0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/bin" "$out/opt/ipmicfg"
|
|
|
|
cp Linux/64bit/* "$out/opt/ipmicfg"
|
|
|
|
|
|
|
|
patchelf \
|
|
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2021-01-15 22:18:51 +00:00
|
|
|
--set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc ]}" \
|
2020-04-24 23:36:52 +00:00
|
|
|
"$out/opt/ipmicfg/IPMICFG-Linux.x86_64"
|
|
|
|
|
|
|
|
ln -s "$out/opt/ipmicfg/IPMICFG-Linux.x86_64" "$out/bin/ipmicfg"
|
|
|
|
'';
|
|
|
|
|
|
|
|
dontPatchShebangs = true; # There are no scripts and it complains about null bytes.
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Supermicro IPMI configuration tool";
|
|
|
|
homepage = "http://www.supermicro.com/products/nfo/ipmi.cfm";
|
2022-06-26 10:26:21 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = with maintainers; [ sorki ];
|
|
|
|
};
|
|
|
|
}
|