Adding tetgen

svn path=/nixpkgs/trunk/; revision=23138
This commit is contained in:
Lluís Batlle i Rossell 2010-08-12 10:59:05 +00:00
parent 05da3db77f
commit 3a3867869a
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "tetgen-1.4.3";
src = fetchurl {
url = http://tetgen.berlios.de/files/tetgen1.4.3.tar.gz;
sha256 = "159i0vdjz7abb8bycz47ax4fqlzc82kv19sygqnrkr86qm4g43wy";
};
installPhase = ''
ensureDir $out/bin
cp tetgen $out/bin
'';
meta = {
description = "Quality Tetrahedral Mesh Generator and 3D Delaunay Triangulator";
homepage = "http://tetgen.berlios.de/";
license = "MIT";
};
}

View File

@ -6630,6 +6630,8 @@ let
inherit libxml2 guile perl intltool libtool pkgconfig;
};
tetgen = callPackage ../applications/science/geometry/tetgen { };
### SCIENCE/BIOLOGY