surrealpatch/pkg/nix/spec/wasm32-unknown-unknown.nix
2022-12-08 16:33:12 +00:00

13 lines
194 B
Nix

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