mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
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:
parent
be3ff0c0c0
commit
ebc5284681
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user