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

26 lines
952 B
Nix
Raw Normal View History

2017-10-30 13:36:29 +00:00
{stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
stdenv.mkDerivation rec {
2016-03-27 20:28:45 +00:00
name = "osrm-backend-${version}";
2018-01-02 19:54:45 +00:00
version = "5.14.3";
src = fetchFromGitHub {
2016-03-27 20:28:45 +00:00
rev = "v${version}";
owner = "Project-OSRM";
repo = "osrm-backend";
2018-01-02 19:54:45 +00:00
sha256 = "1ajgybjx7g6qzddavab8bj7il7wn5wy24nivjj5rk84mfbi71s5v";
};
2017-10-30 13:36:29 +00:00
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;
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";
license = stdenv.lib.licenses.bsd2;
2017-10-30 13:36:29 +00:00
maintainers = with stdenv.lib.maintainers;[ erictapen ];
platforms = stdenv.lib.platforms.linux;
};
}