Merge pull request #263171 from doronbehar/pkg/avidemux-broken

avidemux: mark as broken
This commit is contained in:
Doron Behar 2023-10-27 06:36:28 +00:00 committed by GitHub
commit 6d4ef8fc28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}