summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Mincik <ivan.mincik@gmail.com>2022-12-10 21:29:55 +0100
committerRobert Schütz <github@dotlambda.de>2022-12-10 16:52:45 -0800
commit03cd8dadb887e9c7a46d524b20b8fd706fe11821 (patch)
tree3b8aa523901fd7113a4ef3569ab3ac8dd2be3c3d
parentMerge pull request #205569 from NixOS/backport-205154-to-release-22.11 (diff)
downloadnixpkgs-03cd8dadb887e9c7a46d524b20b8fd706fe11821.tar.gz
geos: 3.11.0 -> 3.11.1
(cherry picked from commit 51d4147bd028b7b3bd572b993a6ca4b3c112b69f)
-rw-r--r--pkgs/development/libraries/geos/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/geos/default.nix b/pkgs/development/libraries/geos/default.nix
index cfcccc571818..a331e0254568 100644
--- a/pkgs/development/libraries/geos/default.nix
+++ b/pkgs/development/libraries/geos/default.nix
@@ -6,15 +6,17 @@
stdenv.mkDerivation rec {
pname = "geos";
- version = "3.11.0";
+ version = "3.11.1";
src = fetchurl {
url = "https://download.osgeo.org/geos/${pname}-${version}.tar.bz2";
- sha256 = "sha256-eauMq/SqhgTRYVV7UuPk2EV1rNwNCMsJqz96rvpNhYo=";
+ hash = "sha256-bQ6zz6n5LZR3Mcx18XUDVrO9/AfqAgVT2vavHHaOC+I=";
};
nativeBuildInputs = [ cmake ];
+ doCheck = true;
+
meta = with lib; {
description = "C++ port of the Java Topology Suite (JTS)";
homepage = "https://trac.osgeo.org/geos";