Skip to content

Commit cab5dc4

Browse files
haskellPackages.evdev: disable test broken by sandbox
Closes #189673.
1 parent a6cc7c4 commit cab5dc4

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

pkgs/development/haskell-modules/configuration-nix.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -980,6 +980,14 @@ self: super: builtins.intersectAttrs super {
980980
'';
981981
}) super.jacinda;
982982

983+
# Smoke test can't be executed in sandbox
984+
# https://github.com/georgefst/evdev/issues/25
985+
evdev = overrideCabal (drv: {
986+
testFlags = drv.testFlags or [] ++ [
987+
"-p" "!/Smoke/"
988+
];
989+
}) super.evdev;
990+
983991
# Tests assume dist-newstyle build directory is present
984992
cabal-hoogle = dontCheck super.cabal-hoogle;
985993

0 commit comments

Comments
 (0)