1
0
Fork 0

zynq_image: fix formatting

This commit is contained in:
Florian Agbuya 2023-11-08 15:13:04 +08:00
parent 9bb6f1171c
commit 62a97f5510
1 changed files with 7 additions and 2 deletions

View File

@ -67,7 +67,6 @@ in {
nixpkgs.overlays = [
(self: super: {
# armv7l cross-compile fixes
libuv = super.libuv.overrideAttrs (old: {
doCheck = false;
@ -82,7 +81,13 @@ in {
# closure size fixes
openssh = super.openssh.override { withFIDO = false; withKerberos = false; };
util-linux = super.util-linux.override { pamSupport=false; capabilitiesSupport=false; ncursesSupport=false; systemdSupport=false; nlsSupport=false; translateManpages=false; };
util-linux = super.util-linux.override {
pamSupport=false;
capabilitiesSupport=false;
ncursesSupport=false;
systemdSupport=false;
nlsSupport=false;
translateManpages=false; };
utillinuxCurses = self.util-linux;
utillinuxMinimal = self.util-linux;
})