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

52 lines
1.5 KiB
Nix
Raw Normal View History

2019-08-06 22:45:23 +00:00
{ stdenv, fetchFromGitHub
, 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 = "7.11.3214";
2016-04-02 19:34:50 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "glslang";
2019-08-06 22:45:23 +00:00
rev = version;
sha256 = "0dqjga0lcza006fhac26zp2plbq4gx8a6nsmrwkqlzji6lw1jins";
};
# These get set at all-packages, keep onto them for child drvs
passthru = {
inherit spirv-tools spirv-headers;
2016-04-02 19:34:50 +00:00
};
2019-08-06 22:45:23 +00:00
nativeBuildInputs = [ cmake python3 bison jq ];
enableParallelBuilding = true;
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
2019-02-17 17:54:25 +00:00
ln -s "${spirv-headers.src}" External/spirv-tools/external/spirv-headers
'';
2019-08-06 22:45:23 +00:00
# Ensure spirv-headers and spirv-tools match exactly to what is expected
preConfigure = ''
HEADERS_COMMIT=$(jq -r < known_good.json '.commits|map(select(.name=="spirv-tools/external/spirv-headers"))[0].commit')
TOOLS_COMMIT=$(jq -r < known_good.json '.commits|map(select(.name=="spirv-tools"))[0].commit')
2019-02-17 17:54:25 +00:00
if [ "$HEADERS_COMMIT" != "${spirv-headers.src.rev}" ] || [ "$TOOLS_COMMIT" != "${spirv-tools.src.rev}" ]; then
2018-08-17 06:04:30 +00:00
echo "ERROR: spirv-tools commits do not match expected versions: expected tools at $TOOLS_COMMIT, headers at $HEADERS_COMMIT";
exit 1;
fi
'';
2016-04-02 19:34:50 +00:00
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Khronos reference front-end for GLSL and ESSL";
license = licenses.asl20;
platforms = platforms.linux;
2017-04-01 19:28:59 +00:00
maintainers = [ maintainers.ralith ];
2016-04-02 19:34:50 +00:00
};
}