nixpkgs/pkgs/desktops/gnome-3/core/geocode-glib/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2018-03-13 02:14:37 +00:00
{ fetchurl, stdenv, meson, ninja, pkgconfig, gettext, gtk-doc, docbook_xsl, gobjectIntrospection, gnome3, libsoup, json-glib }:
stdenv.mkDerivation rec {
name = "geocode-glib-${version}";
2018-03-13 01:03:18 +00:00
version = "3.25.4.1";
2018-03-13 02:14:37 +00:00
outputs = [ "out" "dev" "installedTests" ];
src = fetchurl {
url = "mirror://gnome/sources/geocode-glib/${gnome3.versionBranch version}/${name}.tar.xz";
2018-03-13 01:03:18 +00:00
sha256 = "0y6p5l2jrr78p7l4hijjhclzbap005y6h06g3aiglg9i5hk6j0gi";
};
2018-03-13 02:14:37 +00:00
nativeBuildInputs = with gnome3; [ meson ninja pkgconfig gettext gtk-doc docbook_xsl gobjectIntrospection ];
buildInputs = with gnome3; [ glib libsoup json-glib ];
patches = [
./installed-tests-path.patch
];
postPatch = ''
substituteInPlace geocode-glib/tests/meson.build --subst-var-by "installedTests" "$installedTests"
'';
passthru = {
2018-03-13 02:14:37 +00:00
updateScript = gnome3.updateScript {
packageName = "geocode-glib";
attrPath = "gnome3.geocode-glib";
};
};
meta = with stdenv.lib; {
2018-03-13 02:14:37 +00:00
description = "A convenience library for the geocoding and reverse geocoding using Nominatim service";
license = licenses.lgpl2Plus;
maintainers = gnome3.maintainers;
2018-03-13 02:14:37 +00:00
platforms = platforms.linux;
};
}