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

19 lines
463 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "proj-4.9.1";
src = fetchurl {
url = http://download.osgeo.org/proj/proj-4.9.1.tar.gz;
sha256 = "06f36s7yi6yky92g235kj9wkcckm04qgzxnj0fla3icb7y7ki87w";
};
2014-11-08 20:15:46 +00:00
meta = with stdenv.lib; {
description = "Cartographic Projections Library";
2014-11-08 20:15:46 +00:00
homepage = http://trac.osgeo.org/proj/;
license = licenses.mit;
platforms = platforms.linux;
2015-06-18 17:41:25 +01:00
maintainers = with maintainers; [ vbgl ];
};
}