about summary refs log tree commit diff
path: root/pkgs/top-level/static.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-01-02 18:53:00 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-01-03 12:50:47 +0100
commit867552957fc35828de8ce9fb3558e02adcdd8072 (patch)
treeccfccf56b425e768489282763b075ae485006482 /pkgs/top-level/static.nix
parentdd5fd3b1ffafce509cc499099923f46467f62045 (diff)
openblas: fix static musl build
Diffstat (limited to 'pkgs/top-level/static.nix')
-rw-r--r--pkgs/top-level/static.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/top-level/static.nix b/pkgs/top-level/static.nix
index fbffd8e08f5e4..e52818379fa40 100644
--- a/pkgs/top-level/static.nix
+++ b/pkgs/top-level/static.nix
@@ -152,7 +152,10 @@ in {
   optipng = super.optipng.override {
     static = true;
   };
-  openblas = super.openblas.override { enableStatic = true; };
+  openblas = super.openblas.override {
+    enableStatic = true;
+    enableShared = false;
+  };
   nix = super.nix.override { withAWS = false; };
   # openssl 1.1 doesn't compile
   openssl = super.openssl_1_0_2.override {