2021-01-19 06:50:56 +00:00
|
|
|
{lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
|
2015-02-22 13:31:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "osrm-backend";
|
2021-09-22 15:16:06 +01:00
|
|
|
version = "5.26.0";
|
2015-02-22 13:31:35 +00:00
|
|
|
|
2016-03-26 18:07:55 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Project-OSRM";
|
|
|
|
repo = "osrm-backend";
|
2020-10-14 23:57:12 +01:00
|
|
|
rev = "v${version}";
|
2021-09-22 15:16:06 +01:00
|
|
|
sha256 = "sha256-kqRYE26aeq7nCen56TJo3BlyLFWn4NMltsq+re64/VQ=";
|
2015-02-22 13:31:35 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2021-01-29 01:30:04 +00:00
|
|
|
|
2018-01-03 13:42:56 +00:00
|
|
|
buildInputs = [ bzip2 libxml2 libzip boost lua luabind tbb expat ];
|
2015-02-22 13:31:35 +00:00
|
|
|
|
2015-03-07 11:31:50 +00:00
|
|
|
postInstall = "mkdir -p $out/share/osrm-backend && cp -r ../profiles $out/share/osrm-backend/profiles";
|
|
|
|
|
2015-02-22 13:31:35 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Project-OSRM/osrm-backend/wiki";
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "Open Source Routing Machine computes shortest paths in a graph. It was designed to run well with map data from the Openstreetmap Project";
|
2021-01-15 07:07:56 +00:00
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
maintainers = with lib.maintainers;[ erictapen ];
|
|
|
|
platforms = lib.platforms.linux;
|
2015-02-22 13:31:35 +00:00
|
|
|
};
|
|
|
|
}
|