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

29 lines
1 KiB
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";
2020-10-14 22:57:12 +00:00
version = "5.23.0";
src = fetchFromGitHub {
owner = "Project-OSRM";
repo = "osrm-backend";
2020-10-14 22:57:12 +00:00
rev = "v${version}";
sha256 = "sha256-FWfrdnpdx4YPa9l7bPc6QNyqyNvrikdeADSZIixX5vE=";
};
2019-11-03 12:48:58 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=pessimizing-move" "-Wno-error=redundant-move" ];
nativeBuildInputs = [ cmake pkg-config ];
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 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";
2021-01-15 07:07:56 +00:00
license = lib.licenses.bsd2;
maintainers = with lib.maintainers;[ erictapen ];
platforms = lib.platforms.linux;
};
}