2018-08-09 04:26:02 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2011-08-15 20:05:10 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-09 04:26:02 +02:00
|
|
|
name = "qhull-2016.1";
|
2009-04-08 22:06:03 +02:00
|
|
|
|
2018-08-09 04:26:02 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "qhull";
|
|
|
|
repo = "qhull";
|
|
|
|
rev = "5bbc75608c817b50383a0c24c3977cc09d0bbfde";
|
|
|
|
sha256 = "0wrgqc2mih7h8fs9v5jcn9dr56afqi9bgh2w9dcvzvzvxizr9kjj";
|
2009-04-08 22:06:03 +02:00
|
|
|
};
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2009-04-08 22:06:03 +02:00
|
|
|
|
2018-08-09 04:26:02 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-08 22:06:03 +02:00
|
|
|
homepage = http://www.qhull.org/;
|
2018-08-09 04:26:02 +02:00
|
|
|
description = "Compute the convex hull, Delaunay triangulation, Voronoi diagram and more";
|
|
|
|
license = licenses.free;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
2009-04-08 22:06:03 +02:00
|
|
|
};
|
|
|
|
}
|