nixpkgs/pkgs/by-name/cl/clipper2/package.nix
Alice Carroll d09ac17c83 clipper2: use lib.platforms.all
While there might actually be broken platforms, there is no reason
to limit supported platforms to just Linux systems.
2024-07-17 03:53:34 +02:00

46 lines
997 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "clipper2";
version = "1.4.0";
src = fetchFromGitHub {
owner = "AngusJohnson";
repo = "Clipper2";
rev = "Clipper2_${version}";
sha256 = "sha256-ASL9uKkXsWyIbD1qaKEL7gf/JuCqzZQZSKHwLT5dKJU=";
};
sourceRoot = "${src.name}/CPP";
nativeBuildInputs = [
cmake
];
cmakeFlags = [
"-DCLIPPER2_EXAMPLES=OFF"
"-DCLIPPER2_TESTS=OFF"
"-DBUILD_SHARED_LIBS=ON"
];
patches = [
./0001-fix-pc-paths.patch
];
meta = {
description = "Polygon Clipping and Offsetting - C++ Only";
longDescription = ''
The Clipper2 library performs intersection, union, difference and XOR boolean operations on both simple and
complex polygons. It also performs polygon offsetting.
'';
homepage = "https://github.com/AngusJohnson/Clipper2";
license = lib.licenses.boost;
maintainers = [ lib.maintainers.cadkin ];
platforms = lib.platforms.all;
};
}