lol
fork

Configure Feed

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

at 16.09-beta 27 lines 776 B view raw
1{ stdenv, fetchsvn, eigen }: 2 3stdenv.mkDerivation rec { 4 name = "vcg-2016-02-14"; 5 6 src = fetchsvn { 7 url = "svn://svn.code.sf.net/p/vcg/code/trunk/vcglib"; 8 rev = 5688; 9 sha256 = "0hkvz2d8prrjdcc7h0xhfd9hq86lmqg17ml045x4bkiciimx0w5s"; 10 }; 11 12 propagatedBuildInputs = [ eigen ]; 13 14 installPhase = '' 15 mkdir -p $out/include 16 cp -r vcg wrap $out/include 17 find $out -name \*.h -exec sed -i 's,<eigenlib/,<eigen3/,g' {} \; 18 ''; 19 20 meta = with stdenv.lib; { 21 homepage = http://vcg.isti.cnr.it/vcglib/install.html; 22 description = "C++ library for manipulation, processing and displaying with OpenGL of triangle and tetrahedral meshes"; 23 license = licenses.gpl3; 24 platforms = platforms.linux; 25 maintainers = with maintainers; [ abbradar ]; 26 }; 27}