Skip to content

Commit 64010a1

Browse files
committed
fix(nix): fix openssl not being available when building vertd-deps
1 parent b33e789 commit 64010a1

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

flake.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@
3737
commonArgs = {
3838
inherit src;
3939
strictDeps = true;
40+
nativeBuildInputs = [
41+
pkgs.pkg-config
42+
];
43+
buildInputs = [
44+
pkgs.openssl
45+
];
4046
};
4147

4248
craneLibLLvmTools = craneLib.overrideToolchain (
@@ -62,6 +68,9 @@
6268
nativeBuildInputs = [
6369
pkgs.makeWrapper
6470
pkgs.pkg-config
71+
];
72+
73+
buildInputs = [
6574
pkgs.openssl
6675
];
6776

0 commit comments

Comments
 (0)