pkgs.formats.javaProperties: use lib.sources.sourceByGlobs

Uses the cleaner expression
This commit is contained in:
zimbatm
2026-05-22 14:42:16 +02:00
committed by adisbladis
parent 01bdc186ae
commit edb4b053f5

View File

@@ -72,8 +72,8 @@ stdenv.mkDerivation {
)
);
src = lib.sourceByRegex ./. [
".*\\.java"
src = lib.sources.sourceByGlobs ./. [
"**/*.java"
];
# On Linux, this can be C.UTF-8, but darwin + zulu requires en_US.UTF-8
LANG = "en_US.UTF-8";