mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, ninja, python3, git }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "directx-shader-compiler";
|
|
version = "1.7.2308";
|
|
|
|
# Put headers in dev, there are lot of them which aren't necessary for
|
|
# using the compiler binary.
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "DirectXShaderCompiler";
|
|
rev = "v${version}";
|
|
hash = "sha256-pfdAD+kRpmqW29Y8jn6+X5Ujy/9cIvisYr0tH1PuxsY=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake git ninja python3 ];
|
|
|
|
cmakeFlags = [ "-C../cmake/caches/PredefinedParams.cmake" ];
|
|
|
|
# The default install target installs heaps of LLVM stuff.
|
|
#
|
|
# Upstream issue: https://github.com/microsoft/DirectXShaderCompiler/issues/3276
|
|
#
|
|
# The following is based on the CI script:
|
|
# https://github.com/microsoft/DirectXShaderCompiler/blob/master/appveyor.yml#L63-L66
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/lib $dev/include
|
|
mv bin/dxc* $out/bin/
|
|
mv lib/libdxcompiler.so* lib/libdxcompiler.*dylib $out/lib/
|
|
cp -r $src/include/dxc $dev/include/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A compiler to compile HLSL programs into DXIL and SPIR-V";
|
|
homepage = "https://github.com/microsoft/DirectXShaderCompiler";
|
|
platforms = with platforms; linux ++ darwin;
|
|
license = licenses.ncsa;
|
|
maintainers = with maintainers; [ expipiplus1 Flakebi ];
|
|
};
|
|
}
|