Skip to content

Commit cb9b1e2

Browse files
committed
fix: add package build deps
1 parent e057cd7 commit cb9b1e2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

nix/package.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
{ craneLib, ... }:
1+
{ craneLib, pkgs, ... }:
22
craneLib.buildPackage rec {
33
pname = "rubric-merge";
44
name = pname;
55
src = craneLib.cleanCargoSource ../.;
6+
7+
nativeBuildInputs = with pkgs; [ pkg-config ];
8+
buildInputs = with pkgs; [ openssl ];
69
}

0 commit comments

Comments
 (0)