35 lines
949 B
Nix
35 lines
949 B
Nix
{ fetchurl, stdenv, pkgconfig, autoreconfHook, gettext, glib }:
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gts";
|
|
version = "0.7.6";
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gts/${pname}-${version}.tar.gz";
|
|
sha256 = "07mqx09jxh8cv9753y2d2jsv7wp8vjmrd7zcfpbrddz3wc9kx705";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
buildInputs = [ gettext ];
|
|
propagatedBuildInputs = [ glib ];
|
|
|
|
doCheck = false; # fails with "permission denied"
|
|
|
|
meta = {
|
|
homepage = http://gts.sourceforge.net/;
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
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 ];
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
};
|
|
}
|