about summary refs log tree commit diff
path: root/pkgs/development/libraries/geos/default.nix
blob: c067a705d0bfeead5798c236debf846e48743e6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, stdenv
, fetchurl
, cmake }:

stdenv.mkDerivation rec {
  pname = "geos";
  version = "3.10.2";

  src = fetchurl {
    url = "https://download.osgeo.org/geos/${pname}-${version}.tar.bz2";
    sha256 = "sha256-ULvFmaw4a0wrOWLcxBHwBAph8gSq7066ciXs3Qz0VxU=";
  };

  nativeBuildInputs = [ cmake ];

  postPatch = ''
    substituteInPlace tools/geos-config.in \
      --replace "@libdir@" "@prefix@/lib" \
      --replace "@includedir@" "@prefix@/include"
  '';

  meta = with lib; {
    description = "C++ port of the Java Topology Suite (JTS)";
    homepage = "https://trac.osgeo.org/geos";
    license = licenses.lgpl21Only;
    maintainers = with lib.maintainers; [
      willcohen
    ];
  };
}