programs/blender: reformat and update description

This commit is contained in:
Gabriel Arazas 2023-09-25 22:06:51 +08:00
parent 33fffb1072
commit 9654d7f551
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -17,7 +17,7 @@ let
if [ -d $i/share/blender/${blenderVersion} ]; then if [ -d $i/share/blender/${blenderVersion} ]; then
resourcesPath="$i/share/blender/${blenderVersion}"; resourcesPath="$i/share/blender/${blenderVersion}";
fi fi
lndir -silent $resourcesPath $out lndir -silent $resourcesPath $out
done done
''; '';
in in
@ -37,9 +37,8 @@ in
addons = lib.mkOption { addons = lib.mkOption {
type = with lib.types; listOf package; type = with lib.types; listOf package;
description = lib.mdDoc '' description = lib.mdDoc ''
List of packages to be added to Blender system resources. The addon List of packages providing Blender system resources at
packages are expected to have Blender resources in {file}`/share/blender` or at {file}`/share/blender/$MAJORMINORVERSION`.
{file}`$out/share/blender`.
''; '';
default = [ ]; default = [ ];
defaultText = "[]"; defaultText = "[]";