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

stdenv.mkDerivation rec {
  inherit (import ./src.nix fetchurl) name src;

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

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

}