beets: small passthru reformatting

This commit is contained in:
Doron Behar
2025-10-27 15:38:20 +02:00
parent 7d0a5ef29c
commit b81743dbce
+15 -13
View File
@@ -232,25 +232,27 @@ python3Packages.buildPythonApplication {
env EDITOR=true "$out/bin/beet" config -e
'';
passthru.plugins = allPlugins;
passthru.tests.gstreamer =
runCommand "beets-gstreamer-test"
{
meta.timeout = 60;
}
''
passthru = {
plugins = allPlugins;
tests = {
gstreamer =
runCommand "beets-gstreamer-test"
{
meta.timeout = 60;
}
''
set -euo pipefail
export HOME=$(mktemp -d)
mkdir $out
cat << EOF > $out/config.yaml
replaygain:
backend: gstreamer
EOF
replaygain:
backend: gstreamer
EOF
${beets}/bin/beet -c $out/config.yaml > /dev/null
'';
'';
};
};
meta = {
description = "Music tagger and library organizer";