Skip to content

Commit 750da30

Browse files
committed
Fix missing openssl and tikv-mallocator crate dependencies
1 parent 7b77d05 commit 750da30

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

tests/flake.nix

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
inputs = {
3-
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
3+
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
44
flake-utils.url = "github:numtide/flake-utils";
55
rust-overlay = {
66
url = "github:oxalica/rust-overlay";
@@ -15,7 +15,14 @@
1515
pkgs = import nixpkgs { inherit system overlays; };
1616
in {
1717
devShells.default = with pkgs; mkShell {
18-
buildInputs = [ rust-bin.stable.latest.minimal ];
18+
buildInputs = [
19+
autoconf
20+
gcc
21+
gnumake
22+
openssl
23+
pkg-config
24+
rust-bin.stable.latest.minimal
25+
];
1926
};
2027
}
2128
);

0 commit comments

Comments
 (0)