mirror of
https://github.com/nix-community/home-manager
synced 2024-11-12 22:29:45 +01:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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