2010-07-28 13:55:54 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
stdenv.mkDerivation {
|
2017-02-11 21:58:53 +01:00
|
|
|
name = "proj-4.9.3";
|
2007-12-05 22:25:47 +01:00
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = https://download.osgeo.org/proj/proj-4.9.3.tar.gz;
|
2017-02-11 21:58:53 +01:00
|
|
|
sha256 = "1xw5f427xk9p2nbsj04j6m5zyjlyd66sbvl2bkg8hd1kx8pm9139";
|
2007-12-05 22:25:47 +01:00
|
|
|
};
|
|
|
|
|
2017-02-12 10:59:23 +01:00
|
|
|
doCheck = stdenv.is64bit;
|
2016-02-22 19:05:17 +01:00
|
|
|
|
2014-11-08 21:15:46 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Cartographic Projections Library";
|
2014-11-08 21:15:46 +01:00
|
|
|
homepage = http://trac.osgeo.org/proj/;
|
|
|
|
license = licenses.mit;
|
2016-02-22 19:05:17 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-06-18 18:41:25 +02:00
|
|
|
maintainers = with maintainers; [ vbgl ];
|
2007-12-05 22:25:47 +01:00
|
|
|
};
|
|
|
|
}
|