geos: 3.11.1 -> 3.11.2

This change also removes unused `fetchpatch` function.
This commit is contained in:
Ivan Mincik 2023-03-20 12:36:46 +01:00
parent fa6e1c6297
commit 6480e5cd8d

View file

@ -1,18 +1,17 @@
{ lib
, stdenv
, fetchurl
, fetchpatch
, cmake
, stdenv
, testers
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
pname = "geos";
version = "3.11.1";
version = "3.11.2";
src = fetchurl {
url = "https://download.osgeo.org/geos/${finalAttrs.pname}-${finalAttrs.version}.tar.bz2";
hash = "sha256-bQ6zz6n5LZR3Mcx18XUDVrO9/AfqAgVT2vavHHaOC+I=";
hash = "sha256-sfB3ZpSBxaPmKv/EnpbrBvKBmHpdNv2rIlIX5bgl5Mw=";
};
nativeBuildInputs = [ cmake ];