summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.10/core/geocode-glib/default.nix
blob: d3b21bef167a3d102edf2d86750f86040bcb657e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ fetchurl, stdenv, pkgconfig, gnome3, intltool, libsoup, json_glib }:


stdenv.mkDerivation rec {
  name = "geocode-glib-3.10.0";


  src = fetchurl {
    url = "mirror://gnome/sources/geocode-glib/3.10/${name}.tar.xz";
    sha256 = "0dx6v9n4dsskcy6630s77cyb32xlykdall0d555976warycc3v8a";
  };

  buildInputs = with gnome3;
    [ intltool pkgconfig glib libsoup json_glib ];

  meta = with stdenv.lib; {
    platforms = platforms.linux;
  };

}