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

27 lines
785 B
Nix
Raw Normal View History

2016-04-02 19:34:50 +00:00
{ stdenv, fetchFromGitHub, cmake, bison }:
stdenv.mkDerivation rec {
name = "glslang-git-${version}";
2017-04-01 19:28:59 +00:00
version = "2017-03-29";
2016-04-02 19:34:50 +00:00
# `vulkan-loader` requires a specific version of `glslang` as specified in
2017-04-01 19:28:59 +00:00
# `<vulkan-loader-repo>/external_revisions/glslang_revision`.
2016-04-02 19:34:50 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "glslang";
2017-04-01 19:28:59 +00:00
rev = "714e58b2fc5a45714596e6aa2f6ac8f64260365c";
sha256 = "0ihnd0c4mr6ppbv9g7z1abrn8vx66simfzx5q48nqcpnywn35jxv";
2016-04-02 19:34:50 +00:00
};
buildInputs = [ cmake bison ];
enableParallelBuilding = true;
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
};
}