2021-01-18 22:50:56 -08:00
|
|
|
{lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
|
2015-02-22 05:31:35 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "osrm-backend";
|
2021-05-17 17:05:22 -07:00
|
|
|
version = "5.25.0";
|
2015-02-22 05:31:35 -08:00
|
|
|
|
2016-03-26 11:07:55 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Project-OSRM";
|
|
|
|
repo = "osrm-backend";
|
2020-10-14 15:57:12 -07:00
|
|
|
rev = "v${version}";
|
2021-05-17 17:05:22 -07:00
|
|
|
sha256 = "sha256-wmhm3q93HTv4+VMlF9rhms4uw4LJBozOKTtHpDgAbrU=";
|
2015-02-22 05:31:35 -08:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2021-01-28 17:30:04 -08:00
|
|
|
|
2018-01-03 05:42:56 -08:00
|
|
|
buildInputs = [ bzip2 libxml2 libzip boost lua luabind tbb expat ];
|
2015-02-22 05:31:35 -08:00
|
|
|
|
2015-03-07 03:31:50 -08:00
|
|
|
postInstall = "mkdir -p $out/share/osrm-backend && cp -r ../profiles $out/share/osrm-backend/profiles";
|
|
|
|
|
2015-02-22 05:31:35 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Project-OSRM/osrm-backend/wiki";
|
2015-04-28 01:54:58 -07: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-14 23:07:56 -08:00
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
maintainers = with lib.maintainers;[ erictapen ];
|
|
|
|
platforms = lib.platforms.linux;
|
2015-02-22 05:31:35 -08:00
|
|
|
};
|
|
|
|
}
|