summary refs log tree commit diff
path: root/pkgs/top-level/static.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-08-13 12:47:03 -0400
committerGitHub <noreply@github.com>2019-08-13 12:47:03 -0400
commit554a789403efbbeb8d096b6b77b7db2f8e5b7e08 (patch)
tree78916104597af406a3223322808a4db15dc5b802 /pkgs/top-level/static.nix
parentbf1cf3d52012d0b0b340ce50745e800bba7a818f (diff)
parentcdee3b7966e52161c5ba086f2b5f4974be243b55 (diff)
downloadnixpkgs-554a789403efbbeb8d096b6b77b7db2f8e5b7e08.tar
nixpkgs-554a789403efbbeb8d096b6b77b7db2f8e5b7e08.tar.gz
nixpkgs-554a789403efbbeb8d096b6b77b7db2f8e5b7e08.tar.bz2
nixpkgs-554a789403efbbeb8d096b6b77b7db2f8e5b7e08.tar.lz
nixpkgs-554a789403efbbeb8d096b6b77b7db2f8e5b7e08.tar.xz
nixpkgs-554a789403efbbeb8d096b6b77b7db2f8e5b7e08.tar.zst
nixpkgs-554a789403efbbeb8d096b6b77b7db2f8e5b7e08.zip
Merge pull request #65537 from Holo-Host/201907/extend-static
pkgsStatic: override libunwind
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 108c6006fb6..eac84cfc1a8 100644
--- a/pkgs/top-level/static.nix
+++ b/pkgs/top-level/static.nix
@@ -163,9 +163,11 @@ in {
         enableShared = false;
         inherit libcxxabi;
       };
+      libunwind = super.llvmPackages_8.libraries.libunwind.override {
+        enableShared = false;
+      };
     };
   };
 
   python27 = super.python27.override { static = true; };
-
 }