Small fixes

This commit is contained in:
Matthew Pickering 2018-08-12 10:36:43 +01:00
parent bcab40610b
commit 5caa3fcae9
2 changed files with 3 additions and 3 deletions

View File

@ -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 ];

View File

@ -27,6 +27,6 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://projects.gnome.org/gconf/;
description = "Deprecated system for storing application preferences";
platforms = platforms.linux;
platforms = platforms.unix;
};
}