8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 sha256 = "07zzmk776j8ydyxhrnnjiscbhhmz182a62r6aix6kfk5kq2cwia2";
19 nativeBuildInputs = [ cmake ];
27 install -Dm755 wasm3 -t $out/bin
32 homepage = "https://github.com/wasm3/wasm3";
33 description = "Fastest WebAssembly interpreter, and the most universal runtime";
34 platforms = platforms.all;
35 maintainers = with maintainers; [ malbarbo ];
36 license = licenses.mit;
37 knownVulnerabilities = [
38 # wasm3 expects all wasm code to be pre-validated, any users
39 # should be aware that running unvalidated wasm will potentially
40 # lead to RCE until upstream have added a builtin validator