4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ipmicfg";
|
|
version = "1.30.0";
|
|
buildVersion = "190710";
|
|
|
|
src = fetchzip {
|
|
url = "https://www.supermicro.com/wftp/utility/IPMICFG/IPMICFG_${version}_build.${buildVersion}.zip";
|
|
sha256 = "0srkzivxa4qlf3x9zdkri7xfq7kjj4fsmn978vzmzsvbxkqswd5a";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/bin" "$out/opt/ipmicfg"
|
|
cp Linux/64bit/* "$out/opt/ipmicfg"
|
|
|
|
patchelf \
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]}" \
|
|
"$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.
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|