-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* mesa-demos: init at 8.4.0 Signed-off-by: Anders Kaseorg <[email protected]> * Update pkgs/tools/graphics/mesa-demos/default.nix Co-Authored-By: Doron Behar <[email protected]>
- Loading branch information
1 parent
be9cc04
commit 4fdc455
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters