lol
1{ lib
2, stdenv
3, fetchurl
4, fetchpatch
5, cmake }:
6
7stdenv.mkDerivation rec {
8 pname = "geos";
9 version = "3.11.0";
10
11 src = fetchurl {
12 url = "https://download.osgeo.org/geos/${pname}-${version}.tar.bz2";
13 sha256 = "sha256-eauMq/SqhgTRYVV7UuPk2EV1rNwNCMsJqz96rvpNhYo=";
14 };
15
16 nativeBuildInputs = [ cmake ];
17
18 meta = with lib; {
19 description = "C++ port of the Java Topology Suite (JTS)";
20 homepage = "https://trac.osgeo.org/geos";
21 license = licenses.lgpl21Only;
22 maintainers = with lib.maintainers; [
23 willcohen
24 ];
25 };
26}