surrealpatch/pkg/nix/spec/wasm32-unknown-unknown.nix
2022-12-30 08:23:19 +00:00

15 lines
245 B
Nix

{ pkgs, target, util }:
{
inherit target;
features = with util.features; [ storage-mem ];
buildSpec = with pkgs; {
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
CARGO_BUILD_TARGET = target;
};
}