bat: handle existing cache in activation script

Run `bat cache --build` in an empty directory to work around failure
when ~/cache exists.
This commit is contained in:
Matt Wittmann 2024-03-09 09:17:58 -08:00 committed by Robert Helgesson
parent fbec898387
commit fe4180ad3f
No known key found for this signature in database
GPG Key ID: 96E745BD17AA17ED
1 changed files with 4 additions and 0 deletions

View File

@ -159,10 +159,14 @@ in {
};
})));
# NOTE: run `bat cache --build` in an empty directory to work
# around failure when ~/cache exists
# https://github.com/sharkdp/bat/issues/1726
home.activation.batCache = hm.dag.entryAfter [ "linkGeneration" ] ''
(
export XDG_CACHE_HOME=${escapeShellArg config.xdg.cacheHome}
verboseEcho "Rebuilding bat theme cache"
cd "${pkgs.emptyDirectory}"
run ${lib.getExe package} cache --build
)
'';