15 lines
245 B
Nix
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;
|
|
};
|
|
}
|