497e50cf16
This changes the emscripten package so that it specifies the rev from the binaryen repo to use, and sets it to always use the version that has been tagged for use with that version of emscripten. This should force future updates of emscripten to also update binaryen. Binaryen can also be installed as a stand-alone package, so there's some logic added to the binaryen package to allow building in both ways, and distinguishing between them.
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, cmake, fetchFromGitHub, emscriptenRev ? null }:
|
|
|
|
let
|
|
defaultVersion = "44";
|
|
|
|
# Map from git revs to SHA256 hashes
|
|
sha256s = {
|
|
"version_44" = "0zsqppc05fm62807w6vyccxkk2y2gar7kxbxxixq8zz3xsp6w84p";
|
|
"1.37.36" = "1wgzfzjjzkiaz0rf2lnwrcvlcsjvjhyvbyh58jxhqq43vi34zyjc";
|
|
};
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = if emscriptenRev == null
|
|
then defaultVersion
|
|
else "emscripten-${emscriptenRev}";
|
|
rev = if emscriptenRev == null
|
|
then "version_${version}"
|
|
else emscriptenRev;
|
|
name = "binaryen-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "WebAssembly";
|
|
repo = "binaryen";
|
|
sha256 =
|
|
if builtins.hasAttr rev sha256s
|
|
then builtins.getAttr rev sha256s
|
|
else null;
|
|
inherit rev;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/WebAssembly/binaryen;
|
|
description = "Compiler infrastructure and toolchain library for WebAssembly, in C++";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ asppsa ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|