laptop mode
This commit is contained in:
parent
45741e6110
commit
f2ee496f47
3 changed files with 68 additions and 30 deletions
25
packages/apple-firmware/default.nix
Normal file
25
packages/apple-firmware/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib, stdenvNoCC, fetchFromGitHub }:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "apple-firmware";
|
||||
version = "unstable";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AdityaGarg8";
|
||||
repo = "Apple-Firmware";
|
||||
rev = "c3ba2bce7b5b7d08a478763c678d71ddded60403";
|
||||
hash = "sha256-p91pyOYKHnJvaBZ7nxrBqFU63UQhMPWhm2GxabfncY4=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out/lib/firmware/brcm"
|
||||
cp -r lib/firmware/brcm/. "$out/lib/firmware/brcm/"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Various apple broadcom drivers, ripped from a runner image";
|
||||
# homepage = "https://jacobxperez.github.io/atkinson-hyperlegible-pro/";
|
||||
# license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue