haskellPackages.serialport: explain why we skip the test suite

This commit is contained in:
sternenseemann
2025-09-26 14:31:36 +02:00
parent fffe18dcd9
commit fc2d612b1d
2 changed files with 4 additions and 3 deletions
@@ -817,9 +817,6 @@ with haskellLib;
# Upstream notified by e-mail.
permutation = dontCheck super.permutation;
# https://github.com/jputcu/serialport/issues/25
serialport = dontCheck super.serialport;
# Test suite depends on source code being available
simple-affine-space = dontCheck super.simple-affine-space;
@@ -286,6 +286,10 @@ builtins.intersectAttrs super {
}))
];
# Test suite requires access to an actual serial port
# https://github.com/jputcu/serialport/issues/25 krank:ignore-line
serialport = dontCheck super.serialport;
# Provides a library and an executable (pretty-derivation)
nix-derivation = enableSeparateBinOutput super.nix-derivation;