nixpkgs/pkgs/development/libraries/proj/default.nix

21 lines
503 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "proj-5.2.0";
src = fetchurl {
url = https://download.osgeo.org/proj/proj-5.2.0.tar.gz;
sha256 = "0q3ydh2j8qhwlxmnac72pg69rw2znbi5b6k5wama8qmwzycr94gg";
};
2017-02-12 09:59:23 +00:00
doCheck = stdenv.is64bit;
2014-11-08 20:15:46 +00:00
meta = with stdenv.lib; {
description = "Cartographic Projections Library";
homepage = https://proj4.org;
2014-11-08 20:15:46 +00:00
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
2015-06-18 16:41:25 +00:00
maintainers = with maintainers; [ vbgl ];
};
}