2018-03-17 17:57:15 +01:00
|
|
|
{ stdenv, fetchurl, libGL, libX11 }:
|
2007-04-18 16:21:24 +02:00
|
|
|
|
2018-03-17 17:57:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-07-14 14:23:03 +02:00
|
|
|
name = "glxinfo-${version}";
|
2018-03-17 17:57:15 +01:00
|
|
|
version = "8.3.0";
|
2011-07-14 14:23:03 +02:00
|
|
|
|
2007-04-18 16:21:24 +02:00
|
|
|
src = fetchurl {
|
2018-03-17 17:57:15 +01:00
|
|
|
url = "ftp://ftp.freedesktop.org/pub/mesa/demos/${version}/mesa-demos-${version}.tar.bz2";
|
2016-04-12 18:15:21 +02:00
|
|
|
sha256 = "1vqb7s5m3fcg2csbiz45mha1pys2xx6rhw94fcyvapqdpm5iawy1";
|
2007-04-18 16:21:24 +02:00
|
|
|
};
|
|
|
|
|
2018-03-17 17:57:15 +01:00
|
|
|
buildInputs = [ libX11 libGL ];
|
2007-04-18 16:21:24 +02:00
|
|
|
|
2011-07-14 14:23:03 +02:00
|
|
|
configurePhase = "true";
|
|
|
|
|
2007-04-18 16:21:24 +02:00
|
|
|
buildPhase = "
|
2011-07-14 14:23:03 +02:00
|
|
|
cd src/xdemos
|
2018-03-17 17:57:15 +01:00
|
|
|
$CC glxinfo.c glinfo_common.c -o glxinfo -lGL -lX11
|
|
|
|
$CC glxgears.c -o glxgears -lGL -lX11 -lm
|
2007-04-18 16:21:24 +02:00
|
|
|
";
|
|
|
|
|
|
|
|
installPhase = "
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/bin
|
2011-07-14 14:23:03 +02:00
|
|
|
cp glxinfo glxgears $out/bin/
|
2007-04-18 16:21:24 +02:00
|
|
|
";
|
2016-08-02 18:06:29 +02:00
|
|
|
|
2018-03-17 17:57:15 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Test utilities for OpenGL";
|
|
|
|
homepage = https://www.mesa3d.org/;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2016-08-02 18:06:29 +02:00
|
|
|
};
|
2007-04-18 16:21:24 +02:00
|
|
|
}
|