nixpkgs/pkgs/development/libraries/geos/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
555 B
Nix
Raw Normal View History

2022-03-22 20:03:34 +00:00
{ lib
, stdenv
, fetchurl
, fetchpatch
2022-03-22 20:03:34 +00:00
, cmake }:
2017-01-17 04:07:11 +00:00
stdenv.mkDerivation rec {
2021-02-27 17:51:17 +00:00
pname = "geos";
2022-07-18 17:40:15 +00:00
version = "3.11.0";
src = fetchurl {
2021-02-27 17:51:17 +00:00
url = "https://download.osgeo.org/geos/${pname}-${version}.tar.bz2";
2022-07-18 17:40:15 +00:00
sha256 = "sha256-eauMq/SqhgTRYVV7UuPk2EV1rNwNCMsJqz96rvpNhYo=";
};
nativeBuildInputs = [ cmake ];
2020-08-08 17:12:13 +00:00
meta = with lib; {
description = "C++ port of the Java Topology Suite (JTS)";
homepage = "https://trac.osgeo.org/geos";
2021-02-27 17:51:17 +00:00
license = licenses.lgpl21Only;
2022-03-22 20:04:48 +00:00
maintainers = with lib.maintainers; [
willcohen
];
};
}