summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/generic-builder.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-06-03 12:51:47 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2018-07-02 15:51:14 -0400
commitceaf285c0c4debf8a932fd8d4d281fba100ef3f5 (patch)
treec8a3e7657c022ed29fa8bd9b95675fe7efe61930 /pkgs/development/haskell-modules/generic-builder.nix
parent359e0ce4bb084a07a39fa369a0121a2f997548a3 (diff)
downloadnixlib-ceaf285c0c4debf8a932fd8d4d281fba100ef3f5.tar
nixlib-ceaf285c0c4debf8a932fd8d4d281fba100ef3f5.tar.gz
nixlib-ceaf285c0c4debf8a932fd8d4d281fba100ef3f5.tar.bz2
nixlib-ceaf285c0c4debf8a932fd8d4d281fba100ef3f5.tar.lz
nixlib-ceaf285c0c4debf8a932fd8d4d281fba100ef3f5.tar.xz
nixlib-ceaf285c0c4debf8a932fd8d4d281fba100ef3f5.tar.zst
nixlib-ceaf285c0c4debf8a932fd8d4d281fba100ef3f5.zip
haskell generic-builder: Use strictDeps always
This helps avoid the `ARG_MAX` issues we've been having, and is
generally a good idea to ensure cross comparability anyways.
Diffstat (limited to 'pkgs/development/haskell-modules/generic-builder.nix')
-rw-r--r--pkgs/development/haskell-modules/generic-builder.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index d1304c796949..38ba2609c75c 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -233,6 +233,7 @@ stdenv.mkDerivation ({
 
   inherit src;
 
+  strictDeps = true;
   inherit depsBuildBuild nativeBuildInputs;
   buildInputs = otherBuildInputs ++ optionals (!hasActiveLibrary) propagatedBuildInputs;
   propagatedBuildInputs = optionals hasActiveLibrary propagatedBuildInputs;