From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Joshua \"Youlysses\" S. Grant" Subject: Add Package Freeglut Date: Sat, 28 Sep 2013 09:29:58 -0500 Message-ID: <1380378598.864.25.camel@battlestallion> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-O8fm8ib+Y4f867am5/UH" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60723) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPvX3-0000f9-PG for guix-devel@gnu.org; Sat, 28 Sep 2013 10:30:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPvWz-0003sX-51 for guix-devel@gnu.org; Sat, 28 Sep 2013 10:30:05 -0400 Received: from mx1.riseup.net ([198.252.153.129]:41541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPvWy-0003sR-NK for guix-devel@gnu.org; Sat, 28 Sep 2013 10:30:01 -0400 Received: from fruiteater.riseup.net (fruiteater-pn.riseup.net [10.0.1.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Gandi Standard SSL CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id BACA8438E8 for ; Sat, 28 Sep 2013 07:29:59 -0700 (PDT) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-O8fm8ib+Y4f867am5/UH Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Hey all, after much bothering of Ludo -- and the more-than fair suggestion of his, to just upload the package expression as-is ,here, here it is! Attached is the actual expression and the general output I got from it. Glu build/installs without a problem on my machine, but Freeglut seems to fail due to inputs not matching what it's looking for -- though I've seen the same inputs work in other expressions... That starts on line 416 in freeglut.buildlog -- none of the x11 extensions seem to be working, except libxxf86vm. Also, I noted it in the expression -- but SGI Free Software License B (V2) needs to be added under licenses.scm. Hoping I'm not just missing something, real, real obvious; Joshua "Youlysses" S. Grant --=-O8fm8ib+Y4f867am5/UH Content-Disposition: attachment; filename="freeglut.scm" Content-Type: text/x-scheme; name="freeglut.scm"; charset="UTF-8" Content-Transfer-Encoding: quoted-printable ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2013 Ludovic Court=C3=A8s ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages freeglut) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix packages) #:use-module (gnu packages xorg)) (define-public glu (package (name "glu") (version "9.0.0") (source (origin (method url-fetch) (uri (string-append "ftp://ftp.freedesktop.org/pub/mesa/glu/glu-"=20 version ".tar.gz")) (sha256 (base32 "0r72yyhj09x3krn3kn629jqbwyq50ji8w5ri2pn6zwrk35m4g1s3"))= )) (build-system gnu-build-system) (inputs `(("mesa" ,mesa)))=20 (home-page "http://www.opengl.org/archives/resources/faq/technical/glu.= htm") (synopsis "Mesa OpenGL Utility library.") (description=20 "GLU, or OpenGL Utility Library provides some higher-level functionali= ty not provided by just=20 OpenGL itself. Some of GLU's Features include: =20 Scaling of 2D images and creation of mipmap pyramids, Transfor= mation of object coordinates into device=20 coordinates and vice versa, Support for NURBS surfaces, Suppor= t for tessellation of concave or bow tie=20 polygonal primitives, Specialty transformation matrices for cr= eating perspective and orthographic=20 projections, positioning a camera, and selection/picking, Rend= ering of disk, cylinder, and sphere=20 primitives, Interpreting OpenGL error values as ASCII text.")=20 (license lgpl2.1+))) ;; It's really under the SGI Free Software = license B (V2) -- needs to be added under licenses.scm! :^) (define-public freeglut (package (name "freeglut") (version "2.8.1") (source (origin (method url-fetch) (uri (string-append=20 "mirror://sourceforge/project/freeglut/freeglut/2.8.1/freeglut-= "=20 version ".tar.gz")) (sha256 (base32 "16lrxxxd9ps9l69y3zsw6iy0drwjsp6m26d1937xj71alqk6dr6x"))= )) (build-system gnu-build-system) (inputs `(("mesa" ,mesa)=20 ("libx11" ,libx11) ("libxi" ,libxi) ("libxrandr" ,libxrandr) ("libxxf86vm" ,libxxf86vm)=20 ("xinput" ,xinput) ("glu" ,glu))) (home-page "http://freeglut.sourceforge.net/") (synopsis "An alternative to the OpenGL Utility Toolkit (GLUT)."= ) (description=20 "freeglut is a completely Free/OpenSourced alternative to the OpenGL U= tility Toolkit (GLUT) library.=20 GLUT was originally written by Mark Kilgard to support the sam= ple programs in the second edition OpenGL 'RedBook'. Since then, GLUT has been used in a wide variety of = practical applications because it is simple,=20 widely available and highly portable. GLUT (and hence freeglut) allows the user to create and manage= windows containing OpenGL contexts on a wide range of platforms and also read the mouse, keyboard and joyst= ick functions.=20 freeglut is released under the X-Consortium license.")=20 (license x11))) --=-O8fm8ib+Y4f867am5/UH Content-Disposition: attachment; filename="freeglut.buildlog" Content-Type: text/plain; name="freeglut.buildlog"; charset="UTF-8" Content-Transfer-Encoding: quoted-printable $ ./pre-inst-env guix build freeglut guix build: warning: cannot access `/home/jsgrant/guix-0.4/gnu/packages/.#f= tgl.scm': No such file or directory substitute-binary: ;;; note: source file /usr/local/bin/guix substitute-binary: ;;; newer than compiled /root/.cache/guile/ccache/= 2.0-LE-8-2.0/usr/local/bin/guix.go The following derivation will be built: /nix/store/pdwdwb9wgrx0wgcmkqlpx0czf31z87rg-freeglut-2.8.1.drv @ build-started /nix/store/pdwdwb9wgrx0wgcmkqlpx0czf31z87rg-freeglut-2.8.1.= drv - x86_64-linux /usr/local/var/log/nix/drvs/pd//wdwb9wgrx0wgcmkqlpx0czf3= 1z87rg-freeglut-2.8.1.drv.bz2 starting phase `set-paths' environment variable `PATH' set to `/nix/store/n2ifg64idxhiky6bm8n39fhxljvn= c748-xinput-1.6.0/bin:/nix/store/6gin94pa5kqczlwg1krdpfi7g830c983-tar-1.26/= bin:/nix/store/6gin94pa5kqczlwg1krdpfi7g830c983-tar-1.26/sbin:/nix/store/bv= i6vyyhfx0lbyf68m99713qnw3p1mx9-gzip-1.6/bin:/nix/store/spqiwv2m0ahqyr5gccm2= b1yddns7xhqb-bzip2-1.0.6/bin:/nix/store/7cw9d4f5igaj48nnbylbj9v8g0qviw13-xz= -5.0.4/bin:/nix/store/2ymz4clj47kaplpd0k98f98l90cqbwzi-diffutils-3.3/bin:/n= ix/store/3v2qc24yx7abs8dj47hhbl11wb6gjcif-patch-2.7.1/bin:/nix/store/1933bj= qi2izc0nf0cini15zh4f5ai563-coreutils-8.21/bin:/nix/store/gqnz60g10y9zqz51hx= 5gajk67b3c5s6p-sed-4.2.2/bin:/nix/store/vmsk3gwg3z9ra7rzyg34892da1dp72ap-gr= ep-2.14/bin:/nix/store/d57k8icb4q7wpfzj5hmy867329qq6bh0-findutils-4.4.2/bin= :/nix/store/gsjwmrx0ds4y7ddmiwhim3g8l6ag6j2f-gawk-4.1.0/bin:/nix/store/6v9p= 0h7s91i7zv6p6p3s17b3m4vhbjvk-make-3.82/bin:/nix/store/nx4sg06b3njclz7c3q0vn= 8x2v07vssrq-bash-4.2/bin:/nix/store/wfkbgwhif7bn42l4sw9rzcd32ai3jl6z-ld-wra= pper-0/bin:/nix/store/2kqxlzih0d3wc646rzcm2hfpw2ryv71c-binutils-2.23.2/bin:= /nix/store/52998i0m4gr7k35lni8fmg591zsyqamv-gcc-4.7.3/bin:/nix/store/shamfh= yg9hcac63y3bll9p50ixxid8vb-glibc-2.18/bin:/nix/store/shamfhyg9hcac63y3bll9p= 50ixxid8vb-glibc-2.18/sbin' environment variable `CPATH' set to `/nix/store/0s15pnadjxh7ykswhq0k60fd46c= 5q67p-mesa-8.0.5/include:/nix/store/q2vkha2bnnv7b7lkvn2n5am20nkgglxl-libxxf= 86vm-1.1.2/include:/nix/store/mppnk767bi8949s8lhb03fvhp3gffg2h-libxdamage-1= .1.3/include:/nix/store/kxk43hbv1bahrmibd80dx66f22irpsj6-libdrm-2.4.33/incl= ude:/nix/store/sznc1y2gw35vx9xwg7bnhilvaszp3xn6-glproto-1.4.15/include:/nix= /store/vaw957wgwjw4pyfycd4r5rsw0rhabmiy-damageproto-1.2.1/include:/nix/stor= e/2hc601yvaz828vsfl5dgdj1pjl1p8hhx-xf86vidmodeproto-2.3.1/include:/nix/stor= e/q6w1q2ixvyakxizs5yr402n5kk0gy9fc-libxext-1.3.1/include:/nix/store/ymdfaay= c7yv8dqwb0ksgddx5vmaahgrn-xextproto-7.2.1/include:/nix/store/jkg8s91f8f7sga= rj35zvajgwsfs7x3qb-libx11-1.5.0/include:/nix/store/w4n1pk8m690hlb84ybnx2hb7= 8qh4hk67-libxcb-1.8.1/include:/nix/store/jmpy8j5r8hv2860czyrb4kl8wy3kw8kv-k= bproto-1.0.6/include:/nix/store/x97ncf3iixq0mvpsp8wqxf4cmwdbd5h2-libxdmcp-1= .1.1/include:/nix/store/r6bb5a4nbbg1d13a3pgvw75rbcaw0ndi-libxau-1.0.7/inclu= de:/nix/store/j5fbzanhxzc521x4130rh7nwa365fyc5-xproto-7.0.23/include:/nix/s= tore/ksgcicnwcadglmki5ai1d5xxfhjx52hf-libxi-1.6.1/include:/nix/store/q6w1q2= ixvyakxizs5yr402n5kk0gy9fc-libxext-1.3.1/include:/nix/store/ymdfaayc7yv8dqw= b0ksgddx5vmaahgrn-xextproto-7.2.1/include:/nix/store/qq2jg6mqh3l9plmn61pz2f= 7cy2l8sx4w-libxrandr-1.3.2/include:/nix/store/bajcc32lacgqp05fj47hzl6w9rxhg= 7sj-randrproto-1.3.2/include:/nix/store/q6w1q2ixvyakxizs5yr402n5kk0gy9fc-li= bxext-1.3.1/include:/nix/store/ymdfaayc7yv8dqwb0ksgddx5vmaahgrn-xextproto-7= .2.1/include:/nix/store/q2vkha2bnnv7b7lkvn2n5am20nkgglxl-libxxf86vm-1.1.2/i= nclude:/nix/store/2hc601yvaz828vsfl5dgdj1pjl1p8hhx-xf86vidmodeproto-2.3.1/i= nclude:/nix/store/q6w1q2ixvyakxizs5yr402n5kk0gy9fc-libxext-1.3.1/include:/n= ix/store/ymdfaayc7yv8dqwb0ksgddx5vmaahgrn-xextproto-7.2.1/include:/nix/stor= e/x7d051y5aph72c4brhzq8va8rq3hnfvl-glu-9.0.0/include:/nix/store/spqiwv2m0ah= qyr5gccm2b1yddns7xhqb-bzip2-1.0.6/include:/nix/store/7cw9d4f5igaj48nnbylbj9= v8g0qviw13-xz-5.0.4/include:/nix/store/gsjwmrx0ds4y7ddmiwhim3g8l6ag6j2f-gaw= k-4.1.0/include:/nix/store/52998i0m4gr7k35lni8fmg591zsyqamv-gcc-4.7.3/inclu= de:/nix/store/shamfhyg9hcac63y3bll9p50ixxid8vb-glibc-2.18/include:/nix/stor= e/h0jidagy2rlzhfsw3brpqdsqf7577d9y-linux-libre-headers-3.3.8/include' environment variable `LIBRARY_PATH' set to `/nix/store/0s15pnadjxh7ykswhq0k= 60fd46c5q67p-mesa-8.0.5/lib:/nix/store/q2vkha2bnnv7b7lkvn2n5am20nkgglxl-lib= xxf86vm-1.1.2/lib:/nix/store/mppnk767bi8949s8lhb03fvhp3gffg2h-libxdamage-1.= 1.3/lib:/nix/store/kxk43hbv1bahrmibd80dx66f22irpsj6-libdrm-2.4.33/lib:/nix/= store/sznc1y2gw35vx9xwg7bnhilvaszp3xn6-glproto-1.4.15/lib:/nix/store/vaw957= wgwjw4pyfycd4r5rsw0rhabmiy-damageproto-1.2.1/lib:/nix/store/2hc601yvaz828vs= fl5dgdj1pjl1p8hhx-xf86vidmodeproto-2.3.1/lib:/nix/store/q6w1q2ixvyakxizs5yr= 402n5kk0gy9fc-libxext-1.3.1/lib:/nix/store/ymdfaayc7yv8dqwb0ksgddx5vmaahgrn= -xextproto-7.2.1/lib:/nix/store/jkg8s91f8f7sgarj35zvajgwsfs7x3qb-libx11-1.5= .0/lib:/nix/store/w4n1pk8m690hlb84ybnx2hb78qh4hk67-libxcb-1.8.1/lib:/nix/st= ore/jmpy8j5r8hv2860czyrb4kl8wy3kw8kv-kbproto-1.0.6/lib:/nix/store/x97ncf3ii= xq0mvpsp8wqxf4cmwdbd5h2-libxdmcp-1.1.1/lib:/nix/store/r6bb5a4nbbg1d13a3pgvw= 75rbcaw0ndi-libxau-1.0.7/lib:/nix/store/wv2693yd63c54fsgsmczxkgcp1mwwiyj-li= bpthread-stubs-0.3/lib:/nix/store/j5fbzanhxzc521x4130rh7nwa365fyc5-xproto-7= .0.23/lib:/nix/store/ksgcicnwcadglmki5ai1d5xxfhjx52hf-libxi-1.6.1/lib:/nix/= store/q6w1q2ixvyakxizs5yr402n5kk0gy9fc-libxext-1.3.1/lib:/nix/store/ymdfaay= c7yv8dqwb0ksgddx5vmaahgrn-xextproto-7.2.1/lib:/nix/store/qq2jg6mqh3l9plmn61= pz2f7cy2l8sx4w-libxrandr-1.3.2/lib:/nix/store/bajcc32lacgqp05fj47hzl6w9rxhg= 7sj-randrproto-1.3.2/lib:/nix/store/q6w1q2ixvyakxizs5yr402n5kk0gy9fc-libxex= t-1.3.1/lib:/nix/store/ymdfaayc7yv8dqwb0ksgddx5vmaahgrn-xextproto-7.2.1/lib= :/nix/store/q2vkha2bnnv7b7lkvn2n5am20nkgglxl-libxxf86vm-1.1.2/lib:/nix/stor= e/2hc601yvaz828vsfl5dgdj1pjl1p8hhx-xf86vidmodeproto-2.3.1/lib:/nix/store/q6= w1q2ixvyakxizs5yr402n5kk0gy9fc-libxext-1.3.1/lib:/nix/store/ymdfaayc7yv8dqw= b0ksgddx5vmaahgrn-xextproto-7.2.1/lib:/nix/store/x7d051y5aph72c4brhzq8va8rq= 3hnfvl-glu-9.0.0/lib:/nix/store/spqiwv2m0ahqyr5gccm2b1yddns7xhqb-bzip2-1.0.= 6/lib:/nix/store/7cw9d4f5igaj48nnbylbj9v8g0qviw13-xz-5.0.4/lib:/nix/store/g= sjwmrx0ds4y7ddmiwhim3g8l6ag6j2f-gawk-4.1.0/lib:/nix/store/52998i0m4gr7k35ln= i8fmg591zsyqamv-gcc-4.7.3/lib:/nix/store/shamfhyg9hcac63y3bll9p50ixxid8vb-g= libc-2.18/lib' phase `set-paths' succeeded after 0 seconds starting phase `unpack' freeglut-2.8.1/ freeglut-2.8.1/freeglut_static.mak freeglut-2.8.1/freeglut_evc4.vcp freeglut-2.8.1/TODO freeglut-2.8.1/NEWS freeglut-2.8.1/freeglut.dsw freeglut-2.8.1/freeglut.rc freeglut-2.8.1/README.cygwin_mingw freeglut-2.8.1/install-sh freeglut-2.8.1/src/ freeglut-2.8.1/src/freeglut_init.c freeglut-2.8.1/src/freeglut_cursor.c freeglut-2.8.1/src/freeglut_font_data.c freeglut-2.8.1/src/freeglut_stroke_mono_roman.c freeglut-2.8.1/src/freeglut_teapot_data.h freeglut-2.8.1/src/freeglut_state.c freeglut-2.8.1/src/Makefile.in freeglut-2.8.1/src/freeglut_spaceball.c freeglut-2.8.1/src/freeglut_menu.c freeglut-2.8.1/src/freeglut_callbacks.c freeglut-2.8.1/src/freeglut_font.c freeglut-2.8.1/src/freeglut_input_devices.c freeglut-2.8.1/src/freeglut_xinput.c freeglut-2.8.1/src/freeglutdll.def freeglut-2.8.1/src/freeglut_overlay.c freeglut-2.8.1/src/templates/ freeglut-2.8.1/src/templates/cpp_template freeglut-2.8.1/src/templates/header_template freeglut-2.8.1/src/freeglut_glutfont_definitions.c freeglut-2.8.1/src/freeglut_window.c freeglut-2.8.1/src/freeglut_teapot.c freeglut-2.8.1/src/freeglut_gamemode.c freeglut-2.8.1/src/freeglut_internal.h freeglut-2.8.1/src/freeglut_stroke_roman.c freeglut-2.8.1/src/Makefile.am freeglut-2.8.1/src/freeglut_videoresize.c freeglut-2.8.1/src/freeglut_joystick.c freeglut-2.8.1/src/freeglut_display.c freeglut-2.8.1/src/freeglut_ext.c freeglut-2.8.1/src/freeglut_geometry.c freeglut-2.8.1/src/freeglut_structure.c freeglut-2.8.1/src/freeglut_main.c freeglut-2.8.1/src/freeglut_misc.c freeglut-2.8.1/freeglut_static.dep freeglut-2.8.1/LISEZ_MOI freeglut-2.8.1/Makefile.in freeglut-2.8.1/progs/ freeglut-2.8.1/progs/demos/ freeglut-2.8.1/progs/demos/subwin/ freeglut-2.8.1/progs/demos/subwin/Makefile.in freeglut-2.8.1/progs/demos/subwin/subwinStatic.dsp freeglut-2.8.1/progs/demos/subwin/Makefile.am freeglut-2.8.1/progs/demos/subwin/subwin.c freeglut-2.8.1/progs/demos/subwin/subwin.dsp freeglut-2.8.1/progs/demos/Fractals/ freeglut-2.8.1/progs/demos/Fractals/fractals.dat freeglut-2.8.1/progs/demos/Fractals/Makefile.in freeglut-2.8.1/progs/demos/Fractals/Fractals.dsp freeglut-2.8.1/progs/demos/Fractals/Makefile.am freeglut-2.8.1/progs/demos/Fractals/FractalsStatic.dsp freeglut-2.8.1/progs/demos/Fractals/fractals.c freeglut-2.8.1/progs/demos/Fractals_random/ freeglut-2.8.1/progs/demos/Fractals_random/fractals.dat freeglut-2.8.1/progs/demos/Fractals_random/Makefile.in freeglut-2.8.1/progs/demos/Fractals_random/Fractals_randomStatic.dsp freeglut-2.8.1/progs/demos/Fractals_random/fractals_random.c freeglut-2.8.1/progs/demos/Fractals_random/Makefile.am freeglut-2.8.1/progs/demos/Fractals_random/Fractals_random.dsp freeglut-2.8.1/progs/demos/demos.dsw freeglut-2.8.1/progs/demos/Makefile.in freeglut-2.8.1/progs/demos/smooth_opengl3/ freeglut-2.8.1/progs/demos/smooth_opengl3/smooth_opengl3.dsp freeglut-2.8.1/progs/demos/smooth_opengl3/Makefile.in freeglut-2.8.1/progs/demos/smooth_opengl3/smooth_opengl3.c freeglut-2.8.1/progs/demos/smooth_opengl3/smooth_opengl3Static.dsp freeglut-2.8.1/progs/demos/smooth_opengl3/Makefile.am freeglut-2.8.1/progs/demos/CallbackMaker/ freeglut-2.8.1/progs/demos/CallbackMaker/CallbackMaker.c freeglut-2.8.1/progs/demos/CallbackMaker/CallbackMakerStatic.dsp freeglut-2.8.1/progs/demos/CallbackMaker/Makefile.in freeglut-2.8.1/progs/demos/CallbackMaker/CallbackMaker.dsp freeglut-2.8.1/progs/demos/CallbackMaker/Makefile.am freeglut-2.8.1/progs/demos/One/ freeglut-2.8.1/progs/demos/One/Makefile.in freeglut-2.8.1/progs/demos/One/oneStatic.dsp freeglut-2.8.1/progs/demos/One/Makefile.am freeglut-2.8.1/progs/demos/One/one.dsp freeglut-2.8.1/progs/demos/One/one.c freeglut-2.8.1/progs/demos/shapes/ freeglut-2.8.1/progs/demos/shapes/Makefile.in freeglut-2.8.1/progs/demos/shapes/shapes.dsp freeglut-2.8.1/progs/demos/shapes/shapes.c freeglut-2.8.1/progs/demos/shapes/Makefile.am freeglut-2.8.1/progs/demos/shapes/shapesStatic.dsp freeglut-2.8.1/progs/demos/Makefile.am freeglut-2.8.1/progs/demos/Resizer/ freeglut-2.8.1/progs/demos/Resizer/Resizer.dsp freeglut-2.8.1/progs/demos/Resizer/Resizer.cpp freeglut-2.8.1/progs/demos/Lorenz/ freeglut-2.8.1/progs/demos/Lorenz/Makefile.in freeglut-2.8.1/progs/demos/Lorenz/Makefile.am freeglut-2.8.1/progs/demos/Lorenz/lorenzStatic.dsp freeglut-2.8.1/progs/demos/Lorenz/lorenz.c freeglut-2.8.1/progs/demos/Lorenz/lorenz.dsp freeglut-2.8.1/progs/demos/spaceball/ freeglut-2.8.1/progs/demos/spaceball/Makefile.in freeglut-2.8.1/progs/demos/spaceball/vmath.c freeglut-2.8.1/progs/demos/spaceball/spaceball.dsp freeglut-2.8.1/progs/demos/spaceball/spaceball_static.dsp freeglut-2.8.1/progs/demos/spaceball/Makefile.am freeglut-2.8.1/progs/demos/spaceball/spaceball.c freeglut-2.8.1/progs/demos/spaceball/vmath.h freeglut-2.8.1/progs/demos/spaceball/vmath.inl freeglut-2.8.1/progs/Makefile.in freeglut-2.8.1/progs/Makefile.am freeglut-2.8.1/VisualStudio/ freeglut-2.8.1/VisualStudio/2012/ freeglut-2.8.1/VisualStudio/2012/subwin/ freeglut-2.8.1/VisualStudio/2012/subwin/subwin.vcxproj.filters freeglut-2.8.1/VisualStudio/2012/subwin/subwin.vcxproj freeglut-2.8.1/VisualStudio/2012/Fractals/ freeglut-2.8.1/VisualStudio/2012/Fractals/Fractals.vcxproj.filters freeglut-2.8.1/VisualStudio/2012/Fractals/Fractals.vcxproj freeglut-2.8.1/VisualStudio/2012/freeglut.sln freeglut-2.8.1/VisualStudio/2012/Fractals_random/ freeglut-2.8.1/VisualStudio/2012/Fractals_random/Fractals_random.vcxproj.fi= lters freeglut-2.8.1/VisualStudio/2012/Fractals_random/Fractals_random.vcxproj freeglut-2.8.1/VisualStudio/2012/smooth_opengl3/ freeglut-2.8.1/VisualStudio/2012/smooth_opengl3/smooth_opengl3.vcxproj freeglut-2.8.1/VisualStudio/2012/smooth_opengl3/smooth_opengl3.vcxproj.filt= ers freeglut-2.8.1/VisualStudio/2012/freeglut.vcxproj.filters freeglut-2.8.1/VisualStudio/2012/CallbackMaker/ freeglut-2.8.1/VisualStudio/2012/CallbackMaker/CallbackMaker.vcxproj freeglut-2.8.1/VisualStudio/2012/CallbackMaker/CallbackMaker.vcxproj.filter= s freeglut-2.8.1/VisualStudio/2012/One/ freeglut-2.8.1/VisualStudio/2012/One/One.vcxproj freeglut-2.8.1/VisualStudio/2012/One/One.vcxproj.filters freeglut-2.8.1/VisualStudio/2012/shapes/ freeglut-2.8.1/VisualStudio/2012/shapes/shapes.vcxproj.filters freeglut-2.8.1/VisualStudio/2012/shapes/shapes.vcxproj freeglut-2.8.1/VisualStudio/2012/Resizer/ freeglut-2.8.1/VisualStudio/2012/Resizer/Resizer.vcxproj.filters freeglut-2.8.1/VisualStudio/2012/Resizer/Resizer.vcxproj freeglut-2.8.1/VisualStudio/2012/Lorenz/ freeglut-2.8.1/VisualStudio/2012/Lorenz/Lorenz.vcxproj freeglut-2.8.1/VisualStudio/2012/Lorenz/Lorenz.vcxproj.filters freeglut-2.8.1/VisualStudio/2012/freeglut.vcxproj freeglut-2.8.1/VisualStudio/2010/ freeglut-2.8.1/VisualStudio/2010/subwin/ freeglut-2.8.1/VisualStudio/2010/subwin/subwin.vcxproj.filters freeglut-2.8.1/VisualStudio/2010/subwin/subwin.vcxproj freeglut-2.8.1/VisualStudio/2010/Fractals/ freeglut-2.8.1/VisualStudio/2010/Fractals/Fractals.vcxproj.filters freeglut-2.8.1/VisualStudio/2010/Fractals/Fractals.vcxproj freeglut-2.8.1/VisualStudio/2010/freeglut.sln freeglut-2.8.1/VisualStudio/2010/Fractals_random/ freeglut-2.8.1/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj.fi= lters freeglut-2.8.1/VisualStudio/2010/Fractals_random/Fractals_random.vcxproj freeglut-2.8.1/VisualStudio/2010/smooth_opengl3/ freeglut-2.8.1/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj freeglut-2.8.1/VisualStudio/2010/smooth_opengl3/smooth_opengl3.vcxproj.filt= ers freeglut-2.8.1/VisualStudio/2010/freeglut.vcxproj.filters freeglut-2.8.1/VisualStudio/2010/CallbackMaker/ freeglut-2.8.1/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj freeglut-2.8.1/VisualStudio/2010/CallbackMaker/CallbackMaker.vcxproj.filter= s freeglut-2.8.1/VisualStudio/2010/One/ freeglut-2.8.1/VisualStudio/2010/One/One.vcxproj freeglut-2.8.1/VisualStudio/2010/One/One.vcxproj.filters freeglut-2.8.1/VisualStudio/2010/shapes/ freeglut-2.8.1/VisualStudio/2010/shapes/shapes.vcxproj.filters freeglut-2.8.1/VisualStudio/2010/shapes/shapes.vcxproj freeglut-2.8.1/VisualStudio/2010/Resizer/ freeglut-2.8.1/VisualStudio/2010/Resizer/Resizer.vcxproj.filters freeglut-2.8.1/VisualStudio/2010/Resizer/Resizer.vcxproj freeglut-2.8.1/VisualStudio/2010/Lorenz/ freeglut-2.8.1/VisualStudio/2010/Lorenz/Lorenz.vcxproj freeglut-2.8.1/VisualStudio/2010/Lorenz/Lorenz.vcxproj.filters freeglut-2.8.1/VisualStudio/2010/freeglut.vcxproj freeglut-2.8.1/VisualStudio/2008/ freeglut-2.8.1/VisualStudio/2008/subwin/ freeglut-2.8.1/VisualStudio/2008/subwin/subwin.vcproj freeglut-2.8.1/VisualStudio/2008/Fractals/ freeglut-2.8.1/VisualStudio/2008/Fractals/Fractals.vcproj freeglut-2.8.1/VisualStudio/2008/freeglut.sln freeglut-2.8.1/VisualStudio/2008/Fractals_random/ freeglut-2.8.1/VisualStudio/2008/Fractals_random/Fractals_random.vcproj freeglut-2.8.1/VisualStudio/2008/freeglut.vcproj freeglut-2.8.1/VisualStudio/2008/smooth_opengl3/ freeglut-2.8.1/VisualStudio/2008/smooth_opengl3/smooth_opengl3.vcproj freeglut-2.8.1/VisualStudio/2008/CallbackMaker/ freeglut-2.8.1/VisualStudio/2008/CallbackMaker/CallbackMaker.vcproj freeglut-2.8.1/VisualStudio/2008/One/ freeglut-2.8.1/VisualStudio/2008/One/One.vcproj freeglut-2.8.1/VisualStudio/2008/shapes/ freeglut-2.8.1/VisualStudio/2008/shapes/shapes.vcproj freeglut-2.8.1/VisualStudio/2008/Resizer/ freeglut-2.8.1/VisualStudio/2008/Resizer/Resizer.vcproj freeglut-2.8.1/VisualStudio/2008/Lorenz/ freeglut-2.8.1/VisualStudio/2008/Lorenz/Lorenz.vcproj freeglut-2.8.1/missing freeglut-2.8.1/LISEZMOI.cygwin_mingw freeglut-2.8.1/COPYING freeglut-2.8.1/config.h.in freeglut-2.8.1/freeglut_evc4.vcw freeglut-2.8.1/autom4te.cache/ freeglut-2.8.1/autom4te.cache/traces.1 freeglut-2.8.1/autom4te.cache/traces.0 freeglut-2.8.1/autom4te.cache/requests freeglut-2.8.1/autom4te.cache/output.0 freeglut-2.8.1/autom4te.cache/output.1 freeglut-2.8.1/config.guess freeglut-2.8.1/freeglut.dep freeglut-2.8.1/depcomp freeglut-2.8.1/freeglut.lsm freeglut-2.8.1/freeglut.spec freeglut-2.8.1/doc/ freeglut-2.8.1/doc/Makefile.in freeglut-2.8.1/doc/structure.html freeglut-2.8.1/doc/freeglut_user_interface.html freeglut-2.8.1/doc/progress.html freeglut-2.8.1/doc/freeglut.html freeglut-2.8.1/doc/index.html freeglut-2.8.1/doc/Makefile.am freeglut-2.8.1/doc/download.html freeglut-2.8.1/doc/freeglut_logo.png freeglut-2.8.1/doc/ogl_sm.png freeglut-2.8.1/INSTALL freeglut-2.8.1/freeglut.mak freeglut-2.8.1/compile freeglut-2.8.1/README freeglut-2.8.1/include/ freeglut-2.8.1/include/Makefile.in freeglut-2.8.1/include/GL/ freeglut-2.8.1/include/GL/freeglut.h freeglut-2.8.1/include/GL/freeglut_ext.h freeglut-2.8.1/include/GL/Makefile.in freeglut-2.8.1/include/GL/glut.h freeglut-2.8.1/include/GL/Makefile.am freeglut-2.8.1/include/GL/freeglut_std.h freeglut-2.8.1/include/Makefile.am freeglut-2.8.1/AUTHORS freeglut-2.8.1/Makefile.wat freeglut-2.8.1/freeglut_static.dsp freeglut-2.8.1/FrequentlyAskedQuestions freeglut-2.8.1/autogen.sh freeglut-2.8.1/config.sub freeglut-2.8.1/Makefile.am freeglut-2.8.1/freeglut.kdevprj freeglut-2.8.1/configure.ac freeglut-2.8.1/freeglut.kdevelop freeglut-2.8.1/ltmain.sh freeglut-2.8.1/aclocal.m4 freeglut-2.8.1/README.win32 freeglut-2.8.1/README.mac freeglut-2.8.1/configure freeglut-2.8.1/ChangeLog freeglut-2.8.1/freeglut.dsp phase `unpack' succeeded after 0 seconds starting phase `patch' phase `patch' succeeded after 0 seconds starting phase `patch-source-shebangs' patch-shebang: ./autogen.sh: changing `/bin/sh' to `/nix/store/nx4sg06b3njc= lz7c3q0vn8x2v07vssrq-bash-4.2/bin/sh' patch-shebang: ./compile: changing `/bin/sh' to `/nix/store/nx4sg06b3njclz7= c3q0vn8x2v07vssrq-bash-4.2/bin/sh' patch-shebang: ./config.guess: changing `/bin/sh' to `/nix/store/nx4sg06b3n= jclz7c3q0vn8x2v07vssrq-bash-4.2/bin/sh' patch-shebang: ./config.sub: changing `/bin/sh' to `/nix/store/nx4sg06b3njc= lz7c3q0vn8x2v07vssrq-bash-4.2/bin/sh' patch-shebang: ./configure: changing `/bin/sh' to `/nix/store/nx4sg06b3njcl= z7c3q0vn8x2v07vssrq-bash-4.2/bin/sh' patch-shebang: ./depcomp: changing `/bin/sh' to `/nix/store/nx4sg06b3njclz7= c3q0vn8x2v07vssrq-bash-4.2/bin/sh' patch-shebang: ./install-sh: changing `/bin/sh' to `/nix/store/nx4sg06b3njc= lz7c3q0vn8x2v07vssrq-bash-4.2/bin/sh' patch-shebang: ./missing: changing `/bin/sh' to `/nix/store/nx4sg06b3njclz7= c3q0vn8x2v07vssrq-bash-4.2/bin/sh' phase `patch-source-shebangs' succeeded after 0 seconds starting phase `configure' source directory: "/tmp/nix-build-freeglut-2.8.1.drv-0/freeglut-2.8.1" (rel= ative from build: ".") build directory: "/tmp/nix-build-freeglut-2.8.1.drv-0/freeglut-2.8.1" configure flags: ("CONFIG_SHELL=3D/nix/store/nx4sg06b3njclz7c3q0vn8x2v07vss= rq-bash-4.2/bin/bash" "SHELL=3D/nix/store/nx4sg06b3njclz7c3q0vn8x2v07vssrq-= bash-4.2/bin/bash" "--prefix=3D/nix/store/y4hfp689fp18jxpycnad1gvka4v0l9dr-= freeglut-2.8.1" "--enable-fast-install") checking for a BSD-compatible install... /nix/store/1933bjqi2izc0nf0cini15z= h4f5ai563-coreutils-8.21/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /nix/store/1933bjqi2izc0nf0cini15zh4= f5ai563-coreutils-8.21/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... no checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables...=20 checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking whether gcc and cc understand -c and -o together... yes checking for an ANSI C-conforming const... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking how to print strings... printf checking for a sed that does not truncate output... /nix/store/gqnz60g10y9z= qz51hx5gajk67b3c5s6p-sed-4.2.2/bin/sed checking for grep that handles long lines and -e... /nix/store/vmsk3gwg3z9r= a7rzyg34892da1dp72ap-grep-2.14/bin/grep checking for egrep... /nix/store/vmsk3gwg3z9ra7rzyg34892da1dp72ap-grep-2.14= /bin/grep -E checking for fgrep... /nix/store/vmsk3gwg3z9ra7rzyg34892da1dp72ap-grep-2.14= /bin/grep -F checking for ld used by gcc... /nix/store/wfkbgwhif7bn42l4sw9rzcd32ai3jl6z-= ld-wrapper-0/bin/ld checking if the linker (/nix/store/wfkbgwhif7bn42l4sw9rzcd32ai3jl6z-ld-wrap= per-0/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /nix/store/2kqxlzih0= d3wc646rzcm2hfpw2ryv71c-binutils-2.23.2/bin/nm -B checking the name lister (/nix/store/2kqxlzih0d3wc646rzcm2hfpw2ryv71c-binut= ils-2.23.2/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+=3D"... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unkno= wn-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain fo= rmat... func_convert_file_noop checking for /nix/store/wfkbgwhif7bn42l4sw9rzcd32ai3jl6z-ld-wrapper-0/bin/l= d option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /nix/store/2kqxlzih0d3wc646rzcm2hfpw2ryv71c-binut= ils-2.23.2/bin/nm -B output from gcc object... ok checking for sysroot... no ./configure: line 6352: /usr/bin/file: No such file or directory checking for mt... no checking if : is a manifest tool... no checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/nix/store/wfkbgwhif7bn42l4sw9rzcd32ai3jl6= z-ld-wrapper-0/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... no checking for dlopen in -ldl... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for X... libraries , headers=20 checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... no checking for XF86VidModeSwitchToMode in -lXxf86vm... yes checking for XRRQueryExtension in -lXrandr... yes checking for XISelectEvents in -lXi... yes checking for hid_init in -lusbhid... no checking for library containing clock_gettime... none required checking for ANSI C header files... (cached) yes checking usbhid.h usability... no checking usbhid.h presence... no checking for usbhid.h... no checking libusbhid.h usability... no checking libusbhid.h presence... no checking for libusbhid.h... no checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking GL/gl.h usability... yes checking GL/gl.h presence... yes checking for GL/gl.h... yes checking GL/glu.h usability... yes checking GL/glu.h presence... yes checking for GL/glu.h... yes checking GL/glx.h usability... yes checking GL/glx.h presence... yes checking for GL/glx.h... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking whether time.h and sys/time.h may both be included... yes checking for X11/extensions/xf86vmode.h... yes checking X11/extensions/Xrandr.h usability... no checking X11/extensions/Xrandr.h presence... no checking for X11/extensions/Xrandr.h... no checking X11/extensions/XI.h usability... no checking X11/extensions/XI.h presence... no checking for X11/extensions/XI.h... no checking X11/extensions/XInput.h usability... no checking X11/extensions/XInput.h presence... no checking for X11/extensions/XInput.h... no checking X11/extensions/XInput2.h usability... no checking X11/extensions/XInput2.h presence... no checking for X11/extensions/XInput2.h... no checking whether gcc needs -traditional... no checking for vprintf... yes checking for _doprnt... no checking for cos in -lm... yes checking for gettimeofday... yes checking for vfprintf... yes configure: creating ./config.status config.status: creating Makefile config.status: creating doc/Makefile config.status: creating include/GL/Makefile config.status: creating include/Makefile config.status: creating progs/Makefile config.status: creating progs/demos/CallbackMaker/Makefile config.status: creating progs/demos/Fractals/Makefile config.status: creating progs/demos/Fractals_random/Makefile config.status: creating progs/demos/Lorenz/Makefile config.status: creating progs/demos/Makefile config.status: creating progs/demos/One/Makefile config.status: creating progs/demos/shapes/Makefile config.status: creating progs/demos/smooth_opengl3/Makefile config.status: creating progs/demos/spaceball/Makefile config.status: creating progs/demos/subwin/Makefile config.status: creating src/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands phase `configure' succeeded after 7 seconds starting phase `patch-generated-file-shebangs' phase `patch-generated-file-shebangs' succeeded after 0 seconds starting phase `build' make all-recursive make[1]: Entering directory `/tmp/nix-build-freeglut-2.8.1.drv-0/freeglut-2= .8.1' Making all in src make[2]: Entering directory `/tmp/nix-build-freeglut-2.8.1.drv-0/freeglut-2= .8.1/src' /nix/store/nx4sg06b3njclz7c3q0vn8x2v07vssrq-bash-4.2/bin/bash ../libtool -= -tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H -I. -I.. -I../include = -g -O2 -Wall -pedantic -MT libglut_la-freeglut_callbacks.lo -MD -MP -MF .d= eps/libglut_la-freeglut_callbacks.Tpo -c -o libglut_la-freeglut_callbacks.l= o `test -f 'freeglut_callbacks.c' || echo './'`freeglut_callbacks.c /nix/store/nx4sg06b3njclz7c3q0vn8x2v07vssrq-bash-4.2/bin/bash ../libtool -= -tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H -I. -I.. -I../include = -g -O2 -Wall -pedantic -MT libglut_la-freeglut_cursor.lo -MD -MP -MF .deps= /libglut_la-freeglut_cursor.Tpo -c -o libglut_la-freeglut_cursor.lo `test -= f 'freeglut_cursor.c' || echo './'`freeglut_cursor.c /nix/store/nx4sg06b3njclz7c3q0vn8x2v07vssrq-bash-4.2/bin/bash ../libtool -= -tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H -I. -I.. -I../include = -g -O2 -Wall -pedantic -MT libglut_la-freeglut_display.lo -MD -MP -MF .dep= s/libglut_la-freeglut_display.Tpo -c -o libglut_la-freeglut_display.lo `tes= t -f 'freeglut_display.c' || echo './'`freeglut_display.c /nix/store/nx4sg06b3njclz7c3q0vn8x2v07vssrq-bash-4.2/bin/bash ../libtool -= -tag=3DCC --mode=3Dcompile gcc -DHAVE_CONFIG_H -I. -I.. -I../include = -g -O2 -Wall -pedantic -MT libglut_la-freeglut_ext.lo -MD -MP -MF .deps/li= bglut_la-freeglut_ext.Tpo -c -o libglut_la-freeglut_ext.lo `test -f 'freegl= ut_ext.c' || echo './'`freeglut_ext.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../include -g -O2 -Wall -= pedantic -MT libglut_la-freeglut_display.lo -MD -MP -MF .deps/libglut_la-fr= eeglut_display.Tpo -c freeglut_display.c -fPIC -DPIC -o .libs/libglut_la-f= reeglut_display.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../include -g -O2 -Wall -= pedantic -MT libglut_la-freeglut_callbacks.lo -MD -MP -MF .deps/libglut_la-= freeglut_callbacks.Tpo -c freeglut_callbacks.c -fPIC -DPIC -o .libs/libglu= t_la-freeglut_callbacks.o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../include -g -O2 -Wall -= pedantic -MT libglut_la-freeglut_ext.lo -MD -MP -MF .deps/libglut_la-freegl= ut_ext.Tpo -c freeglut_ext.c -fPIC -DPIC -o .libs/libglut_la-freeglut_ext.= o libtool: compile: gcc -DHAVE_CONFIG_H -I. -I.. -I../include -g -O2 -Wall -= pedantic -MT libglut_la-freeglut_cursor.lo -MD -MP -MF .deps/libglut_la-fre= eglut_cursor.Tpo -c freeglut_cursor.c -fPIC -DPIC -o .libs/libglut_la-free= glut_cursor.o In file included from /nix/store/jkg8s91f8f7sgarj35zvajgwsfs7x3qb-libx11-1.= 5.0/include/X11/Xlib.h:47:0, from /nix/store/0s15pnadjxh7ykswhq0k60fd46c5q67p-mesa-8.0.= 5/include/GL/glx.h:38, from freeglut_internal.h:108, from freeglut_display.c:29: /nix/store/j5fbzanhxzc521x4130rh7nwa365fyc5-xproto-7.0.23/include/X11/Xfunc= proto.h:136:24: warning: ISO C does not permit named variadic macros [-Wvar= iadic-macros] In file included from /nix/store/jkg8s91f8f7sgarj35zvajgwsfs7x3qb-libx11-1.= 5.0/include/X11/Xlib.h:47:0, from /nix/store/0s15pnadjxh7ykswhq0k60fd46c5q67p-mesa-8.0.= 5/include/GL/glx.h:38, from freeglut_internal.h:108, from freeglut_ext.c:30: /nix/store/j5fbzanhxzc521x4130rh7nwa365fyc5-xproto-7.0.23/include/X11/Xfunc= proto.h:136:24: warning: ISO C does not permit named variadic macros [-Wvar= iadic-macros] In file included from freeglut_internal.h:112:0, from freeglut_display.c:29: /nix/store/ksgcicnwcadglmki5ai1d5xxfhjx52hf-libxi-1.6.1/include/X11/extensi= ons/XInput.h:53:31: fatal error: X11/extensions/XI.h: No such file or direc= tory compilation terminated. make[2]: *** [libglut_la-freeglut_display.lo] Error 1 make[2]: *** Waiting for unfinished jobs.... In file included from freeglut_internal.h:112:0, from freeglut_ext.c:30: /nix/store/ksgcicnwcadglmki5ai1d5xxfhjx52hf-libxi-1.6.1/include/X11/extensi= ons/XInput.h:53:31: fatal error: X11/extensions/XI.h: No such file or direc= tory compilation terminated. make[2]: *** [libglut_la-freeglut_ext.lo] Error 1 In file included from /nix/store/jkg8s91f8f7sgarj35zvajgwsfs7x3qb-libx11-1.= 5.0/include/X11/Xlib.h:47:0, from /nix/store/0s15pnadjxh7ykswhq0k60fd46c5q67p-mesa-8.0.= 5/include/GL/glx.h:38, from freeglut_internal.h:108, from freeglut_callbacks.c:29: /nix/store/j5fbzanhxzc521x4130rh7nwa365fyc5-xproto-7.0.23/include/X11/Xfunc= proto.h:136:24: warning: ISO C does not permit named variadic macros [-Wvar= iadic-macros] In file included from /nix/store/jkg8s91f8f7sgarj35zvajgwsfs7x3qb-libx11-1.= 5.0/include/X11/Xlib.h:47:0, from /nix/store/0s15pnadjxh7ykswhq0k60fd46c5q67p-mesa-8.0.= 5/include/GL/glx.h:38, from freeglut_internal.h:108, from freeglut_cursor.c:29: /nix/store/j5fbzanhxzc521x4130rh7nwa365fyc5-xproto-7.0.23/include/X11/Xfunc= proto.h:136:24: warning: ISO C does not permit named variadic macros [-Wvar= iadic-macros] In file included from freeglut_internal.h:112:0, from freeglut_callbacks.c:29: /nix/store/ksgcicnwcadglmki5ai1d5xxfhjx52hf-libxi-1.6.1/include/X11/extensi= ons/XInput.h:53:31: fatal error: X11/extensions/XI.h: No such file or direc= tory compilation terminated. make[2]: *** [libglut_la-freeglut_callbacks.lo] Error 1 In file included from freeglut_internal.h:112:0, from freeglut_cursor.c:29: /nix/store/ksgcicnwcadglmki5ai1d5xxfhjx52hf-libxi-1.6.1/include/X11/extensi= ons/XInput.h:53:31: fatal error: X11/extensions/XI.h: No such file or direc= tory compilation terminated. make[2]: *** [libglut_la-freeglut_cursor.lo] Error 1 make[2]: Leaving directory `/tmp/nix-build-freeglut-2.8.1.drv-0/freeglut-2.= 8.1/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/tmp/nix-build-freeglut-2.8.1.drv-0/freeglut-2.= 8.1' make: *** [all] Error 2 phase `build' failed after 0 seconds builder for `/nix/store/pdwdwb9wgrx0wgcmkqlpx0czf31z87rg-freeglut-2.8.1.drv= ' failed with exit code 1 @ build-failed /nix/store/pdwdwb9wgrx0wgcmkqlpx0czf31z87rg-freeglut-2.8.1.d= rv - 1 builder for `/nix/store/pdwdwb9wgrx0wgcmkqlpx0czf31z87rg-freeglut-2.= 8.1.drv' failed with exit code 1 guix build: error: build failed: build of `/nix/store/pdwdwb9wgrx0wgcmkqlpx= 0czf31z87rg-freeglut-2.8.1.drv' failed --=-O8fm8ib+Y4f867am5/UH--