Skip to content

Commit

Permalink
glslang, spirv-tools, vulkan-loader: add metainformation
Browse files Browse the repository at this point in the history
  • Loading branch information
abbradar committed Jan 4, 2017
1 parent 2c88414 commit e17b483
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/compilers/glslang/default.nix
Expand Up @@ -21,5 +21,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Khronos reference front-end for GLSL and ESSL";
license = licenses.asl20;
platforms = platforms.linux;
};
}
3 changes: 2 additions & 1 deletion pkgs/development/libraries/vulkan-loader/default.nix
Expand Up @@ -63,7 +63,8 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "LunarG Vulkan loader";
homepage = http://www.lunarg.com;
homepage = "http://www.lunarg.com";
platforms = platforms.linux;
license = licenses.asl20;
};
}
4 changes: 3 additions & 1 deletion pkgs/development/tools/spirv-tools/default.nix
Expand Up @@ -37,6 +37,8 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "The SPIR-V Tools project provides an API and commands for processing SPIR-V modules.";
description = "The SPIR-V Tools project provides an API and commands for processing SPIR-V modules";
license = licenses.asl20;
platforms = platforms.linux;
};
}

0 comments on commit e17b483

Please sign in to comment.