Created
November 7, 2018 21:41
-
-
Save Slabity/384747053b7c2dd9b0a153b0f05bb274 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let | |
| pkgs = import <nixpkgs> {}; | |
| in with pkgs; stdenv.mkDerivation rec { | |
| name = "vulkan-env"; | |
| nativeBuildInputs = [ | |
| cmake | |
| pkgconfig | |
| ]; | |
| buildInputs = with xlibs; [ | |
| libxcb.dev | |
| libX11.dev | |
| ]; | |
| LD_LIBRARY_PATH = with xlibs; stdenv.lib.makeLibraryPath [ | |
| libX11 | |
| libXcursor | |
| libXrandr | |
| libXi | |
| vulkan-loader | |
| ]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment