about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-01-28 14:30:31 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2020-01-28 14:30:31 +0100
commit57d1caf9f67f3f5d8d89b266e9ef0a3312828765 (patch)
treeca44e8c9e57380c73779885cff770a310f0f505d /pkgs
parentb83afb9a2da71f4d14c65c943c1576efc1448c2c (diff)
downloadnixlib-57d1caf9f67f3f5d8d89b266e9ef0a3312828765.tar
nixlib-57d1caf9f67f3f5d8d89b266e9ef0a3312828765.tar.gz
nixlib-57d1caf9f67f3f5d8d89b266e9ef0a3312828765.tar.bz2
nixlib-57d1caf9f67f3f5d8d89b266e9ef0a3312828765.tar.lz
nixlib-57d1caf9f67f3f5d8d89b266e9ef0a3312828765.tar.xz
nixlib-57d1caf9f67f3f5d8d89b266e9ef0a3312828765.tar.zst
nixlib-57d1caf9f67f3f5d8d89b266e9ef0a3312828765.zip
ttyrec: mark as broken
Requires svr4-specific stuff to work around "out of ptys"-error[1],
however this API has been dropped in glibc 2.30 and as the package is
fairly old, there doesn't seem to be an actual fix available.

[1] https://github.com/mjording/ttyrec/pull/2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/ttyrec/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/misc/ttyrec/default.nix b/pkgs/tools/misc/ttyrec/default.nix
index 56ec9afea438..799e397daceb 100644
--- a/pkgs/tools/misc/ttyrec/default.nix
+++ b/pkgs/tools/misc/ttyrec/default.nix
@@ -26,5 +26,6 @@ stdenv.mkDerivation rec {
     license = licenses.bsd3;
     platforms = platforms.all;
     maintainers = with maintainers; [ zimbatm ];
+    broken = true; # 2020-01-28
   };
 }