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


stdenv.mkDerivation rec {
  name = "geocode-glib-${gnome3.version}.0";


  src = fetchurl {
    url = "mirror://gnome/sources/geocode-glib/${gnome3.version}/${name}.tar.xz";
    sha256 = "1cbfv0kds6b6k0cl7q47xpj3x1scwcd7m68zl1rf7i4hmhw4hpqj";
  };

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

  meta = with stdenv.lib; {
    platforms = platforms.linux;
	maintainers = [ maintainers.lethalman ];
  };

}