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

14 lines
194 B
Nix
Raw Normal View History

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