summary refs log tree commit diff
path: root/pkgs/development/compilers/glslang
diff options
context:
space:
mode:
authorJoe Hermaszewski <git@monoid.al>2016-04-02 20:34:50 +0100
committerJoe Hermaszewski <git@monoid.al>2016-10-12 13:18:27 +0100
commite6cfc620633e2fc8344d842aa00bc8c089ea41fb (patch)
treefd31d271f381ca3355cb56ef634fe9bf88b97d28 /pkgs/development/compilers/glslang
parentdabcd7d4c8163b773328a1e4867563ebfa85d2c4 (diff)
downloadnixlib-e6cfc620633e2fc8344d842aa00bc8c089ea41fb.tar
nixlib-e6cfc620633e2fc8344d842aa00bc8c089ea41fb.tar.gz
nixlib-e6cfc620633e2fc8344d842aa00bc8c089ea41fb.tar.bz2
nixlib-e6cfc620633e2fc8344d842aa00bc8c089ea41fb.tar.lz
nixlib-e6cfc620633e2fc8344d842aa00bc8c089ea41fb.tar.xz
nixlib-e6cfc620633e2fc8344d842aa00bc8c089ea41fb.tar.zst
nixlib-e6cfc620633e2fc8344d842aa00bc8c089ea41fb.zip
glslang: init at 20160727
Diffstat (limited to 'pkgs/development/compilers/glslang')
-rw-r--r--pkgs/development/compilers/glslang/default.nix22
-rw-r--r--pkgs/development/compilers/glslang/install-headers.patch26
2 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/development/compilers/glslang/default.nix b/pkgs/development/compilers/glslang/default.nix
new file mode 100644
index 000000000000..3d0785f702cc
--- /dev/null
+++ b/pkgs/development/compilers/glslang/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchFromGitHub, cmake, bison }:
+
+stdenv.mkDerivation rec {
+  name = "glslang-${version}";
+  version = "2016-07-27";
+
+  src = fetchFromGitHub {
+    owner = "KhronosGroup";
+    repo = "glslang";
+    rev = "8c8505c60454549181d78301933f3f108e2f55e6";
+    sha256 = "1219sq86pz6k8nzg9sqm34b0rdv6kkjirg54y6b2r5ak568r4kwx";
+  };
+
+  patches = [ ./install-headers.patch ];
+
+  buildInputs = [ cmake bison ];
+
+  meta = with stdenv.lib; {
+    inherit (src.meta) homepage;
+    description = "Khronos reference front-end for GLSL and ESSL";
+  };
+}
diff --git a/pkgs/development/compilers/glslang/install-headers.patch b/pkgs/development/compilers/glslang/install-headers.patch
new file mode 100644
index 000000000000..73b31ae3a67c
--- /dev/null
+++ b/pkgs/development/compilers/glslang/install-headers.patch
@@ -0,0 +1,26 @@
+diff --git a/SPIRV/CMakeLists.txt b/SPIRV/CMakeLists.txt
+index 50cda68..d4ba381 100755
+--- a/SPIRV/CMakeLists.txt
++++ b/SPIRV/CMakeLists.txt
+@@ -26,3 +26,8 @@ endif(WIN32)
+
+ install(TARGETS SPIRV
+         ARCHIVE DESTINATION lib)
++
++foreach(file ${HEADERS})
++    get_filename_component(dir ${file} DIRECTORY)
++    install(FILES ${file} DESTINATION include/SPIRV/${dir})
++endforeach()
+diff --git a/glslang/CMakeLists.txt b/glslang/CMakeLists.txt
+index 28f4742..5a25cbb 100644
+--- a/glslang/CMakeLists.txt
++++ b/glslang/CMakeLists.txt
+@@ -87,3 +87,8 @@ endif(WIN32)
+
+ install(TARGETS glslang
+         ARCHIVE DESTINATION lib)
++
++foreach(file ${HEADERS})
++    get_filename_component(dir ${file} DIRECTORY)
++    install(FILES ${file} DESTINATION include/glslang/${dir})
++endforeach()