mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 11:43:21 +03:00
google-marlin: Pass postPatch as argument rather than override
This commit is contained in:
parent
4443108073
commit
72fad2346a
@ -30,9 +30,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
|
||||
@ -49,6 +48,9 @@ in
|
||||
# Remove google's default dm-verity certs
|
||||
rm -f *.x509
|
||||
'';
|
||||
}).overrideAttrs({ postInstall ? "", nativeBuildInputs, ... }: {
|
||||
installTargets = [ "zinstall" "Image.gz-dtb" "install" ];
|
||||
|
||||
nativeBuildInputs = nativeBuildInputs ++ [ dtc ];
|
||||
|
||||
postInstall = postInstall + ''
|
||||
|
Loading…
Reference in New Issue
Block a user