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

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

48 lines
1.5 KiB
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, bzip2, libxml2, libzip, boost179, lua, luabind, tbb, expat}:
stdenv.mkDerivation rec {
pname = "osrm-backend";
2021-09-22 14:16:06 +00:00
version = "5.26.0";
src = fetchFromGitHub {
owner = "Project-OSRM";
repo = "osrm-backend";
2020-10-14 22:57:12 +00:00
rev = "v${version}";
2021-09-22 14:16:06 +00:00
sha256 = "sha256-kqRYE26aeq7nCen56TJo3BlyLFWn4NMltsq+re64/VQ=";
};
nativeBuildInputs = [ cmake pkg-config ];
2021-01-29 01:30:04 +00:00
buildInputs = [ bzip2 libxml2 libzip boost179 lua luabind tbb expat ];
patches = [
# gcc-13 build fix:
# https://github.com/Project-OSRM/osrm-backend/pull/6632
(fetchpatch {
name = "gcc-13.patch";
url = "https://github.com/Project-OSRM/osrm-backend/commit/af59a9cfaee4d601b5c88391624a05f2a38da17b.patch";
hash = "sha256-dB9JP/DrJXpFGLD/paein2z64UtHIYZ17ycb91XWpEI=";
})
./darwin.patch
];
2023-04-12 14:35:05 +00:00
env.NIX_CFLAGS_COMPILE = toString [
2022-12-23 16:57:29 +00:00
# Needed with GCC 12
"-Wno-error=stringop-overflow"
"-Wno-error=uninitialized"
# Needed for GCC 13
"-Wno-error=array-bounds"
2022-12-23 16:57:29 +00:00
];
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 ];
2023-04-12 14:35:05 +00:00
platforms = lib.platforms.unix;
};
}