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: 8066dd61a386
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c6f1dc2320db
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 26, 2021

  1. libglvnd: Switch to the new official repository

    "The official repository for libglvnd is hosted on FreeDesktop.org's
    GitLab: https://gitlab.freedesktop.org/glvnd/libglvnd" [0]
    
    [0]: https://github.com/NVIDIA/libglvnd/tree/master#introduction
    primeos committed Feb 26, 2021
    Copy the full SHA
    c6f1dc2 View commit details
Showing with 8 additions and 4 deletions.
  1. +8 −4 pkgs/development/libraries/libglvnd/default.nix
12 changes: 8 additions & 4 deletions pkgs/development/libraries/libglvnd/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{ stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook, python3, pkg-config, libX11, libXext, xorgproto, addOpenGLRunpath }:
{ stdenv, lib, fetchFromGitLab
, autoreconfHook, pkg-config, python3, addOpenGLRunpath
, libX11, libXext, xorgproto
}:

stdenv.mkDerivation rec {
pname = "libglvnd";
version = "1.3.2";

src = fetchFromGitHub {
owner = "NVIDIA";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "glvnd";
repo = "libglvnd";
rev = "v${version}";
sha256 = "10x7fgb114r4gikdg6flszl3kwzcb9y5qa7sj9936mk0zxhjaylz";
@@ -54,7 +58,7 @@ stdenv.mkDerivation rec {
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";
inherit (src.meta) homepage;
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ primeos ];