nixpkgs/pkgs/os-specific/linux/lsiutil/default.nix
Luflosi d56417ecd9
lsiutil: 1.60 -> 1.72
Also make various improvements and fixes:
- Rename pname from lsiutils to lsiutil since that is the actual name
- Update the URL since the old one was broken
- Inline the call to fetchurl
- Use the installPhase to install instead of installing in the buildPhase
- Replace a call to the modprobe binary with the absolute path to the binary
- Properly determine the absolute path of the mknod binary
- Update the description with text from the source code header
- Declare that this only works on Linux
- Add myself as maintainer
2021-07-21 15:33:11 +02:00

45 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchurl
, kmod
, coreutils
}:
stdenv.mkDerivation rec {
pname = "lsiutil";
version = "1.72";
src = fetchurl {
url = "https://github.com/exactassembly/meta-xa-stm/raw/f96cf6e13f3c9c980f5651510dd96279b9b2af4f/recipes-support/lsiutil/files/lsiutil-${version}.tar.gz";
sha256 = "sha256-aTi+EogY1aDWYq3anjRkjz1mzINVfUPQbOPHthxrvS4=";
};
buildPhase = ''
runHook preBuild
substituteInPlace lsiutil.c \
--replace /sbin/modprobe "${kmod}/bin/modprobe" \
--replace /bin/mknod "${coreutils}/bin/mknod"
gcc -Wall -O lsiutil.c -o lsiutil
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
install -Dm755 lsiutil "$out/bin/lsiutil"
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/exactassembly/meta-xa-stm/tree/master/recipes-support/lsiutil/files";
description = "Configuration utility for MPT adapters (FC, SCSI, and SAS/SATA)";
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ Luflosi ];
};
}