nixpkgs/pkgs/development/compilers/binaryen/default.nix

28 lines
692 B
Nix
Raw Normal View History

{ lib, stdenv, cmake, python3, fetchFromGitHub, emscripten }:
2017-06-04 03:49:46 +00:00
stdenv.mkDerivation rec {
pname = "binaryen";
version = "99";
2017-06-04 03:49:46 +00:00
src = fetchFromGitHub {
owner = "WebAssembly";
repo = "binaryen";
2020-08-28 18:46:26 +00:00
rev = "version_${version}";
sha256 = "1a6ixxm1f8mrr9mn6a0pimajdzsdr4w1qhr92skxq67168vvc1ic";
2017-06-04 03:49:46 +00:00
};
nativeBuildInputs = [ cmake python3 ];
2017-06-04 03:49:46 +00:00
meta = with lib; {
homepage = "https://github.com/WebAssembly/binaryen";
2017-06-04 03:49:46 +00:00
description = "Compiler infrastructure and toolchain library for WebAssembly, in C++";
platforms = platforms.all;
maintainers = with maintainers; [ asppsa ];
license = licenses.asl20;
};
2020-08-29 09:27:35 +00:00
passthru.tests = {
inherit emscripten;
};
2017-06-04 03:49:46 +00:00
}