about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2023-10-24 19:00:57 +0300
committerDoron Behar <doron.behar@gmail.com>2023-10-24 19:00:59 +0300
commitd32ccddafde4b949cc8f05b6f4044758ca9e215f (patch)
treef5db8d7ba7da801d73cd5fad070175bc899d4125
parent5babd0d512ec88b848924e1f2a1ae5585098ad75 (diff)
downloadnixlib-d32ccddafde4b949cc8f05b6f4044758ca9e215f.tar
nixlib-d32ccddafde4b949cc8f05b6f4044758ca9e215f.tar.gz
nixlib-d32ccddafde4b949cc8f05b6f4044758ca9e215f.tar.bz2
nixlib-d32ccddafde4b949cc8f05b6f4044758ca9e215f.tar.lz
nixlib-d32ccddafde4b949cc8f05b6f4044758ca9e215f.tar.xz
nixlib-d32ccddafde4b949cc8f05b6f4044758ca9e215f.tar.zst
nixlib-d32ccddafde4b949cc8f05b6f4044758ca9e215f.zip
avidemux: mark as broken
https://github.com/NixOS/nixpkgs/issues/239424
-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 ea7ba432a4a4..856bc95a477d 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;
   };
 }