From 929db7f52fcd8e4bb43f97925649973403f33837 Mon Sep 17 00:00:00 2001 From: Joe Hermaszewski Date: Mon, 16 Nov 2020 15:47:55 +0800 Subject: [PATCH] vulkan-tools: Correct description in metadata Use the github repo here as the homepage as lunarg.com has heaps of stuff besides these tools. --- pkgs/tools/graphics/vulkan-tools/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/vulkan-tools/default.nix b/pkgs/tools/graphics/vulkan-tools/default.nix index e320e4e6ef3b..ff620ef8287b 100644 --- a/pkgs/tools/graphics/vulkan-tools/default.nix +++ b/pkgs/tools/graphics/vulkan-tools/default.nix @@ -30,8 +30,13 @@ stdenv.mkDerivation rec { ]; meta = with stdenv.lib; { - description = "LunarG Vulkan loader"; - homepage = "https://www.lunarg.com"; + description = "Khronos official Vulkan Tools and Utilities"; + longDescription = '' + This project provides Vulkan tools and utilities that can assist + development by enabling developers to verify their applications correct + use of the Vulkan API. + ''; + homepage = "https://github.com/KhronosGroup/Vulkan-Tools"; platforms = platforms.linux; license = licenses.asl20; maintainers = [ maintainers.ralith ];