surrealpatch/pkg/nix/spec/wasm32-unknown-unknown.nix

16 lines
245 B
Nix
Raw Normal View History

2022-12-08 16:33:12 +00:00
{ pkgs, target, util }:
{
inherit target;
features = with util.features; [ storage-mem ];
2022-12-08 16:33:12 +00:00
buildSpec = with pkgs; {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
CARGO_BUILD_TARGET = target;
};
}