lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 26 lines 653 B view raw
1{ stdenv, fetchurl, qt4, qmake4Hook, AGL }: 2 3stdenv.mkDerivation rec { 4 name = "libqglviewer-2.6.3"; 5 version = "2.6.3"; 6 7 src = fetchurl { 8 url = "http://www.libqglviewer.com/src/libQGLViewer-${version}.tar.gz"; 9 sha256 = "00jdkyk4wg1356c3ar6nk3hyp494ya3yvshq9m57kfmqpn3inqdy"; 10 }; 11 12 buildInputs = [ qt4 qmake4Hook ] 13 ++ stdenv.lib.optional stdenv.isDarwin AGL; 14 15 postPatch = 16 '' 17 cd QGLViewer 18 ''; 19 20 meta = with stdenv.lib; { 21 description = "C++ library based on Qt that eases the creation of OpenGL 3D viewers"; 22 homepage = http://libqglviewer.com/; 23 license = licenses.gpl2; 24 platforms = platforms.all; 25 }; 26}