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

30 lines
683 B
Nix
Raw Normal View History

2019-07-10 00:39:33 +00:00
{ stdenv, fetchFromGitHub, pkg-config, sqlite, autoreconfHook }:
2019-07-10 00:39:33 +00:00
stdenv.mkDerivation rec {
2020-03-27 23:49:34 +00:00
pname = "proj";
2020-03-24 21:11:33 +00:00
version = "6.3.1";
2019-07-10 00:39:33 +00:00
src = fetchFromGitHub {
owner = "OSGeo";
repo = "PROJ";
rev = version;
2020-03-24 21:11:33 +00:00
sha256 = "1ildcp57qsa01kvv2qxd05nqw5mg0wfkksiv9l138dbhp0s7rkxp";
};
2019-07-10 00:39:33 +00:00
outputs = [ "out" "dev"];
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ sqlite ];
2017-02-12 09:59:23 +00:00
doCheck = stdenv.is64bit;
2014-11-08 20:15:46 +00:00
meta = with stdenv.lib; {
description = "Cartographic Projections Library";
homepage = https://proj4.org;
2014-11-08 20:15:46 +00:00
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
2015-06-18 16:41:25 +00:00
maintainers = with maintainers; [ vbgl ];
};
}