notepad-next: mark as broken for aarch64

This commit is contained in:
Sebastian Sellmeier 2022-05-23 02:42:09 +02:00
parent bc38fcac7d
commit 644d8ed029
No known key found for this signature in database
GPG Key ID: 51E2BE0CCC826F98

View File

@ -1,4 +1,4 @@
{ mkDerivation, lib, fetchFromGitHub, qmake, libsForQt5 }:
{ mkDerivation, lib, fetchFromGitHub, qmake, libsForQt5, stdenv }:
mkDerivation rec {
pname = "notepad-next";
@ -32,5 +32,6 @@ mkDerivation rec {
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.sebtm ];
broken = stdenv.isAarch64;
};
}