summary refs log tree commit diff
path: root/pkgs/development/libraries/mapnik/default.nix
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2021-09-18 17:42:58 -0700
committerRobert Schütz <nix@dotlambda.de>2021-09-25 16:54:17 -0700
commitc826ba3f6ba8c8be7a2a983d42a79f4115afeb63 (patch)
tree70c518328cfaeda01ee65b6ad9c03a58546694ce /pkgs/development/libraries/mapnik/default.nix
parent0b97370eb9124d58dc2322467bea7ea7564f75df (diff)
downloadnixpkgs-c826ba3f6ba8c8be7a2a983d42a79f4115afeb63.tar
nixpkgs-c826ba3f6ba8c8be7a2a983d42a79f4115afeb63.tar.gz
nixpkgs-c826ba3f6ba8c8be7a2a983d42a79f4115afeb63.tar.bz2
nixpkgs-c826ba3f6ba8c8be7a2a983d42a79f4115afeb63.tar.lz
nixpkgs-c826ba3f6ba8c8be7a2a983d42a79f4115afeb63.tar.xz
nixpkgs-c826ba3f6ba8c8be7a2a983d42a79f4115afeb63.tar.zst
nixpkgs-c826ba3f6ba8c8be7a2a983d42a79f4115afeb63.zip
mapnik: mark as broken
It is incompatible with PROJ 8.
We cannot use proj7 because gdal has to use the same version.
Diffstat (limited to 'pkgs/development/libraries/mapnik/default.nix')
-rw-r--r--pkgs/development/libraries/mapnik/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mapnik/default.nix b/pkgs/development/libraries/mapnik/default.nix
index c2556a428a1..6fff0c1e1bb 100644
--- a/pkgs/development/libraries/mapnik/default.nix
+++ b/pkgs/development/libraries/mapnik/default.nix
@@ -96,5 +96,7 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [ hrdinka ];
     license = licenses.lgpl21;
     platforms = platforms.all;
+    # https://github.com/mapnik/mapnik/issues/4232
+    broken = lib.versionAtLeast proj.version "8.0.0";
   };
 }