{ stdenv, libxcb, pkgconfig, cmake }:
stdenv.mkDerivation rec {
name = "VulkanExamples";
buildDepends = [ cmake libxcb pkgconfig ];
}with import <nixpkgs> {};
{
foo = callPackage ./3-foo.nix {};
}with import <nixpkgs> {};
let
self = stdenv.mkDerivation {
name = "VulkanExamples";
buildDepends = [ cmake libxcb pkgconfig ];
};
in selfwith import <nixpkgs> {};
stdenv.mkDerivation {
name = "VulkanExamples";
buildDepends = [ cmake libxcb pkgconfig ];
}