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

23 lines
593 B
Nix
Raw Normal View History

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