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.
This commit is contained in:
Calvin Loncaric 2018-08-16 15:36:45 -07:00 committed by GitHub
parent be3ff0c0c0
commit ebc5284681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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