From c473a4823e050ce0c60294c4666bb2d16ab262d7 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 6 Aug 2024 01:30:26 +0200 Subject: [PATCH] flake.nix: remove openssl from devshell --- flake.nix | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 8484842..f9aed43 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; });