summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/desktop/libgweather/default.nix
blob: 4b1daa3af90ba444c66677ac9d532a29211e337b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, fetchurl, pkgconfig, libxml2, gtk, intltool, GConf, libsoup, libtasn1, nettle, gmp }:

assert stdenv.isLinux;

stdenv.mkDerivation rec {
  name = "libgweather-2.30.3";
  src = fetchurl {
    url = "mirror://gnome/sources/libgweather/2.30/${name}.tar.bz2";
    sha256 = "0k16lpdyy8as8wgc5dqpy5b8i9i4mrl77qx8db23fgs2c533fddq";
  };
  configureFlags = "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo";
  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libxml2 gtk intltool GConf libsoup libtasn1 nettle gmp ];
}