dunst: fix warning for lib.cartesianProductOfSets
"lib.cartesianProductOfSets is a deprecated alias of lib.cartesianProduct." Rename happened in nixpkgs commit `228621e42dc43f936b66e0ed042c90c511aa0535`.
This commit is contained in:
parent
c514e862cd
commit
bbe6e94737
|
@ -172,7 +172,7 @@ in {
|
||||||
|
|
||||||
mkPath = { basePath, theme, category }:
|
mkPath = { basePath, theme, category }:
|
||||||
"${basePath}/share/icons/${theme.name}/${theme.size}/${category}";
|
"${basePath}/share/icons/${theme.name}/${theme.size}/${category}";
|
||||||
in concatMapStringsSep ":" mkPath (cartesianProductOfSets {
|
in concatMapStringsSep ":" mkPath (cartesianProduct {
|
||||||
basePath = basePaths;
|
basePath = basePaths;
|
||||||
theme = themes;
|
theme = themes;
|
||||||
category = categories;
|
category = categories;
|
||||||
|
|
Loading…
Reference in a new issue