about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-01-22 23:42:38 +0100
committerGitHub <noreply@github.com>2024-01-22 23:42:38 +0100
commit5d4dd2a3645c048ead9b28a761e7e9d7644c078c (patch)
tree30aa1384ea98a6aca549c427bdedb8f8c63831de /pkgs/applications/graphics
parent40827186b0a095c827e612a9301b5f669a6a24ef (diff)
parent6fc5258c5c60fbb1128c902983068b6601f9a0b9 (diff)
downloadnixlib-5d4dd2a3645c048ead9b28a761e7e9d7644c078c.tar
nixlib-5d4dd2a3645c048ead9b28a761e7e9d7644c078c.tar.gz
nixlib-5d4dd2a3645c048ead9b28a761e7e9d7644c078c.tar.bz2
nixlib-5d4dd2a3645c048ead9b28a761e7e9d7644c078c.tar.lz
nixlib-5d4dd2a3645c048ead9b28a761e7e9d7644c078c.tar.xz
nixlib-5d4dd2a3645c048ead9b28a761e7e9d7644c078c.tar.zst
nixlib-5d4dd2a3645c048ead9b28a761e7e9d7644c078c.zip
Merge pull request #277891 from greizgh/f3d-broken
f3d: mark broken
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 0207d3fa13e0..90dc732c0306 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;
   };
 }