Adding tetgen
svn path=/nixpkgs/trunk/; revision=23138
This commit is contained in:
parent
05da3db77f
commit
3a3867869a
21
pkgs/applications/science/geometry/tetgen/default.nix
Normal file
21
pkgs/applications/science/geometry/tetgen/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -6630,6 +6630,8 @@ let
|
|||||||
inherit libxml2 guile perl intltool libtool pkgconfig;
|
inherit libxml2 guile perl intltool libtool pkgconfig;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tetgen = callPackage ../applications/science/geometry/tetgen { };
|
||||||
|
|
||||||
|
|
||||||
### SCIENCE/BIOLOGY
|
### SCIENCE/BIOLOGY
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user