13 lines
194 B
Nix
13 lines
194 B
Nix
{ pkgs, target, util }:
|
|
|
|
{
|
|
inherit target;
|
|
|
|
buildSpec = with pkgs; {
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
CARGO_BUILD_TARGET = target;
|
|
};
|
|
}
|