Merge pull request #174062 from SebTM/notepad-next_aarch64

notepad-next: mark as broken for aarch64

authored by Ivv and committed by GitHub a29130b9 bf139d83

+2 -1
+2 -1
pkgs/applications/editors/notepad-next/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, qmake, libsForQt5 }: 2 3 mkDerivation rec { 4 pname = "notepad-next"; ··· 32 license = licenses.gpl3Plus; 33 platforms = platforms.linux; 34 maintainers = [ maintainers.sebtm ]; 35 }; 36 }
··· 1 + { mkDerivation, lib, fetchFromGitHub, qmake, libsForQt5, stdenv }: 2 3 mkDerivation rec { 4 pname = "notepad-next"; ··· 32 license = licenses.gpl3Plus; 33 platforms = platforms.linux; 34 maintainers = [ maintainers.sebtm ]; 35 + broken = stdenv.isAarch64; 36 }; 37 }