1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-16 20:21:32 +03:00

google-walleye: Pass postPatch as argument rather than override

This commit is contained in:
Samuel Dionne-Riel 2020-09-30 01:07:55 -04:00
parent 302ffc43ee
commit 4443108073

View File

@ -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 + ''