From 57d1caf9f67f3f5d8d89b266e9ef0a3312828765 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Tue, 28 Jan 2020 14:30:31 +0100 Subject: [PATCH] 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 --- pkgs/tools/misc/ttyrec/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/misc/ttyrec/default.nix b/pkgs/tools/misc/ttyrec/default.nix index 56ec9afea4386..799e397daceb0 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 }; }