3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #13372 from knedlsepp/proj-on-darwin

proj: Add platforms.darwin and enable doCheck.
This commit is contained in:
vbgl 2016-02-22 19:29:21 +01:00
commit 4d767deaf5

View file

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