forked from mirrors/nixpkgs
85 lines
1.9 KiB
Nix
85 lines
1.9 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, fetchpatch
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, gettext
|
|
, gtk-doc
|
|
, docbook-xsl-nons
|
|
, gobject-introspection
|
|
, gnome
|
|
, libsoup
|
|
, json-glib
|
|
, glib
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "geocode-glib";
|
|
version = "3.26.3";
|
|
|
|
outputs = [ "out" "dev" "devdoc" "installedTests" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/geocode-glib/${lib.versions.majorMinor version}/geocode-glib-${version}.tar.xz";
|
|
sha256 = "Hf6ug7kOzMobbPfc98XjsxeCjPC1YgXERx7w+RGZl2Y=";
|
|
};
|
|
|
|
patches = [
|
|
./installed-tests-path.patch
|
|
|
|
# Install data for pi test.
|
|
(fetchpatch {
|
|
url = "https://gitlab.gnome.org/GNOME/geocode-glib/-/commit/0eb5c21cf4deb2c45aedf5a4393d4208b8dc6d58.patch";
|
|
sha256 = "DmaPzGEu7f+gjjb2HSZ3+ZMc4EJSsba9ufsVysB0UPA=";
|
|
})
|
|
# Fix pi test.
|
|
(fetchpatch {
|
|
url = "https://gitlab.gnome.org/GNOME/geocode-glib/-/commit/464bb3bae5525566a7f41d157f73575cc4f3b5f8.patch";
|
|
sha256 = "qSjXR8eKl+E38Zp7/Kgge/FxOLHYUJgRSR68okc3No0=";
|
|
postFetch = ''
|
|
substituteInPlace $out --replace "LC_MESSAGES" "LC_ALL"
|
|
'';
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
gtk-doc
|
|
docbook-xsl-nons
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libsoup
|
|
json-glib
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dsoup2=${lib.boolToString (lib.versionOlder libsoup.version "2.99")}"
|
|
"-Dinstalled_test_prefix=${placeholder "installedTests"}"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
};
|
|
tests = {
|
|
installed-tests = nixosTests.installed-tests.geocode-glib;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A convenience library for the geocoding and reverse geocoding using Nominatim service";
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|