default.nix: replace stdenv.lib with lib to silence warning.

This commit is contained in:
Eduard-Mihai Burtescu 2021-03-27 14:27:23 +02:00 committed by XAMPPRocky
parent 182bbca7e5
commit e9dc4580a0

View File

@ -14,7 +14,7 @@ in with pkgs; stdenv.mkDerivation rec {
];
# Runtime dependencies.
LD_LIBRARY_PATH = with xlibs; stdenv.lib.makeLibraryPath [
LD_LIBRARY_PATH = with xlibs; lib.makeLibraryPath [
libX11 libXcursor libXi libXrandr vulkan-loader
];
}