mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
nominatim: 4.0.1 -> 4.4.0
This commit is contained in:
parent
9482a09293
commit
f48b3baf52
@ -1,8 +1,8 @@
|
||||
{ stdenv, lib, fetchFromGitHub, fetchurl
|
||||
, clang-tools, cmake, bzip2, zlib, expat, boost, git, pandoc
|
||||
, clang-tools, cmake, bzip2, zlib, expat, boost, git, pandoc, nlohmann_json
|
||||
# Nominatim needs to be built with the same postgres version it will target
|
||||
, postgresql
|
||||
, python3, php
|
||||
, python3, php, lua
|
||||
}:
|
||||
|
||||
let
|
||||
@ -14,14 +14,14 @@ let
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nominatim";
|
||||
version = "4.0.1";
|
||||
version = "4.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "osm-search";
|
||||
repo = "Nominatim";
|
||||
rev = "v${version}";
|
||||
fetchSubmodules = true;
|
||||
sha256 = "sha256-sKI/KBKveb5kAWJ7y1xw+ZF1thynr402rJhVjkIdFMo=";
|
||||
sha256 = "sha256-GPMDbvTPl9SLpZi5gyRAPQ84NSTIRoSfGJeqWs1e9Oo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
|
||||
git
|
||||
pandoc
|
||||
php
|
||||
lua
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
@ -37,10 +38,13 @@ stdenv.mkDerivation rec {
|
||||
zlib
|
||||
expat
|
||||
boost
|
||||
nlohmann_json
|
||||
(python3.withPackages (ps: with ps; [
|
||||
pyyaml
|
||||
python-dotenv
|
||||
psycopg2
|
||||
sqlalchemy
|
||||
asyncpg
|
||||
psutil
|
||||
jinja2
|
||||
pyicu
|
||||
|
Loading…
Reference in New Issue
Block a user