python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / CGAL / default.nix
blob3b6e5f2498d5448b124761263313865b19df5d86
1 { lib, stdenv
2 , fetchFromGitHub
3 , cmake
4 , boost
5 , gmp
6 , mpfr
7 }:
9 stdenv.mkDerivation rec {
10   pname = "cgal";
11   version = "5.5.1";
13   src = fetchFromGitHub {
14     owner = "CGAL";
15     repo = "releases";
16     rev = "CGAL-${version}";
17     sha256 = "sha256-ISmuxvCLb2ueG3FeBzJ7R+LievfXefG3ZQbyAboIv+A=";
18   };
20   # note: optional component libCGAL_ImageIO would need zlib and opengl;
21   #   there are also libCGAL_Qt{3,4} omitted ATM
22   buildInputs = [ boost gmp mpfr ];
23   nativeBuildInputs = [ cmake ];
25   patches = [ ./cgal_path.patch ];
27   doCheck = false;
29   meta = with lib; {
30     description = "Computational Geometry Algorithms Library";
31     homepage = "http://cgal.org";
32     license = with licenses; [ gpl3Plus lgpl3Plus];
33     platforms = platforms.all;
34     maintainers = [ maintainers.raskin ];
35   };