Skip to content

Instantly share code, notes, and snippets.

@MaikKlein
Created April 25, 2017 18:49
{ 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