1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-10 08:43:39 +02:00

fontconfig: use a prettier "real directory" hack

This commit is contained in:
Robert Helgesson 2021-10-03 23:03:26 +02:00
parent e0a87d75e9
commit 179ce0aacf
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -36,22 +36,11 @@ in {
};
config = mkIf cfg.enable {
# Create two dummy files in /lib/fontconfig to make sure that
# buildEnv creates a real directory path. These files are removed
# in home.extraProfileCommands below so the packages will not
# become "runtime" dependencies.
home.packages = [
(pkgs.writeTextFile {
name = "hm-dummy1";
destination = "/lib/fontconfig/hm-dummy1";
text = "dummy";
})
(pkgs.writeTextFile {
name = "hm-dummy2";
destination = "/lib/fontconfig/hm-dummy2";
text = "dummy";
})
# Make sure that buildEnv creates a real directory path so that we avoid
# trying to write to a read-only location.
(pkgs.runCommandLocal "dummy-fc-dir1" { } "mkdir -p $out/lib/fontconfig")
(pkgs.runCommandLocal "dummy-fc-dir2" { } "mkdir -p $out/lib/fontconfig")
];
home.extraProfileCommands = ''
@ -76,8 +65,7 @@ in {
unset FONTCONFIG_FILE
fi
# Remove hacky dummy files.
rm $out/lib/fontconfig/hm-dummy?
# Remove the fontconfig directory if no files were available.
rmdir --ignore-fail-on-non-empty -p $out/lib/fontconfig
'';