nexusmods-app: convert is deprecated, use magick

Resolves the following warning during the install phase:

WARNING: The convert command is deprecated in IMv7, use "magick" instead of "convert" or "magick convert"
This commit is contained in:
Matt Sturgeon
2025-01-22 12:44:12 +00:00
parent 7a21d6f048
commit 6deb037f39
+1 -1
View File
@@ -97,7 +97,7 @@ buildDotnetModule (finalAttrs: {
size=''${i}x''${i}
dir=$out/share/icons/hicolor/$size/apps
mkdir -p $dir
convert -background none -resize $size $icon $dir/com.nexusmods.app.png
magick -background none $icon -resize $size $dir/com.nexusmods.app.png
done
'';