about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-05-23 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-05-23 04:20:00 -0500
commit6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b (patch)
tree3ec354592a77ca3d6c61f6362877d70be5859a01 /pkgs/servers/sql
parent6aefe6c171bf6de9526f40da4ed1e003a791a9fb (diff)
downloadnixlib-6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b.tar
nixlib-6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b.tar.gz
nixlib-6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b.tar.bz2
nixlib-6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b.tar.lz
nixlib-6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b.tar.xz
nixlib-6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b.tar.zst
nixlib-6fcae88f9a4a58b8c08b9a92b7b1ea0fd6caed8b.zip
postgresqlPackages.pgrouting: remove unneeded dependencies
These dependencies were removed in https://github.com/pgRouting/pgrouting/pull/1188
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/postgresql/ext/pgrouting.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/pgrouting.nix b/pkgs/servers/sql/postgresql/ext/pgrouting.nix
index d11c96c111b0..76aa4c4ffec6 100644
--- a/pkgs/servers/sql/postgresql/ext/pgrouting.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgrouting.nix
@@ -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";