about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/proj/5.2.nix
blob: ee76c668716c7f339366b301f000235d30cd7b73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, 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";
  };

  doCheck = stdenv.is64bit;

  meta = with lib; {
    description = "Cartographic Projections Library";
    homepage = "https://proj4.org";
    license = licenses.mit;
    platforms = platforms.linux ++ platforms.darwin;
    maintainers = with maintainers; [ vbgl ];
  };
}