directx-headers: init at 1.608.2
This commit is contained in:
parent
5074173a53
commit
07e13abffc
25
pkgs/development/libraries/directx-headers/default.nix
Normal file
25
pkgs/development/libraries/directx-headers/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, stdenv, fetchFromGitHub, meson, ninja }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "directx-headers";
|
||||
version = "1.608.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "microsoft";
|
||||
repo = "DirectX-Headers";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-F0riTDJpydqe4yhE9GKSSvnRI0Sl3oY2sOP+H/vDHG0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja ];
|
||||
|
||||
# tests require WSL2
|
||||
mesonFlags = [ "-Dbuild-test=false" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Official D3D12 headers from Microsoft";
|
||||
homepage = "https://github.com/microsoft/DirectX-Headers";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ k900 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -24222,6 +24222,8 @@ with pkgs;
|
||||
|
||||
diod = callPackage ../servers/diod { lua = lua5_1; };
|
||||
|
||||
directx-headers = callPackage ../development/libraries/directx-headers {};
|
||||
|
||||
directx-shader-compiler = callPackage ../tools/graphics/directx-shader-compiler {};
|
||||
|
||||
dkimproxy = callPackage ../servers/mail/dkimproxy { };
|
||||
|
Loading…
Reference in New Issue
Block a user