Skip to content

Commit

Permalink
avidemux: restrict platforms
Browse files Browse the repository at this point in the history
(cherry picked from commit 1f8d30f)
  • Loading branch information
abbradar committed Mar 6, 2018
1 parent 1bc5bf4 commit a2037bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/applications/video/avidemux/default.nix
Expand Up @@ -79,7 +79,8 @@ stdenv.mkDerivation rec {
homepage = http://fixounet.free.fr/avidemux/;
description = "Free video editor designed for simple video editing tasks";
maintainers = with maintainers; [ viric abbradar ma27 ];
platforms = platforms.linux;
# "CPU not supported" errors on AArch64
platforms = [ "i686-linux" "x86_64-linux" ];
license = licenses.gpl2;
};
}

0 comments on commit a2037bb

Please sign in to comment.