mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Merge pull request #88654 from r-ryantm/auto-update/pgrouting
postgresql11Packages.pgrouting: 2.6.3 -> 3.0.0
This commit is contained in:
commit
c167ec8159
@ -1,17 +1,17 @@
|
||||
{ stdenv, fetchFromGitHub, postgresql, perl, cmake, boost, gmp, cgal, mpfr }:
|
||||
{ stdenv, fetchFromGitHub, postgresql, perl, cmake, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pgrouting";
|
||||
version = "2.6.3";
|
||||
version = "3.0.0";
|
||||
|
||||
nativeBuildInputs = [ cmake perl ];
|
||||
buildInputs = [ postgresql boost gmp cgal mpfr ];
|
||||
buildInputs = [ postgresql boost ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pgRouting";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0jdjb8476vjgc7i26v2drcqjvhdbsk1wx243fddffg169nb664ml";
|
||||
sha256 = "101lyhhfcv3chrp2h5q04l155hr6wvx427cv1kgd4ryzk88wxx5i";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
|
Loading…
Reference in New Issue
Block a user