66 lines
1.3 KiB
Nix
66 lines
1.3 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, llvmPackages_12
|
|
, boost
|
|
, cmake
|
|
, spdlog
|
|
, libxml2
|
|
, libffi
|
|
, Foundation
|
|
, testers
|
|
}:
|
|
|
|
let
|
|
llvmPackages = llvmPackages_12;
|
|
stdenv = llvmPackages.stdenv;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "wasmedge";
|
|
version = "0.13.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "WasmEdge";
|
|
repo = "WasmEdge";
|
|
rev = finalAttrs.version;
|
|
sha256 = "sha256-2EKUnRvd1w1TxO7OFKYpTzSXC3fdIU7Jk0MIPPTY96U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
llvmPackages.lld
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
spdlog
|
|
llvmPackages.llvm
|
|
libxml2
|
|
libffi
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
Foundation
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DWASMEDGE_BUILD_TESTS=OFF" # Tests are downloaded using git
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
"-DWASMEDGE_FORCE_DISABLE_LTO=ON"
|
|
];
|
|
|
|
postPatch = ''
|
|
echo -n $version > VERSION
|
|
'';
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wasmedge.org/";
|
|
license = with licenses; [ asl20 ];
|
|
description = "A lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge, and decentralized applications";
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
platforms = platforms.all;
|
|
};
|
|
})
|