mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
21 lines
523 B
Nix
21 lines
523 B
Nix
{stdenv, fetchurl, cmake}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qhull-2012.1";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/download/${name}-src.tgz";
|
|
sha256 = "127zpjp6sm8c101hz239k82lpxqcqf4ksdyfqc2py2sm22kclpm3";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = "-DMAN_INSTALL_DIR=share/man/man1 -DDOC_INSTALL_DIR=share/doc/qhull";
|
|
|
|
meta = {
|
|
homepage = http://www.qhull.org/;
|
|
description = "Computes the convex hull, Delaunay triangulation, Voronoi diagram and more";
|
|
license = "free";
|
|
};
|
|
}
|