mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4d404fb98b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/proj/versions
21 lines
513 B
Nix
21 lines
513 B
Nix
{ 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 stdenv.lib; {
|
|
description = "Cartographic Projections Library";
|
|
homepage = http://trac.osgeo.org/proj/;
|
|
license = licenses.mit;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ vbgl ];
|
|
};
|
|
}
|