flake.nix: remove openssl from devshell

This commit is contained in:
2024-08-06 01:30:26 +02:00
parent eddc0ad5e9
commit c473a4823e

View File

@@ -28,14 +28,7 @@
in f system pkgs toolchain);
in {
devShell = forAllSystems (system: pkgs: toolchain: pkgs.mkShell {
nativeBuildInputs = [
toolchain
pkgs.pkg-config
];
buildInputs = [
pkgs.openssl
];
nativeBuildInputs = [ toolchain ];
RUST_SRC_PATH = "${toolchain}/lib/rustlib/src/rust/library";
});