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

29 lines
1.0 KiB
Nix
Raw Normal View History

2017-10-30 16:36:29 +03:00
{stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
stdenv.mkDerivation rec {
pname = "osrm-backend";
version = "5.22.0";
src = fetchFromGitHub {
2016-03-27 23:28:45 +03:00
rev = "v${version}";
owner = "Project-OSRM";
repo = "osrm-backend";
sha256 = "1m4hf26mgfvvx9z37qww8v8w4mhzyfl554ymdnzl99pr5ild093s";
};
2019-11-03 15:48:58 +03:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=pessimizing-move" "-Wno-error=redundant-move" ];
nativeBuildInputs = [ cmake pkgconfig ];
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 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";
license = stdenv.lib.licenses.bsd2;
2017-10-30 16:36:29 +03:00
maintainers = with stdenv.lib.maintainers;[ erictapen ];
platforms = stdenv.lib.platforms.linux;
};
}