summary refs log tree commit diff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--flake.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix
index 3d91e0a..38ff191 100644
--- a/flake.nix
+++ b/flake.nix
@@ -32,20 +32,15 @@
 
       perSystem = {
         config,
-        lib,
         pkgs,
         ...
       }: {
-        devShells.default = pkgs.mkShell rec {
+        devShells.default = pkgs.mkShell {
           shellHook = ''
             ${config.pre-commit.installationScript}
           '';
 
-          buildInputs = with pkgs; [cargo-nextest] ++ nativeBuildInputs;
-          nativeBuildInputs = with pkgs; [openssl openssl.dev pkg-config];
-
-          LD_LIBRARY_PATH = lib.makeLibraryPath [pkgs.openssl];
-          PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
+          buildInputs = with pkgs; [cargo-nextest];
         };
 
         pre-commit.settings.hooks = {