nixpkgs/pkgs/tools/graphics/glxinfo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libGL, libX11 }:
2018-03-17 17:57:15 +01:00
stdenv.mkDerivation rec {
pname = "glxinfo";
2018-09-20 10:43:56 +02:00
version = "8.4.0";
src = fetchurl {
2018-09-20 10:43:56 +02:00
url = "ftp://ftp.freedesktop.org/pub/mesa/demos/mesa-demos-${version}.tar.bz2";
sha256 = "0zgzbz55a14hz83gbmm0n9gpjnf5zadzi2kjjvkn6khql2a9rs81";
};
2018-03-17 17:57:15 +01:00
buildInputs = [ libX11 libGL ];
2019-06-19 17:36:06 +02:00
dontConfigure = true;
buildPhase = "
2018-09-20 11:46:42 +02:00
$CC src/xdemos/{glxinfo.c,glinfo_common.c} -o glxinfo -lGL -lX11
$CC src/xdemos/glxgears.c -o glxgears -lGL -lX11 -lm
$CC src/egl/opengles2/es2_info.c -o es2_info -lEGL -lGLESv2 -lX11
$CC src/egl/opengles2/es2gears.c src/egl/eglut/{eglut.c,eglut_x11.c} -o es2gears -Isrc/egl/eglut -lEGL -lGLESv2 -lX11 -lm
$CC src/egl/opengl/eglinfo.c -o eglinfo -lEGL -lGLESv2 -lX11
";
installPhase = "
install -Dm 555 -t $out/bin glx{info,gears} es2{_info,gears} eglinfo
";
meta = with lib; {
2018-03-17 17:57:15 +01:00
description = "Test utilities for OpenGL";
homepage = "https://www.mesa3d.org/";
2018-03-17 17:57:15 +01:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}