597d1a0aa2
Change-Id: I4114a1b83e5f1edbb04d0ab920f107245ec998bd Reviewed-on: https://cl.tvl.fyi/c/depot/+/8761 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
9 lines
139 B
Nix
9 lines
139 B
Nix
{ depot, pkgs, ... }:
|
|
|
|
depot.third_party.naersk.buildPackage {
|
|
src = ./.;
|
|
buildInputs = with pkgs; [
|
|
pkg-config
|
|
openssl
|
|
];
|
|
}
|