aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-11-23 07:15:46 -0500
committerGitHub <noreply@github.com>2020-11-23 07:15:46 -0500
commit0ee380ca9377cb0bb6989173fc9e7c1fa0e8c55f (patch)
treee9f1a4116b43d1180460548ebbbe8cb5ccd5bfd8 /pkgs/servers/sql
parent9c6b2baf64aeb96c058deae451f001414f0bb7e7 (diff)
parent0dd8d4d878e157dc331b118f6ae607ae4082169a (diff)
Merge pull request #104546 from marsam/update-pgrouting
postgresqlPackages.pgrouting: 3.1.0 -> 3.1.1
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pgrouting.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pgrouting.nix b/pkgs/servers/sql/postgresql/ext/pgrouting.nix
index 674aa29daec7..9863b2276d11 100644
--- a/pkgs/servers/sql/postgresql/ext/pgrouting.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgrouting.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "pgrouting";
- version = "3.1.0";
+ version = "3.1.1";
nativeBuildInputs = [ cmake perl ];
buildInputs = [ postgresql boost ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "pgRouting";
repo = pname;
rev = "v${version}";
- sha256 = "0sdyq0a98snmcq6g6mgmadlz6cgvacivv34943azhnzspa3iy409";
+ sha256 = "1wj583c4iipsss75czww176aqa8sncsvcx1i0d6cb41v03iq5acf";
};
installPhase = ''
@@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A PostgreSQL/PostGIS extension that provides geospatial routing functionality";
homepage = "https://pgrouting.org/";
+ changelog = "https://github.com/pgRouting/pgrouting/releases/tag/v${version}";
maintainers = [ maintainers.steve-chavez ];
platforms = postgresql.meta.platforms;
license = licenses.gpl2;