image_optim: remove useless nulls
This commit is contained in:
parent
c07b5cd424
commit
49b62442e9
1 changed files with 11 additions and 23 deletions
|
@ -1,29 +1,17 @@
|
|||
{ lib, bundlerApp, bundlerUpdateScript, makeWrapper,
|
||||
withPngcrush ? true, pngcrush ? null,
|
||||
withPngout ? true, pngout ? null,
|
||||
withAdvpng ? true, advancecomp ? null,
|
||||
withOptipng ? true, optipng ? null,
|
||||
withPngquant ? true, pngquant ? null,
|
||||
withJhead ? true, jhead ? null,
|
||||
withJpegoptim ? true, jpegoptim ? null,
|
||||
withJpegrecompress ? true, jpeg-archive ? null,
|
||||
withJpegtran ? true, libjpeg ? null,
|
||||
withGifsicle ? true, gifsicle ? null,
|
||||
withSvgo ? true, svgo ? null
|
||||
withPngcrush ? true, pngcrush,
|
||||
withPngout ? true, pngout,
|
||||
withAdvpng ? true, advancecomp,
|
||||
withOptipng ? true, optipng,
|
||||
withPngquant ? true, pngquant,
|
||||
withJhead ? true, jhead,
|
||||
withJpegoptim ? true, jpegoptim,
|
||||
withJpegrecompress ? true, jpeg-archive,
|
||||
withJpegtran ? true, libjpeg,
|
||||
withGifsicle ? true, gifsicle,
|
||||
withSvgo ? true, svgo
|
||||
}:
|
||||
|
||||
assert withPngcrush -> pngcrush != null;
|
||||
assert withPngout -> pngout != null;
|
||||
assert withAdvpng -> advancecomp != null;
|
||||
assert withOptipng -> optipng != null;
|
||||
assert withPngquant -> pngquant != null;
|
||||
assert withJhead -> jhead != null;
|
||||
assert withJpegoptim -> jpegoptim != null;
|
||||
assert withJpegrecompress -> jpeg-archive != null;
|
||||
assert withJpegtran -> libjpeg != null;
|
||||
assert withGifsicle -> gifsicle != null;
|
||||
assert withSvgo -> svgo != null;
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
|
Loading…
Reference in a new issue