26 lines
952 B
Nix
26 lines
952 B
Nix
{stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "osrm-backend-${version}";
|
|
version = "5.14.1";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "Project-OSRM";
|
|
repo = "osrm-backend";
|
|
sha256 = "0n7fpm8m5r93dxciagp2n8ij1wg483yb9srbzdzjqf1zzyh637sz";
|
|
};
|
|
|
|
buildInputs = [ cmake pkgconfig bzip2 libxml2 libzip boost lua luabind tbb expat];
|
|
|
|
postInstall = "mkdir -p $out/share/osrm-backend && cp -r ../profiles $out/share/osrm-backend/profiles";
|
|
|
|
meta = {
|
|
homepage = https://github.com/Project-OSRM/osrm-backend/wiki;
|
|
description = "Open Source Routing Machine computes shortest paths in a graph. It was designed to run well with map data from the Openstreetmap Project";
|
|
license = stdenv.lib.licenses.bsd2;
|
|
maintainers = with stdenv.lib.maintainers;[ erictapen ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|