postgresqlPackages.pgrouting: remove unneeded dependencies

These dependencies were removed in https://github.com/pgRouting/pgrouting/pull/1188
This commit is contained in:
Mario Rodas 2020-05-23 04:20:00 -05:00
parent 6aefe6c171
commit 6fcae88f9a
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

@ -1,11 +1,11 @@
{ stdenv, fetchFromGitHub, postgresql, perl, cmake, boost, gmp, cgal, mpfr }:
{ stdenv, fetchFromGitHub, postgresql, perl, cmake, boost }:
stdenv.mkDerivation rec {
pname = "pgrouting";
version = "3.0.0";
nativeBuildInputs = [ cmake perl ];
buildInputs = [ postgresql boost gmp cgal mpfr ];
buildInputs = [ postgresql boost ];
src = fetchFromGitHub {
owner = "pgRouting";