linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / spirv-headers / default.nix
blob9d464f7300ae9cae6961c66019979549840129f4
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "spirv-headers";
5   version = "1.5.3";
7   src = fetchFromGitHub {
8     owner = "KhronosGroup";
9     repo = "SPIRV-Headers";
10     rev = version;
11     sha256 = "069sivqajp7z4p44lmrz23lvf237xpkjxd4lzrg27836pwqcz9bj";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     inherit (src.meta) homepage;
18     description = "Machine-readable components of the Khronos SPIR-V Registry";
19     license = licenses.mit;
20     maintainers = [ maintainers.ralith ];
21   };