mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
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;
|
||||
};
|
||||
|
||||
tetgen = callPackage ../applications/science/geometry/tetgen { };
|
||||
|
||||
|
||||
### SCIENCE/BIOLOGY
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user