summary refs log tree commit diff
path: root/pkgs/top-level/static.nix
diff options
context:
space:
mode:
authorTobias Mayer <tobim@fastmail.fm>2019-12-16 13:22:20 +0100
committerTobias Mayer <tobim@fastmail.fm>2019-12-31 15:05:13 +0100
commit207db019cefd27b20e16609384ce1aedf998c991 (patch)
tree704970229033693fcb8035da7167cce43a090cae /pkgs/top-level/static.nix
parent0a21b322346977d7413c8cd2a3d834d8f1b03c96 (diff)
downloadnixpkgs-207db019cefd27b20e16609384ce1aedf998c991.tar
nixpkgs-207db019cefd27b20e16609384ce1aedf998c991.tar.gz
nixpkgs-207db019cefd27b20e16609384ce1aedf998c991.tar.bz2
nixpkgs-207db019cefd27b20e16609384ce1aedf998c991.tar.lz
nixpkgs-207db019cefd27b20e16609384ce1aedf998c991.tar.xz
nixpkgs-207db019cefd27b20e16609384ce1aedf998c991.tar.zst
nixpkgs-207db019cefd27b20e16609384ce1aedf998c991.zip
arrow-cpp: add pkgsStatic support
Diffstat (limited to 'pkgs/top-level/static.nix')
-rw-r--r--pkgs/top-level/static.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/top-level/static.nix b/pkgs/top-level/static.nix
index 81c977b7981..fbffd8e08f5 100644
--- a/pkgs/top-level/static.nix
+++ b/pkgs/top-level/static.nix
@@ -162,6 +162,10 @@ in {
     # --disable-shared flag
     stdenv = super.stdenv;
   };
+  arrow-cpp = super.arrow-cpp.override {
+    enableShared = false;
+    python = { pkgs = { python = null; numpy = null; }; };
+  };
   boost = super.boost.override {
     enableStatic = true;
     enableShared = false;