nixpkgs/pkgs/development/libraries/qhull/default.nix

23 lines
595 B
Nix
Raw Normal View History

2018-08-09 04:26:02 +02:00
{ stdenv, fetchFromGitHub, cmake }:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2018-08-09 04:26:02 +02:00
name = "qhull-2016.1";
2018-08-09 04:26:02 +02:00
src = fetchFromGitHub {
owner = "qhull";
repo = "qhull";
rev = "5bbc75608c817b50383a0c24c3977cc09d0bbfde";
sha256 = "0wrgqc2mih7h8fs9v5jcn9dr56afqi9bgh2w9dcvzvzvxizr9kjj";
};
nativeBuildInputs = [ cmake ];
2018-08-09 04:26:02 +02:00
meta = with stdenv.lib; {
homepage = "http://www.qhull.org/";
2018-08-09 04:26:02 +02:00
description = "Compute the convex hull, Delaunay triangulation, Voronoi diagram and more";
2019-09-22 22:21:27 +02:00
license = licenses.qhull;
2018-08-09 04:26:02 +02:00
platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};
}