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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost179, lua, luabind, tbb, expat}:
stdenv.mkDerivation rec {
pname = "osrm-backend";
2021-09-22 16:16:06 +02:00
version = "5.26.0";
src = fetchFromGitHub {
owner = "Project-OSRM";
repo = "osrm-backend";
2020-10-15 00:57:12 +02:00
rev = "v${version}";
2021-09-22 16:16:06 +02:00
sha256 = "sha256-kqRYE26aeq7nCen56TJo3BlyLFWn4NMltsq+re64/VQ=";
};
nativeBuildInputs = [ cmake pkg-config ];
2021-01-29 02:30:04 +01:00
buildInputs = [ bzip2 libxml2 libzip boost179 lua luabind tbb expat ];
2023-04-12 16:35:05 +02:00
patches = [ ./darwin.patch ];
env.NIX_CFLAGS_COMPILE = toString [
2022-12-23 17:57:29 +01:00
# Needed with GCC 12
"-Wno-error=stringop-overflow"
"-Wno-error=uninitialized"
];
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 ];
2023-04-12 16:35:05 +02:00
platforms = lib.platforms.unix;
};
}