nixpkgs/pkgs/development/compilers/glslang/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
2019-08-06 22:45:23 +00:00
, bison
, cmake
, jq
, python3
, spirv-headers
, spirv-tools
}:
2016-04-02 19:34:50 +00:00
stdenv.mkDerivation rec {
2019-08-06 22:45:23 +00:00
pname = "glslang";
version = "1.2.198.0";
2016-04-02 19:34:50 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "glslang";
rev = "sdk-${version}";
sha256 = "sha256-FRiqsfoyjUW2kbbphxcy0Hn0TLVaszatM/nnWBrchRY=";
2019-08-06 22:45:23 +00:00
};
# These get set at all-packages, keep onto them for child drvs
passthru = {
spirv-tools = spirv-tools;
spirv-headers = spirv-headers;
2016-04-02 19:34:50 +00:00
};
2019-08-06 22:45:23 +00:00
nativeBuildInputs = [ cmake python3 bison jq ];
2016-04-02 19:34:50 +00:00
2018-08-17 06:04:30 +00:00
postPatch = ''
cp --no-preserve=mode -r "${spirv-tools.src}" External/spirv-tools
ln -s "${spirv-headers.src}" External/spirv-tools/external/spirv-headers
'';
2022-01-16 15:12:12 +00:00
# This is a dirty fix for lib/cmake/SPIRVTargets.cmake:51 which includes this directory
postInstall = ''
mkdir $out/include/External
'';
meta = with lib; {
2016-04-02 19:34:50 +00:00
inherit (src.meta) homepage;
description = "Khronos reference front-end for GLSL and ESSL";
license = licenses.asl20;
platforms = platforms.unix;
2017-04-01 19:28:59 +00:00
maintainers = [ maintainers.ralith ];
2016-04-02 19:34:50 +00:00
};
}