summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-18 14:17:15 +0100
committerGitHub <noreply@github.com>2021-01-18 14:17:15 +0100
commitbaf9e277a4efcc83aba92c426581d7580e500294 (patch)
treef84572500df23192d3816296f1ae710f52916f7c /pkgs/tools/graphics
parent43dbe13483b7f3a1f848425ab840b049a8cccb8c (diff)
parent9f55ee99dd24f28db17702307a59b4a60ce0c65b (diff)
Merge pull request #98545 from Flakebi/spirv-cross
spirv-cross: 2020-06-29 -> 2020-09-17
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/spirv-cross/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/graphics/spirv-cross/default.nix b/pkgs/tools/graphics/spirv-cross/default.nix
index 95e4d83645e0..61ea43d3dbd0 100644
--- a/pkgs/tools/graphics/spirv-cross/default.nix
+++ b/pkgs/tools/graphics/spirv-cross/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "spirv-cross";
- version = "2020-06-29";
+ version = "2020-09-17";
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-Cross";
rev = version;
- sha256 = "0mnccmhlqmpdx92v495z39i07hbvjwdr5n4zbarlrr1d7rm99lx4";
+ sha256 = "03agx9f7klw96isfdz3xsw47308qxmgs24nsz7j9kx3f337fn435";
};
nativeBuildInputs = [ cmake python3 ];
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A tool designed for parsing and converting SPIR-V to other shader languages";
homepage = "https://github.com/KhronosGroup/SPIRV-Cross";
+ changelog = "https://github.com/KhronosGroup/SPIRV-Cross/releases/tag/${version}";
platforms = platforms.linux;
license = licenses.asl20;
maintainers = with maintainers; [ Flakebi ];