Files
nixpkgs/pkgs/by-name/cg/cgal/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

62 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
cmake,
boost,
gmp,
mpfr,
testers,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "cgal";
version = "6.0.2";
src = fetchurl {
url = "https://github.com/CGAL/cgal/releases/download/v${finalAttrs.version}/CGAL-${finalAttrs.version}.tar.xz";
sha256 = "sha256-8wxb58JaKj6iS8y6q1z2P6/aY8AnnzTX5/izISgh/tY=";
};
patches = [ ./cgal_path.patch ];
nativeBuildInputs = [ cmake ];
# note: optional component libCGAL_ImageIO would need zlib and opengl;
# there are also libCGAL_Qt{3,4} omitted ATM
buildInputs = [
gmp
mpfr
];
propagatedBuildInputs = [
boost
];
doCheck = false;
passthru = {
tests = {
cmake-config = testers.hasCmakeConfigModules {
moduleNames = [ "CGAL" ];
package = finalAttrs.finalPackage;
};
};
};
meta = {
description = "Computational Geometry Algorithms Library";
homepage = "http://cgal.org";
license = with lib.licenses; [
gpl3Plus
lgpl3Plus
];
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [
raskin
drew-dirac
ylannl
];
};
})