My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/system76-acpi/default.nix

43 lines
1.2 KiB

{ lib, stdenv, fetchFromGitHub, kernel }:
let
version = "1.0.2";
sha256 = "1i7zjn5cdv9h00fgjg46b8yrz4d3dqvfr25g3f13967ycy58m48h";
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
mkdir -p $out/lib/udev/hwdb.d
mv lib/udev/hwdb.d/* $out/lib/udev/hwdb.d
'';
meta = with lib; {
maintainers = [ maintainers.khumba ];
license = [ licenses.gpl2Only ];
platforms = [ "i686-linux" "x86_64-linux" ];
broken = kernel.kernelOlder "5.2";
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.
'';
};
}