diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-11-20T17·22+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-11-20T17·22+0000 |
commit | 6bbff48079b27b529f0359bb9e6731dba1ad71db (patch) | |
tree | b8a5e3794f90eb97c62f8b872aadba2594780ed1 /scripts/nix-profile.sh.in | |
parent | b8eb32f4d22e42d7c17a7da7aed4cb864eee8902 (diff) |
Diffstat (limited to 'scripts/nix-profile.sh.in')
-rw-r--r-- | scripts/nix-profile.sh.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in index 6442e3efb1a5..0c1e1bb80f08 100644 --- a/scripts/nix-profile.sh.in +++ b/scripts/nix-profile.sh.in @@ -7,5 +7,12 @@ if test -n "$HOME"; then @coreutils@/ln -s "$_NIX_DEF_LINK" "$NIX_LINK" fi - export PATH=$NIX_LINK/bin:@prefix@/bin:$PATH + export PATH=$NIX_LINK/bin:$PATH +fi + +# This is a quick hack to make fontconfig-based packages in Nixpkgs +# work out of the box on non-NixOS systems. Of course, we should +# really fix fontconfig... +if test -z "$FONTCONFIG_FILE" -a -e /etc/fonts/fonts.conf; then + export FONTCONFIG_FILE=/etc/fonts/fonts.conf fi |