proj: Add platforms.darwin and enable doCheck.

This commit is contained in:
Josef Knedl 2016-02-22 19:05:17 +01:00
parent 2d2efceecb
commit a9e8c742fb

View File

@ -8,11 +8,13 @@ stdenv.mkDerivation {
sha256 = "15kpcmz3qjxfrs6vq48mgyvb4vxscmwgkzrdcn71a60wxp8rmgv0"; sha256 = "15kpcmz3qjxfrs6vq48mgyvb4vxscmwgkzrdcn71a60wxp8rmgv0";
}; };
doCheck = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Cartographic Projections Library"; description = "Cartographic Projections Library";
homepage = http://trac.osgeo.org/proj/; homepage = http://trac.osgeo.org/proj/;
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ vbgl ]; maintainers = with maintainers; [ vbgl ];
}; };
} }