gnu: shaderc: Fix formatting.

* gnu/packages/vulkan.scm (shaderc): Use conventional indentation.
[native-inputs]: Move unquotes to their operands.
This commit is contained in:
Tobias Geerinckx-Rice 2018-03-16 16:33:16 +01:00
parent 36a17f056c
commit 49c4c4de85
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 72 additions and 70 deletions

View File

@ -224,7 +224,7 @@ and the ICD.")
"0b41inb1czxv3mciip0lfdxv19ccx2ys31fivfywjn2q8va1gd1f"))))
(build-system meson-build-system)
(arguments
`(#:tests? #f ;; Tests don't work yet.
`(#:tests? #f ; tests don't work yet.
#:phases
(modify-phases %standard-phases
(replace 'configure
@ -270,14 +270,16 @@ and the ICD.")
(copy-recursively glslang-source
"third_party/glslang")
#t))))))
(inputs `(("python" ,python)))
(native-inputs `(("cmake" ,cmake)
("glslang-source", (package-source glslang))
("pkg-config", pkg-config)
("spirv-headers-source", (package-source spirv-headers))
("spirv-tools-source", (package-source spirv-tools))))
(inputs
`(("python" ,python)))
(native-inputs
`(("cmake" ,cmake)
("glslang-source" ,(package-source glslang))
("pkg-config" ,pkg-config)
("spirv-headers-source" ,(package-source spirv-headers))
("spirv-tools-source" ,(package-source spirv-tools))))
(home-page "https://github.com/google/shaderc")
(synopsis "Tools for shader compilation")
(description "Shaderc is a collection of tools, libraries and tests for
(description "Shaderc is a collection of tools, libraries, and tests for
shader compilation.")
(license license:asl2.0))))