We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6cc7c4 commit cab5dc4Copy full SHA for cab5dc4
1 file changed
pkgs/development/haskell-modules/configuration-nix.nix
@@ -980,6 +980,14 @@ self: super: builtins.intersectAttrs super {
980
'';
981
}) super.jacinda;
982
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
+
991
# Tests assume dist-newstyle build directory is present
992
cabal-hoogle = dontCheck super.cabal-hoogle;
993
0 commit comments