nixpkgs/pkgs/servers/osrm-backend/default.nix

28 lines
958 B
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
stdenv.mkDerivation rec {
pname = "osrm-backend";
2021-01-29 02:30:04 +01:00
version = "5.24.0";
src = fetchFromGitHub {
owner = "Project-OSRM";
repo = "osrm-backend";
2020-10-15 00:57:12 +02:00
rev = "v${version}";
2021-01-29 02:30:04 +01:00
sha256 = "sha256-Srqe6XIF9Fs869Dp25+63ikgO7YlyT0IUJr0qMxunao=";
};
nativeBuildInputs = [ cmake pkg-config ];
2021-01-29 02:30:04 +01:00
buildInputs = [ 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";
2015-04-28 10:54:58 +02: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 08:07:56 +01:00
license = lib.licenses.bsd2;
maintainers = with lib.maintainers;[ erictapen ];
platforms = lib.platforms.linux;
};
}