summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/libgweather/default.nix
blob: 78ae94c1a33a6811a2e7330d7048642d2b267eb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, fetchurl, pkgconfig, libxml2, gtk, intltool, libsoup, gconf
, pango, gdk_pixbuf, atk }:

stdenv.mkDerivation rec {
  name = "libgweather-3.6.2";

  src = fetchurl {
    url = "mirror://gnome/sources/libgweather/3.6/${name}.tar.xz";
    sha256 = "1c50m0zrnfh4g58rzf33dfw8ggslj38c61p8a75905bmj3rfyahg";
  };
  configureFlags = if stdenv ? glibc then "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo" else "";
  propagatedBuildInputs = [ libxml2 gtk libsoup gconf pango gdk_pixbuf atk ];
  nativeBuildInputs = [ pkgconfig intltool ];
}