Skip to content

Commit 5a27455

Browse files
authored
default.nix: handle nixpkgs alias removal (x11 -> xlibsWrapper, xlibs -> xorg). (#855)
1 parent a75d6e3 commit 5a27455

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ in with pkgs; stdenv.mkDerivation rec {
1010
SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
1111

1212
buildInputs = [
13-
pkgconfig rustup x11 libxkbcommon
13+
pkgconfig rustup xlibsWrapper libxkbcommon
1414
];
1515

1616
# Runtime dependencies.
17-
LD_LIBRARY_PATH = with xlibs; lib.makeLibraryPath [
17+
LD_LIBRARY_PATH = with xorg; lib.makeLibraryPath [
1818
libX11 libXcursor libXi libXrandr vulkan-loader
1919
];
2020
}

0 commit comments

Comments
 (0)