summary refs log tree commit diff
path: root/pkgs/development/libraries/libgweather/default.nix
blob: 4a4da810ae6724c4b803d5a89e12b4e709135cb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, fetchurl, pkgconfig, libxml2, gtk3, intltool, libsoup, GConf3 }:

stdenv.mkDerivation {
  name = "libgweather-3.4.1";

  src = fetchurl {
    url = mirror://gnome/sources/libgweather/3.4/libgweather-3.4.1.tar.xz;
    sha256 = "0q0vkggrbvy2ihwcsfynlv5qk9l3wjinls8yvmkb1qisyc4lv77f";
  };
  configureFlags = if stdenv ? glibc then "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo" else "";
  propagatedBuildInputs = [ libxml2 gtk3 libsoup GConf3 ];
  buildNativeInputs = [ pkgconfig intltool ];
}