linuxPackages.system76-acpi: init at 1.0.1

This commit is contained in:
Bryan Gardiner 2020-08-27 17:51:13 -07:00
parent 6d7f0bca40
commit 649b00db5b
No known key found for this signature in database
GPG Key ID: 53EFBCA063E6183C
2 changed files with 43 additions and 0 deletions

@ -0,0 +1,41 @@
{ stdenv, fetchFromGitHub, kernel }:
let
version = "1.0.1";
sha256 = "0jmm9h607f7k20yassm6af9mh5l00yih5248wwv4i05bd68yw3p5";
in
stdenv.mkDerivation {
name = "system76-acpi-module-${version}-${kernel.version}";
passthru.moduleName = "system76_acpi";
src = fetchFromGitHub {
owner = "pop-os";
repo = "system76-acpi-dkms";
rev = version;
inherit sha256;
};
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
buildFlags = [
"KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
installPhase = ''
install -D system76_acpi.ko $out/lib/modules/${kernel.modDirVersion}/misc/system76_acpi.ko
'';
meta = with stdenv.lib; {
maintainers = [ maintainers.khumba ];
license = [ licenses.gpl2Only ];
platforms = [ "i686-linux" "x86_64-linux" ];
broken = versionOlder kernel.version "4.14";
description = "System76 ACPI Driver (DKMS)";
homepage = "https://github.com/pop-os/system76-acpi-dkms";
longDescription = ''
This provides the system76_acpi in-tree driver for systems missing it.
'';
};
}

@ -17806,6 +17806,8 @@ in
system76 = callPackage ../os-specific/linux/system76 { };
system76-acpi = callPackage ../os-specific/linux/system76-acpi { };
tmon = callPackage ../os-specific/linux/tmon { };
tp_smapi = callPackage ../os-specific/linux/tp_smapi { };