about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-03-01 00:14:10 +0000
committerGitHub <noreply@github.com>2024-03-01 00:14:10 +0000
commita1ed79952d0edc51a55931a28fba93fca0cf00fd (patch)
treef3b3ffecba4907d35227c8d32bf20115a208817b /pkgs/os-specific
parent47e7b83fd1c8d5fdacf6a5a7a56a93b578a3e973 (diff)
parenta6a84940248f7ea903c9dfffbb777c558b6cfe3d (diff)
downloadnixlib-a1ed79952d0edc51a55931a28fba93fca0cf00fd.tar
nixlib-a1ed79952d0edc51a55931a28fba93fca0cf00fd.tar.gz
nixlib-a1ed79952d0edc51a55931a28fba93fca0cf00fd.tar.bz2
nixlib-a1ed79952d0edc51a55931a28fba93fca0cf00fd.tar.lz
nixlib-a1ed79952d0edc51a55931a28fba93fca0cf00fd.tar.xz
nixlib-a1ed79952d0edc51a55931a28fba93fca0cf00fd.tar.zst
nixlib-a1ed79952d0edc51a55931a28fba93fca0cf00fd.zip
Merge master into haskell-updates
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/reptyr/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/reptyr/default.nix b/pkgs/os-specific/linux/reptyr/default.nix
index 35516fdf0e69..fadb9df98086 100644
--- a/pkgs/os-specific/linux/reptyr/default.nix
+++ b/pkgs/os-specific/linux/reptyr/default.nix
@@ -17,7 +17,9 @@ in stdenv.mkDerivation rec {
 
   nativeCheckInputs = [ python ];
 
-  doCheck = true;
+  # reptyr needs to do ptrace of a non-child process
+  # It can be neither used nor tested if the kernel is not told to allow this
+  doCheck = false;
 
   checkFlags = [
     "PYTHON_CMD=${python.interpreter}"