diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-09-21 13:28:51 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-09-21 13:30:05 +0200 |
commit | d110fdd03f8860b2a1cd689187f8056b9e22af09 (patch) | |
tree | 4f298191948db0ca9317291fcce5a810f0cbcb96 /flake.nix | |
parent | fd721f06f5ed630bb8362213c0990d79d2b87dd7 (diff) |
Disable precompiled headers in 'nix develop'
They're still enabled in regular builds though.
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -136,7 +136,7 @@ enableParallelBuilding = true; - makeFlags = "profiledir=$(out)/etc/profile.d"; + makeFlags = "profiledir=$(out)/etc/profile.d PRECOMPILE_HEADERS=1"; doCheck = true; @@ -334,9 +334,6 @@ # syntax-check generated dot files, it still requires some # fonts. So provide those. FONTCONFIG_FILE = texFunctions.fontsConf; - - # To test building without precompiled headers. - makeFlagsArray = [ "PRECOMPILE_HEADERS=0" ]; }; # System tests. |