summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules/qtwebkit.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2018-08-11 16:34:22 +0000
committerGitHub <noreply@github.com>2018-08-11 16:34:22 +0000
commita68e5e918e52f1b45a13c585f6b015a254e94f18 (patch)
tree6e825fe861796e75ddf87da42d3f63c4c4889b88 /pkgs/development/libraries/qt-5/modules/qtwebkit.nix
parentb9c8d68452aca58f4588788b78ec2e255f5b6192 (diff)
parent35c9435d15b31bdfc000d67670b7ac58dca30c4e (diff)
downloadnixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.gz
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.bz2
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.lz
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.xz
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.zst
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.zip
Merge pull request #44825 from oxij/docheck/continues-in-a-big-way
treewide: enable working, fix fixable, disable broken tests
Diffstat (limited to 'pkgs/development/libraries/qt-5/modules/qtwebkit.nix')
-rw-r--r--pkgs/development/libraries/qt-5/modules/qtwebkit.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/libraries/qt-5/modules/qtwebkit.nix b/pkgs/development/libraries/qt-5/modules/qtwebkit.nix
index 62da679157f0..833433fabeca 100644
--- a/pkgs/development/libraries/qt-5/modules/qtwebkit.nix
+++ b/pkgs/development/libraries/qt-5/modules/qtwebkit.nix
@@ -17,6 +17,9 @@ let
       url = "http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-${name}.tar.gz";
       sha256 = "304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705";
     };
+    postPatch = ''
+      patchShebangs tests
+    '';
     buildInputs = [ perl ];
   };
 in
@@ -60,6 +63,8 @@ qtModule {
       ]
     ++ optional (!stdenv.isDarwin) ''-DNIXPKGS_LIBUDEV="${getLib systemd}/lib/libudev"'';
 
+  doCheck = false; # fails 13 out of 13 tests (ctest)
+
   # Hack to avoid TMPDIR in RPATHs.
   preFixup = ''rm -rf "$(pwd)" && mkdir "$(pwd)" '';