summary refs log blame commit diff
path: root/pkgs/development/libraries/vulkan-headers/default.nix
blob: 4ea8d69a498b72fc5895d309252950110b51c926 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                   
                           
                        
 
                                



                            
                           
                                                                    



                                                         
                                         




                                         
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
  pname = "vulkan-headers";
  version = "1.1.114.0";

  nativeBuildInputs = [ cmake ];

  src = fetchFromGitHub {
    owner = "KhronosGroup";
    repo = "Vulkan-Headers";
    rev = "sdk-${version}";
    sha256 = "0fdvh26nxibylh32lj8b62d9nf9j25xa0il9zg362wmr2zgm8gka";
  };

  meta = with stdenv.lib; {
    description = "Vulkan Header files and API registry";
    homepage    = https://www.lunarg.com;
    platforms   = platforms.linux;
    license     = licenses.asl20;
    maintainers = [ maintainers.ralith ];
  };
}