Merge pull request #1660 from afreakk/patch-1
Some checks are pending
Test / nixfmt (push) Waiting to run
Test / tests (push) Blocked by required conditions

'runCommandNoCC' has been renamed to/replaced by 'runCommand'
This commit is contained in:
Jörg Thalheim 2025-11-03 14:13:01 +00:00 committed by GitHub
commit 2567706185
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@
let let
# This file was obtained from the display while "DDG" mode was enabled. # This file was obtained from the display while "DDG" mode was enabled.
chip_edid = pkgs.runCommandNoCC "chip_edid" { } '' chip_edid = pkgs.runCommand "chip_edid" { } ''
mkdir -p $out/lib/firmware/edid mkdir -p $out/lib/firmware/edid
cp ${./16ach6h.bin} $out/lib/firmware/edid/16ach6h.bin cp ${./16ach6h.bin} $out/lib/firmware/edid/16ach6h.bin
''; '';