Created
April 25, 2017 18:49
-
-
Save MaikKlein/545688c81874e3b4dddba29d53e40bab to your computer and use it in GitHub Desktop.
This file contains 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
{ stdenv, libxcb, pkgconfig, cmake }: | |
vulkanEnv = stdenv.mkDerivation rec { | |
name = "VulkanExamples"; | |
buildDepends = [ cmake libxcb pkgconfig ]; | |
}; | |
with import <nixpkgs> {}; callPackage vulkanEnv {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment