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