proj_5: drop

This outdated version of proj is not used anymore in the codebase. Drop
it.
This commit is contained in:
Lancelot SIX
2021-04-12 17:32:10 +01:00
parent fcacfa03df
commit 6f9b4f5a27
3 changed files with 1 additions and 22 deletions
-20
View File
@@ -1,20 +0,0 @@
{ 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 ];
};
}