cgal_5 5.5.1 -> 5.5.2 https://repology.org/project/cgal/versions attrpath: cgal_5 Checking auto update branch... No auto update branch exists Old version 5.5.1" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , cmake , boost , gmp , mpfr }: stdenv.mkDerivation rec { pname = "cgal"; version = "5.5.2"; src = fetchFromGitHub { owner = "CGAL"; repo = "releases"; rev = "CGAL-${version}"; sha256 = "sha256-olMPT/8Q0bf+rooJoNc0k8NrO//O7z0yqBoP8KX39yQ="; }; # note: optional component libCGAL_ImageIO would need zlib and opengl; # there are also libCGAL_Qt{3,4} omitted ATM buildInputs = [ boost gmp mpfr ]; nativeBuildInputs = [ cmake ]; patches = [ ./cgal_path.patch ]; doCheck = false; meta = with lib; { description = "Computational Geometry Algorithms Library"; homepage = "http://cgal.org"; license = with licenses; [ gpl3Plus lgpl3Plus]; platforms = platforms.all; maintainers = [ maintainers.raskin ]; }; }