summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics/glxinfo
AgeCommit message (Collapse)Author
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-06-25Merge pull request #84110 from Emantor/topic/glxinfo_eglinfomarkuskowa
glxinfo: add eglinfo binary
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2020-04-02glxinfo: add eglinfo binaryRouven Czerwinski
XWayland master did not work correctly for OpenGL, during the bug discussion upstream asked for the output of eglinfo. Add eglinfo to the glxinfo package.
2019-08-15treewide: name -> pname (easy cases) (#66585)volth
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-07-01treewide: use dontConfigureworldofpeace
2018-09-20glxinfo: add es2gears, es2_infoLinus Heckemann
2018-09-20glxinfo: 8.3.0 -> 8.4.0Linus Heckemann
2018-03-26glxinfo: fix buildNikolay Amiantov
2018-02-24treewide: transition mesa to libGLU_combinedAlexander V. Nikolaev
2018-02-24treewide: transition from mesa_noglu to libGLAlexander V. Nikolaev
2016-09-29glxinfo: Drop dependency on mesa-noglu.dev and glu.devEelco Dolstra
2016-08-02treewide: Add lots of platforms to packages with no metaTuomas Tynkkynen
Build-tested on x86_64 Linux and on Darwin.
2016-05-03glxinfo: 8.1.0 -> 8.3.0Franz Pletz
2015-09-15x11: replace its usage by xlibsWrapper directlyVladimír Čunát
Scilab note: the parameters already had pointed to nonexistent dirs before this set of refactoring. But that config wasn't even used by default.
2013-04-17glxinfo: update the mesa-demos sourceVladimír Čunát
2012-01-18* "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2011-07-14glxinfo: updated to version 8.0.1Peter Simons
svn path=/nixpkgs/trunk/; revision=27779
2010-07-20* Updated the X.org server to 1.8.2. Note that it no longer dependsEelco Dolstra
on HAL but instead uses udev to autoconfigure input devices. We'll have to update the NixOS X server module accordingly, I guess. See https://fedoraproject.org/wiki/Input_device_configuration. * Updated Mesa to 7.8.2. svn path=/nixpkgs/branches/x-updates/; revision=22681
2009-04-20* Mesa 7.4.1.Eelco Dolstra
svn path=/nixpkgs/branches/stdenv-updates/; revision=15195
2008-10-08* Mesa 7.2.Eelco Dolstra
svn path=/nixpkgs/branches/stdenv-updates/; revision=13004
2008-06-04* NVIDIA driver: set a RUNPATH on libGL.so and friends. This ensuresEelco Dolstra
that applications that link against it don't need to have its dependencies (like libXext) in *their* RUNPATHs. * glxinfo: don't add /var/run/opengl-driver/lib to the RUNPATH. Instead LD_LIBRARY_PATH should be set to /var/run/opengl-driver/lib at runtime. This is much more pure, and it obviates the need for patchelfing all OpenGL applications. (TODO: remove patchelf hacks for other OpenGL programs as well.) svn path=/nixpkgs/branches/stdenv-updates/; revision=11972
2007-08-27* Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
2007-06-09* /var/state -> /var/run.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=8851
2007-05-28nixpkgs dir: nvidia and libsrvgWouter den Breejen
svn path=/nixpkgs/trunk/; revision=8785
2007-04-18* Added glxinfo/glxgears.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=8593