Remove unneeded variables

This commit is contained in:
Thomas Zahner 2024-11-24 12:52:50 +01:00
parent 88b6282493
commit a420f744f3

View file

@ -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";
};
};
}