summary refs log tree commit diff
path: root/pkgs/development/libraries/gdal/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-03-17 13:56:14 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-03-17 13:58:09 +0100
commit2ed90cd27fa9059d783889bc05617b11b3ca6498 (patch)
tree165b2b4cdd0a3a6b543fbdb341bfc09848538a96 /pkgs/development/libraries/gdal/default.nix
parentcffc2c73d167275f4ff7da1a0160d0dc3006f369 (diff)
downloadnixpkgs-2ed90cd27fa9059d783889bc05617b11b3ca6498.tar
nixpkgs-2ed90cd27fa9059d783889bc05617b11b3ca6498.tar.gz
nixpkgs-2ed90cd27fa9059d783889bc05617b11b3ca6498.tar.bz2
nixpkgs-2ed90cd27fa9059d783889bc05617b11b3ca6498.tar.lz
nixpkgs-2ed90cd27fa9059d783889bc05617b11b3ca6498.tar.xz
nixpkgs-2ed90cd27fa9059d783889bc05617b11b3ca6498.tar.zst
nixpkgs-2ed90cd27fa9059d783889bc05617b11b3ca6498.zip
gdal: fix build by adding openssl
I'm not sure why it started needing it, but I suspect mysql (mariadb).
Diffstat (limited to 'pkgs/development/libraries/gdal/default.nix')
-rw-r--r--pkgs/development/libraries/gdal/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix
index a59b526fee1..579d22ad754 100644
--- a/pkgs/development/libraries/gdal/default.nix
+++ b/pkgs/development/libraries/gdal/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib
-, postgresql, mysql, libgeotiff, python, pythonPackages, proj, geos}:
+, postgresql, mysql, libgeotiff, python, pythonPackages, proj, geos, openssl }:
 
 composableDerivation.composableDerivation {} (fixed: rec {
   version = "1.11.2";
@@ -10,7 +10,7 @@ composableDerivation.composableDerivation {} (fixed: rec {
     sha256 = "66bc8192d24e314a66ed69285186d46e6999beb44fc97eeb9c76d82a117c0845";
   };
 
-  buildInputs = [ unzip libjpeg libtiff python pythonPackages.numpy proj ];
+  buildInputs = [ unzip libjpeg libtiff python pythonPackages.numpy proj openssl ];
 
   # Don't use optimization for gcc >= 4.3. That's said to be causing segfaults.
   # Unset CC and CXX as they confuse libtool.