mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Add myself as maintainer for emscripten, emscripten-fastcomp.
This commit is contained in:
parent
d078fe1e9c
commit
f646b9295e
2 changed files with 4 additions and 2 deletions
|
@ -35,11 +35,12 @@ stdenv.mkDerivation {
|
||||||
make
|
make
|
||||||
cp -a Release/bin $out
|
cp -a Release/bin $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/kripken/emscripten-fastcomp;
|
homepage = https://github.com/kripken/emscripten-fastcomp;
|
||||||
description = "emscripten llvm";
|
description = "emscripten llvm";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ qknight ];
|
maintainers = with maintainers; [ qknight matthewbauer ];
|
||||||
license = stdenv.lib.licenses.ncsa;
|
license = stdenv.lib.licenses.ncsa;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,11 +35,12 @@ stdenv.mkDerivation {
|
||||||
echo "CLOSURE_COMPILER = '${closurecompiler}/share/java/compiler.jar'" >> $out/${appdir}/config
|
echo "CLOSURE_COMPILER = '${closurecompiler}/share/java/compiler.jar'" >> $out/${appdir}/config
|
||||||
echo "JAVA = '${jre}/bin/java'" >> $out/${appdir}/config
|
echo "JAVA = '${jre}/bin/java'" >> $out/${appdir}/config
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/kripken/emscripten;
|
homepage = https://github.com/kripken/emscripten;
|
||||||
description = "An LLVM-to-JavaScript Compiler";
|
description = "An LLVM-to-JavaScript Compiler";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ qknight ];
|
maintainers = with maintainers; [ qknight matthewbauer ];
|
||||||
license = licenses.ncsa;
|
license = licenses.ncsa;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue