Merge pull request #130940 from Luflosi/update/lsiutil
lsiutil: 1.60 -> 1.72
This commit is contained in:
commit
92a73b97bd
1 changed files with 31 additions and 28 deletions
|
@ -1,41 +1,44 @@
|
||||||
{ lib, stdenv, fetchurl, unzip }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, kmod
|
||||||
|
, coreutils
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "lsiutil";
|
||||||
version = "1.60";
|
version = "1.72";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
name = "lsiutil-${version}.zip";
|
url = "https://github.com/exactassembly/meta-xa-stm/raw/f96cf6e13f3c9c980f5651510dd96279b9b2af4f/recipes-support/lsiutil/files/lsiutil-${version}.tar.gz";
|
||||||
url = "http://www.lsi.com/DistributionSystem/AssetDocument/support/downloads/hbas/fibre_channel/hardware_drivers/LSIUtil%20Kit_${version}.zip";
|
sha256 = "sha256-aTi+EogY1aDWYq3anjRkjz1mzINVfUPQbOPHthxrvS4=";
|
||||||
sha256 = "1d4337faa56e24f7d98db87b9de94d6e2c17ab671f4e301b93833eea08b9e426";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
substituteInPlace lsiutil.c \
|
||||||
pname = "lsiutils";
|
--replace /sbin/modprobe "${kmod}/bin/modprobe" \
|
||||||
inherit version;
|
--replace /bin/mknod "${coreutils}/bin/mknod"
|
||||||
|
gcc -Wall -O lsiutil.c -o lsiutil
|
||||||
|
|
||||||
srcs = [ src "Source/lsiutil.tar.gz" ];
|
runHook postBuild
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ unzip ];
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
sourceRoot = "lsiutil";
|
mkdir -p "$out/bin"
|
||||||
|
install -Dm755 lsiutil "$out/bin/lsiutil"
|
||||||
|
|
||||||
preBuild =
|
runHook postInstall
|
||||||
''
|
'';
|
||||||
mkdir -p $out/bin
|
|
||||||
substituteInPlace Makefile --replace /usr/bin $out/bin
|
|
||||||
substituteInPlace lsiutil.c \
|
|
||||||
--replace /sbin/modprobe modprobe \
|
|
||||||
--replace /bin/mknod $(type -P mknod)
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = "true";
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/exactassembly/meta-xa-stm/tree/master/recipes-support/lsiutil/files";
|
||||||
meta = {
|
description = "Configuration utility for MPT adapters (FC, SCSI, and SAS/SATA)";
|
||||||
homepage = "http://www.lsi.com/";
|
license = licenses.unfree;
|
||||||
description = "LSI Logic Fusion MPT command line management tool";
|
platforms = platforms.linux;
|
||||||
license = lib.licenses.unfree;
|
maintainers = with maintainers; [ Luflosi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue