From 8066dd61a386f789be0683bd74671a2ecb1d8f0b Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Fri, 26 Feb 2021 12:28:47 +0100 Subject: [PATCH] libglvnd: Add myself as maintainer The package lacked a maintainer and since I already maintain Mesa it makes sense to look after libglvnd as well. --- pkgs/development/libraries/libglvnd/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/libraries/libglvnd/default.nix b/pkgs/development/libraries/libglvnd/default.nix index 88ba7dacc22..70deed5343d 100644 --- a/pkgs/development/libraries/libglvnd/default.nix +++ b/pkgs/development/libraries/libglvnd/default.nix @@ -47,8 +47,16 @@ stdenv.mkDerivation rec { meta = with lib; { description = "The GL Vendor-Neutral Dispatch library"; + longDescription = '' + libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API + calls between multiple vendors. It allows multiple drivers from different + vendors to coexist on the same filesystem, and determines which vendor to + dispatch each API call to at runtime. + Both GLX and EGL are supported, in any combination with OpenGL and OpenGL ES. + ''; homepage = "https://github.com/NVIDIA/libglvnd"; license = licenses.bsd2; platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ primeos ]; }; }