10 llvmPackages.stdenv.mkDerivation rec {
14 src = fetchFromGitHub {
18 sha256 = "sha256-P2Y2WK6G8aEK1Q4hjrS9X+2WbOfy4brclB/+SWP5LTM=";
27 nativeBuildInputs = [ cmake llvmPackages.lld ];
29 checkInputs = [ gtest ];
32 "-DCMAKE_BUILD_TYPE=Release"
33 "-DWASMEDGE_BUILD_TESTS=OFF" # Tests are downloaded using git
37 homepage = "https://wasmedge.org/";
38 license = with licenses; [ asl20 ];
39 description = "A lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge, and decentralized applications";
40 maintainers = with maintainers; [ dit7ya ];