Unverified Commit 09986a49 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #270132 from r-ryantm/auto-update/postgresql12JitPackages.pgrouting

postgresql12JitPackages.pgrouting: 3.5.1 -> 3.6.0
parents 5392bd3a bf92006f
Loading
Loading
Loading
Loading
+11 −3
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, postgresql, perl, cmake, boost }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, postgresql, perl, cmake, boost }:

stdenv.mkDerivation rec {
  pname = "pgrouting";
  version = "3.5.1";
  version = "3.6.0";

  nativeBuildInputs = [ cmake perl ];
  buildInputs = [ postgresql boost ];
@@ -11,9 +11,17 @@ stdenv.mkDerivation rec {
    owner  = "pgRouting";
    repo   = pname;
    rev    = "v${version}";
    sha256 = "sha256-X7ZXGPUkhPDBB2QpUGfqDTgOairkYZF78Ol0XEAmxD8=";
    sha256 = "sha256-FOHIQzL8tmSWllCTzQkuGOiqk47S+HTB8aEpAC30YNk=";
  };

  patches = [
    # Fix issues with size_t vs uint64_ on Darwin. Remove with the next release.
    (fetchpatch {
      url = "https://github.com/pgRouting/pgrouting/commit/b16e9da748e9d78c8b19d2b1db3baeb19c33c6aa.patch";
      hash = "sha256-CJmuVxZ3zIJTa6KXhM2cvynAE6Vmff7XBDfSGg4W9dE=";
    })
  ];

  installPhase = ''
    install -D lib/*.so                        -t $out/lib
    install -D sql/pgrouting--${version}.sql   -t $out/share/postgresql/extension