Unverified Commit d21366d5 authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

Merge pull request #329324 from tomodachi94/create/linuxKernel.packages.hpuefi

linuxKernel.packages.hpuefi-mod: init at 3.05
parents 542e9006 33825e39
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{
  stdenv,
  fetchzip,
  kernel,
  lib,
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "hpuefi-mod";
  version = "3.05";

  src = fetchzip {
    url = "https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150953.tgz";
    hash = "sha256-ofzqu5Y2g+QU0myJ4SF39ZJGXH1zXzX1Ys2FhXVTQKE=";
    stripRoot = false;
  };

  nativeBuildInputs = kernel.moduleBuildDependencies;
  strictDeps = true;

  makeFlags = [
    "KVERS=${kernel.modDirVersion}"
    "KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
    "DESTDIR=$(out)"
  ];

  unpackPhase = ''
    tar -xzf "$src/non-rpms/hpuefi-mod-${finalAttrs.version}.tgz"
    cd hpuefi-mod-${finalAttrs.version}
  '';

  prePatch = ''
    substituteInPlace "Makefile" \
      --replace depmod \#
  '';

  meta = {
    homepage = "https://ftp.hp.com/pub/caps-softpaq/cmit/linuxtools/HP_LinuxTools.html";
    description = "Kernel module for managing BIOS settings and updating BIOS firmware on supported HP computers";
    license = lib.licenses.gpl2Only; # See "License" section in ./non-rpms/hpuefi-mod-*.tgz/README
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ tomodachi94 ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -604,6 +604,8 @@ in {

    hid-tmff2 = callPackage ../os-specific/linux/hid-tmff2 { };

    hpuefi-mod = callPackage ../os-specific/linux/hpuefi-mod { };

    drbd = callPackage ../os-specific/linux/drbd/driver.nix { };

  } // lib.optionalAttrs config.allowAliases {