Unverified Commit 3b17ba75 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

linuxPackages.asus-wmi-sensors: drop (#405088)

parents d44df9df d7626b2f
Loading
Loading
Loading
Loading
+0 −45
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  kernel,
}:

stdenv.mkDerivation rec {
  name = "asus-wmi-sensors-${version}-${kernel.version}";
  version = "unstable-2019-11-07";

  # The original was deleted from github, but this seems to be an active fork
  src = fetchFromGitHub {
    owner = "electrified";
    repo = "asus-wmi-sensors";
    rev = "8daafd45d1b860cf5b17eee1c94d93feb04164a9";
    sha256 = "0kc0xlrsmf783ln5bqyj6qxzmrhdxdfdd2b9ygf2lbl2153i04vc";
  };

  hardeningDisable = [ "pic" ];

  nativeBuildInputs = kernel.moduleBuildDependencies;

  preConfigure = ''
    sed -i 's|depmod|#depmod|' Makefile
  '';

  makeFlags = [
    "TARGET=${kernel.modDirVersion}"
    "KERNEL_MODULES=${kernel.dev}/lib/modules/${kernel.modDirVersion}"
    "MODDESTDIR=${placeholder "out"}/lib/modules/${kernel.modDirVersion}/kernel/drivers/hwmon"
  ];

  meta = with lib; {
    description = "Linux HWMON (lmsensors) sensors driver for various ASUS Ryzen and Threadripper motherboards";
    homepage = "https://github.com/electrified/asus-wmi-sensors";
    license = licenses.gpl2Only;
    platforms = [
      "x86_64-linux"
      "i686-linux"
    ];
    maintainers = with maintainers; [ Frostman ];
    broken = versionOlder kernel.version "4.12";
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -470,8 +470,6 @@ in

        asus-ec-sensors = callPackage ../os-specific/linux/asus-ec-sensors { };

        asus-wmi-sensors = callPackage ../os-specific/linux/asus-wmi-sensors { };

        ena = callPackage ../os-specific/linux/ena { };

        lenovo-legion-module = callPackage ../os-specific/linux/lenovo-legion { };