emscripten and emscripten-fastcomp: add platforms

Close #11068.

Changed files
+2
pkgs
development
compilers
emscripten
emscripten-fastcomp
+1
pkgs/development/compilers/emscripten-fastcomp/default.nix
···
meta = with stdenv.lib; {
homepage = https://github.com/kripken/emscripten-fastcomp;
description = "emscripten llvm";
+
platforms = platforms.all;
maintainers = with maintainers; [ bosu ];
license = stdenv.lib.licenses.ncsa;
};
+1
pkgs/development/compilers/emscripten/default.nix
···
meta = with stdenv.lib; {
homepage = https://github.com/kripken/emscripten;
description = "An LLVM-to-JavaScript Compiler";
+
platforms = platforms.all;
maintainers = with maintainers; [ bosu ];
license = licenses.ncsa;
};