summary refs log tree commit diff
path: root/pkgs/development/libraries/proj/default.nix
blob: b92aa49a092ec49aaef51a809eb428b2705da131 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "proj-4.9.3";

  src = fetchurl {
    url = http://download.osgeo.org/proj/proj-4.9.3.tar.gz;
    sha256 = "1xw5f427xk9p2nbsj04j6m5zyjlyd66sbvl2bkg8hd1kx8pm9139";
  };

  doCheck = stdenv.is64bit;

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