image_optim: migrate to by-name (#458489)

This commit is contained in:
Aleksana
2025-11-26 09:25:08 +00:00
committed by GitHub
5 changed files with 4 additions and 6 deletions
@@ -75,7 +75,7 @@ bundlerApp {
passthru.updateScript = bundlerUpdateScript "image_optim";
meta = with lib; {
meta = {
description = "Optimize images using multiple utilities";
longDescription = ''
Command line tool and ruby interface to optimize (lossless compress,
@@ -84,11 +84,11 @@ bundlerApp {
jpegtran, optipng, oxipng, pngcrush, pngout, pngquant, svgo)
'';
homepage = "https://github.com/toy/image_optim";
license = licenses.mit;
maintainers = with maintainers; [
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
nicknovitski
];
platforms = platforms.all;
platforms = lib.platforms.all;
mainProgram = "image_optim";
};
}
-2
View File
@@ -13858,8 +13858,6 @@ with pkgs;
hjson = with python3Packages; toPythonApplication hjson;
image_optim = callPackage ../applications/graphics/image_optim { };
libjack2 = jack2.override { prefix = "lib"; };
jack_autoconnect = jack-autoconnect;