summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-07-13 21:48:28 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-07-14 09:59:29 -0700
commitc8ec54b969c948c2b3bbb63abaaa18a3a26c7e1e (patch)
treeddc1acf3bd9a01787502809ad6cd2b7c081f4298 /pkgs/applications/gis
parentca0fe27302a53daf935e8d5fb2b4d034e5b3b0eb (diff)
saga_2_3_2: remove package
No longer used by qgis
Diffstat (limited to 'pkgs/applications/gis')
-rw-r--r--pkgs/applications/gis/saga/lts.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/applications/gis/saga/lts.nix b/pkgs/applications/gis/saga/lts.nix
deleted file mode 100644
index ca0034aa9708..000000000000
--- a/pkgs/applications/gis/saga/lts.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, fetchgit, gdal, wxGTK30, proj, libiodbc, lzma, jasper,
- libharu, opencv, vigra, postgresql, autoreconfHook, Cocoa
- , unixODBC , poppler, hdf4, hdf5, netcdf, sqlite, qhull, giflib }:
-
-stdenv.mkDerivation rec {
- name = "saga-2.3.2";
-
- # See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs
- # for why the have additional buildInputs on darwin
- buildInputs = [ autoreconfHook gdal wxGTK30 proj libharu opencv vigra
- postgresql libiodbc lzma jasper
- unixODBC poppler hdf4.out hdf5 netcdf sqlite qhull giflib ]
- ++ stdenv.lib.optional stdenv.isDarwin Cocoa ;
-
- enableParallelBuilding = true;
-
- CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11 -Wno-narrowing";
-
- sourceRoot = "code-b6f474f/saga-gis";
-
- patches = [ ./clang_patch.patch ./finite.patch];
-
- src = fetchgit {
- url = "https://git.code.sf.net/p/saga-gis/code.git";
- rev = "b6f474f8af4af7f0ff82548cc6f88c53547d91f5";
- sha256 = "0iakynai8mhcwj6wxvafkqhd7b417ss7hyhbcp9wf6092l6vc2zd";
- };
-
- meta = with stdenv.lib; {
- description = "System for Automated Geoscientific Analyses";
- homepage = http://www.saga-gis.org;
- license = licenses.gpl2Plus;
- maintainers = [ maintainers.mpickering ];
- platforms = with platforms; unix;
- };
-}