We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e057cd7 commit cb9b1e2Copy full SHA for cb9b1e2
nix/package.nix
@@ -1,6 +1,9 @@
1
-{ craneLib, ... }:
+{ craneLib, pkgs, ... }:
2
craneLib.buildPackage rec {
3
pname = "rubric-merge";
4
name = pname;
5
src = craneLib.cleanCargoSource ../.;
6
+
7
+ nativeBuildInputs = with pkgs; [ pkg-config ];
8
+ buildInputs = with pkgs; [ openssl ];
9
}
0 commit comments