summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author7c6f434c <7c6f434c@mail.ru>2022-09-07 18:18:57 +0000
committerGitHub <noreply@github.com>2022-09-07 18:18:57 +0000
commit6496f9cf51b5fe536f7fc77616f5fbf7f1edab70 (patch)
tree5bd50f9fe626048e3b7e650da5d07f3b6ba291ef
parent1b201fafa11c470f12e40112886420586e509588 (diff)
parentdecaeb0f654c6e6531b207aa17ab772c41fde2d7 (diff)
Merge pull request #188937 from sikmir/geoclue
geoclue2: 2.5.7 → 2.6.0
-rw-r--r--pkgs/development/libraries/geoclue/add-option-for-installation-sysconfdir.patch8
-rw-r--r--pkgs/development/libraries/geoclue/default.nix29
2 files changed, 9 insertions, 28 deletions
diff --git a/pkgs/development/libraries/geoclue/add-option-for-installation-sysconfdir.patch b/pkgs/development/libraries/geoclue/add-option-for-installation-sysconfdir.patch
index 63948ab4fad3..3e2ee954c8a1 100644
--- a/pkgs/development/libraries/geoclue/add-option-for-installation-sysconfdir.patch
+++ b/pkgs/development/libraries/geoclue/add-option-for-installation-sysconfdir.patch
@@ -1,5 +1,5 @@
diff --git a/data/meson.build b/data/meson.build
-index c189753..12c10cb 100644
+index a1fc61f..7c03882 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -7,7 +7,7 @@ if get_option('enable-backend')
@@ -43,7 +43,7 @@ index 1427fbe..2623f16 100644
desktop_file.full_path(),
autostart_dir)
diff --git a/meson.build b/meson.build
-index fde6fa3..39b7b0a 100644
+index 8aa5c31..b011879 100644
--- a/meson.build
+++ b/meson.build
@@ -12,7 +12,11 @@ gclue_api_version='2.0'
@@ -69,10 +69,10 @@ index fde6fa3..39b7b0a 100644
conf.set10('GCLUE_USE_3G_SOURCE', get_option('3g-source'))
conf.set10('GCLUE_USE_CDMA_SOURCE', get_option('cdma-source'))
diff --git a/meson_options.txt b/meson_options.txt
-index 83bc60e..b726329 100644
+index 5b8c42d..945dfd5 100644
--- a/meson_options.txt
+++ b/meson_options.txt
-@@ -34,6 +34,9 @@ option('systemd-system-unit-dir',
+@@ -40,6 +40,9 @@ option('systemd-system-unit-dir',
option('dbus-srv-user',
type: 'string', value: 'root',
description: 'The user (existing) as which the service will run')
diff --git a/pkgs/development/libraries/geoclue/default.nix b/pkgs/development/libraries/geoclue/default.nix
index d7b417ac09e9..519becfc6326 100644
--- a/pkgs/development/libraries/geoclue/default.nix
+++ b/pkgs/development/libraries/geoclue/default.nix
@@ -27,38 +27,19 @@
stdenv.mkDerivation rec {
pname = "geoclue";
- version = "2.5.7";
+ version = "2.6.0";
outputs = [ "out" "dev" "devdoc" ];
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
- owner = pname;
- repo = pname;
+ owner = "geoclue";
+ repo = "geoclue";
rev = version;
- sha256 = "1mv1vs4q94bqkmgkj53jcsw1x31kczwydyy3r27a7fycgzmii1pj";
+ hash = "sha256-TbuO9wpyjtvyvqaCryaTOunR0hVVlJuqENWQQpcMcz4=";
};
patches = [
- # Fix for falling back to GeoIP when WiFi devices are not found
- # https://gitlab.freedesktop.org/geoclue/geoclue/-/commit/2de651b6590087a2df2defe8f3d85b3cf6b91494
- # NOTE: this should be removed when the next version is released
- (fetchpatch {
- url = "https://gitlab.freedesktop.org/geoclue/geoclue/commit/2de651b6590087a2df2defe8f3d85b3cf6b91494.patch";
- sha256 = "hv7t2Hmpv2oDXiPWA7JpYD9q+cuuk+En/lJJickvFII=";
- })
-
- # Make the Mozilla API key configurable
- # https://gitlab.freedesktop.org/geoclue/geoclue/merge_requests/54 (only partially backported)
- (fetchpatch {
- url = "https://gitlab.freedesktop.org/geoclue/geoclue/commit/95c9ad4dc176860c85a07d0db4cb4179929bdb54.patch";
- sha256 = "/lq/dLBJl2vf16tt7emYoTtXY6iUw+4s2XcABUHp3Kc=";
- })
- (fetchpatch {
- url = "https://gitlab.freedesktop.org/geoclue/geoclue/commit/1a00809a0d89b0849a57647c878d192354247a33.patch";
- sha256 = "6FuiukgFWg2cEKt8LlKP4E0rfSH/ZQgk6Ip1mGJpNFQ=";
- })
-
./add-option-for-installation-sysconfdir.patch
];
@@ -122,6 +103,6 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.freedesktop.org/geoclue/geoclue/wikis/home";
maintainers = with maintainers; [ raskin ];
platforms = with platforms; linux ++ darwin;
- license = licenses.lgpl2;
+ license = licenses.lgpl2Plus;
};
}