mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
ipmicfg: fix style
This commit is contained in:
parent
2b37262519
commit
da067f40f9
@ -1,31 +1,33 @@
|
||||
{ stdenv, lib, fetchurl, patchelf, unzip }:
|
||||
|
||||
assert stdenv.isLinux;
|
||||
{ stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ipmicfg-${version}";
|
||||
version = "1.27.0";
|
||||
buildVersion = "170620";
|
||||
|
||||
src = fetchurl {
|
||||
src = fetchzip {
|
||||
url = "ftp://ftp.supermicro.com/utility/IPMICFG/IPMICFG_${version}_build.${buildVersion}.zip";
|
||||
sha256 = "0mlhrxnkwazq5456csfds6w2z5pv2ksnqnxlv4prp07bwi2bccid";
|
||||
sha256 = "0jr2vih4hzymb62mbqyykwcrjhbhazf6wr1g0cq8ji586i3z3vw5";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip ];
|
||||
installPhase = ''
|
||||
mkdir -p "$out/opt/ipmicfg"
|
||||
mkdir -p "$out/bin" "$out/opt/ipmicfg"
|
||||
cp Linux/64bit/* "$out/opt/ipmicfg"
|
||||
|
||||
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) "$out/opt/ipmicfg/IPMICFG-Linux.x86_64"
|
||||
patchelf --set-rpath "${lib.makeLibraryPath [ stdenv.cc.cc ]}:${stdenv.cc.cc.lib}/lib64" "$out/opt/ipmicfg/IPMICFG-Linux.x86_64"
|
||||
patchelf "$out/opt/ipmicfg/IPMICFG-Linux.x86_64" \
|
||||
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||
--set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]}"
|
||||
|
||||
mkdir "$out/bin"
|
||||
ln -s "$out/opt/ipmicfg/IPMICFG-Linux.x86_64" "$out/bin/ipmicfg"
|
||||
'';
|
||||
|
||||
dontPatchShebangs = true; # There are no scripts and it complains about null bytes.
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Supermicro IPMI configuration tool";
|
||||
homepage = "http://www.supermicro.com/products/nfo/ipmi.cfm";
|
||||
license = licenses.unfree;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with maintainers; [ sorki ];
|
||||
};
|
||||
}
|
||||
|
@ -2740,6 +2740,7 @@ with pkgs;
|
||||
ipmiutil = callPackage ../tools/system/ipmiutil {};
|
||||
|
||||
ipmicfg = callPackage ../applications/misc/ipmicfg {};
|
||||
|
||||
ipmiview = callPackage ../applications/misc/ipmiview {};
|
||||
|
||||
ipcalc = callPackage ../tools/networking/ipcalc {};
|
||||
|
Loading…
Reference in New Issue
Block a user