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