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