From ebc52846815619254ee32deefcaf519fef0d9ff6 Mon Sep 17 00:00:00 2001 From: Calvin Loncaric Date: Thu, 16 Aug 2018 15:36:45 -0700 Subject: [PATCH] gdal: allow version 1.11 on Darwin The GDAL 1.11 derivation has been Linux-only for its entire life, but builds just fine on Mac. --- pkgs/development/libraries/gdal/gdal-1_11.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gdal/gdal-1_11.nix b/pkgs/development/libraries/gdal/gdal-1_11.nix index 4d1cee5b9160..84d130c3865e 100644 --- a/pkgs/development/libraries/gdal/gdal-1_11.nix +++ b/pkgs/development/libraries/gdal/gdal-1_11.nix @@ -58,6 +58,6 @@ stdenv.mkDerivation rec { homepage = http://www.gdal.org/; license = stdenv.lib.licenses.mit; maintainers = [ stdenv.lib.maintainers.marcweber ]; - platforms = stdenv.lib.platforms.linux; + platforms = with stdenv.lib.platforms; linux ++ darwin; }; }