summary refs log tree commit diff
path: root/pkgs/os-specific/linux/numactl
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-08 21:27:16 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:32 +0000
commit6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd (patch)
tree14bf067f0ce52fdb4d14c1d1384429f4d73cfa9b /pkgs/os-specific/linux/numactl
parent662756bb6d992c8678cf4b430e61e40a2fd5d316 (diff)
downloadnixpkgs-6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd.tar
nixpkgs-6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd.tar.gz
nixpkgs-6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd.tar.bz2
nixpkgs-6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd.tar.lz
nixpkgs-6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd.tar.xz
nixpkgs-6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd.tar.zst
nixpkgs-6c931a13c5f9c2d2be31c1e5053e037b4e6b3cbd.zip
numactl: make tests run, but disable. Ugh!
Diffstat (limited to 'pkgs/os-specific/linux/numactl')
-rw-r--r--pkgs/os-specific/linux/numactl/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/numactl/default.nix b/pkgs/os-specific/linux/numactl/default.nix
index 9928897ae4d..4506945ffba 100644
--- a/pkgs/os-specific/linux/numactl/default.nix
+++ b/pkgs/os-specific/linux/numactl/default.nix
@@ -23,6 +23,15 @@ stdenv.mkDerivation rec {
       sha256 = "080b0sygmg7104qbbh1amh3b322yyiajwi2d3d0vayffgva0720v";
     });
 
+  postPatch = ''
+    patchShebangs test
+  '';
+
+  # You probably shouldn't ever run these! They will reconfigure Linux
+  # NUMA settings, which on my build machine makes the rest of package
+  # building ~5% slower until reboot. Ugh!
+  doCheck = false; # never ever!
+
   meta = with stdenv.lib; {
     description = "Library and tools for non-uniform memory access (NUMA) machines";
     homepage = http://oss.sgi.com/projects/libnuma/;