nyxt: change meta.platforms to platforms.all

This builds and works fine on at least aarch64 (tested on a PineBook
Pro), so I figure the arbitrary platform limitation ought to be
lifted.
This commit is contained in:
Anton Kindestam 2021-03-06 07:12:59 +01:00
parent 6aa26c8623
commit 18b479e782

View File

@ -52,6 +52,6 @@ stdenv.mkDerivation rec {
homepage = "https://nyxt.atlas.engineer";
license = licenses.bsd3;
maintainers = with maintainers; [ lewo ];
platforms = [ "x86_64-linux" ];
platforms = platforms.all;
};
}