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: be9cc0492524
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4fdc45554381
Choose a head ref
  • 1 commit
  • 2 files changed
  • 2 contributors

Commits on Apr 17, 2020

  1. mesa-demos: init at 8.4.0 (#74310)

    * mesa-demos: init at 8.4.0
    
    Signed-off-by: Anders Kaseorg <andersk@mit.edu>
    
    * Update pkgs/tools/graphics/mesa-demos/default.nix
    
    Co-Authored-By: Doron Behar <doron.behar@gmail.com>
    andersk and doronbehar authored Apr 17, 2020
    Copy the full SHA
    4fdc455 View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/tools/graphics/mesa-demos/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
24 changes: 24 additions & 0 deletions pkgs/tools/graphics/mesa-demos/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, fetchurl, freeglut, glew, libGL, libGLU, libX11, libXext, mesa, pkg-config, wayland }:

stdenv.mkDerivation rec {
pname = "mesa-demos";
version = "8.4.0";

src = fetchurl {
url = "ftp://ftp.freedesktop.org/pub/mesa/demos/${pname}-${version}.tar.bz2";
sha256 = "0zgzbz55a14hz83gbmm0n9gpjnf5zadzi2kjjvkn6khql2a9rs81";
};

buildInputs = [ freeglut glew libX11 libXext libGL libGLU mesa mesa.osmesa wayland ];
nativeBuildInputs = [ pkg-config ];

enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "Collection of demos and test programs for OpenGL and Mesa";
homepage = "https://www.mesa3d.org/";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ andersk ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -4666,6 +4666,8 @@ in

memtester = callPackage ../tools/system/memtester { };

mesa-demos = callPackage ../tools/graphics/mesa-demos { };

mhonarc = perlPackages.MHonArc;

minergate = callPackage ../applications/misc/minergate { };