Commit 4ee01360 authored by Augustin Trancart's avatar Augustin Trancart
Browse files

saga: reformat with nixfmt

parent 98d3153b
Loading
Loading
Loading
Loading
+67 −59
Original line number Diff line number Diff line
{ stdenv
, lib
, fetchurl
{
  stdenv,
  lib,
  fetchurl,
  # native
, cmake
, desktopToDarwinBundle
, pkg-config
  cmake,
  desktopToDarwinBundle,
  pkg-config,
  # not native
, gdal
, wxGTK32
, proj
, libsForQt5
, curl
, libiodbc
, xz
, libharu
, opencv
, vigra
, pdal
, postgresql
, darwin
, unixODBC
, poppler
, hdf5
, netcdf
, sqlite
, qhull
, giflib
, libsvm
, fftw
  gdal,
  wxGTK32,
  proj,
  libsForQt5,
  curl,
  libiodbc,
  xz,
  libharu,
  opencv,
  vigra,
  pdal,
  postgresql,
  darwin,
  unixODBC,
  poppler,
  hdf5,
  netcdf,
  sqlite,
  qhull,
  giflib,
  libsvm,
  fftw,
}:

stdenv.mkDerivation rec {
@@ -46,7 +47,8 @@ stdenv.mkDerivation rec {
    pkg-config
  ] ++ lib.optional stdenv.hostPlatform.isDarwin desktopToDarwinBundle;

  buildInputs = [
  buildInputs =
    [
      curl
      libsForQt5.dxflib
      fftw
@@ -84,7 +86,13 @@ stdenv.mkDerivation rec {
    homepage = "https://saga-gis.sourceforge.io";
    changelog = "https://sourceforge.net/p/saga-gis/wiki/Changelog ${version}/";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; teams.geospatial.members ++ [ michelk mpickering ];
    maintainers =
      with maintainers;
      teams.geospatial.members
      ++ [
        michelk
        mpickering
      ];
    platforms = with platforms; unix;
  };
}