Skip to content

Commit b023e38

Browse files
authored
Updated rust version and added sqlite in flake.nix (#396)
1 parent e66a8c6 commit b023e38

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

flake.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# We only need the nightly overlay in the devShell because .rs files are formatted with nightly.
1515
overlays = [ (import rust-overlay) ];
1616
pkgs = import nixpkgs { inherit system overlays; };
17-
rustNightly = pkgs.rust-bin.nightly."2024-03-08".default;
17+
rustNightly = pkgs.rust-bin.nightly."2024-12-12".default;
1818
in
1919
with pkgs;
2020
{
@@ -27,7 +27,7 @@
2727
};
2828
nativeBuildInputs = [ pkg-config ];
2929
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin
30-
(with darwin.apple_sdk.frameworks; [ AppKit Security Cocoa]);
30+
(with darwin.apple_sdk.frameworks; [ AppKit Security Cocoa ]);
3131
};
3232

3333
devShell = mkShell {
@@ -38,6 +38,7 @@
3838
pkg-config
3939
cargo-tarpaulin
4040
cargo-watch
41+
sqlite
4142
];
4243
};
4344
});

0 commit comments

Comments
 (0)