mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
62 lines
1.7 KiB
Nix
62 lines
1.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
hpssacli = pkgs.stdenv.mkDerivation rec {
|
|
name = "hpssacli-${version}";
|
|
version = "2.40-13.0";
|
|
|
|
src = pkgs.fetchurl {
|
|
url = "https://downloads.linux.hpe.com/SDR/downloads/MCP/Ubuntu/pool/non-free/${name}_amd64.deb";
|
|
sha256 = "11w7fwk93lmfw0yya4jpjwdmgjimqxx6412sqa166g1pz4jil4sw";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgs.dpkg ];
|
|
|
|
unpackPhase = "dpkg -x $src ./";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/share/doc $out/share/man
|
|
mv opt/hp/hpssacli/bld/{hpssascripting,hprmstr,hpssacli} $out/bin/
|
|
mv opt/hp/hpssacli/bld/*.{license,txt} $out/share/doc/
|
|
mv usr/man $out/share/
|
|
|
|
for file in $out/bin/*; do
|
|
chmod +w $file
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
--set-rpath ${lib.makeLibraryPath [ pkgs.stdenv.cc.cc ]} \
|
|
$file
|
|
done
|
|
'';
|
|
|
|
dontStrip = true;
|
|
|
|
meta = with lib; {
|
|
description = "HP Smart Array CLI";
|
|
homepage = https://downloads.linux.hpe.com/SDR/downloads/MCP/Ubuntu/pool/non-free/;
|
|
license = licenses.unfreeRedistributable;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ volth ];
|
|
};
|
|
};
|
|
in {
|
|
###### interface
|
|
|
|
options = {
|
|
hardware.raid.HPSmartArray = {
|
|
enable = mkEnableOption "HP Smart Array kernel modules and CLI utility";
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.hardware.raid.HPSmartArray.enable {
|
|
|
|
boot.initrd.kernelModules = [ "sg" ]; /* hpssacli wants it */
|
|
boot.initrd.availableKernelModules = [ "hpsa" ];
|
|
|
|
environment.systemPackages = [ hpssacli ];
|
|
};
|
|
}
|