2011-04-22 19:30:39 +02:00
|
|
|
{stdenv, fetchurl, pkgconfig, libxml2, gtk, intltool, GConf, libsoup, libtasn1, nettle, gmp}:
|
2009-09-30 07:27:34 +02:00
|
|
|
|
2011-04-22 19:30:39 +02:00
|
|
|
#Is this really necessary?
|
2010-04-16 08:47:55 +02:00
|
|
|
assert stdenv ? glibc;
|
|
|
|
|
2011-04-22 19:30:39 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libgweather-2.30.3";
|
2009-09-30 07:27:34 +02:00
|
|
|
src = fetchurl {
|
2011-04-22 19:30:39 +02:00
|
|
|
url = "mirror://gnome/sources/libgweather/2.30/${name}.tar.bz2";
|
|
|
|
sha256 = "0k16lpdyy8as8wgc5dqpy5b8i9i4mrl77qx8db23fgs2c533fddq";
|
2009-09-30 07:27:34 +02:00
|
|
|
};
|
|
|
|
configureFlags = "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo";
|
2011-04-22 19:30:39 +02:00
|
|
|
buildInputs = [ pkgconfig libxml2 gtk intltool GConf libsoup libtasn1 nettle gmp ];
|
2009-09-30 07:27:34 +02:00
|
|
|
}
|