glmark2: style fixups

This commit is contained in:
Vladimír Čunát 2014-08-12 20:58:36 +02:00
parent a3d33de16a
commit 56f409a446

@ -21,15 +21,16 @@ stdenv.mkDerivation rec {
python2 ./waf install --destdir="$pkgdir/" python2 ./waf install --destdir="$pkgdir/"
''; '';
meta = { meta = with stdenv.lib; {
description = "OpenGL (ES) 2.0 benchmark"; description = "OpenGL (ES) 2.0 benchmark";
homepage = https://launchpad.net/glmark2; homepage = https://launchpad.net/glmark2;
license = "GPLv3+"; license = licenses.gpl3Plus;
longDescription = '' longDescription = ''
glmark2 is a benchmark for OpenGL (ES) 2.0. It uses only the subset of glmark2 is a benchmark for OpenGL (ES) 2.0. It uses only the subset of
the OpenGL 2.0 API that is compatible with OpenGL ES 2.0. the OpenGL 2.0 API that is compatible with OpenGL ES 2.0.
''; '';
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = stdenv.lib.maintainers.wmertens; maintainers = [ maintainers.wmertens ];
}; };
} }