about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2023-10-27 06:36:28 +0000
committerGitHub <noreply@github.com>2023-10-27 06:36:28 +0000
commit6d4ef8fc2859c4998718b8747ff8eac60c07d6a2 (patch)
treeca390f0756e0cffc70a39abb7d78b3d97a9c4053 /pkgs/applications/video
parent362e479eb7bcf61b7fd0024987a0d92b8a600992 (diff)
parentd32ccddafde4b949cc8f05b6f4044758ca9e215f (diff)
Merge pull request #263171 from doronbehar/pkg/avidemux-broken
avidemux: mark as broken
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/avidemux/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/applications/video/avidemux/default.nix b/pkgs/applications/video/avidemux/default.nix
index ea7ba432a4a42..856bc95a477d6 100644
--- a/pkgs/applications/video/avidemux/default.nix
+++ b/pkgs/applications/video/avidemux/default.nix
@@ -93,5 +93,13 @@ stdenv.mkDerivation rec {
     # "CPU not supported" errors on AArch64
     platforms = [ "i686-linux" "x86_64-linux" ];
     license = licenses.gpl2;
+    # Downstream we experience:
+    #
+    # https://github.com/NixOS/nixpkgs/issues/239424
+    #
+    # Upstream doesn't have a contact page / Bug tracker, so it's not easy to
+    # notify them about it. Using firejail might help, as some commented
+    # downstream.
+    broken = true;
   };
 }