nixpkgs/pkgs/development/libraries/qhull/default.nix
Karn Kallio 0842337d80 The hash for qhull has changed too.
svn path=/nixpkgs/trunk/; revision=33869
2012-04-21 04:21:25 +00:00

21 lines
502 B
Nix

{stdenv, fetchurl, cmake}:
stdenv.mkDerivation rec {
name = "qhull-2012.1";
src = fetchurl {
url = "${meta.homepage}/download/${name}-src.tgz";
sha256 = "127zpjp6sm8c101hz239k82lpxqcqf4ksdyfqc2py2sm22kclpm3";
};
buildNativeInputs = [ 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, ...";
license = "free";
};
}