about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorThibault Gagnaux <tgagnaux@gmail.com>2023-01-10 11:43:38 +0100
committerManuel Bärenz <programming@manuelbaerenz.de>2023-01-10 14:03:32 +0100
commitad92b19e362ce0be181c616e8c528e571c38926d (patch)
tree823e15617779e6c3cd79e61654fc8bd5548cddbf /pkgs/applications/video
parentd46a8e74bcf247a63bde66647439d6d21f5c110c (diff)
glaxnimate: disable failing integration test on darwin
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/glaxnimate/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/glaxnimate/default.nix b/pkgs/applications/video/glaxnimate/default.nix
index 2fdb82869f3bd..a688e0476256c 100644
--- a/pkgs/applications/video/glaxnimate/default.nix
+++ b/pkgs/applications/video/glaxnimate/default.nix
@@ -13,7 +13,7 @@
 , testers
 , qtsvg
 , qtimageformats
-# For the tests
+  # For the tests
 , glaxnimate # Call itself, for the tests
 , xvfb-run
 }:
@@ -67,10 +67,10 @@ stdenv.mkDerivation rec {
 
   qtWrapperArgs = [ ''--prefix PATH : ${python3WithLibs}/bin'' ];
 
-  passthru.tests.version = testers.testVersion {
+  passthru.tests.version = lib.optionalAttrs stdenv.isLinux (testers.testVersion {
     package = glaxnimate;
     command = "${xvfb-run}/bin/xvfb-run glaxnimate --version";
-  };
+  });
 
   meta = with lib; {
     homepage = "https://gitlab.com/mattbas/glaxnimate";