about summary refs log tree commit diff
path: root/pkgs/applications/gis/saga
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2018-08-12 10:36:43 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2018-08-12 10:36:43 +0100
commit5caa3fcae9a757d67d97caa0ada7732d79f6642e (patch)
tree1e323a298b679845c1686f6bb0cbb74df3bc63bf /pkgs/applications/gis/saga
parentbcab40610be6e1b31c14c95fe7b195f43536459f (diff)
downloadnixlib-5caa3fcae9a757d67d97caa0ada7732d79f6642e.tar
nixlib-5caa3fcae9a757d67d97caa0ada7732d79f6642e.tar.gz
nixlib-5caa3fcae9a757d67d97caa0ada7732d79f6642e.tar.bz2
nixlib-5caa3fcae9a757d67d97caa0ada7732d79f6642e.tar.lz
nixlib-5caa3fcae9a757d67d97caa0ada7732d79f6642e.tar.xz
nixlib-5caa3fcae9a757d67d97caa0ada7732d79f6642e.tar.zst
nixlib-5caa3fcae9a757d67d97caa0ada7732d79f6642e.zip
Small fixes
Diffstat (limited to 'pkgs/applications/gis/saga')
-rw-r--r--pkgs/applications/gis/saga/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/gis/saga/default.nix b/pkgs/applications/gis/saga/default.nix
index 02f2de64811a..b1ad81a6a3ff 100644
--- a/pkgs/applications/gis/saga/default.nix
+++ b/pkgs/applications/gis/saga/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma, jasper,
   libharu, opencv, vigra, postgresql, Cocoa,
-  unixODBC , poppler, hdf4, hdf5, netcdf, sqlite }:
+  unixODBC , poppler, hdf4, hdf5, netcdf, sqlite, qhull }:
 
 stdenv.mkDerivation rec {
   name = "saga-6.3.0";
 
   # See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs
   # for why the have additional buildInputs on darwin
-  buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ]
+  buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper qhull ]
                 ++ stdenv.lib.optionals stdenv.isDarwin
                   [ Cocoa unixODBC poppler hdf4.out hdf5 netcdf sqlite ];