1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 11:02:05 +00:00

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";
};
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 ];
};
}