mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 20:21:32 +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;
|
isModular = false;
|
||||||
}).overrideAttrs({ postInstall ? "", postPatch ? "", nativeBuildInputs, ... }: {
|
|
||||||
installTargets = [ "zinstall" "Image.gz-dtb" "install" ];
|
postPatch = ''
|
||||||
postPatch = postPatch + ''
|
|
||||||
# FIXME : factor out
|
# FIXME : factor out
|
||||||
(
|
(
|
||||||
# Remove -Werror from all makefiles
|
# Remove -Werror from all makefiles
|
||||||
@ -49,6 +48,9 @@ in
|
|||||||
# Remove google's default dm-verity certs
|
# Remove google's default dm-verity certs
|
||||||
rm -f *.x509
|
rm -f *.x509
|
||||||
'';
|
'';
|
||||||
|
}).overrideAttrs({ postInstall ? "", nativeBuildInputs, ... }: {
|
||||||
|
installTargets = [ "zinstall" "Image.gz-dtb" "install" ];
|
||||||
|
|
||||||
nativeBuildInputs = nativeBuildInputs ++ [ dtc ];
|
nativeBuildInputs = nativeBuildInputs ++ [ dtc ];
|
||||||
|
|
||||||
postInstall = postInstall + ''
|
postInstall = postInstall + ''
|
||||||
|
Loading…
Reference in New Issue
Block a user