lol
fork

Configure Feed

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

at v206 28 lines 827 B view raw
1{ fetchurl, stdenv, glib, pkgconfig, gettext }: 2 3 4stdenv.mkDerivation rec { 5 name = "gts-${version}"; 6 version = "0.7.6"; 7 8 src = fetchurl { 9 url = "mirror://sourceforge/gts/${name}.tar.gz"; 10 sha256 = "07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705"; 11 }; 12 13 buildInputs = [ glib pkgconfig ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext; 14 15 meta = { 16 homepage = http://gts.sourceforge.net/; 17 license = stdenv.lib.licenses.lgpl2Plus; 18 description = "GNU Triangulated Surface Library"; 19 20 longDescription = '' 21 Library intended to provide a set of useful functions to deal with 22 3D surfaces meshed with interconnected triangles. 23 ''; 24 25 maintainers = [ stdenv.lib.maintainers.viric ]; 26 platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 27 }; 28}