Skip to content

Instantly share code, notes, and snippets.

@MaikKlein
Created April 25, 2017 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MaikKlein/545688c81874e3b4dddba29d53e40bab to your computer and use it in GitHub Desktop.
Save MaikKlein/545688c81874e3b4dddba29d53e40bab to your computer and use it in GitHub Desktop.
{ 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