Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 93e01f3dcdf4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: abcfee984ed8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 20, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    JeanMertz Jean Mertz
    Copy the full SHA
    5ee2a05 View commit details

Commits on Oct 23, 2019

  1. Merge pull request #71478 from marsam/update-postgis

    postgresqlPackages.postgis: 2.5.3 -> 3.0.0
    marsam authored Oct 23, 2019
    Copy the full SHA
    abcfee9 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/sql/postgresql/ext/postgis.nix
4 changes: 2 additions & 2 deletions pkgs/servers/sql/postgresql/ext/postgis.nix
Original file line number Diff line number Diff line change
@@ -14,13 +14,13 @@
}:
stdenv.mkDerivation rec {
pname = "postgis";
version = "2.5.3";
version = "3.0.0";

outputs = [ "out" "doc" ];

src = fetchurl {
url = "https://download.osgeo.org/postgis/source/postgis-${version}.tar.gz";
sha256 = "16jm9v9y25dhfwd4hvhnynj6k3ikjbr3z3dpn8py50gr82fjds3j";
sha256 = "15557fbk0xkngihwhqsbdyz2ng49blisf5zydw81j0gabk6x4vy0";
};

buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ]