mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 11:43:21 +03:00
google-walleye: Pass postPatch as argument rather than override
This commit is contained in:
parent
302ffc43ee
commit
4443108073
@ -31,9 +31,8 @@ in
|
||||
];
|
||||
|
||||
isModular = false;
|
||||
}).overrideAttrs({ postInstall ? "", postPatch ? "", nativeBuildInputs, ... }: {
|
||||
installTargets = [ "zinstall" "Image.gz-dtb" "install" ];
|
||||
postPatch = postPatch + ''
|
||||
|
||||
postPatch = ''
|
||||
# FIXME : factor out
|
||||
(
|
||||
# Remove -Werror from all makefiles
|
||||
@ -47,6 +46,9 @@ in
|
||||
done
|
||||
)
|
||||
'';
|
||||
}).overrideAttrs({ postInstall ? "", nativeBuildInputs, ... }: {
|
||||
installTargets = [ "zinstall" "Image.gz-dtb" "install" ];
|
||||
|
||||
nativeBuildInputs = nativeBuildInputs ++ [ dtc ];
|
||||
|
||||
postInstall = postInstall + ''
|
||||
|
Loading…
Reference in New Issue
Block a user