Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 81e50c8d0415
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8066dd61a386
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 26, 2021

  1. 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.
    primeos committed Feb 26, 2021
    Copy the full SHA
    8066dd6 View commit details
Showing with 8 additions and 0 deletions.
  1. +8 −0 pkgs/development/libraries/libglvnd/default.nix
8 changes: 8 additions & 0 deletions pkgs/development/libraries/libglvnd/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}