9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
28 lines
1 KiB
Nix
28 lines
1 KiB
Nix
{lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, libxml2, libzip, boost, lua, luabind, tbb, expat}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "osrm-backend";
|
|
version = "5.23.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Project-OSRM";
|
|
repo = "osrm-backend";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-FWfrdnpdx4YPa9l7bPc6QNyqyNvrikdeADSZIixX5vE=";
|
|
};
|
|
|
|
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";
|
|
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 = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers;[ erictapen ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|