osmscout-server: 3.1.0 -> 3.1.5

Diff: https://github.com/rinigus/osmscout-server/compare/3.1.0...3.1.5

emaryn 9e5d98ae 1bc34e69

Changed files
+15 -12
pkgs
applications
misc
osmscout-server
+15 -12
pkgs/applications/misc/osmscout-server/default.nix
···
{
lib,
-
mkDerivation,
+
stdenv,
fetchFromGitHub,
pkg-config,
qmake,
qttools,
+
wrapQtAppsHook,
boost,
kirigami2,
kyotocabinet,
···
date = fetchFromGitHub {
owner = "HowardHinnant";
repo = "date";
-
rev = "a2fdba1adcb076bf9a8343c07524afdf09aa8dcc";
-
sha256 = "00sf1pbaz0g0gsa0dlm23lxk4h46xm1jv1gzbjj5rr9sf1qccyr5";
+
rev = "a45ea7c17b4a7f320e199b71436074bd624c9e15";
+
hash = "sha256-Mq7Yd+y8M3JNG9BEScwVEmxGWYEy6gaNNSlTGgR9LB4=";
};
in
-
mkDerivation rec {
+
stdenv.mkDerivation (finalAttrs: {
pname = "osmscout-server";
-
version = "3.1.0";
+
version = "3.1.5";
src = fetchFromGitHub {
owner = "rinigus";
repo = "osmscout-server";
-
rev = version;
-
hash = "sha256-GqUXHn3ZK8gdDlm3TitEp/jhBpQoVeQZUCfAyiyrDEg=";
+
tag = finalAttrs.version;
+
hash = "sha256-gmAHX7Gt2oAvTSTCypAjzI5a9TWOPDAYAMD1i1fJVUY=";
fetchSubmodules = true;
};
···
qmake
pkg-config
qttools
+
wrapQtAppsHook
];
+
buildInputs = [
kirigami2
qtquickcontrols2
···
"CONFIG+=disable_mapnik" # Disable the optional mapnik backend
];
-
meta = with lib; {
+
meta = {
description = "Maps server providing tiles, geocoder, and router";
homepage = "https://github.com/rinigus/osmscout-server";
-
license = licenses.gpl3Only;
-
maintainers = [ maintainers.Thra11 ];
-
platforms = platforms.linux;
+
license = lib.licenses.gpl3Only;
+
maintainers = [ lib.maintainers.Thra11 ];
+
platforms = lib.platforms.linux;
};
-
}
+
})