From a420f744f3e8bac0e413fbefc2bb060143adfbf8 Mon Sep 17 00:00:00 2001 From: Thomas Zahner Date: Sun, 24 Nov 2024 12:52:50 +0100 Subject: [PATCH] Remove unneeded variables --- flake.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/flake.nix b/flake.nix index df4b89f..001adca 100644 --- a/flake.nix +++ b/flake.nix @@ -28,10 +28,6 @@ "clippy" ]; }; - libPath = pkgs.lib.makeLibraryPath [ - pkgs.pkg-config - pkgs.openssl - ]; in pkgs.mkShell { packages = [ @@ -39,9 +35,7 @@ pkgs.openssl rust ]; - LD_LIBRARY_PATH = libPath; RUST_BACKTRACE = 1; - LIBCLANG_PATH = "${pkgs.libclang.lib}/lib"; }; }; }