57c012a16c
Nevertheless, I updated the gnome attribute names a bit so all that gtk-sharp-2 goes a bit beyond. svn path=/nixpkgs/trunk/; revision=22287
14 lines
480 B
Nix
14 lines
480 B
Nix
{stdenv, fetchurl, pkgconfig, libxml2, gtk, intltool, GConf, libsoup, libtasn1}:
|
|
|
|
assert stdenv ? glibc;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgweather-2.28.0";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/libgweather/2.28/libgweather-2.28.0.tar.bz2;
|
|
sha256 = "0m4ncqzf13037zvyihydif1asgp6pnzdkmx5qnmffzb1gd6qxzb5";
|
|
};
|
|
configureFlags = "--with-zoneinfo-dir=${stdenv.glibc}/share/zoneinfo";
|
|
buildInputs = [ pkgconfig libxml2 gtk intltool GConf libsoup libtasn1 ];
|
|
}
|