Merge pull request #15738 from matthewbauer/emscripten-fix
looks promising. let's see what hydra thinks about it. thanks
This commit is contained in:
commit
e5ac7103ff
@ -1,22 +1,24 @@
|
||||
{ stdenv, fetchgit, python }:
|
||||
{ stdenv, fetchFromGitHub, python }:
|
||||
|
||||
let
|
||||
tag = "1.36.4";
|
||||
rev = "1.36.4";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "emscripten-fastcomp-${tag}";
|
||||
stdenv.mkDerivation {
|
||||
name = "emscripten-fastcomp-${rev}";
|
||||
|
||||
srcFC = fetchgit {
|
||||
url = git://github.com/kripken/emscripten-fastcomp;
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "0qmrc83yrlmlb11gqixxnwychif964054lgdiycz0l10yj0q37j5";
|
||||
srcFC = fetchFromGitHub {
|
||||
owner = "kripken";
|
||||
repo = "emscripten-fastcomp";
|
||||
sha256 = "0838rl0n9hyq5dd0gmj5rvigbmk5mhrhzyjk0zd8mjs2mk8z510l";
|
||||
inherit rev;
|
||||
};
|
||||
|
||||
srcFL = fetchgit {
|
||||
url = git://github.com/kripken/emscripten-fastcomp-clang;
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "1av58y9s24l32hsdgp3jh4fkc5005xbzzjd27in2r9q3p6igd5d4";
|
||||
srcFL = fetchFromGitHub {
|
||||
owner = "kripken";
|
||||
repo = "emscripten-fastcomp-clang";
|
||||
sha256 = "169hfabamv3jmf88flhl4scwaxdh24196gwpz3sdb26lzcns519q";
|
||||
inherit rev;
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
@ -33,11 +35,12 @@ stdenv.mkDerivation rec {
|
||||
make
|
||||
cp -a Release/bin $out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/kripken/emscripten-fastcomp;
|
||||
description = "emscripten llvm";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
maintainers = with maintainers; [ qknight matthewbauer ];
|
||||
license = stdenv.lib.licenses.ncsa;
|
||||
};
|
||||
}
|
||||
|
@ -1,17 +1,18 @@
|
||||
{ stdenv, fetchgit, emscriptenfastcomp, python, nodejs, closurecompiler, jre }:
|
||||
{ stdenv, fetchFromGitHub, emscriptenfastcomp, python, nodejs, closurecompiler, jre }:
|
||||
|
||||
let
|
||||
tag = "1.36.4";
|
||||
rev = "1.36.4";
|
||||
appdir = "share/emscripten";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "emscripten-${tag}";
|
||||
stdenv.mkDerivation {
|
||||
name = "emscripten-${rev}";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://github.com/kripken/emscripten;
|
||||
rev = "refs/tags/${tag}";
|
||||
sha256 = "02m85xh9qx29kb6v11y072gk8fvyc23964wclr70c69j2gal2qpr";
|
||||
src = fetchFromGitHub {
|
||||
owner = "kripken";
|
||||
repo = "emscripten";
|
||||
sha256 = "1c9592i891z1v9rp4a4lnsp14nwiqfxnh37g6xwwjd1bqx7x4hn7";
|
||||
inherit rev;
|
||||
};
|
||||
|
||||
buildCommand = ''
|
||||
@ -34,11 +35,12 @@ stdenv.mkDerivation rec {
|
||||
echo "CLOSURE_COMPILER = '${closurecompiler}/share/java/compiler.jar'" >> $out/${appdir}/config
|
||||
echo "JAVA = '${jre}/bin/java'" >> $out/${appdir}/config
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/kripken/emscripten;
|
||||
description = "An LLVM-to-JavaScript Compiler";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
maintainers = with maintainers; [ qknight matthewbauer ];
|
||||
license = licenses.ncsa;
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user