2016-03-26 21:07:55 +03:00
|
|
|
{stdenv, fetchFromGitHub, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}:
|
2015-02-22 16:31:35 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-03-27 23:28:45 +03:00
|
|
|
name = "osrm-backend-${version}";
|
|
|
|
version = "4.9.1";
|
2015-02-22 16:31:35 +03:00
|
|
|
|
2016-03-26 21:07:55 +03:00
|
|
|
src = fetchFromGitHub {
|
2016-03-27 23:28:45 +03:00
|
|
|
rev = "v${version}";
|
2016-03-26 21:07:55 +03:00
|
|
|
owner = "Project-OSRM";
|
|
|
|
repo = "osrm-backend";
|
2016-03-27 23:28:45 +03:00
|
|
|
sha256 = "1r4dwniwxgfppnb9asdh98w5qxqwkjhp9gc5fabmck0gk73cwkcc";
|
2015-02-22 16:31:35 +03:00
|
|
|
};
|
|
|
|
|
2015-03-07 14:31:50 +03:00
|
|
|
patches = [
|
2016-03-26 20:38:50 +03:00
|
|
|
./4.5.0-gcc-binutils.patch
|
2015-03-07 14:31:50 +03:00
|
|
|
(substituteAll {
|
|
|
|
src = ./4.5.0-default-profile-path.template.patch;
|
|
|
|
})
|
|
|
|
];
|
2015-02-22 16:31:35 +03:00
|
|
|
|
2015-03-18 01:05:13 +03:00
|
|
|
buildInputs = [ cmake luabind libosmpbf stxxl tbb boost expat protobuf bzip2 zlib ];
|
2015-02-22 16:31:35 +03:00
|
|
|
|
2015-03-07 14:31:50 +03:00
|
|
|
postInstall = "mkdir -p $out/share/osrm-backend && cp -r ../profiles $out/share/osrm-backend/profiles";
|
|
|
|
|
2015-02-22 16:31:35 +03:00
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/Project-OSRM/osrm-backend/wiki;
|
2015-04-28 11:54:58 +03: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";
|
2015-02-22 16:31:35 +03:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2016-08-02 20:50:55 +03:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-02-22 16:31:35 +03:00
|
|
|
};
|
|
|
|
}
|