2022-10-04 16:32:44 +00:00
|
|
|
{ pkgs, target, util }:
|
|
|
|
|
|
|
|
{
|
|
|
|
inherit target;
|
|
|
|
|
2023-12-12 15:05:09 +00:00
|
|
|
features = with util.features; [ storage-mem storage-rocksdb scripting http ];
|
2022-10-04 16:32:44 +00:00
|
|
|
|
|
|
|
buildSpec = with pkgs; {
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
|
|
depsBuildBuild = [ pkgsCross.mingwW64.stdenv.cc ];
|
|
|
|
|
|
|
|
buildInputs = [ pkgsCross.mingwW64.windows.pthreads ];
|
|
|
|
|
|
|
|
CARGO_BUILD_TARGET = target;
|
|
|
|
};
|
|
|
|
}
|