From e9dc4580a07bef054118153654d0838d1ef2595a Mon Sep 17 00:00:00 2001 From: Eduard-Mihai Burtescu Date: Sat, 27 Mar 2021 14:27:23 +0200 Subject: [PATCH] default.nix: replace `stdenv.lib` with `lib` to silence warning. --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 52a00cbef1..573210a0cb 100644 --- a/default.nix +++ b/default.nix @@ -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 ]; }