gnu: shaderc: Fix formatting.
* gnu/packages/vulkan.scm (shaderc): Use conventional indentation. [native-inputs]: Move unquotes to their operands.
This commit is contained in:
parent
36a17f056c
commit
49c4c4de85
|
@ -224,7 +224,7 @@ and the ICD.")
|
||||||
"0b41inb1czxv3mciip0lfdxv19ccx2ys31fivfywjn2q8va1gd1f"))))
|
"0b41inb1czxv3mciip0lfdxv19ccx2ys31fivfywjn2q8va1gd1f"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;; Tests don't work yet.
|
`(#:tests? #f ; tests don't work yet.
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
|
@ -270,14 +270,16 @@ and the ICD.")
|
||||||
(copy-recursively glslang-source
|
(copy-recursively glslang-source
|
||||||
"third_party/glslang")
|
"third_party/glslang")
|
||||||
#t))))))
|
#t))))))
|
||||||
(inputs `(("python" ,python)))
|
(inputs
|
||||||
(native-inputs `(("cmake" ,cmake)
|
`(("python" ,python)))
|
||||||
("glslang-source", (package-source glslang))
|
(native-inputs
|
||||||
("pkg-config", pkg-config)
|
`(("cmake" ,cmake)
|
||||||
("spirv-headers-source", (package-source spirv-headers))
|
("glslang-source" ,(package-source glslang))
|
||||||
("spirv-tools-source", (package-source spirv-tools))))
|
("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")
|
(home-page "https://github.com/google/shaderc")
|
||||||
(synopsis "Tools for shader compilation")
|
(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.")
|
shader compilation.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
Loading…
Reference in New Issue