2010-07-28 15:55:54 +04:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2008-01-30 20:20:48 +03:00
|
|
|
stdenv.mkDerivation {
|
2015-09-14 22:38:14 +03:00
|
|
|
name = "proj-4.9.2";
|
2007-12-06 00:25:47 +03:00
|
|
|
|
2008-01-30 20:20:48 +03:00
|
|
|
src = fetchurl {
|
2015-09-14 22:38:14 +03:00
|
|
|
url = http://download.osgeo.org/proj/proj-4.9.2.tar.gz;
|
|
|
|
sha256 = "15kpcmz3qjxfrs6vq48mgyvb4vxscmwgkzrdcn71a60wxp8rmgv0";
|
2007-12-06 00:25:47 +03:00
|
|
|
};
|
|
|
|
|
2016-02-22 21:05:17 +03:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-11-08 23:15:46 +03:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 15:55:54 +04:00
|
|
|
description = "Cartographic Projections Library";
|
2014-11-08 23:15:46 +03:00
|
|
|
homepage = http://trac.osgeo.org/proj/;
|
|
|
|
license = licenses.mit;
|
2016-02-22 21:05:17 +03:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-06-18 19:41:25 +03:00
|
|
|
maintainers = with maintainers; [ vbgl ];
|
2007-12-06 00:25:47 +03:00
|
|
|
};
|
|
|
|
}
|