vkd3d: init at 1.7

This commit is contained in:
Ellie Hermaszewska 2023-04-22 12:53:03 +08:00
parent 373e9eb4c4
commit 7d7d95d871
No known key found for this signature in database
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, wine, flex, bison
, vulkan-headers, spirv-headers, vulkan-loader }:
stdenv.mkDerivation rec {
pname = "vkd3d";
version = "1.7";
nativeBuildInputs = [ autoreconfHook pkg-config wine flex bison ];
buildInputs = [ vulkan-loader vulkan-headers spirv-headers ];
src = fetchFromGitLab {
domain = "gitlab.winehq.org";
owner = "wine";
repo = pname;
rev = "${pname}-${version}";
sha256 = "sha256-s5YNA+CjWoYk1tkBYYGfOsI2eXtXPtd1oHVeFFJIWn8=";
};
meta = with lib; {
homepage = "https://gitlab.winehq.org/wine/vkd3d";
description = "A 3D graphics library with an API very similar, but not identical, to Direct3D 12";
license = licenses.lgpl21;
maintainers = with maintainers; [ expipiplus1 ];
platforms = platforms.all;
};
}

View file

@ -24154,6 +24154,8 @@ with pkgs;
hdf5 = hdf5.override { usev110Api = true; };
};
vkd3d = callPackage ../development/libraries/vkd3d {};
vkdisplayinfo = callPackage ../tools/graphics/vkdisplayinfo { };
vkdt = callPackage ../applications/graphics/vkdt { };