docker-tool: fix maxLayers assert

+1 -1
+1 -1
pkgs/build-support/docker/default.nix
··· 931 debug ? false 932 }: 933 assert 934 - (lib.assertMsg (layeringPipeline == null && maxLayers > 1) 935 "the maxLayers argument of dockerTools.buildLayeredImage function must be greather than 1 (current value: ${toString maxLayers})"); 936 assert 937 (lib.assertMsg (enableFakechroot -> !stdenv.hostPlatform.isDarwin) ''
··· 931 debug ? false 932 }: 933 assert 934 + (lib.assertMsg (layeringPipeline == null -> maxLayers > 1) 935 "the maxLayers argument of dockerTools.buildLayeredImage function must be greather than 1 (current value: ${toString maxLayers})"); 936 assert 937 (lib.assertMsg (enableFakechroot -> !stdenv.hostPlatform.isDarwin) ''