tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
geos: 3.11.2 -> 3.12.1
Ivan Mincik
2 years ago
f8fda473
3b03119b
+4
-14
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
geos
default.nix
+4
-14
pkgs/development/libraries/geos/default.nix
···
1
{ lib
2
, stdenv
3
, callPackage
4
-
, fetchpatch
5
, fetchurl
6
, testers
7
···
10
11
stdenv.mkDerivation (finalAttrs: {
12
pname = "geos";
13
-
version = "3.11.2";
14
15
src = fetchurl {
16
url = "https://download.osgeo.org/geos/${finalAttrs.pname}-${finalAttrs.version}.tar.bz2";
17
-
hash = "sha256-sfB3ZpSBxaPmKv/EnpbrBvKBmHpdNv2rIlIX5bgl5Mw=";
18
};
19
20
-
patches = [
21
-
# Pull upstream fix of `gcc-13` build failure:
22
-
# https://github.com/libgeos/geos/pull/805
23
-
(fetchpatch {
24
-
name = "gcc-13.patch";
25
-
url = "https://github.com/libgeos/geos/commit/bea3188be44075034fd349f5bb117c943bdb7fb1.patch";
26
-
hash = "sha256-dQT3Hf9YJchgjon/r46TLIXXbE6C0ZnewyvfYJea4jM=";
27
-
})
28
-
];
29
-
30
nativeBuildInputs = [ cmake ];
31
32
doCheck = true;
···
40
description = "C/C++ library for computational geometry with a focus on algorithms used in geographic information systems (GIS) software";
41
homepage = "https://libgeos.org";
42
license = licenses.lgpl21Only;
0
43
maintainers = teams.geospatial.members;
44
pkgConfigModules = [ "geos" ];
45
-
mainProgram = "geosop";
46
};
47
})
···
1
{ lib
2
, stdenv
3
, callPackage
0
4
, fetchurl
5
, testers
6
···
9
10
stdenv.mkDerivation (finalAttrs: {
11
pname = "geos";
12
+
version = "3.12.1";
13
14
src = fetchurl {
15
url = "https://download.osgeo.org/geos/${finalAttrs.pname}-${finalAttrs.version}.tar.bz2";
16
+
hash = "sha256-1up+SSIktRGT6CRP4+wXxNRNB3fzwyyk+xcRQFSaDQM=";
17
};
18
0
0
0
0
0
0
0
0
0
0
19
nativeBuildInputs = [ cmake ];
20
21
doCheck = true;
···
29
description = "C/C++ library for computational geometry with a focus on algorithms used in geographic information systems (GIS) software";
30
homepage = "https://libgeos.org";
31
license = licenses.lgpl21Only;
32
+
mainProgram = "geosop";
33
maintainers = teams.geospatial.members;
34
pkgConfigModules = [ "geos" ];
35
+
changelog = "https://github.com/libgeos/geos/releases/tag/${finalAttrs.finalPackage.version}";
36
};
37
})