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: b70d749db8fb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 909e6b2da888
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 3, 2020

  1. Copy the full SHA
    4515e39 View commit details

Commits on Mar 24, 2020

  1. Merge pull request #81659 from r-ryantm/auto-update/virglrenderer

    virglrenderer: 0.8.1 -> 0.8.2
    mmahut authored Mar 24, 2020
    Copy the full SHA
    909e6b2 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/virglrenderer/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/virglrenderer/default.nix
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@

stdenv.mkDerivation rec {
pname = "virglrenderer";
version = "0.8.1";
version = "0.8.2";

src = fetchurl {
url = "https://gitlab.freedesktop.org/virgl/virglrenderer/-/archive/virglrenderer-${version}/virglrenderer-virglrenderer-${version}.tar.bz2";
sha256 = "0ac39mplmy6lmcd6cljmfsrfby7m6ac3dzvmnn5pv200drl415l4";
sha256 = "07vfzg99wq92yg2phza9jc0zvps34yy9gc8v4hibqchdl77fmspx";
};

buildInputs = [ libGLU epoxy libX11 libdrm mesa ];
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "A virtual 3D GPU library that allows a qemu guest to use the host GPU for accelerated 3D rendering";
homepage = https://virgil3d.github.io/;
homepage = "https://virgil3d.github.io/";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.xeji ];