about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorGreizgh <greizgh@ephax.org>2023-12-31 12:03:22 +0100
committerGreizgh <greizgh@ephax.org>2024-01-20 20:21:43 +0100
commit6fc5258c5c60fbb1128c902983068b6601f9a0b9 (patch)
tree7208637f284a61b4b2a1348f15c0f632b9f359fc /pkgs/applications/graphics
parentc5a7b36c8c0cf66f173a6026b846cb77c5a3f33d (diff)
f3d: mark broken
As of 2024-01-20, running f3d result in:
error while loading shared libraries: libvtkInteractionWidgets.so.1: cannot open shared object file: No such file or directory

Related issue: https://github.com/NixOS/nixpkgs/issues/262328
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/f3d/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/f3d/default.nix b/pkgs/applications/graphics/f3d/default.nix
index 0207d3fa13e0c..90dc732c0306d 100644
--- a/pkgs/applications/graphics/f3d/default.nix
+++ b/pkgs/applications/graphics/f3d/default.nix
@@ -30,5 +30,9 @@ stdenv.mkDerivation rec {
     license = licenses.bsd3;
     maintainers = with maintainers; [ bcdarwin ];
     platforms = with platforms; unix;
+    # As of 2024-01-20, this fails with:
+    # error while loading shared libraries: libvtkInteractionWidgets.so.1: cannot open shared object file: No such file or directory
+    # Tracking issue: https://github.com/NixOS/nixpkgs/issues/262328
+    broken = true;
   };
 }