summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/static.nix
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@transumption.com>2019-07-29 03:04:05 +0300
committerYegor Timoshenko <yegortimoshenko@transumption.com>2019-07-29 03:08:02 +0300
commitcdee3b7966e52161c5ba086f2b5f4974be243b55 (patch)
tree1f316c47dc8a77ad3f141e22ada296dabc9d2188 /pkgs/top-level/static.nix
parent239fffc90d792b5362a20ec1a009978de7b8f91a (diff)
llvmPackages_8.libraries.libunwind: add enableShared option
Diffstat (limited to 'pkgs/top-level/static.nix')
-rw-r--r--pkgs/top-level/static.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/top-level/static.nix b/pkgs/top-level/static.nix
index 476ad9de3e95..d69c69bd8a7d 100644
--- a/pkgs/top-level/static.nix
+++ b/pkgs/top-level/static.nix
@@ -154,9 +154,11 @@ in {
enableShared = false;
inherit libcxxabi;
};
+ libunwind = super.llvmPackages_8.libraries.libunwind.override {
+ enableShared = false;
+ };
};
};
python27 = super.python27.override { static = true; };
-
}