2013-01-11 09:02:36 -08:00
|
|
|
{ fetchurl, stdenv, glib, pkgconfig, gettext }:
|
2011-03-02 09:18:15 -08:00
|
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gts-${version}";
|
|
|
|
version = "0.7.6";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/gts/${name}.tar.gz";
|
|
|
|
sha256 = "07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705";
|
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-03-14 15:58:20 -07:00
|
|
|
buildInputs = [ glib gettext ];
|
2011-03-02 09:18:15 -08:00
|
|
|
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # fails with "permission denied"
|
|
|
|
|
2011-03-02 09:18:15 -08:00
|
|
|
meta = {
|
|
|
|
homepage = http://gts.sourceforge.net/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-03-02 09:18:15 -08:00
|
|
|
description = "GNU Triangulated Surface Library";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Library intended to provide a set of useful functions to deal with
|
|
|
|
3D surfaces meshed with interconnected triangles.
|
|
|
|
'';
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
2013-11-05 01:46:59 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2011-03-02 09:18:15 -08:00
|
|
|
};
|
|
|
|
}
|